:root {
  --bg: #050913;
  --bg-elevated: rgba(10, 17, 31, 0.78);
  --bg-soft: rgba(10, 17, 31, 0.58);
  --surface: rgba(11, 20, 35, 0.78);
  --surface-strong: rgba(14, 25, 44, 0.96);
  --line: rgba(134, 173, 255, 0.14);
  --line-strong: rgba(134, 173, 255, 0.28);
  --text: #edf4ff;
  --muted: #a7b7d1;
  --accent: #17a4ff;
  --accent-soft: rgba(23, 164, 255, 0.16);
  --accent-2: #7dd3fc;
  --max-width: 1180px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(29, 103, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(82, 213, 255, 0.14), transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(19, 116, 255, 0.1), transparent 40%),
    linear-gradient(180deg, #07101d 0%, #04070d 55%, #020409 100%);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.28;
}

.page-shell::before {
  top: 4rem;
  right: -14rem;
  background: rgba(69, 148, 255, 0.36);
}

.page-shell::after {
  top: 48rem;
  left: -16rem;
  background: rgba(74, 228, 255, 0.2);
}

.site-header,
.section,
.site-footer,
.ticker {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(5, 10, 19, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-small {
  font-size: 1.15rem;
}

.brand-accent {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.lang-button {
  min-width: 2.55rem;
  min-height: 2.15rem;
  padding: 0 0.75rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lang-button[aria-pressed="true"] {
  color: #06101d;
  background: linear-gradient(135deg, #dff6ff, #7dd3fc 55%, #17a4ff);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  width: 1rem;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.section {
  padding: 6rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 7rem);
  padding-top: 4rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  color: var(--accent-2);
  background: rgba(14, 35, 62, 0.82);
  border: 1px solid rgba(90, 172, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.section-heading h2,
.cta-box h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.hero-text,
.section-heading p,
.card p,
.timeline-item p,
.promise p,
.fit-column li,
.cta-box p,
.pricing-subtitle,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 1.35rem 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.35rem;
  color: #06101d;
  background: linear-gradient(135deg, #7dd3fc 0%, #17a4ff 55%, #0f7de3 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(23, 164, 255, 0.24);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.button-small {
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cedaf0;
}

.hero-points li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(23, 164, 255, 0.5);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 1rem;
}

.panel-orb {
  position: absolute;
  right: 6%;
  top: -10%;
  width: 13rem;
  height: 13rem;
  background: radial-gradient(circle, rgba(23, 164, 255, 0.4), rgba(23, 164, 255, 0));
  filter: blur(16px);
  pointer-events: none;
}

.panel-card,
.card,
.fit-panel,
.timeline-item,
.cta-box {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-card::before,
.card::before,
.fit-panel::before,
.timeline-item::before,
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.08), transparent 38%);
  pointer-events: none;
}

.panel-card {
  padding: 1.4rem;
}

.panel-card-primary {
  min-height: 25rem;
}

.panel-card-secondary {
  background: rgba(11, 20, 35, 0.9);
}

.panel-label,
.card-index,
.featured-label,
.pricing-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.panel-label,
.card-index,
.featured-label {
  color: var(--accent-2);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.panel-grid div,
.pill-cloud span {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.panel-number {
  display: block;
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.panel-grid p,
.pill-cloud span {
  margin: 0;
  color: #d6e4fb;
  line-height: 1.5;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pill-cloud span {
  color: #d7e5fb;
}

.ticker {
  overflow: hidden;
  padding: 0 0 1rem;
}

.ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 1rem;
  color: #d6e4fb;
  background: rgba(11, 20, 35, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-grid,
.section-split {
  display: grid;
  gap: 2rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-heading.narrow {
  max-width: 40rem;
}

.section-heading h2,
.cta-box h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.timeline-item {
  padding: 1.5rem;
}

.card h3,
.timeline-item h3,
.fit-column h3,
.promise h3 {
  margin: 0.6rem 0 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.fit-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
}

.fit-column ul {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: #06101d;
  background: linear-gradient(135deg, #d5f5ff, #17a4ff);
  font-weight: 800;
}

.promises {
  padding-top: 4rem;
}

.promise-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.promise {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.4rem;
  background: rgba(9, 17, 30, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.promise span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  color: var(--accent-2);
  background: rgba(23, 164, 255, 0.1);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.pricing-card {
  min-height: 18rem;
}

.featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.08), rgba(255, 255, 255, 0)),
    rgba(12, 24, 44, 0.92);
}

.featured-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  background: rgba(125, 211, 252, 0.12);
  border-radius: 999px;
}

.cta-section {
  padding-top: 4rem;
  padding-bottom: 7rem;
}

.cta-box {
  padding: 2rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2.5rem;
  color: var(--muted);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }
}

@media (max-width: 1080px) {
  .cards-three,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(5, 10, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switch {
    justify-content: center;
  }

  .fit-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .cta-section {
    padding: 4rem 0;
  }

  .site-header,
  .section,
  .site-footer,
  .ticker {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .panel-grid,
  .promise {
    grid-template-columns: 1fr;
  }

  .panel-grid div,
  .card,
  .timeline-item,
  .cta-box,
  .fit-panel {
    padding: 1.2rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
