:root {
  color-scheme: dark;
  --bg: #020712;
  --bg-2: #061425;
  --ink: #f6fbff;
  --muted: #aac0d7;
  --soft: #7890aa;
  --dim: #52677f;
  --line: rgba(115, 205, 255, .18);
  --line-strong: rgba(115, 205, 255, .34);
  --panel: rgba(4, 15, 32, .76);
  --panel-strong: rgba(6, 22, 45, .9);
  --blue: #248dff;
  --blue-2: #51b7ff;
  --cyan: #74e6ff;
  --ice: #ecfbff;
  --green: #8df2d0;
  --gold: #ffd884;
  --shadow: 0 24px 80px rgba(0, 0, 0, .44);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font);
  background:
    linear-gradient(180deg, rgba(2, 7, 18, .72), rgba(2, 7, 18, .96) 44%, rgba(1, 4, 10, .99) 100%),
    radial-gradient(circle at 88% 2%, rgba(36, 141, 255, .18), transparent 22rem),
    radial-gradient(circle at 3% 32%, rgba(116, 230, 255, .08), transparent 20rem),
    url("/background.png") center top / cover scroll no-repeat,
    #020712;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 4, 10, .96), rgba(2, 10, 22, .40) 50%, rgba(1, 4, 10, .94)),
    radial-gradient(circle at 50% -12%, rgba(116, 230, 255, .11), transparent 28rem),
    radial-gradient(circle at 50% 112%, rgba(36, 141, 255, .13), transparent 30rem);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(116, 230, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 230, 255, .055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, black 12%, black 82%, transparent);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }
strong { font-weight: 850; }
::selection { color: #031024; background: var(--cyan); }

.skip-link {
  position: absolute;
  left: .8rem;
  top: -6rem;
  z-index: 100;
  padding: .78rem 1rem;
  border-radius: 999px;
  color: #031024;
  background: var(--ice);
  font-weight: 900;
}

.skip-link:focus { top: .8rem; }

.container {
  width: min(var(--max), calc(100% - 22px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 7, 18, .84);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .30);
}

.nav {
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .68rem;
}

.brand,
.footer-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(36, 141, 255, .36));
}

.brand-copy,
.footer-brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1;
}

.brand-copy strong,
.footer-brand-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.brand-copy strong { font-size: 1rem; }
.footer-brand-copy strong { font-size: 1rem; }

.brand-copy span,
.footer-brand-copy span {
  margin-top: .34rem;
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy span { display: none; }

.nav-links { display: none; }

.nav-actions {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
}

.nav-actions .ghost { display: none; }

.nav-actions a,
.nav-links a,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.nav-actions a {
  padding: .62rem .82rem;
  font-size: .88rem;
}

.nav-links a { padding: .64rem .86rem; }

.nav-links a:hover,
.nav-links a:focus-visible,
.ghost:hover,
.ghost:focus-visible {
  outline: 0;
  transform: translateY(-1px);
  border-color: rgba(116, 230, 255, .26);
  background: rgba(116, 230, 255, .08);
}

.primary,
.btn.primary {
  color: #021020;
  font-weight: 920;
  background: linear-gradient(135deg, var(--ice), var(--blue-2) 52%, var(--blue));
  border-color: rgba(236, 251, 255, .65);
  box-shadow: 0 14px 34px rgba(36, 141, 255, .26), inset 0 1px 0 rgba(255, 255, 255, .55);
}

.primary:hover,
.primary:focus-visible,
.btn.primary:hover,
.btn.primary:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 19px 44px rgba(36, 141, 255, .34), inset 0 1px 0 rgba(255, 255, 255, .55);
}

.btn {
  width: 100%;
  padding: .9rem 1.1rem;
  font-weight: 850;
  letter-spacing: .01em;
}

.btn.secondary {
  color: #d9efff;
  background: rgba(8, 29, 58, .62);
  border-color: rgba(116, 230, 255, .24);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  border-color: rgba(116, 230, 255, .46);
  background: rgba(20, 67, 119, .64);
  box-shadow: 0 17px 42px rgba(0, 0, 0, .28);
}

main { position: relative; }

.section { padding: 3.05rem 0; }

.hero {
  padding: 2.35rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.eyebrow,
.section-kicker,
.panel-label,
.tag {
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 900;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: .52rem;
  margin-bottom: .95rem;
  padding: .52rem .72rem;
  border: 1px solid rgba(116, 230, 255, .24);
  border-radius: 999px;
  color: #d2efff;
  background: rgba(6, 22, 47, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  font-size: .68rem;
  line-height: 1.35;
}

.eyebrow::before {
  content: "";
  width: .46rem;
  height: .46rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: var(--green);
  box-shadow: 0 0 20px rgba(141, 242, 208, .8);
}

h1 {
  max-width: 10.4ch;
  margin-bottom: .92rem;
  font-size: clamp(2.65rem, 16vw, 4.45rem);
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
  text-wrap: balance;
}

.gradient-word {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #f7fbff 4%, #7feaff 38%, #248dff 82%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 1.1rem;
  color: #c8d9ea;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  gap: .72rem;
  margin-bottom: 1rem;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .52rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.micro-proof li {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .5rem .64rem;
  border: 1px solid rgba(116, 230, 255, .14);
  border-radius: 999px;
  background: rgba(5, 17, 35, .50);
  color: #d5e9f9;
  font-size: .78rem;
  font-weight: 760;
}

.micro-proof li::before,
.feature-list li::before,
.note-card::before,
.mobile-line::before {
  content: "";
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 16px rgba(81, 183, 255, .75);
  flex: 0 0 auto;
}

.hero-panel,
.plan,
.value-card,
.compare-wrap,
.compare-card,
.box,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(8, 26, 52, .76), rgba(3, 11, 24, .86)),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.hero-panel {
  padding: 1rem;
  border-color: rgba(116, 230, 255, .24);
  background:
    radial-gradient(circle at 20% 0%, rgba(116, 230, 255, .14), transparent 16rem),
    linear-gradient(180deg, rgba(9, 31, 62, .82), rgba(3, 11, 24, .9));
}

.hero-panel h2 {
  margin: 0 0 .78rem;
  color: var(--ice);
  font-size: 1.22rem;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  gap: .58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
  padding: .7rem;
  border: 1px solid rgba(116, 230, 255, .13);
  border-radius: 16px;
  background: rgba(1, 8, 18, .36);
}

.stat-mark {
  width: 1.42rem;
  height: 1.42rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #031024;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
  line-height: 1;
}

.hero-stats strong {
  display: block;
  color: var(--ice);
  font-size: .9rem;
}

.hero-stats span span {
  display: block;
  margin-top: .12rem;
  color: #9eb3ca;
  font-size: .82rem;
  line-height: 1.4;
}

.section-head {
  display: grid;
  gap: .74rem;
  margin-bottom: 1rem;
}

.section-kicker {
  margin: 0 0 .56rem;
  color: var(--cyan);
  font-size: .72rem;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 10vw, 3.1rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.value-strip {
  display: grid;
  gap: .72rem;
  margin-bottom: .9rem;
}

.value-card {
  min-width: 0;
  padding: .95rem;
  border-radius: 18px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.value-card strong {
  display: block;
  color: var(--ice);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.value-card span {
  display: block;
  margin-top: .26rem;
  color: var(--soft);
  font-size: .88rem;
  line-height: 1.45;
}

.plans-grid {
  display: grid;
  gap: .85rem;
  align-items: stretch;
}

.plan {
  position: relative;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 22px;
  contain: layout paint;
}

.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(117, 230, 255, .13), transparent 28%, transparent 72%, rgba(36, 141, 255, .12));
  opacity: .72;
}

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

.plan.featured {
  border-color: rgba(117, 230, 255, .58);
  background:
    radial-gradient(circle at 16% 0%, rgba(116, 230, 255, .16), transparent 17rem),
    linear-gradient(180deg, rgba(9, 31, 62, .88), rgba(3, 11, 24, .93));
  box-shadow: 0 30px 96px rgba(36, 141, 255, .18), var(--shadow);
}

.tag {
  width: fit-content;
  max-width: 100%;
  margin-bottom: .68rem;
  padding: .34rem .55rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(117, 230, 255, .08);
  font-size: .63rem;
  white-space: nowrap;
}

.plan h2 {
  margin-bottom: .42rem;
  color: var(--ice);
  font-size: 1.28rem;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
}

.plan .for {
  margin-bottom: .8rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
  margin: .08rem 0 .82rem;
}

.price {
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.06em;
}

.period { color: var(--soft); font-weight: 760; }

.old-price {
  color: var(--soft);
  text-decoration: line-through;
  font-weight: 800;
}

.promo {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: -.28rem 0 .82rem;
  padding: .35rem .52rem;
  border-radius: 999px;
  color: #062018;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: .52rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .56rem;
  color: #dbe9f8;
  font-size: .89rem;
  line-height: 1.4;
}

.feature-list li::before { transform: translateY(.43rem); }

.plan-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: .85rem 1rem;
  border: 1px solid rgba(117, 230, 255, .48);
  border-radius: 15px;
  color: #031024;
  background: linear-gradient(135deg, var(--ice), var(--blue-2) 52%, var(--blue));
  box-shadow: 0 16px 42px rgba(36, 141, 255, .24);
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.plan-button.secondary {
  color: var(--ink);
  background: rgba(117, 230, 255, .08);
  box-shadow: none;
}

.plan-button:hover,
.plan-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
  filter: brightness(1.08);
}

.note-grid {
  display: grid;
  gap: .72rem;
  margin-top: .9rem;
}

.note-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .62rem;
  align-items: start;
  padding: .88rem;
  border: 1px solid rgba(116, 230, 255, .14);
  border-radius: 17px;
  background: rgba(4, 16, 34, .64);
}

.note-card::before { margin-top: .42rem; }

.note-card b {
  display: block;
  margin-bottom: .22rem;
  color: var(--ice);
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.note-card p {
  margin: 0;
  color: var(--soft);
  font-size: .86rem;
  line-height: 1.45;
}

.compare-wrap {
  padding: .7rem;
  overflow: hidden;
}

.compare-cards {
  display: grid;
  gap: .75rem;
}

.compare-card {
  padding: .95rem;
  border-radius: 18px;
  box-shadow: none;
}

.compare-card h3 {
  margin-bottom: .72rem;
  color: var(--ice);
  font-size: 1.05rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.mobile-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .58rem;
  padding: .62rem 0;
  border-top: 1px solid rgba(116, 230, 255, .12);
  color: #d8e8f8;
  font-size: .9rem;
  line-height: 1.42;
}

.mobile-line:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.mobile-line::before { margin-top: .45rem; }

.mobile-line b {
  display: block;
  margin-bottom: .12rem;
  color: var(--ice);
}

.mobile-line .yes { color: var(--green); }
.mobile-line .maybe { color: var(--gold); }
.mobile-line .no { color: #91a4ba; }

.compare-scroll { display: none; }

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: .92rem .85rem;
  border-right: 1px solid rgba(116, 230, 255, .12);
  border-bottom: 1px solid rgba(116, 230, 255, .12);
  color: #d8e8f8;
  font-size: .9rem;
  line-height: 1.38;
  text-align: left;
  vertical-align: top;
}

th:last-child,
td:last-child { border-right: 0; }

tr:last-child td { border-bottom: 0; }

th {
  color: var(--ice);
  background: rgba(116, 230, 255, .075);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

td:first-child {
  color: var(--ice);
  font-weight: 850;
  background: rgba(2, 9, 21, .38);
}

.yes,
.maybe,
.no { font-weight: 850; }

.yes { color: var(--green); }
.maybe { color: var(--gold); }
.no { color: #91a4ba; }

.faq-contact {
  display: grid;
  gap: .85rem;
  align-items: start;
}

.box {
  padding: 1rem;
}

.box h2,
.box h3 {
  margin-bottom: .72rem;
  color: var(--ice);
  font-size: 1.45rem;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.box-copy {
  margin-bottom: .9rem;
  color: var(--muted);
  line-height: 1.62;
}

details {
  padding: .86rem 0;
  border-top: 1px solid rgba(116, 230, 255, .12);
}

details:last-child { border-bottom: 1px solid rgba(116, 230, 255, .12); }

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

details p {
  margin: .58rem 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-line {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .64rem;
  padding: .78rem .8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(117, 230, 255, .08);
  overflow-wrap: anywhere;
  font-weight: 850;
  text-align: center;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  border-color: rgba(116, 230, 255, .25);
  background:
    radial-gradient(circle at 10% 0%, rgba(116, 230, 255, .16), transparent 22rem),
    linear-gradient(135deg, rgba(8, 29, 58, .88), rgba(3, 11, 24, .94));
}

.final-cta h2 {
  margin-bottom: .62rem;
  font-size: clamp(2rem, 10vw, 3.1rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.final-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: #b7cadd;
  line-height: 1.64;
}

.site-footer {
  border-top: 1px solid rgba(116, 230, 255, .12);
  background:
    radial-gradient(circle at 12% 0%, rgba(116, 230, 255, .08), transparent 24rem),
    rgba(1, 5, 12, .82);
}

.footer-main { padding: 2rem 0; }

.footer-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.footer-brand-block p {
  max-width: 420px;
  margin: .92rem 0 1rem;
  color: #9eb3ca;
  line-height: 1.62;
}

.footer-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: .68rem .92rem;
  border: 1px solid rgba(116, 230, 255, .22);
  border-radius: 999px;
  color: #dff7ff;
  background: rgba(116, 230, 255, .07);
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  outline: 0;
  transform: translateY(-1px);
  border-color: rgba(116, 230, 255, .42);
  background: rgba(116, 230, 255, .11);
}

.footer-col h3 {
  margin: .15rem 0 .74rem;
  color: var(--ice);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: .58rem;
  color: #8ea3bb;
  font-size: .9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  outline: 0;
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(116, 230, 255, .1);
  padding: 1rem 0;
  color: #7890aa;
  font-size: .84rem;
}

.footer-bottom-inner {
  display: grid;
  gap: .48rem;
}

@media (min-width: 560px) {
  .container { width: min(var(--max), calc(100% - 32px)); }

  .brand-copy span { display: block; }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn { width: auto; }

  .value-strip,
  .note-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

  .box,
  .final-cta,
  .hero-panel,
  .plan { padding: 1.18rem; }

  .contact-line { width: fit-content; }

  .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

@media (min-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(2, 7, 18, .72), rgba(2, 7, 18, .95) 44%, rgba(1, 4, 10, .99) 100%),
      radial-gradient(circle at 78% 6%, rgba(36, 141, 255, .20), transparent 31rem),
      radial-gradient(circle at 9% 40%, rgba(116, 230, 255, .09), transparent 28rem),
      url("/background.png") center top / cover fixed no-repeat,
      #020712;
  }

  body::after { background-size: 72px 72px; }

  .nav { min-height: 74px; }

  .brand img,
  .footer-brand img { width: 48px; height: 48px; }

  .nav-actions .ghost { display: inline-flex; }

  .section { padding: 4rem 0; }

  .hero { padding: 3.4rem 0 2.7rem; }

  .hero-copy { font-size: 1.05rem; }

  .hero-panel h2 { font-size: 1.45rem; }

  .section-head {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr);
    align-items: end;
    gap: 1.2rem;
  }

  .plans-grid { gap: .95rem; }

  .plan .for { min-height: 4.2em; }

  .price { font-size: 2.75rem; }

  .compare-cards { display: none; }

  .compare-wrap { padding: 0; }

  .compare-scroll {
    display: block;
    overflow-x: auto;
  }

  .faq-contact {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: 1rem;
  }

  .final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.2rem;
    padding: 1.7rem;
  }

  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (min-width: 980px) {
  .container { width: min(var(--max), calc(100% - 40px)); }

  .nav {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
  }

  .nav-links {
    display: inline-flex;
    justify-self: center;
    justify-content: center;
    align-items: center;
    gap: .16rem;
    color: #cbdcef;
    font-size: .92rem;
  }

  .nav-actions {
    justify-self: end;
    gap: .58rem;
  }

  .nav-actions a {
    padding: .66rem .94rem;
    font-size: .95rem;
  }

  .brand-copy strong { font-size: clamp(1rem, 1.45vw, 1.18rem); }
  .brand-copy span { font-size: .66rem; letter-spacing: .28em; }

  .hero {
    padding: 4.4rem 0 3.1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    gap: clamp(1.6rem, 3vw, 3rem);
    align-items: end;
  }

  h1 {
    max-width: 11.2ch;
    font-size: clamp(4.7rem, 7vw, 6rem);
  }

  .hero-copy {
    max-width: 700px;
    font-size: clamp(1.05rem, 1.35vw, 1.16rem);
  }

  .section { padding: clamp(4.2rem, 6vw, 5.6rem) 0; }

  .section-head h2 {
    max-width: 680px;
    font-size: clamp(2.4rem, 4vw, 3.65rem);
  }

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

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

  .plan h2 { font-size: clamp(1.14rem, 1.7vw, 1.55rem); }

  .plan .for { min-height: 4.9em; }

  .box {
    padding: clamp(1.2rem, 2.3vw, 1.8rem);
  }

  .box h2,
  .box h3 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
  }

  .final-cta {
    padding: clamp(1.8rem, 4vw, 2.8rem);
  }

  .final-cta h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
  }

  .footer-grid {
    grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(145px, .55fr));
    gap: clamp(1.2rem, 3vw, 2.4rem);
  }
}

@media (min-width: 1180px) {
  .plan { padding: 1.28rem; }
}

@media (max-width: 359px) {
  .brand-copy strong { font-size: .9rem; }
  .nav-actions a { padding-inline: .68rem; font-size: .82rem; }
  h1 { font-size: 2.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Visual polish: cinematic background layer for plans */
body {
  background:
    linear-gradient(180deg, rgba(2, 7, 18, .72), rgba(2, 7, 18, .96) 44%, rgba(1, 4, 10, .99) 100%),
    radial-gradient(circle at 88% 2%, rgba(36, 141, 255, .18), transparent 22rem),
    radial-gradient(circle at 3% 32%, rgba(116, 230, 255, .08), transparent 20rem),
    url("/background.png") center top / cover fixed no-repeat,
    #020712 !important;
}

body::before {
  background:
    linear-gradient(90deg, rgba(1, 4, 10, .97), rgba(2, 10, 22, .52) 50%, rgba(1, 4, 10, .95)),
    radial-gradient(circle at 50% -12%, rgba(116, 230, 255, .11), transparent 28rem),
    radial-gradient(circle at 50% 112%, rgba(36, 141, 255, .13), transparent 30rem) !important;
}

.plan::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), transparent 28%, transparent 72%, rgba(116,230,255,.10));
  mix-blend-mode: screen;
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(2, 7, 18, .78), rgba(2, 7, 18, .97) 46%, rgba(1, 4, 10, .99) 100%),
      radial-gradient(circle at 72% 0%, rgba(36, 141, 255, .16), transparent 22rem),
      url("/background.png") center top / cover scroll no-repeat,
      #020712 !important;
  }
}

/* Keep plans background fixed on laptop and mobile */
body {
  background:
    linear-gradient(180deg, rgba(2, 7, 18, .72), rgba(2, 7, 18, .96) 44%, rgba(1, 4, 10, .99) 100%),
    radial-gradient(circle at 88% 2%, rgba(36, 141, 255, .18), transparent 22rem),
    radial-gradient(circle at 3% 32%, rgba(116, 230, 255, .08), transparent 20rem),
    url("/background.png") center top / cover fixed no-repeat,
    #020712 !important;
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(2, 7, 18, .78), rgba(2, 7, 18, .97) 46%, rgba(1, 4, 10, .99) 100%),
      radial-gradient(circle at 72% 0%, rgba(36, 141, 255, .16), transparent 22rem),
      url("/background.png") center top / cover fixed no-repeat,
      #020712 !important;
  }
}

/* Mobile header CTA: hide Get Started, show Login only on mobile */
.mobile-login-cta {
  display: none !important;
}

@media (max-width: 760px) {
  .site-header .desktop-cta {
    display: none !important;
  }

  .site-header .mobile-login-cta {
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: .58rem .82rem !important;
    border: 1px solid rgba(116, 230, 255, .24) !important;
    border-radius: 999px !important;
    color: #dff7ff !important;
    background: rgba(116, 230, 255, .07) !important;
    font-size: .84rem !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }
}
