.page-landing {
  background:
    radial-gradient(circle at top left, rgba(102, 227, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(102, 227, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #070b10 0%, #0b0d10 34%, #0d1218 100%);
}

.page-thanks {
  background:
    radial-gradient(circle at top left, rgba(102, 227, 255, 0.12), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(95, 150, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #070b10 0%, #0b0d10 34%, #0f1620 100%);
}

.page-landing::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent 92%);
  opacity: 0.26;
}

.page-thanks::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.92), transparent 94%);
  opacity: 0.22;
}

.page-landing .section,
.page-thanks .section {
  padding: 84px 0;
}

.page-landing h1,
.page-landing h2,
.page-landing h3,
.page-thanks h1,
.page-thanks h2,
.page-thanks h3 {
  font-family: "Unbounded", "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.page-landing h1,
.page-thanks h1 {
  max-width: 12ch;
}

.page-landing h2,
.page-thanks h2 {
  max-width: 15ch;
}

.page-landing .header,
.page-thanks .header {
  background: transparent;
}

.page-landing .nav-wrap,
.page-thanks .nav-wrap {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(11, 15, 22, 0.658);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

body.page-thanks.nav-open::before {
  opacity: 0;
}

.page-landing .landing-hero {
  padding-top: 154px;
  overflow: hidden;
}

.landing-hero__grid,
.landing-lead,
.contact-panel {
  display: grid;
  gap: 24px;
}

.landing-hero__grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: start;
}

.landing-hero__copy {
  position: relative;
  z-index: 1;
}

.landing-hero__copy::before {
  content: "";
  position: absolute;
  inset: -22px auto auto -22px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(102, 227, 255, 0.18), transparent 72%);
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

.landing-hero__subline {
  max-width: 28ch;
  margin-bottom: 16px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--text);
}

.landing-hero__title {
  display: grid;
  gap: 8px;
  max-width: min(100%, 12.8ch);
  margin: 0 0 18px;
}

.landing-hero__title-line {
  display: block;
}

.landing-hero__niche-slot {
  position: relative;
  display: block;
  min-height: clamp(48px, 6vw, 72px);
  padding: 4px 0 4px 18px;
  isolation: isolate;
}

.landing-hero__niche-slot::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(102, 227, 255, 0.92), rgba(102, 227, 255, 0.14));
  pointer-events: none;
  opacity: 0.9;
}

.landing-hero__list {
  max-width: 52ch;
  margin-top: 0;
}

.landing-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.landing-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.landing-chip:hover,
.landing-chip:focus-visible,
.landing-chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(102, 227, 255, 0.42);
  background: rgba(102, 227, 255, 0.12);
  color: var(--text);
}

.landing-hero__niche {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  color: #8beeff;
  font-size: clamp(2.22rem, 4vw, 3.55rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease;
}

.page-landing .btn-primary,
.page-landing .desktop-cta.btn,
.page-thanks .btn-primary,
.page-thanks .desktop-cta.btn {
  color: #06131c;
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #70e7ff, #5f96ff);
  box-shadow:
    0 14px 28px rgba(54, 117, 212, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.page-landing .btn-primary:hover,
.page-landing .btn-primary:focus-visible,
.page-landing .desktop-cta.btn:hover,
.page-landing .desktop-cta.btn:focus-visible,
.page-thanks .btn-primary:hover,
.page-thanks .btn-primary:focus-visible,
.page-thanks .desktop-cta.btn:hover,
.page-thanks .desktop-cta.btn:focus-visible {
  color: #06131c;
  background: linear-gradient(135deg, #7aeaff, #679eff);
  box-shadow:
    0 18px 32px rgba(54, 117, 212, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.landing-hero__niche.is-changing {
  opacity: 0;
  transform: translateY(5px);
  filter: blur(2px);
}

.landing-hero__hint {
  max-width: 50ch;
  margin-top: 18px;
  color: var(--muted);
}

.landing-stage {
  display: grid;
  gap: 22px;
  padding: 28px;
  min-height: 100%;
  overflow: hidden;
}

.landing-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(102, 227, 255, 0.14), transparent 30%),
    linear-gradient(140deg, rgba(102, 227, 255, 0.12), transparent 34%);
}

.landing-stage > * {
  position: relative;
  z-index: 1;
}

.landing-stage__head h2 {
  margin-bottom: 0;
}

.landing-stage__timeline {
  display: grid;
  gap: 14px;
}

.landing-stage__step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.landing-stage__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(102, 227, 255, 0.22);
  background: rgba(102, 227, 255, 0.1);
  color: var(--accent);
  font-weight: 800;
}

.landing-stage__step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.landing-stage__step p,
.landing-stage__focus p {
  margin: 0;
  color: var(--muted);
}

.landing-stage__focus {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(102, 227, 255, 0.16);
  background: rgba(102, 227, 255, 0.07);
}

.landing-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.landing-section__head-tight {
  margin-bottom: 30px;
}

.landing-section__head > :last-child {
  margin: 0;
  max-width: 52ch;
}

.landing-grid {
  display: grid;
  gap: 18px;
}

.landing-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.issue-card {
  min-height: 100%;
}

.issue-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(102, 227, 255, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
}

.cta-strip h3 {
  margin-bottom: 0;
  max-width: 20ch;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-strip-dark {
  margin-top: 26px;
}

.flow-card {
  display: grid;
  gap: 22px;
  padding: 26px;
}

.flow-rail {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, auto));
  gap: 12px;
  align-items: stretch;
}

.flow-node {
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.flow-node span,
.solution-card__eyebrow,
.landing-form__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-node strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.flow-node-accent {
  background: rgba(102, 227, 255, 0.08);
  border-color: rgba(102, 227, 255, 0.22);
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: rgba(102, 227, 255, 0.65);
  font-size: 1.2rem;
  font-weight: 800;
}

.flow-steps {
  gap: 14px;
}

.flow-step {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.flow-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(102, 227, 255, 0.1);
  color: var(--accent);
  font-weight: 800;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.solution-card {
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.solution-card:hover,
.solution-card:focus-within,
.solution-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(102, 227, 255, 0.28);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(102, 227, 255, 0.08);
}

.solution-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
}

.solution-card__body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.solution-card__body h3 {
  margin: 0;
}

.solution-card__body p {
  margin: 0;
  color: var(--muted);
}

.solution-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.solution-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
}

.solution-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-lead {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: stretch;
}

.landing-lead__copy,
.landing-form {
  padding: 26px;
}

.landing-form {
  gap: 12px;
  align-content: start;
}

.landing-form input::placeholder {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.landing-form__eyebrow {
  margin-bottom: 6px;
}

.form-success-actions {
  margin-top: 2px;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  padding: 26px;
}

.contact-panel__copy h2 {
  max-width: 14ch;
}

.contact-panel__links {
  display: grid;
  gap: 12px;
}

.page-thanks .thanks-hero {
  padding-top: 154px;
  overflow: hidden;
}

.thanks-shell,
.thanks-contact-panel {
  display: grid;
  gap: 24px;
}

.thanks-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: stretch;
}

.thanks-main,
.thanks-side,
.thanks-contact-panel {
  padding: 28px;
}

.thanks-main,
.thanks-side {
  position: relative;
  overflow: hidden;
}

.thanks-main::before,
.thanks-side::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thanks-main::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(102, 227, 255, 0.18), transparent 34%),
    linear-gradient(140deg, rgba(102, 227, 255, 0.08), transparent 38%);
}

.thanks-side::before {
  background:
    radial-gradient(circle at 100% 0%, rgba(102, 227, 255, 0.14), transparent 30%),
    linear-gradient(140deg, rgba(102, 227, 255, 0.12), transparent 34%);
}

.thanks-main > *,
.thanks-side > * {
  position: relative;
  z-index: 1;
}

.thanks-lead {
  max-width: 32ch;
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  color: var(--text);
}

.thanks-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.thanks-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

.thanks-focus {
  margin-top: 18px;
  color: var(--muted);
}

.thanks-focus strong {
  color: var(--accent);
}

.thanks-side {
  display: grid;
  gap: 18px;
}

.thanks-steps {
  display: grid;
  gap: 14px;
}

.thanks-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.thanks-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(102, 227, 255, 0.22);
  background: rgba(102, 227, 255, 0.1);
  color: var(--accent);
  font-weight: 800;
}

.thanks-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.thanks-step p {
  margin: 0;
  color: var(--muted);
}

.thanks-contact-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.thanks-contact-panel__copy h2 {
  max-width: 14ch;
}

.thanks-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.thanks-contact-card {
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.thanks-contact-card:hover,
.thanks-contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(102, 227, 255, 0.3);
  background: rgba(102, 227, 255, 0.08);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(102, 227, 255, 0.06);
}

.thanks-contact-card img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.thanks-contact-card span {
  display: grid;
  gap: 4px;
}

.thanks-contact-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.thanks-contact-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .landing-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip,
  .landing-section__head,
  .contact-panel,
  .landing-lead,
  .landing-hero__grid,
  .thanks-shell,
  .thanks-contact-panel {
    grid-template-columns: 1fr;
  }

  .landing-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-section__head > :last-child {
    max-width: none;
  }

  .cta-strip__actions {
    justify-content: flex-start;
  }

  .thanks-contact-panel__copy h2 {
    max-width: none;
  }

  .flow-rail {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 760px) {
  .page-landing .section,
  .page-thanks .section {
    padding: 64px 0;
  }

  .page-landing .desktop-cta {
    display: none;
  }

  .page-thanks .desktop-cta {
    display: none;
  }

  .page-landing .landing-hero {
    padding-top: calc(env(safe-area-inset-top) + 148px);
  }

  .page-thanks .thanks-hero {
    padding-top: calc(env(safe-area-inset-top) + 148px);
  }

  .landing-hero .eyebrow {
    display: none;
  }

  .landing-hero__subline {
    max-width: 18ch;
  }

  .landing-hero__title {
    gap: 6px;
    max-width: min(100%, 11.8ch);
  }

  .landing-hero__niche-slot {
    min-height: 42px;
    padding: 2px 0 2px 14px;
  }

  .landing-hero__niche {
    font-size: clamp(1.92rem, 7.2vw, 2.55rem);
    line-height: 0.92;
  }

  .landing-grid-4,
  .landing-grid-5 {
    grid-template-columns: 1fr;
  }

  .landing-stage,
  .flow-card,
  .cta-strip,
  .landing-lead__copy,
  .landing-form,
  .contact-panel,
  .thanks-main,
  .thanks-side,
  .thanks-contact-panel {
    padding: 20px;
  }

  .landing-stage__step {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .landing-stage__step span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .landing-chip {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .thanks-lead,
  .page-thanks h1 {
    max-width: none;
  }

  .thanks-contact-grid {
    grid-template-columns: 1fr;
  }

  .thanks-step {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .thanks-step span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .solution-card__body {
    padding: 18px;
  }

  .solution-card__actions,
  .cta-strip__actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .solution-card__actions .btn,
  .cta-strip__actions .btn {
    width: 100%;
  }

  .contact-panel__copy h2,
  .page-landing h2 {
    max-width: none;
  }

  .landing-form input::placeholder {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-chip,
  .solution-card,
  .landing-hero__niche {
    transition: none;
  }

  .landing-hero__niche-slot::before {
    filter: none;
  }
}
