/* Northing — site styles
   No build step, no dependencies. Edit directly. */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --surface: rgba(9, 12, 20, 0.035);
  --surface-hover: rgba(9, 12, 20, 0.06);
  --border: rgba(9, 12, 20, 0.10);
  --border-strong: rgba(9, 12, 20, 0.18);
  --text: #14161a;
  --text-muted: #5c626d;
  --text-faint: #8a909b;
  --accent: #2C4AE0;
  --accent-soft: rgba(44, 74, 224, 0.10);
  --shadow: 0 1px 2px rgba(9, 12, 20, 0.06), 0 12px 32px rgba(9, 12, 20, 0.07);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1060px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0d11;
    --bg-soft: #101319;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-hover: rgba(255, 255, 255, 0.075);
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.20);
    --text: #f1f3f6;
    --text-muted: #9aa1ad;
    --text-faint: #6f7684;
    --accent: #6A90FF;
    --accent-soft: rgba(106, 144, 255, 0.14);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 16px 40px rgba(0, 0, 0, 0.36);
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 620;
  letter-spacing: -0.015em;
  font-size: 16px;
}

.brand .mark {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: var(--text-muted);
}

.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--text); }

/* ---------- Type ---------- */

h1, h2, h3 { letter-spacing: -0.025em; line-height: 1.15; margin: 0; font-weight: 650; }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.12rem; letter-spacing: -0.015em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lede { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--text-muted); line-height: 1.55; }
.muted { color: var(--text-muted); }
.small { font-size: 0.92rem; }

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-faint);
  margin: 0 0 14px;
}

section { padding: 72px 0; }
section + section { border-top: 1px solid var(--border); }

.section-head { max-width: 620px; margin-bottom: 36px; }
.section-head p { color: var(--text-muted); margin-top: 12px; }

/* ---------- Hero ---------- */

.hero { padding: clamp(72px, 12vw, 128px) 0 clamp(56px, 8vw, 88px); }
.hero-inner { max-width: 760px; }
.hero h1 { margin-bottom: 22px; }
.hero .lede { max-width: 620px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 560;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 88%, #000); }

.btn-ghost { border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface); }

/* ---------- App grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.card {
  display: block;
  position: relative;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

a.card:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }

.app-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex: none;
  object-fit: contain;
}

.app-icon.placeholder {
  display: grid;
  place-items: center;
  font-weight: 650;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.icon-vela { background: linear-gradient(150deg, #2f7cf6, #6f4ff0); }
.icon-recall { background: linear-gradient(150deg, #17a06a, #0f7f8c); }

.card h3 { margin-bottom: 3px; }

.card p { color: var(--text-muted); font-size: 0.96rem; }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  white-space: nowrap;
}

.tag-accent { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 35%, transparent); background: var(--accent-soft); }

/* ---------- Feature list ---------- */

.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.cols h3 { margin-bottom: 8px; }
.cols p { color: var(--text-muted); font-size: 0.97rem; }

.rule-list { list-style: none; margin: 0; padding: 0; }
.rule-list li {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 24px;
}
.rule-list li:last-child { border-bottom: 1px solid var(--border); }
.rule-list strong { font-weight: 600; }
.rule-list span { color: var(--text-muted); font-size: 0.97rem; }

@media (max-width: 640px) {
  .rule-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- App page ---------- */

.app-hero { padding: clamp(52px, 8vw, 88px) 0 44px; }
.app-hero-inner { display: flex; align-items: flex-start; gap: 26px; flex-wrap: wrap; }
.app-hero .app-icon { width: 96px; height: 96px; border-radius: 22px; }
.app-hero .app-icon.placeholder { font-size: 36px; }
.app-hero-text { flex: 1 1 340px; }
.app-hero h1 { font-size: clamp(1.9rem, 4.4vw, 2.7rem); margin-bottom: 12px; }

.backlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.backlink:hover { color: var(--text); }

.note {
  border-left: 2px solid var(--accent);
  padding: 2px 0 2px 16px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.spec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec div { background: var(--bg); padding: 18px 20px; }
.spec dt { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 6px; }
.spec dd { margin: 0; font-size: 0.97rem; }

/* ---------- Timeline ---------- */

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.timeline li:last-child { border-bottom: 1px solid var(--border); }
.timeline .when { color: var(--text-faint); font-size: 0.88rem; font-variant-numeric: tabular-nums; padding-top: 2px; }
.timeline .what strong { font-weight: 600; }
.timeline .what p { color: var(--text-muted); font-size: 0.95rem; margin: 4px 0 0; }

@media (max-width: 640px) {
  .timeline li { grid-template-columns: 1fr; gap: 2px; }
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 60px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: baseline; }
.footer a { color: var(--text-muted); border-bottom: 1px solid transparent; }
.footer a:hover { color: var(--text); border-bottom-color: var(--border-strong); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Utility ---------- */

.stack-lg > * + * { margin-top: 40px; }
.center { text-align: center; }
.max-prose { max-width: 660px; }
code { font-family: var(--mono); font-size: 0.9em; background: var(--surface); padding: 2px 6px; border-radius: 6px; }

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Product pages — glass surfaces, feature sections, scroll reveals
   ========================================================================== */

:root {
  --glass: rgba(255, 255, 255, 0.62);
  --glass-edge: rgba(255, 255, 255, 0.85);
  --glass-shade: rgba(9, 12, 20, 0.06);
  --wash-1: rgba(44, 74, 224, 0.14);
  --wash-2: rgba(106, 144, 255, 0.10);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --glass: rgba(255, 255, 255, 0.045);
    --glass-edge: rgba(255, 255, 255, 0.14);
    --glass-shade: rgba(0, 0, 0, 0.35);
    --wash-1: rgba(106, 144, 255, 0.18);
    --wash-2: rgba(44, 74, 224, 0.14);
  }
}

/* ---------- Scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Product hero ---------- */

.product-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 0 clamp(40px, 6vw, 72px);
  text-align: center;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: -30% 0 auto 0;
  height: 620px;
  background:
    radial-gradient(60% 60% at 50% 20%, var(--wash-1), transparent 70%),
    radial-gradient(40% 40% at 80% 0%, var(--wash-2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.product-hero .app-icon {
  width: clamp(96px, 14vw, 132px);
  height: clamp(96px, 14vw, 132px);
  border-radius: 26%;
  margin: 0 auto 26px;
  box-shadow: 0 18px 50px rgba(9, 12, 20, 0.22), 0 2px 6px rgba(9, 12, 20, 0.12);
}

.product-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 18px;
}

.product-hero .lede { max-width: 640px; margin: 0 auto; }
.product-hero .meta { justify-content: center; margin-top: 22px; }
.product-hero .cta-row { justify-content: center; }

/* ---------- Glass panel ---------- */

.glass {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-edge);
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 20px 50px var(--glass-shade);
}

@media (prefers-color-scheme: dark) {
  .glass { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 24px 60px rgba(0, 0, 0, 0.5); }
}

/* ---------- Spec strip ---------- */

.spec {
  border: none;
  background: none;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
}
.spec div {
  background: var(--surface);
  border: 1px solid var(--border);
  margin: -0.5px;
  padding: 20px 22px;
}

/* ---------- Feature sections ---------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 88px) 0;
}
.feature + .feature { border-top: 1px solid var(--border); }
.feature:nth-child(even) .feature-text { order: 2; }

.feature-text h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  letter-spacing: -0.022em;
  margin-bottom: 14px;
}
.feature-text p { color: var(--text-muted); font-size: 1.02rem; }
.feature-text .kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 650;
  color: var(--accent);
  margin-bottom: 10px;
}

@media (max-width: 780px) {
  .feature { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-text { order: 0; }
}

/* ---------- Illustrative app figure ---------- */

.shot {
  border-radius: 18px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-edge);
  box-shadow: 0 24px 60px var(--glass-shade);
  transition: transform 0.5s var(--ease-out);
}
.shot:hover { transform: translateY(-4px); }

.shot-chrome {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 60%, transparent);
}
.shot-chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-strong);
}
.shot-body { padding: 18px; display: grid; gap: 12px; min-height: 190px; }

.bar { height: 10px; border-radius: 999px; background: var(--surface-hover); }
.bar.accent { background: color-mix(in srgb, var(--accent) 55%, transparent); }
.bar.w80 { width: 80%; } .bar.w60 { width: 60%; } .bar.w40 { width: 40%; } .bar.w25 { width: 25%; }
.row { display: flex; gap: 10px; align-items: center; }
.chip {
  font-size: 0.68rem; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text-muted); white-space: nowrap;
}
.chip.on { background: var(--accent-soft); color: var(--accent); border-color: color-mix(in srgb, var(--accent) 35%, transparent); }
.tile { border-radius: 10px; background: var(--surface-hover); }

.figure-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 10px;
  text-align: center;
}

/* ---------- Steps ---------- */

.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 0.82rem; font-weight: 650;
}
.step strong { display: block; margin-bottom: 3px; }
.step span { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Closing CTA ---------- */

.closer {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(56px, 8vw, 96px) 0;
}
.closer::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 100%, var(--wash-1), transparent 70%);
  pointer-events: none;
}
.closer > * { position: relative; }

/* ---------- Card polish on the home grid ---------- */

a.card { overflow: hidden; }
a.card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, var(--wash-2), transparent 70%);
  opacity: 0; transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
a.card:hover::after { opacity: 1; }

/* ---------- Home hero wash ---------- */

.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 700px;
  background:
    radial-gradient(50% 55% at 25% 25%, var(--wash-1), transparent 70%),
    radial-gradient(40% 45% at 85% 10%, var(--wash-2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

/* ==========================================================================
   2026 visual direction — editorial product storytelling
   ========================================================================== */

:root {
  --ink: #090b10;
  --cream: #f7f7f4;
  --hairline: rgba(17, 20, 28, 0.09);
  --spring: cubic-bezier(.2, .8, .2, 1);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 34rem),
    var(--bg);
}

.nav {
  border-bottom-color: color-mix(in srgb, var(--border) 72%, transparent);
  background: color-mix(in srgb, var(--bg) 74%, transparent);
}

.nav-inner { height: 64px; }
.nav-links a { transition: color .2s ease; }
.brand .mark { filter: drop-shadow(0 5px 10px color-mix(in srgb, var(--accent) 28%, transparent)); }
.nav.is-scrolled { box-shadow: 0 10px 35px rgba(9,12,20,.06); }

.btn {
  min-height: 46px;
  padding-inline: 22px;
  transition: transform .25s var(--spring), box-shadow .25s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 24%, transparent); }
.btn-primary:hover { box-shadow: 0 14px 32px color-mix(in srgb, var(--accent) 32%, transparent); }
.btn-glass {
  color: var(--text);
  border-color: var(--glass-edge);
  background: var(--glass);
  box-shadow: inset 0 1px rgba(255,255,255,.5), 0 10px 24px var(--glass-shade);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
}

/* ---------- Home hero ---------- */

.home-hero {
  min-height: min(850px, calc(100svh - 64px));
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 120px) 0;
  isolation: isolate;
}

.home-hero::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--accent) 6%, transparent), transparent 43%),
    radial-gradient(ellipse at 78% 34%, rgba(108, 145, 255, .17), transparent 38%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 6.4vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 680;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero-copy .lede { max-width: 610px; font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: var(--text-faint); font-size: .78rem; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .65; }

.ambient-orb { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; z-index: 0; animation: float-orb 12s ease-in-out infinite alternate; }
.orb-one { width: 300px; height: 300px; top: 10%; right: 12%; background: rgba(88, 129, 255, .11); }
.orb-two { width: 220px; height: 220px; right: 40%; bottom: 5%; background: rgba(88, 214, 173, .08); animation-delay: -5s; }
@keyframes float-orb { to { transform: translate3d(30px, -22px, 0) scale(1.08); } }

.hero-stage { position: relative; perspective: 1200px; }
.stage-glow {
  position: absolute; inset: 12% 8%; border-radius: 40%;
  background: linear-gradient(135deg, rgba(79, 111, 255, .34), rgba(85, 214, 190, .18));
  filter: blur(70px); opacity: .7;
}
.app-shelf {
  position: relative;
  padding: 14px 18px 22px;
  border-radius: 30px;
  transform: rotateY(-5deg) rotateX(2deg);
  box-shadow: inset 0 1px rgba(255,255,255,.68), 0 42px 90px rgba(8, 11, 20, .18);
  animation: shelf-float 8s ease-in-out infinite;
}
@keyframes shelf-float { 50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-8px); } }
.shelf-top { display: flex; align-items: center; gap: 6px; height: 28px; color: var(--text-faint); }
.shelf-top > span { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
.shelf-top small { margin-left: auto; margin-right: auto; font-size: .68rem; letter-spacing: .08em; }
.shelf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px; border-radius: 22px; background: color-mix(in srgb, var(--bg) 48%, transparent); border: 1px solid var(--glass-edge); }
.shelf-grid a { display: grid; place-items: center; gap: 8px; padding: 18px 6px 14px; border-radius: 18px; font-size: .72rem; color: var(--text-muted); transition: transform .3s var(--spring), background .2s ease; }
.shelf-grid a:hover { transform: translateY(-5px) scale(1.03); background: var(--surface-hover); }
.shelf-grid img, .mini-placeholder { width: 64px; height: 64px; border-radius: 16px; object-fit: contain; box-shadow: 0 12px 24px rgba(8,10,18,.18); }
.mini-placeholder { display: grid; place-items: center; color: #fff; font-size: 1.2rem; font-weight: 700; }
.shelf-caption { display: flex; justify-content: center; align-items: center; gap: 8px; padding-top: 17px; color: var(--text-faint); font-size: .7rem; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4bd180; box-shadow: 0 0 0 4px rgba(75,209,128,.12); }

/* ---------- Product collection ---------- */

#apps { padding-block: clamp(88px, 10vw, 140px); background: color-mix(in srgb, var(--bg-soft) 70%, var(--bg)); }
.product-heading { max-width: 780px; margin-bottom: 58px; }
.product-heading h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.02; letter-spacing: -.045em; }
.product-heading > p:last-child { font-size: 1.05rem; margin-top: 20px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

.product-card {
  --card-accent: var(--accent);
  --pointer-x: 50%;
  --pointer-y: 20%;
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--glass-edge);
  background:
    radial-gradient(circle at 92% 0, color-mix(in srgb, var(--card-accent) 20%, transparent), transparent 34%),
    color-mix(in srgb, var(--bg) 80%, var(--bg-soft));
  box-shadow: 0 18px 50px rgba(9,12,20,.07), inset 0 1px rgba(255,255,255,.55);
  transition: transform .55s var(--spring), box-shadow .55s var(--spring), border-color .25s ease;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--pointer-x) var(--pointer-y), color-mix(in srgb, var(--card-accent) 13%, transparent), transparent 56%);
  transition: opacity .35s ease;
}
.product-card:hover::after { opacity: 1; }
.product-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--card-accent) 26%, var(--glass-edge)); box-shadow: 0 34px 80px rgba(9,12,20,.14), inset 0 1px rgba(255,255,255,.7); }
.product-card-copy { padding: clamp(26px, 4vw, 42px); position: relative; z-index: 2; }
.product-card .card-head { margin-bottom: 22px; }
.product-card .app-icon { width: 66px; height: 66px; border-radius: 17px; box-shadow: 0 10px 24px rgba(9,12,20,.16); }
.product-card h3 { font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -.035em; }
.product-card p { max-width: 570px; color: var(--text-muted); font-size: 1.02rem; line-height: 1.55; }
.learn-more { display: inline-flex; align-items: center; gap: 8px; color: var(--card-accent); font-size: .92rem; font-weight: 620; margin-top: 7px; }
.learn-more span { transition: transform .25s var(--spring); }
.product-card:hover .learn-more span { transform: translateX(5px); }
.card-wide { grid-column: 1 / -1; min-height: 540px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; }
.card-wide .card-preview { align-self: stretch; }

.theme-morph { --card-accent: #6e64f4; }
.theme-cellar { --card-accent: #d57e35; }
.theme-sweep { --card-accent: #38a99f; }
.theme-isle { --card-accent: #ac6af0; }
.theme-vela { --card-accent: #4d7cf3; }
.theme-recall { --card-accent: #1b9a7a; }
.theme-bellrock { --card-accent: #e45866; }

.card-preview { min-height: 265px; margin: auto 20px 20px; display: grid; place-items: center; position: relative; }
.card-preview::before { content: ""; position: absolute; inset: 10% 12%; background: var(--card-accent); opacity: .15; filter: blur(48px); border-radius: 50%; }
.preview-window {
  position: relative; width: min(100%, 520px); padding: 13px; border-radius: 20px;
  color: #f8f9fc; background: rgba(20, 22, 30, .9); border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 60px rgba(9,10,18,.3), inset 0 1px rgba(255,255,255,.12);
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  transform: translateY(18px) rotateX(2deg); transition: transform .65s var(--spring);
}
.product-card:hover .preview-window { transform: translateY(4px) rotateX(0); }
.preview-toolbar { display: flex; align-items: center; gap: 6px; padding: 2px 2px 13px; font-size: .66rem; color: rgba(255,255,255,.48); }
.preview-toolbar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.24); }
.preview-toolbar span { margin-left: auto; margin-right: auto; }
.drop-zone { min-height: 144px; display: grid; place-content: center; text-align: center; border: 1px dashed rgba(255,255,255,.22); border-radius: 13px; background: linear-gradient(145deg, color-mix(in srgb, var(--card-accent) 18%, transparent), rgba(255,255,255,.025)); }
.drop-zone strong { font-size: .88rem; }
.drop-zone small { color: rgba(255,255,255,.5); font-size: .65rem; margin-top: 5px; }
.preview-action { display: flex; align-items: center; gap: 10px; padding-top: 12px; font-size: .64rem; color: rgba(255,255,255,.5); }
.preview-action b { color: #fff; }
.preview-action em { margin-left: auto; padding: 7px 10px; font-style: normal; border-radius: 8px; color: #fff; background: var(--card-accent); }

.preview-cellar .preview-window { display: grid; gap: 9px; padding: 18px; }
.search-pill, .address-pill, .recall-search { border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.09); padding: 10px 12px; font-size: .68rem; color: rgba(255,255,255,.56); }
.package-row { display: flex; justify-content: space-between; padding: 9px 2px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .72rem; }
.package-row span { color: rgba(255,255,255,.44); }
.preview-cellar code { color: #f4a55f; background: #111318; font-size: .62rem; padding: 10px; }
.scan-score { padding: 22px 6px 8px; font-size: 2.5rem; font-weight: 690; letter-spacing: -.05em; }
.scan-score small { font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.5); }
.meter { height: 9px; margin: 8px 6px 24px; border-radius: 9px; overflow: hidden; background: rgba(255,255,255,.08); }
.meter i { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--card-accent), #79e6d9); }

.preview-isle { min-height: 410px; margin: 0; }
.desktop-scene { position: relative; width: 94%; height: 80%; min-height: 350px; border-radius: 25px; overflow: hidden; background: linear-gradient(140deg, #8268df 0%, #e7a1c5 50%, #efc97e 100%); box-shadow: 0 35px 75px rgba(20,16,40,.28); }
.desktop-scene::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.38), transparent 28%); }
.notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 330px; height: 64px; border-radius: 0 0 22px 22px; background: #050506; display: flex; align-items: center; gap: 12px; padding: 9px 16px; color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.notch .album { width: 38px; height: 38px; border-radius: 9px; background: linear-gradient(135deg,#8b55df,#e788a8); }
.notch b { font-size: .68rem; font-weight: 580; }
.notch b small { display: block; color: rgba(255,255,255,.52); font-size: .58rem; font-weight: 450; }
.notch i { margin-left: auto; font-style: normal; font-size: .56rem; color: #b279ff; letter-spacing: 2px; }
.isle-progress { position: absolute; top: 72px; left: 50%; transform: translateX(-50%); width: 260px; height: 4px; background: rgba(0,0,0,.25); border-radius: 5px; }
.isle-progress span { display: block; width: 62%; height: 100%; background: #050506; border-radius: inherit; }

.tab-strip { display: flex; gap: 6px; padding: 3px 0 10px; font-size: .58rem; color: rgba(255,255,255,.55); }
.tab-strip span { flex: 1; padding: 7px; border-radius: 7px; background: rgba(255,255,255,.06); }
.tab-strip i { font-style: normal; padding: 7px; }
.address-pill { text-align: center; padding: 7px; }
.web-page { display: grid; gap: 7px; place-content: center; min-height: 120px; text-align: center; }
.web-page b { font-size: 1rem; }
.web-page span { color: #79a1ff; font-size: .62rem; }
.preview-recall { align-content: center; gap: 12px; width: min(90%, 500px); }
.recall-search { position: relative; width: 100%; padding: 15px 18px; color: rgba(255,255,255,.86); background: rgba(16,20,25,.88); box-shadow: 0 24px 55px rgba(9,12,20,.25); }
.memory-result { position: relative; display: grid; padding: 18px; border-radius: 16px; color: #f4f7f8; background: rgba(23,29,32,.84); box-shadow: 0 18px 42px rgba(9,12,20,.18); }
.memory-result small, .memory-result span { color: rgba(255,255,255,.46); font-size: .62rem; }
.memory-result b { font-size: .78rem; margin-block: 5px; }
.phone-frame { position: relative; width: 250px; height: 360px; padding: 40px 22px 22px; border-radius: 38px 38px 0 0; background: #12151d; color: #fff; box-shadow: 0 35px 70px rgba(9,12,20,.32); transform: translateY(28px); }
.phone-island { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 70px; height: 20px; border-radius: 14px; background: #000; }
.phone-frame > small { color: #fa7884; letter-spacing: .1em; font-size: .55rem; }
.phone-frame h4 { font-size: 1.35rem; letter-spacing: -.04em; line-height: 1.12; margin: 10px 0 24px; }
.sparkline { display: flex; align-items: end; gap: 7px; height: 100px; }
.sparkline i { flex: 1; height: 30%; border-radius: 5px 5px 2px 2px; background: rgba(228,88,102,.35); }
.sparkline i:nth-child(2) { height: 42%; }.sparkline i:nth-child(3) { height: 34%; }.sparkline i:nth-child(4) { height: 63%; }.sparkline i:nth-child(5) { height: 79%; }.sparkline i:nth-child(6) { height: 92%; background: #e45866; }
.phone-frame > span { display: block; color: rgba(255,255,255,.48); font-size: .62rem; margin-top: 12px; }

/* ---------- Product detail refinements ---------- */

.product-page { --product: var(--accent); }
.product-page.theme-morph { --product: #7466f2; --wash-1: rgba(116,102,242,.22); }
.product-page.theme-cellar { --product: #cf7830; --wash-1: rgba(207,120,48,.2); }
.product-page.theme-sweep { --product: #2aa99d; --wash-1: rgba(42,169,157,.2); }
.product-page.theme-isle { --product: #a464e9; --wash-1: rgba(164,100,233,.22); }
.product-page.theme-vela { --product: #527cf2; --wash-1: rgba(82,124,242,.22); }
.product-page.theme-recall { --product: #159674; --wash-1: rgba(21,150,116,.2); }
.product-page.theme-bellrock { --product: #df5966; --wash-1: rgba(223,89,102,.2); }
.product-page .product-hero { min-height: 690px; display: grid; align-items: center; padding-top: clamp(70px,8vw,105px); }
.product-page .product-hero::before { height: 760px; background: radial-gradient(55% 58% at 50% 20%, var(--wash-1), transparent 70%), radial-gradient(34% 35% at 82% 12%, var(--wash-2), transparent 70%); }
.product-page .product-hero h1 { font-size: clamp(3.2rem, 8vw, 6.4rem); letter-spacing: -.06em; line-height: .94; }
.product-page .product-hero .lede { max-width: 760px; font-size: clamp(1.12rem,2vw,1.4rem); text-wrap: balance; }
.product-page .product-hero .app-icon { width: clamp(108px,13vw,144px); height: clamp(108px,13vw,144px); }
.product-page .tag-accent, .product-page .feature-text .kicker { color: var(--product); }
.product-page .btn-primary, .product-page .step::before { background: var(--product); }

.showcase-wrap { padding-top: 0; border: 0; }
.showcase-stage { position: relative; padding: clamp(20px,4vw,54px); border-radius: 36px; overflow: hidden; background: linear-gradient(145deg, color-mix(in srgb, var(--product) 18%, var(--bg-soft)), color-mix(in srgb, var(--bg) 88%, var(--product))); }
.showcase-stage::before { content: ""; position: absolute; width: 420px; height: 420px; right: -8%; top: -35%; border-radius: 50%; background: color-mix(in srgb, var(--product) 24%, transparent); filter: blur(55px); }
.showcase-stage .shot { position: relative; max-width: 850px; margin: 0 auto; }
.showcase-label { position: relative; display: flex; justify-content: space-between; margin-top: 16px; color: var(--text-faint); font-size: .75rem; }

.product-page .feature { gap: clamp(42px,7vw,94px); padding-block: clamp(70px,10vw,120px); }
.product-page .feature-text h3 { font-size: clamp(1.8rem,3.7vw,3rem); letter-spacing: -.045em; line-height: 1.04; text-wrap: balance; }
.product-page .feature-text p { font-size: 1.06rem; line-height: 1.7; }
.product-page .shot { border-radius: 25px; border-color: color-mix(in srgb, var(--glass-edge) 78%, var(--product)); box-shadow: 0 30px 80px rgba(9,12,20,.14); }
.product-page .shot-body { min-height: 280px; padding: 24px; align-content: center; background: radial-gradient(circle at 90% 5%, color-mix(in srgb, var(--product) 12%, transparent), transparent 42%); }
.product-page .chip.on, .product-page .bar.accent { color: var(--product); background-color: color-mix(in srgb, var(--product) 17%, transparent); border-color: color-mix(in srgb, var(--product) 32%, transparent); }
.product-page .figure-note { font-size: .72rem; letter-spacing: .02em; }

.usage-section { background: color-mix(in srgb, var(--bg-soft) 72%, var(--bg)); }
.usage-intro { max-width: 650px; margin-bottom: 34px; }
.usage-intro h2 { font-size: clamp(2.2rem,4.5vw,3.6rem); letter-spacing: -.045em; }
.steps { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; counter-reset: step; }
.step { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border-radius: 24px; background: var(--glass); border-color: var(--glass-edge); box-shadow: inset 0 1px rgba(255,255,255,.5), 0 18px 45px var(--glass-shade); }
.step::before { flex: none; width: 34px; height: 34px; }
.step strong { font-size: 1.05rem; margin-bottom: 8px; }
.step span { line-height: 1.55; }
.under-panel { padding: clamp(30px,5vw,56px); border-radius: 30px; background: radial-gradient(circle at 100% 0, color-mix(in srgb, var(--product) 15%, transparent), transparent 38%), var(--surface); border: 1px solid var(--border); }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-copy .cta-row, .hero-proof { justify-content: center; }
  .hero-stage { width: min(620px, 92%); margin: 8px auto 0; }
  .home-hero { min-height: auto; }
  .card-wide { grid-template-columns: 1fr; }
  .card-wide .card-preview { min-height: 350px; }
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; }
  .product-card { min-height: 570px; border-radius: 28px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 160px; }
  .product-page .product-hero { min-height: 610px; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .nav-links { gap: 14px; font-size: 14px; }
  .nav-links a:last-child { display: none; }
  .hero-copy h1 { font-size: clamp(2.75rem,14vw,4.1rem); }
  .shelf-grid { gap: 5px; padding: 9px; }
  .shelf-grid a { padding: 13px 2px 10px; }
  .shelf-grid img, .mini-placeholder { width: 52px; height: 52px; border-radius: 13px; }
  .product-card-copy { padding: 25px; }
  .desktop-scene { min-height: 300px; }
  .notch { width: 270px; }
  .card-wide .card-preview { min-height: 320px; }
  .product-page .feature { padding-block: 64px; }
  .product-page .shot-body { min-height: 235px; }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-orb, .app-shelf { animation: none !important; }
}

/* ==========================================================================
   Quiet modern theme — simple, neutral, and content first
   ========================================================================== */

:root {
  --bg: #fbfbfa;
  --bg-soft: #f3f3f1;
  --surface: #ffffff;
  --surface-hover: #f5f5f3;
  --border: rgba(24, 25, 28, 0.10);
  --border-strong: rgba(24, 25, 28, 0.18);
  --text: #18191c;
  --text-muted: #666970;
  --text-faint: #8b8e95;
  --accent: #345edb;
  --accent-soft: rgba(52, 94, 219, 0.09);
  --glass: rgba(255, 255, 255, 0.82);
  --glass-edge: rgba(24, 25, 28, 0.10);
  --glass-shade: rgba(24, 25, 28, 0.06);
  --shadow: 0 14px 38px rgba(24, 25, 28, 0.07);
  --font: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --maxw: 1080px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101114;
    --bg-soft: #15161a;
    --surface: #18191d;
    --surface-hover: #1e2025;
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #f5f5f2;
    --text-muted: #b0b2b8;
    --text-faint: #7c8089;
    --accent: #8ca7ff;
    --accent-soft: rgba(140, 167, 255, 0.12);
    --glass: rgba(24, 25, 29, 0.86);
    --glass-edge: rgba(255, 255, 255, 0.11);
    --glass-shade: rgba(0, 0, 0, 0.24);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  }
}

body {
  background: var(--bg);
  font-size: 16.5px;
  line-height: 1.62;
}

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.032em;
}

.nav {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.nav.is-scrolled { box-shadow: 0 8px 24px rgba(20, 21, 25, 0.045); }
.brand { font-weight: 600; }
.brand .mark { filter: none; }
.nav-links { color: var(--text-muted); }

.eyebrow {
  font-size: .73rem;
  letter-spacing: .095em;
  font-weight: 600;
  color: var(--text-faint);
}

.lede { color: var(--text-muted); }

.btn {
  min-height: 44px;
  padding: 10px 19px;
  font-weight: 600;
  box-shadow: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary,
.product-page .btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: none;
}
.btn-primary:hover,
.product-page .btn-primary:hover {
  background: color-mix(in srgb, var(--text) 86%, var(--bg));
  box-shadow: none;
}
.btn-ghost,
.btn-glass {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.btn-ghost:hover,
.btn-glass:hover { background: var(--surface-hover); }

[data-reveal] {
  transform: translateY(10px);
  transition-duration: .48s;
}

/* ---------- Simple homepage ---------- */

.home-hero {
  min-height: auto;
  display: block;
  padding: clamp(96px, 12vw, 150px) 0 clamp(82px, 10vw, 126px);
  border-bottom: 1px solid var(--border);
}
.home-hero::before { display: none; }
.hero-simple { max-width: 820px; }
.hero-simple h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.hero-simple .lede {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

#apps {
  padding-block: clamp(78px, 9vw, 112px);
  background: var(--bg);
}
.product-heading { max-width: 650px; margin-bottom: 42px; }
.product-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.product-heading > p:last-child { margin-top: 14px; font-size: 1rem; }

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.product-card,
.card-wide {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: none;
  transform: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.product-card::after { display: none; }
.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.product-card-copy { padding: 28px 28px 16px; }
.product-card .card-head { margin-bottom: 18px; }
.product-card .app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: 0 7px 18px rgba(20, 21, 25, .12);
}
.product-card h3 { font-size: 1.55rem; letter-spacing: -.03em; }
.product-card p { font-size: .96rem; line-height: 1.6; }
.learn-more {
  color: var(--accent);
  font-size: .88rem;
  font-weight: 600;
}
.product-card:hover .learn-more span { transform: translateX(3px); }
.card-preview,
.card-wide .card-preview {
  width: auto;
  min-height: 235px;
  margin: auto 16px 16px;
  padding: 14px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.card-preview::before { display: none; }
.preview-window {
  transform: none;
  width: 100%;
  border-radius: 14px;
  box-shadow: none;
  transition: none;
}
.product-card:hover .preview-window { transform: none; }
.preview-isle { min-height: 235px; margin: auto 16px 16px; }
.desktop-scene {
  width: 100%;
  height: 215px;
  min-height: 215px;
  border-radius: 14px;
  box-shadow: none;
}
.notch { width: min(270px, 82%); }
.phone-frame {
  width: 178px;
  height: 255px;
  border-radius: 28px 28px 0 0;
  padding: 34px 17px 16px;
  box-shadow: none;
  transform: translateY(18px);
}
.phone-frame h4 { font-size: 1rem; margin-bottom: 14px; }
.sparkline { height: 65px; gap: 5px; }

#approach,
#contact { background: var(--bg); }

/* ---------- Quieter product pages ---------- */

.product-page .product-hero {
  min-height: auto;
  padding: clamp(82px, 10vw, 124px) 0 clamp(68px, 8vw, 96px);
}
.product-page .product-hero::before {
  height: 520px;
  opacity: .45;
  background: radial-gradient(52% 55% at 50% 18%, var(--wash-1), transparent 72%);
}
.product-page .product-hero h1 {
  font-size: clamp(3rem, 7vw, 4.9rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.product-page .product-hero .app-icon {
  width: clamp(96px, 12vw, 124px);
  height: clamp(96px, 12vw, 124px);
}
.showcase-stage {
  padding: clamp(18px, 3vw, 36px);
  border-radius: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.showcase-stage::before { display: none; }
.product-page .feature {
  gap: clamp(36px, 6vw, 72px);
  padding-block: clamp(62px, 8vw, 88px);
}
.product-page .feature-text h3 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.product-page .feature-text p { font-size: 1rem; line-height: 1.7; }
.product-page .shot {
  border-radius: 18px;
  border-color: var(--border);
  box-shadow: 0 14px 34px var(--glass-shade);
}
.product-page .shot-body {
  min-height: 250px;
  background: var(--surface);
}
.usage-section { background: var(--bg-soft); }
.usage-intro h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -.04em;
}
.step {
  min-height: 190px;
  border-radius: 18px;
  background: var(--surface);
  border-color: var(--border);
  box-shadow: none;
}
.product-page .step::before { background: var(--text); color: var(--bg); }
.under-panel {
  border-radius: 20px;
  background: var(--surface);
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .card-wide { min-height: 480px; }
  .hero-simple h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
}

/* ==========================================================================
   Balanced theme — restrained personality with a compact app grid
   ========================================================================== */

.home-hero {
  position: relative;
  min-height: min(720px, calc(100svh - 64px));
  display: grid;
  align-items: center;
  padding: clamp(82px, 9vw, 118px) 0;
  overflow: hidden;
}
.home-hero::before {
  display: block;
  inset: 0;
  height: auto;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--accent) 5%, transparent), transparent 46%),
    radial-gradient(ellipse at 78% 38%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 38%);
  opacity: .9;
}
.balanced-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  gap: clamp(56px, 9vw, 116px);
}
.balanced-hero .hero-copy h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.8vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 600;
}
.balanced-hero .hero-copy .lede {
  max-width: 590px;
  font-size: clamp(1.04rem, 1.65vw, 1.2rem);
  line-height: 1.65;
}
.balanced-hero .hero-proof {
  gap: 15px;
  margin-top: 28px;
  color: var(--text-muted);
}
.ambient-orb {
  display: block;
  filter: blur(30px);
  animation: none;
  opacity: .42;
}
.orb-one {
  width: 260px;
  height: 260px;
  top: 12%;
  right: 13%;
  background: color-mix(in srgb, var(--accent) 20%, transparent);
}
.orb-two {
  width: 180px;
  height: 180px;
  right: 38%;
  bottom: 6%;
  background: rgba(72, 184, 155, .10);
}
.hero-mark-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
}
.hero-mark-card {
  position: relative;
  z-index: 2;
  width: min(330px, 88%);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  background: color-mix(in srgb, var(--glass) 90%, transparent);
  border-color: var(--glass-edge);
  box-shadow: 0 28px 70px var(--glass-shade), inset 0 1px rgba(255,255,255,.42);
}
.hero-mark-card svg {
  width: 118px;
  height: 118px;
  margin-bottom: 20px;
  color: var(--accent);
}
.hero-mark-card strong {
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -.025em;
}
.hero-mark-card span {
  margin-top: 4px;
  color: var(--text-faint);
  font-size: .78rem;
}
.mark-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 365px; height: 365px; }
.orbit-two { width: 430px; height: 220px; transform: rotate(-28deg); opacity: .55; }

#apps { background: var(--bg-soft); }
.product-heading { max-width: 760px; }
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.product-card,
.card-wide {
  min-height: 300px;
  display: flex;
  grid-column: auto;
  border-radius: 20px;
  background:
    radial-gradient(230px circle at 100% 0%, color-mix(in srgb, var(--card-accent) 12%, transparent), transparent 68%),
    var(--surface);
}
.product-card::after {
  display: block;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  opacity: .72;
  background: linear-gradient(90deg, var(--card-accent), transparent 75%);
}
.product-card:hover::after { opacity: 1; }
.product-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--card-accent) 25%, var(--border));
}
.product-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.product-card .card-head { margin-bottom: 18px; }
.product-card .app-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
}
.product-card h3 { font-size: 1.4rem; }
.product-card p {
  margin-bottom: 20px;
  font-size: .9rem;
  line-height: 1.58;
}
.product-card .learn-more { margin-top: auto; }
.home-page .card-preview { display: none; }

/* Return a little color and depth to the detail pages, without the spectacle. */
.product-page .product-hero::before {
  opacity: .72;
  background:
    radial-gradient(52% 58% at 50% 18%, var(--wash-1), transparent 72%),
    radial-gradient(26% 30% at 78% 14%, var(--wash-2), transparent 72%);
}
.showcase-stage {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--product) 7%, var(--bg-soft)), var(--bg-soft));
}
.product-page .shot-body {
  background:
    radial-gradient(circle at 92% 5%, color-mix(in srgb, var(--product) 8%, transparent), transparent 44%),
    var(--surface);
}
.step {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--product) 4%, var(--surface)), var(--surface));
}

@media (max-width: 1050px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .balanced-hero { grid-template-columns: 1fr; }
  .balanced-hero .hero-copy { text-align: center; }
  .balanced-hero .hero-copy .lede { margin-inline: auto; }
  .balanced-hero .hero-copy .cta-row,
  .balanced-hero .hero-proof { justify-content: center; }
  .hero-mark-stage { min-height: 310px; }
  .hero-mark-card { width: min(280px, 78%); }
  .hero-mark-card svg { width: 92px; height: 92px; }
  .orbit-one { width: 310px; height: 310px; }
  .orbit-two { width: 360px; height: 185px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .home-hero { min-height: auto; }
  .balanced-hero .hero-copy h1 { font-size: clamp(2.7rem, 12.5vw, 3.8rem); }
  .hero-mark-stage { min-height: 270px; }
  .hero-mark-card { width: 235px; border-radius: 28px; }
  .hero-mark-card svg { width: 78px; height: 78px; }
  .orbit-one { width: 260px; height: 260px; }
  .orbit-two { width: 295px; height: 150px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .card-wide { min-height: 260px; }
}

/* ---------- Real product captures ---------- */

.product-capture {
  padding-top: clamp(30px, 5vw, 62px);
  padding-bottom: clamp(64px, 9vw, 110px);
}
.capture-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 46px);
}
.capture-heading h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.capture-heading .lede {
  max-width: 620px;
  margin-top: 14px;
  font-size: 1.02rem;
}
.capture-stage {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 0%, color-mix(in srgb, var(--product) 13%, transparent), transparent 38%),
    var(--bg-soft);
  box-shadow: 0 28px 74px rgba(22, 28, 38, .11);
}
.capture-stage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(9, 12, 20, .2);
}
.capture-stage figcaption {
  padding: 14px 4px 1px;
  color: var(--text-faint);
  font-size: .76rem;
  line-height: 1.5;
  text-align: center;
}
.capture-compact img {
  box-shadow: none;
}
.capture-portrait {
  display: grid;
  justify-items: center;
  padding: clamp(24px, 5vw, 60px);
}
.capture-portrait img {
  width: min(390px, 78vw);
  border-radius: 42px;
}
.capture-portrait figcaption {
  max-width: 560px;
}

@media (max-width: 560px) {
  .capture-stage { padding: 8px; border-radius: 18px; }
  .capture-stage img { border-radius: 11px; }
  .capture-stage figcaption { padding: 12px 8px 4px; }
  .capture-portrait { padding: 22px 12px; }
  .capture-portrait img { width: min(330px, 82vw); border-radius: 34px; }
}
