/* ==========================================================================
   Sikanest — shared stylesheet for sikanest.com
   Loaded by / and /early-access/. Palette follows the app's constants/colors.ts:
   the site commits to the light look in every viewer theme — deep pine appears
   only as brand accents, never as a page ground.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------
   Self-hosted variable subsets from Google Fonts. The latin-ext faces are NOT
   optional: the cedi sign ₵ (U+20B5) lives in U+20AD-20C0 and appears in every
   currency figure on the page.
   ------------------------------------------------------------------------- */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/fonts/sora-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/instrument-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/instrument-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens -------------------------------------------------------------- */
:root {
  /* ground */
  --bg: #FBFCF9;
  --bg-tint: #F3F6F1;
  --card: #FFFFFF;
  --line: #E7ECE6;          /* decorative dividers */
  --line-strong: #D7DFD6;   /* card + control borders */
  --wash: #F6F8F5;          /* inset rows inside cards */

  /* ink — greys are contrast-corrected against the design's raw values:
     #8B988F (2.92) and #9AA79E (2.43) both fail AA as body text. */
  --ink: #0D1F17;
  --ink-2: #5B6B62;         /* 5.48 on --bg */
  --ink-3: #647268;         /* 4.92 on --bg — replaces #8B988F / #9AA79E for text */
  --ink-decor: #9AA79E;     /* rules and icon strokes ONLY, never text */

  /* brand */
  --green: #0E5940;
  --green-hover: #0B3D2E;
  --green-accent: #0E7A5A;
  --green-wash: #E9F3EE;
  --pine: #0B3D2E;
  --pine-2: #0E5940;
  --pine-ink: #EAF3EE;
  --pine-muted: #9DBFAF;    /* 6.10 on pine */
  --mint: #7FDCB4;

  --gold: #C9A227;          /* surfaces and borders */
  --gold-hi: #EBD48A;
  --gold-ink: #241C05;      /* text ON gold — 6.98 */
  --gold-text: #7A6114;     /* gold AS text on light — 5.75 */
  --gold-wash: #F5EEDA;

  --red: #B0483C;
  --red-wash: #FBF6F5;
  --red-line: #F0E2DF;

  /* focus — the old gold ring was 2.35 and failed WCAG 1.4.11 */
  --focus: #0B3D2E;
  --focus-on-pine: #EBD48A;

  /* geometry */
  --wrap: 1180px;
  --pad: 24px;
  --sec-y: 90px;
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --pill: 999px;
  --nav-h: 62px;

  --shadow: 0 24px 60px -28px rgba(13, 31, 23, 0.28);
  --shadow-soft: 0 14px 40px -24px rgba(13, 31, 23, 0.22);
  --shadow-card: 0 30px 60px -40px rgba(13, 31, 23, 0.25);

  --font-display: 'Sora', 'Avenir Next', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Instrument Sans', 'Helvetica Neue', Arial, system-ui, sans-serif;

  color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-hover); }

::selection { background: #DCEEE4; }

/* The sticky nav would otherwise swallow every anchor target. */
[id] { scroll-margin-top: calc(var(--nav-h) + 18px); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.4);
}
.on-pine :focus-visible { outline-color: var(--focus-on-pine); box-shadow: 0 0 0 5px rgba(11, 61, 46, 0.55); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--pine); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600; font-size: 15px;
}
.skip:focus { left: 0; color: #fff; }

/* --- Layout utilities ---------------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); width: 100%; }
.section { padding: var(--sec-y) 0; }
.section--tint { background: var(--bg-tint); border-top: 1px solid #E9EEE8; border-bottom: 1px solid #E9EEE8; }
.section--narrow { max-width: 780px; margin: 0 auto; }
.center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

/* --- Type utilities ------------------------------------------------------ */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--green-accent); text-transform: uppercase;
}
.h2 { font-size: clamp(1.75rem, 3.2vw, 2.25rem); font-weight: 700; line-height: 1.15; text-wrap: balance; }
.h3 { font-size: 19px; font-weight: 700; line-height: 1.3; }
.h4 { font-size: 16px; font-weight: 700; line-height: 1.35; }
.lede { font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 60ch; }
.fine { font-size: 12.5px; color: var(--ink-3); line-height: 1.6; }
.label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }
.num { font-family: var(--font-display); font-variant-numeric: tabular-nums; }

.section-head .h2 { margin-top: 12px; }
.section-head .lede { margin-top: 12px; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  border-radius: 13px; padding: 15px 26px; border: 1px solid transparent;
  cursor: pointer; text-align: center;
  transition: background-color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-hover); color: #fff; transform: translateY(-1px); }
.btn--outline { background: var(--card); border-color: var(--line-strong); color: var(--ink); font-weight: 600; }
.btn--outline:hover { border-color: var(--green); color: var(--green); }
.btn--gold { background: var(--gold); color: var(--gold-ink); }
.btn--gold:hover { background: #D9B237; color: var(--gold-ink); transform: translateY(-1px); }
.btn--sm { font-size: 13.5px; padding: 10px 18px; border-radius: 11px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.65; cursor: default; transform: none; }

/* --- Small components ---------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid #DCE5DD; background: var(--card); border-radius: var(--pill);
  padding: 7px 14px; font-size: 12.5px; font-weight: 600; color: var(--green);
}
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }

.badge {
  position: absolute; top: -12px; left: 26px;
  background: var(--gold); color: var(--gold-ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  border-radius: var(--pill); padding: 4px 12px;
}

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
}
.card__icon {
  width: 44px; height: 44px; border-radius: 13px; background: var(--green-wash);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.card__icon--sm { width: 36px; height: 36px; border-radius: 10px; }

.ticks { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.tick { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-2); }
.tick svg { flex: none; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--pine); color: #DFF0E8;
  font-size: 12.5px; font-weight: 500;
}
html[data-ann='off'] .announce { display: none; }
.announce__in {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 9px 44px 9px 16px; text-align: center; position: relative;
}
.announce a { color: var(--gold-hi); font-weight: 700; }
.announce a:hover { color: #fff; }
.announce__x {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: var(--pine-muted); cursor: pointer;
  width: 28px; height: 28px; line-height: 1; font-size: 17px; border-radius: 8px;
}
.announce__x:hover { color: #fff; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 252, 249, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: var(--bg); }
}
.nav__in { display: flex; align-items: center; gap: 28px; padding: 13px var(--pad); min-height: var(--nav-h); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 34px; width: auto; }
.nav__spacer { flex: 1; }
.nav__links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 500; }
.nav__links a { color: #374842; }
.nav__links a:hover { color: var(--green); }
.nav__cta { flex: none; }
.nav__burger { display: none; }
.nav__back { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav__back:hover { color: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */
/* These sections are also `.wrap`, so the shorthand must keep --pad on the
   sides or the container loses its gutter below 1180px. */
.hero { padding: 68px var(--pad) 34px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 {
  font-size: clamp(2.5rem, 4.4vw, 3.375rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.06; margin: 22px 0 18px;
  text-wrap: balance;
}
.hero__lede { font-size: 17.5px; line-height: 1.65; color: var(--ink-2); max-width: 520px; margin-bottom: 28px; }
.hero__ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero .ticks { margin-top: 22px; }

/* The dl/dd defaults matter here: without them zeroed the UA sheet indents each
   label 40px, so it sits adrift of the figure it belongs to. */
.stats { display: flex; gap: 44px; margin: 34px 0 0; padding-top: 24px; border-top: 1px solid var(--line); }
.stats__n { font-family: var(--font-display); font-weight: 700; font-size: 22px; font-variant-numeric: tabular-nums; }
.stats__l { font-size: 12.5px; color: var(--ink-3); margin: 2px 0 0; }
.stats__l--first { margin-top: 0; padding-top: 0; padding-bottom: 0; text-align: left; }

/* Stage — the phone plus its two floating cards.
   The floats are pinned to .stage__inner (phone width), never to .stage, or
   they drift into the gutters at intermediate widths. */
.stage { position: relative; height: 648px; display: flex; justify-content: center; align-items: center; }
.stage__glow {
  position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  width: 460px; height: 460px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, #E3EFE6 0%, rgba(227, 239, 230, 0) 70%);
}
.stage__inner { position: relative; width: 296px; }
.phone-shot {
  position: relative; z-index: 2; display: block;
  width: 296px; height: auto;
  filter: drop-shadow(0 44px 90px -34px rgba(11, 61, 46, 0.5));
}

.phone {
  position: relative; z-index: 2; width: 296px; height: 600px;
  background: #101B15; border-radius: 48px; padding: 10px;
  box-shadow: 0 44px 90px -34px rgba(11, 61, 46, 0.5);
}
.phone__screen {
  background: #F6F7F4; border-radius: 38px; overflow: hidden;
  height: 100%; display: flex; flex-direction: column;
}
.phone__status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 22px 4px; font-family: var(--font-display);
  font-weight: 600; font-size: 12px; color: var(--ink);
}
.phone__status span:last-child { display: flex; gap: 4px; align-items: center; }
.phone__batt { width: 14px; height: 9px; border-radius: 2px; border: 1px solid #66756C; }
.phone__batt2 { width: 3px; height: 9px; border-radius: 1px; background: #66756C; }
.phone__body { padding: 8px 13px 0; display: flex; flex-direction: column; gap: 9px; flex: 1; min-height: 0; }

.pm-greet { display: flex; align-items: center; gap: 8px; }
.pm-avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--pine); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px; flex: none;
}
.pm-greet__hi { font-size: 9.5px; color: #66756C; }
.pm-greet__name { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; }
.pm-bell {
  width: 27px; height: 27px; border-radius: 9px; background: #fff; border: 1px solid #E3E8E2;
  display: flex; align-items: center; justify-content: center; position: relative; flex: none;
}
.pm-bell__dot { position: absolute; top: 5px; right: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.pm-balance {
  background: var(--pine); border-radius: 18px; padding: 13px 14px;
  color: #fff; position: relative; overflow: hidden;
}
.pm-balance__ring { position: absolute; right: -28px; top: -28px; width: 110px; height: 110px; border-radius: 50%; border: 20px solid rgba(255, 255, 255, 0.05); }
.pm-balance__cap { font-size: 9.5px; color: rgba(255, 255, 255, 0.62); }
.pm-balance__amt { font-family: var(--font-display); font-weight: 700; font-size: 25px; letter-spacing: -0.02em; margin: 3px 0 5px; font-variant-numeric: tabular-nums; }
.pm-balance__amt small { font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.pm-balance__delta {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(201, 162, 39, 0.18); border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--pill); padding: 3px 8px; font-size: 9px; color: var(--gold-hi); font-weight: 600;
}
.pm-balance__split { display: flex; gap: 7px; margin-top: 9px; }
.pm-balance__split > div { flex: 1; background: rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 6px 8px; }
.pm-balance__split span { display: block; font-size: 8px; color: rgba(255, 255, 255, 0.6); }
.pm-balance__split b { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; }

.pm-survival { background: var(--pine-2); border-radius: 18px; padding: 12px 14px; color: #fff; }
.pm-survival__top { display: flex; justify-content: space-between; align-items: center; font-size: 9.5px; }
.pm-survival__top span { color: rgba(255, 255, 255, 0.65); }
.pm-survival__top b { color: var(--gold-hi); font-weight: 700; }
.pm-survival__bar { position: relative; height: 7px; border-radius: var(--pill); background: rgba(255, 255, 255, 0.14); margin-top: 8px; }
.pm-survival__fill { width: 65%; height: 7px; border-radius: var(--pill); background: linear-gradient(90deg, #2FA37B, #E0B23E); }
.pm-survival__now { position: absolute; left: 84%; top: -3px; width: 2px; height: 13px; background: #fff; border-radius: 2px; }
.pm-survival__note { font-size: 9px; color: var(--gold-hi); font-weight: 600; margin-top: 7px; }

.pm-quick { display: flex; gap: 7px; }
.pm-quick > div {
  flex: 1; background: #fff; border: 1px solid #E3E8E2; border-radius: var(--r-sm);
  padding: 8px 4px; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.pm-quick span { font-size: 9px; font-weight: 600; color: #374842; }

.pm-row {
  background: #fff; border: 1px solid #E3E8E2; border-radius: 13px;
  padding: 9px 11px; display: flex; align-items: center; gap: 8px;
}
.pm-row__icon {
  width: 28px; height: 28px; border-radius: 9px; background: var(--gold-wash);
  display: flex; align-items: center; justify-content: center; flex: none;
  font-family: var(--font-display); font-weight: 700; font-size: 10px; color: #8A6D14;
}
.pm-row__t { font-family: var(--font-display); font-weight: 600; font-size: 10.5px; }
.pm-row__s { font-size: 9px; color: var(--ink-3); }
.pm-row__amt { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; }
.pm-coach { align-items: flex-start; }
.pm-coach__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-accent); margin-top: 4px; flex: none; }
.pm-coach b { font-family: var(--font-display); font-weight: 700; font-size: 10px; color: var(--green); }
.pm-coach span { font-size: 10px; color: var(--ink-2); line-height: 1.45; }

.pm-tabs {
  border-top: 1px solid #E3E8E2; background: #fff;
  display: flex; justify-content: space-between; align-items: center; padding: 8px 20px 14px;
}
.pm-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pm-tab span:last-child { font-size: 8px; color: var(--ink-3); }
.pm-tab--on span:last-child { color: var(--green); font-weight: 700; }
.pm-tab__ico { width: 16px; height: 16px; border: 2px solid var(--ink-decor); border-radius: 4px; }
.pm-tab--on .pm-tab__ico { background: var(--green); border-color: var(--green); border-radius: 5px; }
.pm-tab__ico--round { border-radius: 50%; }
.pm-tab__ico--chat { border-radius: 5px 5px 5px 1px; }
.pm-tab__ico--pie {
  border-radius: 50%;
  background: conic-gradient(var(--ink-decor) 0deg 140deg, transparent 140deg 360deg);
}
.pm-tab--on .pm-tab__ico--pie {
  background: conic-gradient(#fff 0deg 140deg, var(--green) 140deg 360deg);
  border-color: var(--green);
}
.pm-fab {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 600; margin-top: -14px;
  box-shadow: 0 8px 16px -6px rgba(14, 89, 64, 0.5);
}

.float {
  position: absolute; z-index: 3; pointer-events: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 26px 54px -26px rgba(13, 31, 23, 0.28); padding: 13px 14px;
}
.float--coach { right: -103px; top: 224px; width: 222px; }
.float--sms { left: -115px; bottom: 92px; width: 232px; display: flex; align-items: center; gap: 9px; padding: 12px 13px; }
.float__head { display: flex; align-items: center; gap: 7px; }
.float__head img { height: 20px; width: 20px; border-radius: 6px; }
.float__head b { font-family: var(--font-display); font-weight: 700; font-size: 12px; }
.float__head time { flex: none; font-size: 10px; color: var(--ink-3); margin-left: auto; }
.float__msg { font-size: 12.5px; line-height: 1.5; color: #374842; margin-top: 8px; }
.float__acts { display: flex; gap: 8px; margin-top: 10px; }
.float__acts span:first-child { background: var(--green); color: #fff; border-radius: 9px; padding: 6px 12px; font-size: 11.5px; font-weight: 700; }
.float__acts span:last-child { border: 1px solid var(--line-strong); color: var(--ink-2); border-radius: 9px; padding: 6px 12px; font-size: 11.5px; font-weight: 600; }
.float__ico { width: 30px; height: 30px; border-radius: 10px; background: var(--green-wash); display: flex; align-items: center; justify-content: center; flex: none; }
.float__t { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; }
.float__s { font-size: 10.5px; color: var(--ink-3); margin-top: 1px; }
.float__tag { background: var(--green-wash); color: var(--green-accent); font-size: 9.5px; font-weight: 700; border-radius: var(--pill); padding: 3px 8px; flex: none; }

@media (prefers-reduced-motion: no-preference) {
  @keyframes wFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
  .float--coach { animation: wFloat 7s ease-in-out infinite; }
  .float--sms { animation: wFloat 8s ease-in-out 1.2s infinite; }
}

/* ==========================================================================
   Networks strip
   ========================================================================== */
.networks { padding: 26px var(--pad) 72px; text-align: center; }
.networks__label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; }
.networks__row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 44px; margin-top: 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #6D7B72;
}
.networks__note { font-size: 12px; color: var(--ink-3); margin-top: 14px; }

/* ==========================================================================
   Features
   ========================================================================== */
.features__grid { margin-top: 44px; }
.feature { display: flex; flex-direction: column; gap: 14px; }
.feature p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.feature__demo { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

.capture-row {
  display: flex; align-items: center; gap: 9px;
  background: var(--wash); border: 1px solid #EDF1EC; border-radius: 10px;
  padding: 9px 12px; font-size: 12.5px; font-weight: 600; color: #374842;
}
.capture-row svg { flex: none; }

.bubble { max-width: 86%; padding: 9px 12px; font-size: 12.5px; line-height: 1.5; }
.bubble--me { align-self: flex-end; background: var(--green); color: #fff; border-radius: 14px 14px 4px 14px; }
.bubble--them { align-self: flex-start; background: #F1F4F0; color: #2E3B34; border-radius: 14px 14px 14px 4px; }

.meter__top { display: flex; justify-content: space-between; font-size: 11.5px; font-weight: 600; margin-bottom: 5px; }
.meter__top span:last-child { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.meter__track { height: 6px; border-radius: var(--pill); background: #EFF3EF; }
.meter__fill { height: 6px; border-radius: var(--pill); background: var(--green); }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps { margin-top: 44px; }
.step__n {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--green);
  color: var(--green); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; flex: none;
}
.step h3 { font-size: 18px; margin: 16px 0 8px; }
.step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* ==========================================================================
   Screens
   ========================================================================== */
.screens { padding: 20px var(--pad) var(--sec-y); text-align: center; }
.screens__row { display: flex; justify-content: center; gap: 26px; margin-top: 44px; }
.screens figure { margin: 0; }
.screens figcaption { font-size: 13px; font-weight: 600; color: var(--ink-3); margin-top: 14px; }
.phone--sm {
  width: 250px; height: 520px; background: #101B15; border-radius: 36px; padding: 8px;
  box-shadow: 0 30px 60px -30px rgba(11, 61, 46, 0.4);
}
.phone--sm .phone__screen { border-radius: 29px; }
.phone--sm > .shot { width: 100%; height: 100%; border-radius: 29px; overflow: hidden; background: #F6F7F4; }
.phone--sm .shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.screens figure:nth-child(2) .phone--sm { margin-top: 28px; }

/* ==========================================================================
   Tools
   ========================================================================== */
.tools__grid { margin-top: 44px; gap: 18px; }
.tool { padding: 22px; border-radius: var(--r); }
.tool h3 { font-size: 16px; margin: 12px 0 6px; }
.tool p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ==========================================================================
   Security
   ========================================================================== */
.sec__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.sec-tile { background: #F4F7F3; border-radius: 14px; padding: 15px 16px; display: flex; gap: 10px; align-items: flex-start; }
.sec-tile svg { flex: none; margin-top: 1px; }
.sec-tile b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.sec-tile span { display: block; font-size: 13px; color: var(--ink-2); margin-top: 3px; line-height: 1.5; }

.datacard {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-card);
}
.datacard__head {
  background: var(--pine); color: #fff; padding: 18px 24px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.datacard__body { padding: 22px 24px; }
.datacard h3 { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-accent); }
.datacard h3 + ul { margin-top: 12px; }
.datacard h3.is-deny { color: var(--red); margin-top: 20px; }
.datacard ul { display: flex; flex-direction: column; gap: 8px; }
.datarow {
  display: flex; align-items: center; gap: 10px;
  background: #F4F9F6; border: 1px solid #DFEDE5; border-radius: 11px;
  padding: 10px 13px; font-size: 13.5px; font-weight: 500; color: #2E3B34;
}
.datarow svg { flex: none; }
.datarow--deny { background: var(--red-wash); border-color: var(--red-line); color: var(--ink-2); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.tiers { display: flex; justify-content: center; align-items: stretch; gap: 22px; margin-top: 44px; }
.tier {
  width: 340px; background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; padding: 30px; text-align: left;
  display: flex; flex-direction: column; position: relative;
}
.tier--hi { border: 1.5px solid var(--green); box-shadow: 0 24px 50px -30px rgba(14, 89, 64, 0.35); }
.tier__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.tier__price { margin: 14px 0 6px; }
.tier__price b { font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.02em; }
.tier__price span { font-size: 14px; color: var(--ink-3); }
.tier__sub { font-size: 13.5px; color: var(--ink-3); }
.tier__save { font-size: 13px; color: var(--green-accent); font-weight: 600; }
.tier__rule { height: 1px; background: #EDF1EC; margin: 20px 0; }
.tier ul { display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: #374842; }
.tier li { display: flex; gap: 9px; align-items: flex-start; }
.tier li svg { flex: none; margin-top: 2px; }
.tier .btn { margin-top: 24px; }
.tier__spacer { flex: 1; }
.pricing__fine { margin-top: 20px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { margin-top: 36px; display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 2px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ''; }
.faq__ind { flex: none; font-size: 20px; color: var(--green); font-weight: 600; line-height: 1; }
.faq__ind::after { content: '+'; }
.faq__item[open] .faq__ind::after { content: '\2212'; }
.faq__a { font-size: 15px; color: var(--ink-2); line-height: 1.65; padding: 0 2px 20px; max-width: 660px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta { padding: 10px var(--pad) var(--sec-y); }
.cta__panel {
  background: var(--pine); border-radius: var(--r-xl); padding: 64px 32px;
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta__panel > * { position: relative; }
.cta__ring1 { position: absolute; right: -70px; top: -80px; width: 240px; height: 240px; border-radius: 50%; border: 34px solid rgba(255, 255, 255, 0.05); }
.cta__ring2 { position: absolute; left: -60px; bottom: -90px; width: 220px; height: 220px; border-radius: 50%; border: 1.5px solid rgba(201, 162, 39, 0.35); }
.cta h2 { font-size: clamp(1.6rem, 3vw, 2.125rem); font-weight: 700; line-height: 1.2; text-wrap: balance; }
.cta__lede { font-size: 15.5px; color: rgba(255, 255, 255, 0.7); margin: 14px 0 28px; }
.cta__fine { font-size: 12px; color: var(--pine-muted); margin-top: 16px; }

.form-inline { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.form-inline .field {
  width: 280px; background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 13px;
  color: #fff; padding: 14px 16px; font: inherit; font-size: 14.5px;
}
.form-inline .field::placeholder { color: rgba(255, 255, 255, 0.5); }
.form-inline .field:focus { outline: none; border-color: var(--gold-hi); }
.form-msg { margin-top: 16px; font-size: 15px; font-weight: 600; color: var(--gold-hi); }
.form-msg--err { color: #FFC9C2; font-weight: 500; font-size: 13.5px; }
.form-err { display: none; }
.form-err.show { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.foot { border-top: 1px solid var(--line); }
.foot__in { padding: 56px var(--pad) 28px; }
.foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.foot__brand img { height: 30px; width: auto; }
.foot__brand p { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; max-width: 260px; margin-top: 14px; }
.foot__col { display: flex; flex-direction: column; gap: 10px; }
.foot__col h3 { font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }
.foot__col ul { display: flex; flex-direction: column; gap: 10px; }
.foot__col a { font-size: 14px; color: #374842; }
.foot__col a:hover { color: var(--green); }
.foot__base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 20px; border-top: 1px solid #EDF1EC;
  font-size: 12.5px; color: var(--ink-3);
}

/* ==========================================================================
   /early-access/ page
   ========================================================================== */
.ea-body { min-height: 100vh; display: flex; flex-direction: column; }
.ea-main { flex: 1; display: flex; align-items: center; padding: 56px 0 72px; }
.ea-chip {
  display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold-text); background: #FBF3DC;
  border: 1px solid rgba(201, 162, 39, 0.35); padding: 6px 12px;
  border-radius: var(--pill); margin-bottom: 22px;
}
.ea-main h1 { font-size: clamp(2.2rem, 4.8vw, 3.4rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; text-wrap: balance; }
.ea-main .lede { font-size: clamp(1.02rem, 1.6vw, 1.15rem); margin-top: 16px; }
.ea-points { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.ea-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink); }
.ea-points .tick-ico {
  flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--green-wash); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
}
.ea-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; box-shadow: var(--shadow);
}
.ea-card h2 { font-size: 21px; font-weight: 700; margin: 0 0 6px; }
.ea-card .sub { font-size: 14.5px; color: var(--ink-2); margin-bottom: 22px; }
.ea-card label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.ea-field {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 13px 16px; transition: border-color 0.15s ease;
}
.ea-field:focus { outline: none; border-color: var(--green); }
.ea-card .btn { margin-top: 16px; border-radius: var(--pill); }
.ea-error { display: none; font-size: 13.5px; color: #B0483C; margin-top: 12px; }
.ea-error.show { display: block; }
.ea-card .fine { margin-top: 14px; }
.ea-done { display: none; text-align: center; padding: 12px 0 4px; }
.ea-done.show { display: block; }
.ea-done .mark {
  width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--green-wash); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.ea-done p { font-size: 14.5px; color: var(--ink-2); }
/* Post-signup app download buttons — shown only when links are configured. */
.store-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.ea-foot { border-top: 1px solid var(--line); padding: 22px 0; }
.ea-foot .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ea-foot span { font-size: 12.5px; color: var(--ink-3); }

/* ==========================================================================
   Scroll reveals — opt-in, and only when motion is welcome. Without JS the
   `js` class is never set, so everything renders visible.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  html.js .rv { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
  html.js .rv.in { opacity: 1; transform: none; }
  html.js .rv.d1 { transition-delay: 80ms; }
  html.js .rv.d2 { transition-delay: 160ms; }
  html.js .rv.d3 { transition-delay: 240ms; }
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Between the container's max width and the point where the hero stacks, the
   right column is narrower than the phone plus its two floats. Pull them in
   rather than letting them push a horizontal scrollbar onto the page. */
@media (min-width: 1021px) and (max-width: 1180px) {
  .float--coach { right: -58px; }
  .float--sms { left: -66px; }
}

@media (max-width: 1020px) {
  :root { --sec-y: 70px; }

  .nav__links { gap: 18px; font-size: 14px; }

  .hero { padding: 48px var(--pad) 24px; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__lede { max-width: none; }
  .stage { order: 2; height: auto; padding: 32px 0 24px; }
  .stage__glow { width: 400px; height: 400px; top: 0; }

  .features__grid { grid-template-columns: 1fr; }
  .feature { max-width: 620px; margin: 0 auto; width: 100%; }

  .steps { gap: 20px; }

  .screens__row { gap: 18px; }
  .phone--sm { width: 210px; height: 437px; border-radius: 32px; }
  .phone--sm .phone__screen, .phone--sm > .shot { border-radius: 26px; }
  .screens figure:nth-child(2) .phone--sm { margin-top: 0; }

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

  .split { grid-template-columns: 1fr; gap: 40px; }

  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --sec-y: 64px; --pad: 20px; }

  /* Nav → drawer */
  .nav__in { flex-wrap: wrap; gap: 12px; }
  .nav__burger {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; width: 42px; height: 42px; flex: none;
    background: var(--card); border: 1px solid var(--line-strong);
    border-radius: 11px; cursor: pointer; color: var(--ink);
  }
  .nav__spacer { display: none; }
  .nav__links, .nav__cta {
    display: none; width: 100%;
  }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    border-top: 1px solid var(--line); padding-top: 6px;
    max-height: calc(100dvh - 120px); overflow-y: auto;
  }
  .nav.is-open .nav__links a { padding: 13px 2px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__cta { display: block; padding: 14px 0 6px; }
  .nav.is-open .nav__cta .btn { width: 100%; }

  .hero h1 { font-size: clamp(2rem, 8vw, 3.375rem); }
  .hero__lede { font-size: 16.5px; }
  .hero__ctas .btn { flex: 1 1 auto; }
  .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 20px 24px; }
  .float { display: none; }
  .phone, .phone-shot { width: min(296px, calc(100vw - 56px)); }
  .stage__inner { width: min(296px, calc(100vw - 56px)); }
  .stage__glow { width: 320px; height: 320px; }

  .networks { padding: 20px var(--pad) 56px; }
  .networks__row { gap: 12px 26px; font-size: 15px; }

  .steps, .grid-3 { grid-template-columns: 1fr; }
  .step__n { width: 32px; height: 32px; font-size: 14px; }

  /* Three 520px frames stacked is 1600px of dead scroll — snap-scroll instead. */
  .screens__row {
    justify-content: flex-start; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 0 0 8px; margin: 44px 0 0;
    scrollbar-width: none;
  }
  .screens__row::-webkit-scrollbar { display: none; }
  .screens figure { scroll-snap-align: center; flex: none; }
  .phone--sm { width: 232px; height: 483px; }

  .tools__grid { grid-template-columns: 1fr; }
  .sec__tiles { grid-template-columns: 1fr; }

  .tiers { flex-direction: column; align-items: center; gap: 18px; }
  .tier { width: 100%; max-width: 420px; }

  .faq__q { font-size: 15.5px; }

  .cta__panel { border-radius: var(--r-lg); padding: 44px 22px; }
  .form-inline { flex-direction: column; align-items: stretch; }
  .form-inline .field, .form-inline .btn { width: 100%; }

  .foot__grid { grid-template-columns: 1fr; gap: 30px; }
  .foot__brand { grid-column: auto; }
  .foot__base { margin-top: 32px; }

  .ea-main { padding: 40px 0 56px; align-items: flex-start; }
  .ea-card { padding: 26px 22px; }
}

@media (max-width: 480px) {
  .networks__row { gap: 10px 20px; font-size: 14px; }
  .stats { gap: 16px; }
  .cta__panel { padding: 38px 18px; }
}
