/* ==========================================================================
   First Wake Media — shared stylesheet
   Palette sampled directly from the logo: deep arctic navy, emblem ice-blue,
   aurora teal. Display type echoes the Roman-capital wordmark.
   ========================================================================== */

:root {
  /* ---- Color (sampled from logo) ---- */
  --ink:        #011024;   /* logo field navy            */
  --ink-2:      #071B31;   /* raised panel               */
  --ink-3:      #0E2742;   /* hover / active             */

  --paper:      #FFFFFF;
  --bone:       #EDF2F8;   /* pale ice — light sections  */
  --bone-2:     #DAE5F1;

  --accent:     #BFD2E7;   /* emblem ring ice-blue       */
  --accent-2:   #8DC4C9;   /* aurora teal                */
  --accent-hi:  #E6EEF8;   /* ice highlight              */
  --accent-ink: #011024;   /* text sitting on ice        */

  --accent-on-l: #1E4C7A;  /* deep blue, small text on light */
  --aurora-on-l: #2C6B72;  /* deep teal, small text on light */
  --focus:       #5B9BD5;  /* visible on navy and white  */

  --text-d:     #FFFFFF;
  --text-d-mut: #A8C0D8;
  --text-l:     #011024;
  --text-l-mut: #4C6480;

  --line-d:     rgba(191,210,231,.18);
  --line-l:     rgba(1,16,36,.13);

  /* ---- Shape ---- */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 24px;
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  /* ---- Type ---- */
  --f-wordmark: "Cinzel", "Trajan Pro", Georgia, serif;
  --f-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-hero:  clamp(2.75rem, 8.5vw, 6.5rem);
  --fs-h1:    clamp(2.25rem, 6vw, 4.25rem);
  --fs-h2:    clamp(1.85rem, 4.4vw, 3.25rem);
  --fs-h3:    clamp(1.25rem, 2.2vw, 1.6rem);
  --fs-lead:  clamp(1.05rem, 1.9vw, 1.35rem);
  --fs-body:  1.0625rem;
  --fs-sm:    0.9375rem;
  --fs-xs:    0.8125rem;
}

/* --------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-l);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: var(--r-sm);
  border: 1px solid var(--accent);
  font-weight: 600; z-index: 200;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------- Layout utils */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 10vw, 128px); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }

.dark  { background: var(--ink); color: var(--text-d); }
.dark p, .dark li { color: var(--text-d-mut); }
.bone  { background: var(--bone); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-wordmark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--accent-on-l);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--accent-on-l), var(--aurora-on-l));
}
.dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--accent); }
.dark .eyebrow::before, .hero .eyebrow::before, .page-hero .eyebrow::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--text-l-mut); }
.dark .lead { color: var(--text-d-mut); }

.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 64px); }

.accent-text {
  background: linear-gradient(96deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, filter .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Default (light backgrounds): solid navy */
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--ink-3); }

/* On navy backgrounds: ice gradient */
.dark .btn--primary,
.hero .btn--primary,
.page-hero .btn--primary,
.site-header .btn--primary,
.cta-band .btn--primary,
.tier--featured .btn--primary {
  background: linear-gradient(96deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
}
.dark .btn--primary:hover,
.hero .btn--primary:hover,
.page-hero .btn--primary:hover,
.site-header .btn--primary:hover,
.cta-band .btn--primary:hover,
.tier--featured .btn--primary:hover { filter: brightness(1.08); background: linear-gradient(96deg, var(--accent-hi), var(--accent-2)); }

.btn--ghost-light { border-color: var(--line-d); color: var(--text-d); }
.btn--ghost-light:hover { border-color: var(--accent); background: rgba(191,210,231,.10); }

.btn--ghost-dark { border-color: var(--line-l); color: var(--text-l); }
.btn--ghost-dark:hover { border-color: var(--ink); background: rgba(1,16,36,.04); }

.btn--lg { padding: 18px 34px; font-size: 1.0625rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.arrow { transition: transform .16s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------------------------------------------------------------- Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(1,16,36,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-d);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: #fff;
  flex-shrink: 0;
}
.brand__mark {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
}
.brand__name {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--f-wordmark);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.brand__name small {
  font-family: var(--f-wordmark);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--accent); margin-top: 5px;
}

.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; padding: 0; }
.nav__links a {
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-d-mut);
  transition: color .15s ease;
  position: relative;
}
.nav__links a:hover { color: #fff; }
.nav__links a[aria-current="page"] { color: #fff; }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  background: none; border: 1px solid var(--line-d);
  border-radius: var(--r-sm);
  width: 42px; height: 42px;
  cursor: pointer; color: #fff;
  align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-d);
    padding: 8px var(--gutter) 24px;
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a {
    display: block; padding: 16px 0;
    font-size: 1.1rem; font-family: var(--f-display); font-weight: 600;
    border-bottom: 1px solid var(--line-d);
  }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__cta .btn { display: none; }
}

/* --------------------------------------------------------------- Hero */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-d);
  padding-block: clamp(72px, 11vw, 150px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -34%; left: 50%; translate: -50% 0;
  width: min(1150px, 132%); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(141,196,201,.22) 0%, rgba(191,210,231,.12) 34%, transparent 66%);
  pointer-events: none;
}
.hero > .wrap { position: relative; }

.hero__title {
  font-size: var(--fs-hero);
  max-width: 16ch;
  margin-bottom: 26px;
}
.hero__sub { font-size: var(--fs-lead); max-width: 56ch; color: var(--text-d-mut); margin-bottom: 36px; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 32px; padding: 0; list-style: none;
  font-size: var(--fs-sm); color: var(--text-d-mut);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2); flex-shrink: 0;
}

/* Page hero (interior pages) */
.page-hero { background: var(--ink); color: var(--text-d); padding-block: clamp(56px, 8vw, 104px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; top: -60%; right: -10%;
  width: 640px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(141,196,201,.20), transparent 64%);
  pointer-events: none;
}
.page-hero > .wrap { position: relative; }
.page-hero h1 { font-size: var(--fs-h1); max-width: 18ch; margin-bottom: 20px; }
.page-hero .lead { max-width: 58ch; }

/* ------------------------------------------------------------ Marquee */
.marquee {
  background: linear-gradient(96deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--accent-ink);
  padding-block: 14px;
  overflow: hidden;
  border-block: 1px solid rgba(1,16,36,.10);
}
.marquee__track {
  display: flex; width: max-content;
  animation: slide 38s linear infinite;
}
.marquee__group {
  display: flex; align-items: center; gap: 26px;
  padding-right: 26px;
  font-family: var(--f-wordmark);
  font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee__group span { display: inline-flex; align-items: center; gap: 26px; }
.marquee__group span::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; opacity: .5;
}
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------------------------------------------------------------- Grid */
.grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--line-d); border-block: 1px solid var(--line-d); }
.stat { background: var(--ink); padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px); }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(96deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.stat__label { font-size: var(--fs-sm); color: var(--text-d-mut); max-width: 30ch; }
.stat__src { font-size: 11px; color: rgba(168,192,216,.55); margin-top: 10px; }

/* --------------------------------------------------------------- Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -22px rgba(1,16,36,.34); border-color: rgba(1,16,36,.22); }
.card h3 { font-size: var(--fs-h3); margin-bottom: 12px; }
.card p { color: var(--text-l-mut); font-size: var(--fs-sm); }

.card--dark { background: var(--ink-2); border-color: var(--line-d); color: var(--text-d); }
.card--dark:hover { border-color: rgba(191,210,231,.38); box-shadow: none; }
.card--dark p { color: var(--text-d-mut); }

.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(30,76,122,.12), rgba(44,107,114,.10));
  border: 1px solid rgba(30,76,122,.24);
  color: var(--accent-on-l);
  margin-bottom: 20px;
}
.dark .card__icon {
  background: linear-gradient(140deg, rgba(191,210,231,.14), rgba(141,196,201,.12));
  border-color: rgba(191,210,231,.28);
  color: var(--accent);
}

/* Numbered step cards */
.step { position: relative; padding-top: 8px; }
.step__num {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700; line-height: .9;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(191,210,231,.34);
  margin-bottom: 18px;
}
.dark .step h3 { color: #fff; }
.step--light .step__num { -webkit-text-stroke-color: rgba(1,16,36,.26); }
.step--dark .step__num  { -webkit-text-stroke-color: rgba(191,210,231,.34); }

/* --------------------------------------------------------------- Lists */
.check-list { list-style: none; padding: 0; display: grid; gap: 13px; }
.check-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  align-items: start;
  font-size: var(--fs-sm);
}
.check-list li::before {
  content: "";
  width: 20px; height: 20px; border-radius: 50%; margin-top: 2px;
  background: linear-gradient(140deg, var(--accent-on-l), var(--aurora-on-l));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
  flex-shrink: 0;
}
.dark .check-list li::before,
.tier--featured .check-list li::before {
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
}

/* ----------------------------------------------------- Spec grid (hairline) */
.spec-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 18px;
  margin-bottom: 22px;
}
.spec-head h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.02em;
}
.spec-head .spec-count {
  font-family: var(--f-wordmark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-on-l);
}
.dark .spec-head .spec-count { color: var(--accent-2); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 1px;
  background: var(--line-l);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.spec {
  background: var(--paper);
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  transition: background .18s ease;
}
.spec:hover { background: var(--bone); }

.spec__idx {
  font-family: var(--f-wordmark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .20em;
  color: var(--accent-on-l);
  margin-bottom: 18px;
}

.spec__label {
  font-family: var(--f-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 9px;
  text-wrap: balance;
}

.spec__desc {
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--text-l-mut);
}

.dark .spec-grid { background: var(--line-d); border-color: var(--line-d); }
.dark .spec { background: var(--ink-2); }
.dark .spec:hover { background: var(--ink-3); }
.dark .spec__idx { color: var(--accent-2); }
.dark .spec__label { color: #fff; }
.dark .spec__desc { color: var(--text-d-mut); }

.bone .spec-grid { border-color: var(--bone-2); background: var(--bone-2); }

/* --------------------------------------------------------- Offer block */
.offer {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--ink);
  color: var(--text-d);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4.2vw, 60px);
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: ""; position: absolute; top: -75%; right: -8%;
  width: 560px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(141,196,201,.20), transparent 64%);
  pointer-events: none;
}
.offer > * { position: relative; }
@media (max-width: 800px) { .offer { grid-template-columns: 1fr; } }

.offer__price {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .9;
  font-size: clamp(4rem, 13vw, 6.5rem);
  background: linear-gradient(96deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.offer__price sup { font-size: .34em; vertical-align: super; }
.offer__unit {
  font-family: var(--f-wordmark);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .20em; text-transform: uppercase;
  color: var(--accent); margin-top: 14px;
}
.offer__then {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line-d);
  font-size: var(--fs-lead); color: #fff; line-height: 1.35;
}
.offer__then span {
  display: block; font-size: var(--fs-sm);
  color: var(--text-d-mut); margin-top: 6px; line-height: 1.5;
}
.offer h3 { font-size: var(--fs-h3); color: #fff; margin-bottom: 18px; }
.offer .check-list { margin-bottom: 28px; }
.offer .check-list li { color: var(--text-d-mut); }
.offer .check-list li::before { background: linear-gradient(140deg, var(--accent), var(--accent-2)); }

/* Secondary step-up row — deliberately quiet */
.step-up {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-l);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: clamp(20px, 3vw, 32px);
}
.step-up > div { background: var(--paper); padding: clamp(22px, 2.6vw, 32px); }
.bone .step-up { background: var(--bone-2); border-color: var(--bone-2); }
.step-up__name {
  font-family: var(--f-wordmark); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-on-l); margin-bottom: 12px;
}
.step-up__price {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -.04em;
  line-height: 1; margin-bottom: 10px;
}
.step-up__price small { font-size: .5em; font-weight: 600; color: var(--text-l-mut); letter-spacing: 0; }
.step-up p { font-size: var(--fs-sm); color: var(--text-l-mut); }

/* ------------------------------------------------------------- Pricing */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(16px, 2vw, 24px); align-items: start; }

.tier {
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  background: var(--paper);
  display: flex; flex-direction: column; height: 100%;
}
.tier--featured {
  background: var(--ink); color: var(--text-d);
  border-color: transparent;
  position: relative;
  box-shadow: 0 30px 70px -34px rgba(1,16,36,.6);
}
.tier--featured p, .tier--featured .check-list li { color: var(--text-d-mut); }
.tier--featured .tier__price { color: #fff; }

.tier__flag {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--f-wordmark); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(96deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  padding: 6px 12px; border-radius: 999px;
}
.tier__name {
  font-family: var(--f-wordmark); font-size: 1rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-on-l); margin-bottom: 14px;
}
.tier--featured .tier__name { color: var(--accent-2); }
.tier__price { font-family: var(--f-display); font-size: clamp(2.25rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.tier__price sup { font-size: .42em; vertical-align: super; font-weight: 600; opacity: .7; }
.tier__meta { font-size: var(--fs-sm); color: var(--text-l-mut); margin: 10px 0 4px; }
.tier--featured .tier__meta { color: var(--text-d-mut); }
.tier__desc { font-size: var(--fs-sm); margin: 18px 0 24px; }
.tier .check-list { margin-bottom: 28px; }
.tier .btn { margin-top: auto; width: 100%; }

/* ----------------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--line-l); }
.dark .faq { border-top-color: var(--line-d); }
.faq details { border-bottom: 1px solid var(--line-l); }
.dark .faq details { border-bottom-color: var(--line-d); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 24px 44px 24px 0;
  font-family: var(--f-display);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600; letter-spacing: -0.02em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; translate: 0 -50%;
  width: 16px; height: 16px;
  background: var(--accent-on-l);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: rotate .2s ease;
}
.dark .faq summary::after { background: var(--accent); }
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { padding-bottom: 26px; max-width: 72ch; font-size: var(--fs-sm); }

/* ---------------------------------------------------------------- Form */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--f-display); font-size: var(--fs-sm); font-weight: 600; }
.field .hint { font-size: var(--fs-xs); color: var(--text-l-mut); }
.field .req { color: var(--accent-on-l); }

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: var(--fs-body);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-on-l);
  box-shadow: 0 0 0 3px rgba(30,76,122,.16);
}
.field textarea { resize: vertical; min-height: 130px; }

.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-chip span {
  display: block; padding: 11px 20px;
  border: 1px solid var(--line-l); border-radius: 999px;
  background: var(--paper);
  font-size: var(--fs-sm); font-weight: 500; cursor: pointer;
  transition: all .15s ease;
}
.radio-chip input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.radio-chip input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }

.form-note { font-size: var(--fs-xs); color: var(--text-l-mut); }

/* --------------------------------------------------------------- Panel */
.panel {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 44px);
}
.panel--dark { background: var(--ink-2); color: var(--text-d); border: 1px solid var(--line-d); }

.placeholder {
  border: 2px dashed rgba(30,76,122,.42);
  background: rgba(30,76,122,.05);
  border-radius: var(--r);
  padding: 20px 22px;
  font-size: var(--fs-sm);
  color: var(--text-l-mut);
}
.placeholder strong {
  color: var(--accent-on-l); font-family: var(--f-wordmark);
  letter-spacing: .14em; text-transform: uppercase;
  font-size: var(--fs-xs); display: block; margin-bottom: 6px;
}
.dark .placeholder {
  color: var(--text-d-mut);
  background: rgba(191,210,231,.07);
  border-color: rgba(191,210,231,.34);
}
.dark .placeholder strong { color: var(--accent); }

/* ------------------------------------------------------------- CTA band */
.cta-band {
  position: relative;
  background: linear-gradient(140deg, #011024 0%, #0B2645 58%, #123047 100%);
  color: var(--text-d);
  overflow: hidden;
  border-block: 1px solid var(--line-d);
}
.cta-band::before {
  content: ""; position: absolute; top: -55%; left: 8%;
  width: 680px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(141,196,201,.22), transparent 64%);
  pointer-events: none;
}
.cta-band > .wrap { position: relative; }
.cta-band h2 { font-size: var(--fs-h2); max-width: 18ch; margin-bottom: 18px; color: #fff; }
.cta-band p { font-size: var(--fs-lead); max-width: 52ch; margin-bottom: 32px; color: var(--text-d-mut); }
.cta-band .btn--ghost-dark { border-color: rgba(191,210,231,.34); color: var(--text-d); }
.cta-band .btn--ghost-dark:hover { border-color: var(--accent); background: rgba(191,210,231,.10); }

/* -------------------------------------------------------------- Footer */
.site-footer { background: var(--ink); color: var(--text-d); padding-block: clamp(48px, 6vw, 80px) 32px; border-top: 1px solid var(--line-d); }
.footer__top { display: grid; grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(150px, 1fr)); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-d); }
.footer__blurb { font-size: var(--fs-sm); color: var(--text-d-mut); max-width: 34ch; margin-top: 18px; }
.footer__tagline {
  font-family: var(--f-wordmark); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent-2); margin-top: 16px;
}
.footer__col h4 { font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 700; font-family: var(--f-wordmark); }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer__col a { text-decoration: none; font-size: var(--fs-sm); color: var(--text-d-mut); transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; padding-top: 26px; font-size: var(--fs-xs); color: rgba(168,192,216,.6); }
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: #fff; }

/* --------------------------------------------------------------- Misc */
.rule { height: 1px; background: var(--line-l); border: 0; margin-block: clamp(36px, 5vw, 64px); }
.dark .rule { background: var(--line-d); }

.tag-row { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  font-size: var(--fs-xs); font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-l); color: var(--text-l-mut);
}
.dark .tag { border-color: var(--line-d); color: var(--text-d-mut); }
