/* =========================================================
   PONTEM SOLUTIONS — styles.css
   Brand: Deep Navy / Aqua / Mint / Off-White
   Typography: Comfortaa (brand) + Outfit (body)
   ========================================================= */

/* -------- Brand tokens -------- */
:root {
  /* Brand palette — exactly from brand guide */
  --c-navy:        #0F2A3D;   /* Deep Navy — primary */
  --c-teal:        #0E6E83;   /* Blue Teal — secondary */
  --c-aqua:        #22B7C2;   /* Aqua — accent */
  --c-mint:        #7EDAD1;   /* Mint Aqua — accent */
  --c-periwinkle:  #B9C6E6;   /* Pale Periwinkle — accent */
  --c-charcoal:    #33363A;   /* Charcoal — neutral */
  --c-slate:       #7D8896;   /* Soft Slate — neutral */
  --c-offwhite:    #F6F8FA;   /* Off White — bg */

  /* Functional roles */
  --bg:            var(--c-offwhite);
  --bg-alt:        #FFFFFF;
  --bg-card:       #FFFFFF;
  --bg-deep:       var(--c-navy);

  --ink:           var(--c-navy);
  --ink-muted:     #4B5663;
  --ink-soft:      var(--c-slate);

  --accent:        var(--c-aqua);
  --accent-deep:   var(--c-teal);
  --accent-soft:   rgba(34, 183, 194, 0.10);

  --line:          #E2E8EE;
  --line-strong:   #CDD5DF;

  /* Type */
  --font-brand:   "Jura", "Trebuchet MS", sans-serif;
  --font-body:    "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Sizing */
  --radius:        8px;
  --radius-card:   14px;
  --radius-pill:   999px;
  --max:           1200px;
  --max-narrow:    780px;

  /* Easing */
  --ease:          cubic-bezier(.2,.7,.2,1);

  /* Shadows */
  --shadow-sm:     0 2px 8px -2px rgba(15, 42, 61, 0.08);
  --shadow-md:     0 12px 32px -12px rgba(15, 42, 61, 0.18);
  --shadow-lg:     0 24px 60px -20px rgba(15, 42, 61, 0.25);
}

/* -------- Splash screen -------- */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 1;
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1);
}
#splash.is-leaving {
  opacity: 0;
  pointer-events: none;
}
#splash.is-gone {
  display: none;
}

.splash__scene {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash__icon {
  position: relative;
  z-index: 4;
  width: 80px;
  height: 80px;
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
  animation: splashIconReveal 0.9s cubic-bezier(.2,.7,.2,1) 0.2s forwards;
}
.splash__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes splashIconReveal {
  0%   { opacity: 0; transform: scale(0.6) rotate(-15deg); }
  60%  { opacity: 1; transform: scale(1.06) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Orbit rings */
.splash__orbit {
  position: absolute;
  border-radius: 50%;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  opacity: 0;
}
.splash__orbit--1 {
  width: 130px;
  height: 130px;
  animation: splashSpinCW 3.2s linear infinite, splashOrbitIn 0.6s ease 0.7s forwards;
}
.splash__orbit--2 {
  width: 175px;
  height: 175px;
  animation: splashSpinCCW 5s linear infinite, splashOrbitIn 0.6s ease 0.95s forwards;
}
.splash__orbit--3 {
  width: 216px;
  height: 216px;
  animation: splashSpinCW 8s linear infinite, splashOrbitIn 0.6s ease 1.15s forwards;
}

@keyframes splashSpinCW  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes splashSpinCCW { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes splashOrbitIn { from { opacity: 0; } to { opacity: 1; } }

/* Nodes */
.splash__node {
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 50%;
}
.splash__orbit--1 .splash__node {
  width: 7px;
  height: 7px;
  background: var(--c-aqua);
  margin-left: -3.5px;
  margin-top: -3.5px;
  transform-origin: 3.5px 68.5px;
  box-shadow: 0 0 6px rgba(34, 183, 194, 0.7);
}
.splash__orbit--1 .splash__node:nth-child(1) { transform: rotate(0deg); }
.splash__orbit--1 .splash__node:nth-child(2) { transform: rotate(120deg); }
.splash__orbit--1 .splash__node:nth-child(3) { transform: rotate(240deg); }

.splash__orbit--2 .splash__node {
  width: 5px;
  height: 5px;
  background: var(--c-teal);
  margin-left: -2.5px;
  margin-top: -2.5px;
  transform-origin: 2.5px 90px;
  box-shadow: 0 0 5px rgba(14, 110, 131, 0.6);
}
.splash__orbit--2 .splash__node:nth-child(1) { transform: rotate(0deg); }
.splash__orbit--2 .splash__node:nth-child(2) { transform: rotate(72deg); }
.splash__orbit--2 .splash__node:nth-child(3) { transform: rotate(144deg); }
.splash__orbit--2 .splash__node:nth-child(4) { transform: rotate(216deg); }
.splash__orbit--2 .splash__node:nth-child(5) { transform: rotate(288deg); }

.splash__orbit--3 .splash__node {
  width: 4px;
  height: 4px;
  background: var(--c-mint);
  margin-left: -2px;
  margin-top: -2px;
  transform-origin: 2px 110px;
  box-shadow: 0 0 4px rgba(126, 218, 209, 0.5);
  opacity: 0.7;
}
.splash__orbit--3 .splash__node:nth-child(1) { transform: rotate(0deg); }
.splash__orbit--3 .splash__node:nth-child(2) { transform: rotate(60deg); }
.splash__orbit--3 .splash__node:nth-child(3) { transform: rotate(120deg); }
.splash__orbit--3 .splash__node:nth-child(4) { transform: rotate(180deg); }
.splash__orbit--3 .splash__node:nth-child(5) { transform: rotate(240deg); }
.splash__orbit--3 .splash__node:nth-child(6) { transform: rotate(300deg); }

/* Wordmark */
.splash__wordmark {
  margin-top: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.splash__name {
  font-family: var(--font-brand);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-offwhite);
  display: flex;
}
.splash__name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
}
.splash__name span:nth-child(1) { animation: splashLetterIn 0.4s cubic-bezier(.2,.7,.2,1) 1.00s forwards; }
.splash__name span:nth-child(2) { animation: splashLetterIn 0.4s cubic-bezier(.2,.7,.2,1) 1.07s forwards; }
.splash__name span:nth-child(3) { animation: splashLetterIn 0.4s cubic-bezier(.2,.7,.2,1) 1.14s forwards; }
.splash__name span:nth-child(4) { animation: splashLetterIn 0.4s cubic-bezier(.2,.7,.2,1) 1.21s forwards; }
.splash__name span:nth-child(5) { animation: splashLetterIn 0.4s cubic-bezier(.2,.7,.2,1) 1.28s forwards; }
.splash__name span:nth-child(6) { animation: splashLetterIn 0.4s cubic-bezier(.2,.7,.2,1) 1.35s forwards; }

@keyframes splashLetterIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.splash__line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-aqua), transparent);
  animation: splashLineExpand 0.6s cubic-bezier(.2,.7,.2,1) 1.45s forwards;
}
@keyframes splashLineExpand {
  from { width: 0; opacity: 0; }
  to   { width: 180px; opacity: 1; }
}

.splash__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-teal);
  opacity: 0;
  animation: splashFadeUp 0.5s ease 1.55s forwards;
}
.splash__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(246, 248, 250, 0.4);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: splashFadeUp 0.5s ease 1.75s forwards;
  margin-top: 4px;
}
@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Skip splash for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  #splash { display: none !important; }
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* When mobile menu is open, lock body scroll */
body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--c-aqua); color: var(--c-navy); }

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.container--narrow { max-width: var(--max-narrow); }

.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 88px);
}
.section__head .kicker { justify-content: center; }

/* -------- Type system -------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.kicker__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--c-aqua);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(34, 183, 194, 0.18);
}

.h2 {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}

.grad-text {
  background: linear-gradient(90deg, var(--c-aqua) 0%, var(--c-teal) 60%, var(--c-navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 0 24px;
  font-weight: 400;
}
.lede--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--c-navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--c-teal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.btn--lg { padding: 17px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* -------- Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 250, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 248, 250, 0.95);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

/* Brand: real logo image */
.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__lockup {
  display: block;
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.nav__links {
  display: none;
  gap: 36px;
  font-size: 15px;
  font-weight: 400;
}
.nav__links a {
  color: var(--ink-muted);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--c-navy); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--c-aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: none; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background .2s var(--ease);
  flex-shrink: 0;
}
.nav__toggle:hover { background: rgba(15, 42, 61, 0.06); }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.8px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile menu — properly hidden by default, slides in when open */
.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px clamp(20px, 5vw, 48px) 32px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  animation: slideDown .25s var(--ease);
}
.nav__mobile[hidden] { display: none !important; }

.nav__mobile a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  color: var(--c-navy);
  font-weight: 500;
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.nav__mobile a:hover {
  color: var(--c-aqua);
  padding-left: 6px;
}
.nav__mobile a.btn {
  border-bottom: 0;
  margin-top: 16px;
  padding: 16px 24px;
  text-align: center;
  justify-content: center;
}
.nav__mobile a.btn:hover { padding-left: 24px; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(60px, 10vw, 110px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__glow--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, var(--c-mint) 0%, transparent 70%);
  opacity: 0.4;
}
.hero__glow--2 {
  width: 380px;
  height: 380px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--c-aqua) 0%, transparent 70%);
  opacity: 0.25;
}

.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: clamp(42px, 7.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 18ch;
  color: var(--c-navy);
}
.hero__sub {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 0 36px;
  font-weight: 400;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(56px, 9vw, 96px);
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__metaNum {
  font-family: var(--font-brand);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-navy);
  line-height: 1;
}
.hero__metaLabel {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* -------- Marquee -------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 24px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 80s linear infinite;
}
.marquee__word {
  font-family: var(--font-brand);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--c-navy);
  letter-spacing: -0.005em;
  flex-shrink: 0;
}
.marquee__word--alt {
  color: var(--c-teal);
}
.marquee__mark {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.9;
  display: block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- Two-column grid -------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.who-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.who-list li {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 1.5vw, 22px);
  font-family: var(--font-brand);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-navy);
  transition: color .2s var(--ease), padding-left .25s var(--ease), background .2s var(--ease);
  cursor: default;
}
.who-list li:hover {
  color: var(--c-aqua);
  padding-left: 12px;
}
.who-list__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-aqua);
  letter-spacing: 0.1em;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 24px;
}
.who-list__text {
  flex: 1;
}

/* -------- Fix grid -------- */
.fix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.fix {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.fix:hover {
  transform: translateY(-3px);
  border-color: var(--c-aqua);
  box-shadow: var(--shadow-md);
}
.fix__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-aqua);
  font-weight: 600;
}
.fix__title {
  font-family: var(--font-brand);
  font-size: clamp(20px, 1.8vw, 23px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--c-navy);
}
.fix p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.fix--accent {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-teal) 100%);
  border-color: transparent;
  color: #fff;
}
.fix--accent .fix__num { color: var(--c-mint); font-size: 24px; letter-spacing: 0; }
.fix--accent .fix__title { color: #fff; }
.fix--accent p { color: rgba(255,255,255,0.82); }
.fix--accent:hover { border-color: var(--c-mint); }

/* -------- Tiers / pricing -------- */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tier:hover {
  border-color: var(--c-aqua);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tier--featured {
  background: linear-gradient(160deg, var(--c-navy) 0%, #163446 100%);
  color: #fff;
  border-color: var(--c-navy);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.tier--featured::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(126, 218, 209, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.tier--featured:hover { border-color: var(--c-mint); }
.tier__flag {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--c-aqua);
  color: var(--c-navy);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
}
.tier__head { margin-bottom: 28px; position: relative; z-index: 1; }
.tier__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-weight: 500;
}
.tier--featured .tier__label { color: var(--c-mint); }
.tier__name {
  font-family: var(--font-brand);
  font-size: clamp(28px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.tier__price {
  font-family: var(--font-brand);
  font-size: clamp(40px, 4.8vw, 56px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 8px 0 14px;
}
.tier__price > span:first-child {
  font-size: 0.55em;
  vertical-align: super;
  margin-right: 2px;
  color: var(--ink-soft);
  font-weight: 400;
}
.tier--featured .tier__price > span:first-child { color: var(--c-mint); }
.tier__plus {
  font-family: var(--font-mono) !important;
  font-size: 13px !important;
  letter-spacing: 0.05em;
  vertical-align: middle !important;
  margin-left: 6px;
  margin-right: 0 !important;
  font-weight: 500 !important;
  color: var(--c-aqua) !important;
}
.tier__sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.5;
}
.tier--featured .tier__sub { color: rgba(255,255,255,0.75); }

.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.tier--featured .tier__list { border-top-color: rgba(255,255,255,0.15); }
.tier__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.tier--featured .tier__list li { border-bottom-color: rgba(255,255,255,0.12); }
.tier__list li::before {
  content: "→";
  color: var(--c-aqua);
  flex-shrink: 0;
  font-weight: 600;
}
.tier--featured .tier__list li::before { color: var(--c-mint); }

.tier--featured .btn--primary {
  background: var(--c-aqua);
  color: var(--c-navy);
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.tier--featured .btn--primary:hover {
  background: var(--c-mint);
  color: var(--c-navy);
}

.tiers__note {
  text-align: center;
  margin: 48px auto 0;
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 50ch;
}

/* -------- Process -------- */
.process {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  counter-reset: step;
}
.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(28px, 4vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process__step:last-child { border-bottom: 0; }
.process__num {
  font-family: var(--font-brand);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--c-aqua) 0%, var(--c-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  min-width: 1.5em;
}
.process__body { padding-top: 4px; }
.process__title {
  font-family: var(--font-brand);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--c-navy);
}
.process__title span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: 8px;
  vertical-align: middle;
}
.process__step p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 60ch;
}

/* -------- Why grid -------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 36px);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.why:hover {
  transform: translateY(-3px);
  border-color: var(--c-aqua);
  box-shadow: var(--shadow-md);
}
.why__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--c-aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.why:hover .why__icon {
  background: var(--c-aqua);
  color: #fff;
}
.why h3 {
  font-family: var(--font-brand);
  font-size: clamp(20px, 1.8vw, 23px);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--c-navy);
}
.why p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.65;
}

/* -------- FAQ -------- */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.faq__item {
  border-bottom: 1px solid var(--line-strong);
  padding: 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-brand);
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-navy);
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-brand);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-aqua);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item:hover summary { color: var(--c-aqua); }
.faq__item p {
  margin: 0 0 26px;
  padding-right: 48px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 65ch;
  animation: fadeIn .4s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------- Form -------- */
.section--contact { background: var(--bg); }

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field > span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.form__field > span em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-left: 4px;
}
.form__field input,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg-card);
  color: var(--ink);
  border-radius: var(--radius);
  resize: vertical;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--c-aqua);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.6;
}
.form__honey { position: absolute; left: -10000px; }

.form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.form__note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form__success {
  margin-top: 32px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--c-aqua);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}
.form__success h3 {
  font-family: var(--font-brand);
  font-size: 26px;
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--c-navy);
}
.form__success p { margin: 0; color: var(--ink-muted); }

/* -------- Footer -------- */
.footer {
  background: var(--c-navy);
  color: #fff;
  padding: clamp(60px, 8vw, 88px) 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-aqua), transparent);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__lockup {
  display: block;
  height: 44px;
  width: auto;
}
.footer__line {
  font-family: var(--font-brand);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 32ch;
  line-height: 1.3;
  color: #fff;
}
.footer__line::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-aqua);
  margin-top: 22px;
  border-radius: 2px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
}
.footer__meta a { transition: color .2s var(--ease); }
.footer__meta a:hover { color: var(--c-aqua); }
.footer__sep { color: rgba(255,255,255,0.3); }
.footer__copy {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

/* -------- Reveal animation -------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* =========================================================
   Breakpoints
   ========================================================= */

/* Tablet */
@media (min-width: 720px) {
  .hero__meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .grid-2 { grid-template-columns: 1fr 1.2fr; gap: 80px; }
  .fix-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .form__row { grid-template-columns: 1fr 1fr; }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
}

/* Desktop */
@media (min-width: 960px) {
  body { font-size: 18px; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }

  .fix-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  .tiers { gap: 20px; }
  .tier--featured { transform: translateY(-12px); }
  .tier--featured:hover { transform: translateY(-15px); }

  .nav__lockup { height: 42px; }
  .footer__lockup { height: 52px; }
}

/* Larger desktop */
@media (min-width: 1200px) {
  .hero__title { letter-spacing: -0.03em; }
}
