/* FieldFlow marketing site. Dark, quiet luxury. Hero pattern after 21st.dev "SaaS Template" (waleedkibhen),
   bento mechanics after 21st.dev "Bento Grid" (kokonutd), rebuilt in plain CSS. */

:root {
  --bg: #07070b;
  --bg-2: #0c0c13;
  --bg-3: #11111a;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --ink: #f3efe6;
  --ink-2: #b3afa6;
  --ink-3: #948f86;
  --gold: #d6b98a;
  --gold-2: #efdcb4;
  --gold-dim: rgba(214, 185, 138, 0.16);
  --blue: #4f8cff;
  --violet: #7a5cff;
  --red: #ff5f6d;
  --green: #4ade80;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: #1a1408; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: #1a1408; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

.wrap { width: min(var(--max), 100% - 40px); margin-inline: auto; }
.section { padding-block: clamp(80px, 10vw, 140px); position: relative; }
.section.tight { padding-block: clamp(56px, 7vw, 96px); }
.section.alt { background: linear-gradient(180deg, transparent, var(--bg-2) 20%, var(--bg-2) 80%, transparent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  font-weight: 600;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.8; }
.h2 { font-size: clamp(34px, 4.6vw, 58px); margin-top: 18px; max-width: 18ch; }
.h2.wide { max-width: 26ch; }
.h3 { font-size: clamp(24px, 2.6vw, 34px); }
.lead { font-size: clamp(17px, 1.35vw, 20px); color: var(--ink-2); max-width: 62ch; margin-top: 22px; }
.body { color: var(--ink-2); max-width: 66ch; }
.body + .body { margin-top: 18px; }
.center { text-align: center; }
.center .h2, .center .lead, .center .body { margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.mt-1 { margin-top: 16px; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 44px; } .mt-4 { margin-top: 64px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 15px; line-height: 1;
  border: 1px solid transparent; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 55%, #b9995f);
  color: #1a1408;
  box-shadow: 0 10px 30px -12px rgba(214, 185, 138, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(214, 185, 138, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.45); }
.btn-ghost { background: var(--surface); border-color: var(--line-2); color: var(--ink); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.28); transform: translateY(-2px); }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.micro { font-size: 13.5px; color: #a8a39a; line-height: 1.55; }
.micro + .micro { margin-top: 6px; }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, padding 0.35s;
  padding-block: 18px;
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
}
.nav.scrolled { background: rgba(7, 7, 11, 0.72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-color: var(--line); padding-block: 10px; padding-top: calc(10px + env(safe-area-inset-top, 0px)); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 21px; letter-spacing: -0.01em; }
.logo-mark { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1408; font-weight: 700; font-family: var(--sans); font-size: 15px; box-shadow: 0 6px 18px -8px rgba(214, 185, 138, 0.8); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color 0.2s; position: relative; white-space: nowrap; }
@media (max-width: 1180px) { .nav-links { gap: 20px; } .nav-cta .btn-ghost { display: none; } }
@media (max-width: 980px) { .nav-links { display: none; } .nav-cta .btn-primary { display: none; } .burger { display: grid; } }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface); place-items: center; }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 2.5px 0; transition: transform 0.3s, opacity 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 64px 0 auto 0; z-index: 49; background: rgba(7, 7, 11, 0.96); border-bottom: 1px solid var(--line); padding: 20px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 6px; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; }

/* Hero */
.hero { position: relative; padding-top: clamp(140px, 17vw, 200px); padding-bottom: 40px; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(122, 92, 255, 0.14), transparent 60%),
    radial-gradient(700px 400px at 70% 10%, rgba(214, 185, 138, 0.10), transparent 60%),
    linear-gradient(180deg, #0a0a12, var(--bg) 70%);
}
.hero-grid { position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%);
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift { from { background-position: 0 0, 0 0; } to { background-position: 0 64px, 64px 0; } }
.orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(70px); opacity: 0.55; pointer-events: none; animation: float 16s ease-in-out infinite; }
.orb-a { width: 460px; height: 460px; left: -140px; top: 120px; background: rgba(79, 140, 255, 0.28); }
.orb-b { width: 380px; height: 380px; right: -120px; top: 260px; background: rgba(214, 185, 138, 0.22); animation-delay: -6s; }
@keyframes float { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-30px) } }

.hero-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; border-radius: 999px;
  border: 1px solid rgba(214, 185, 138, 0.35); background: rgba(214, 185, 138, 0.08); backdrop-filter: blur(6px);
  font-size: 13px; color: var(--gold-2);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(214, 185, 138, 0.2); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(214, 185, 138, 0.2) } 50% { box-shadow: 0 0 0 8px rgba(214, 185, 138, 0.06) } }
.hero .eyebrow { margin-top: 26px; }
.h1 {
  margin-top: 22px; font-size: clamp(38px, 5.6vw, 76px); max-width: 17ch; letter-spacing: -0.035em; line-height: 1.02;
  background: linear-gradient(180deg, #fffdf8 0%, #f3efe6 45%, rgba(243, 239, 230, 0.55) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h1 em { font-style: italic; font-weight: 400; background: linear-gradient(90deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { max-width: 66ch; font-size: clamp(17px, 1.5vw, 21px); }
.hero .cta-row { justify-content: center; margin-top: 34px; }
.hero-micro { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
.scarcity { margin-top: 26px; max-width: 60ch; font-size: 14px; color: var(--ink-2); }
.scarcity b { color: var(--gold-2); font-weight: 600; }

.mock-wrap { position: relative; width: min(1080px, 100%); margin: 64px auto 0; perspective: 1400px; }
.mock-glow { position: absolute; inset: -12% -8% auto -8%; height: 70%; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 40%, rgba(122, 92, 255, 0.35), transparent 70%), radial-gradient(40% 50% at 30% 30%, rgba(79, 140, 255, 0.3), transparent 70%), radial-gradient(40% 50% at 75% 30%, rgba(214, 185, 138, 0.25), transparent 70%);
  filter: blur(40px); }
.mock {
  position: relative; border-radius: 16px; overflow: hidden; background: #0e0e15;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: rotateX(6deg) translateY(0); transform-origin: 50% 0;
  transition: transform 0.9s var(--ease);
}
.mock-wrap:hover .mock { transform: rotateX(0deg); }
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #14141d; border-bottom: 1px solid var(--line); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a2a36; display: block; }
.mock-bar i:nth-child(1) { background: #ff5f57 } .mock-bar i:nth-child(2) { background: #febc2e } .mock-bar i:nth-child(3) { background: #28c840 }
.mock-url { margin-left: 10px; flex: 1; font-size: 12px; color: var(--ink-3); background: #0e0e15; border-radius: 6px; padding: 5px 10px; text-align: center; }
.mock img { width: 100%; }
.mock-fade { position: absolute; inset: auto 0 0 0; height: 30%; background: linear-gradient(180deg, transparent, var(--bg)); pointer-events: none; }
.mock-caption { text-align: center; margin-top: 16px; }

.proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.proof li { padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-size: 14px; color: var(--ink-2); line-height: 1.5; position: relative; }
.proof li::before { content: ""; display: block; width: 28px; height: 2px; background: var(--gold); margin-bottom: 14px; opacity: 0.9; }

/* Agitation */
.story { font-size: clamp(17px, 1.3vw, 19px); color: var(--ink-2); }
.story p + p { margin-top: 18px; }
.story .time { font-family: var(--serif); color: var(--gold); font-size: 1.05em; }
.pullquote { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); border-left: 2px solid var(--gold); padding-left: 24px; }
.list-x li, .list-check li { position: relative; padding-left: 30px; color: var(--ink-2); }
.list-x li + li, .list-check li + li { margin-top: 12px; }
.list-x li::before { content: "×"; position: absolute; left: 0; top: -2px; color: var(--red); font-weight: 700; font-size: 18px; }
.list-check li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.sticky { position: sticky; top: 110px; }
.cost-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cost-card { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.cost-card h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.cost-card p { font-size: 14.5px; color: var(--ink-2); }
.cost-card .n { font-family: var(--serif); font-size: 44px; color: var(--gold); line-height: 1; margin-bottom: 14px; }

/* Ledger visual */
.ledger { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); padding: 26px; position: relative; overflow: hidden; }
.ledger::after { content: ""; position: absolute; inset: auto 0 0 0; height: 90px; background: linear-gradient(180deg, transparent, var(--bg-2)); }
.ledger-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.ledger-head b { color: var(--gold); font-weight: 600; }
.ev { display: grid; grid-template-columns: 58px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; }
.ev:first-of-type { border-top: 0; }
.ev .t { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.ev .k { color: var(--ink); font-weight: 500; }
.ev .d { color: var(--ink-2); font-size: 13.5px; margin-top: 2px; }
.ev .tag { display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 999px; margin-left: 8px; vertical-align: middle; border: 1px solid var(--line-2); color: var(--ink-2); }
.ev .tag.red { border-color: rgba(255, 95, 109, 0.4); color: #ff8b95; }
.ev .tag.amber { border-color: rgba(251, 191, 36, 0.4); color: #ffd27a; }
.ev .tag.green { border-color: rgba(74, 222, 128, 0.4); color: #8af0ad; }
.ev.live .k::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: 8px; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.15); }
.clock-line { margin-top: 26px; padding: 18px 20px; border-radius: var(--radius-sm); background: var(--gold-dim); border: 1px solid rgba(214, 185, 138, 0.3); color: var(--gold-2); font-family: var(--serif); font-size: 18px; }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(230px, auto); gap: 14px; margin-top: 56px; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 26px;
  border: 1px solid var(--line); background: var(--bg-3);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  display: flex; flex-direction: column; gap: 12px; min-height: 230px;
}
.tile:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(214, 185, 138, 0.12); }
.tile::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 5px 5px; }
.tile:hover::before { opacity: 1; }
.tile::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; opacity: 0; transition: opacity 0.35s;
  background: linear-gradient(135deg, rgba(214, 185, 138, 0.5), transparent 40%, transparent 60%, rgba(122, 92, 255, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.tile:hover::after { opacity: 1; }
.tile.span-2 { grid-column: span 2; }
.tile.row-2 { grid-row: span 2; }
.tile-top { display: flex; justify-content: space-between; align-items: center; position: relative; }
.tile-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); color: var(--gold-2); }
.tile-icon svg { width: 18px; height: 18px; }
.tile-badge { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: var(--surface-2); color: var(--ink-2); }
.tile h3 { font-size: clamp(20px, 1.7vw, 24px); position: relative; }
.tile p { color: var(--ink-2); font-size: 14.5px; position: relative; }
.tile .bul { position: relative; }
.tile .bul li { font-size: 13.5px; color: var(--ink-2); padding-left: 16px; position: relative; }
.tile .bul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.tile .bul li + li { margin-top: 6px; }
.tile-img { margin-top: auto; position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8); transform: translateY(8px); transition: transform 0.45s var(--ease); }
.tile:hover .tile-img { transform: translateY(0); }
.tile-img img { width: 100%; height: 190px; object-fit: cover; object-position: top left; }
.tile.span-2 .tile-img img { height: 230px; }
.tile-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, var(--bg-3)); }
.tile-explore { margin-top: auto; font-size: 13px; color: var(--gold); opacity: 0; transform: translateX(-4px); transition: opacity 0.3s, transform 0.3s; position: relative; }
.tile:hover .tile-explore { opacity: 1; transform: translateX(0); }
.tile.accent { background: linear-gradient(160deg, rgba(214, 185, 138, 0.14), var(--bg-3) 60%); border-color: rgba(214, 185, 138, 0.3); }

.roadmap-cta { margin-top: 64px; padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
.roadmap-cta .cta-row { justify-content: flex-end; }

/* Use-case cards */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.case {
  border-radius: 22px; border: 1px solid var(--line); background: var(--bg-3); padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.case:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9); }
.case-shot { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 10; background: radial-gradient(120% 100% at 50% 0%, #1d1d2b, #0d0d14); border: 1px solid var(--line); }
.case-shot img { position: absolute; inset: 8% 6% auto 6%; width: 88%; border-radius: 8px 8px 0 0; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.9); border: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 0; transition: transform 0.6s var(--ease); object-fit: cover; object-position: top; height: 100%; }
.case:hover .case-shot img { transform: translateY(-6px); }
.case-shot .pill { position: absolute; left: 12px; top: 12px; z-index: 2; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; background: rgba(7, 7, 11, 0.7); border: 1px solid var(--line-2); color: var(--gold-2); backdrop-filter: blur(6px); }
.case h3 { font-size: 21px; line-height: 1.2; }
.case p { color: var(--ink-2); font-size: 14.5px; flex: 1; }
.case .btn { margin-top: 4px; }

/* Modal */
dialog.modal { border: 0; padding: 0; background: transparent; max-width: min(960px, 100vw - 32px); width: 100%; margin: auto; color: var(--ink); }
dialog.modal::backdrop { background: rgba(4, 4, 8, 0.78); backdrop-filter: blur(10px); }
.modal-card { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 22px; padding: clamp(22px, 3.5vw, 44px); position: relative; max-height: calc(100vh - 48px); overflow: auto; }
.modal-card::-webkit-scrollbar { width: 8px; } .modal-card::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
.modal-close { position: sticky; top: 0; float: right; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--bg-3); display: grid; place-items: center; z-index: 2; margin: -6px -6px 0 0; }
.modal-close:hover { background: var(--surface-2); }
.modal .eyebrow { margin-top: 4px; }
.modal h2 { font-size: clamp(26px, 3vw, 38px); margin-top: 14px; max-width: 22ch; }
.problem { margin-top: 22px; padding: 20px 22px; border-radius: var(--radius-sm); border-left: 3px solid var(--red); background: rgba(255, 95, 109, 0.06); color: var(--ink-2); }
.problem b { color: var(--ink); font-family: var(--sans); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; display: block; margin-bottom: 8px; }
.steps { margin-top: 30px; display: grid; gap: 34px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; }
.step-n { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 18px; color: #1a1408; background: linear-gradient(180deg, var(--gold-2), var(--gold)); }
.step h4 { font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--ink); }
.step p { color: var(--ink-2); font-size: 15px; margin-top: 6px; }
.step figure { margin: 16px 0 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9); background: #fff; }
.step figure img { width: 100%; }
.step figcaption { font-size: 12.5px; color: var(--ink-3); padding: 8px 12px; background: var(--bg-3); border-top: 1px solid var(--line); }
.punch { margin-top: 34px; padding: 24px; border-radius: var(--radius-sm); background: var(--gold-dim); border: 1px solid rgba(214, 185, 138, 0.3); font-family: var(--serif); font-size: 19px; line-height: 1.4; color: var(--gold-2); }
.modal .cta-row { margin-top: 26px; }

/* How it works */
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; position: relative; }
.how::before { content: ""; position: absolute; left: 6%; right: 6%; top: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.5; }
.how-step { padding: 26px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-3); position: relative; }
.how-n { font-family: var(--serif); font-size: 15px; letter-spacing: 0.1em; color: var(--gold); display: inline-block; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(214, 185, 138, 0.35); background: var(--bg-2); position: relative; }
.how-step h3 { font-size: 22px; margin-top: 18px; }
.how-step .sub { font-size: 15px; color: var(--ink); margin-top: 10px; font-weight: 500; }
.how-step p { font-size: 14px; color: var(--ink-2); margin-top: 10px; }
.how-step .bul { margin-top: 14px; }
.how-step .bul li { font-size: 13.5px; color: var(--ink-2); padding-left: 16px; position: relative; }
.how-step .bul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.how-step .bul li + li { margin-top: 6px; }
.how-step .label { margin-top: 18px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding: 6px 10px; border-radius: 6px; background: var(--surface); display: inline-block; }

.demo-panel { margin-top: 64px; padding: clamp(30px, 5vw, 64px); border-radius: 26px; text-align: center; position: relative; overflow: hidden;
  border: 1px solid rgba(214, 185, 138, 0.3); background: radial-gradient(80% 120% at 50% 0%, rgba(122, 92, 255, 0.18), transparent 60%), linear-gradient(180deg, var(--bg-3), var(--bg-2)); }
.demo-panel .h2 { margin-inline: auto; max-width: 20ch; }
.demo-panel .cta-row { justify-content: center; margin-top: 30px; }

/* Credibility */
.cred { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.cred-card { padding: clamp(24px, 3vw, 40px); border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-3); }
.cred-card .eyebrow { margin-bottom: 14px; }
.founder { margin-top: 64px; padding: clamp(28px, 4vw, 52px); border-radius: 26px; border: 1px solid var(--line); background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 64px); }
.founder .badge { align-self: flex-start; }
.judge { margin-top: 64px; text-align: center; }
.judge .h2 { margin-inline: auto; }

/* Objections */
.objections { margin-top: 56px; display: grid; gap: 16px; }
.obj { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-3); overflow: hidden; }
.obj summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 56px 1fr 40px; gap: 18px; align-items: center; padding: 22px 24px; }
.obj summary::-webkit-details-marker { display: none; }
.obj .on { font-family: var(--serif); color: var(--gold); font-size: 20px; }
.obj summary h3 { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); font-style: italic; font-weight: 400; }
.obj .chev { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform 0.35s var(--ease), background 0.3s; }
.obj[open] .chev { transform: rotate(45deg); background: var(--gold-dim); }
.obj-body { padding: 0 24px 26px 98px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; }
.obj-body p + p { margin-top: 14px; }
.obj-body .btn { margin-top: 18px; }
.obj-close { margin-top: 56px; text-align: center; padding: clamp(28px, 4vw, 48px); border-radius: 26px; border: 1px solid var(--line); background: var(--bg-3); }
.obj-close .h3 { margin-top: 14px; }
.obj-close .cta-row { justify-content: center; margin-top: 26px; }

/* Offer */
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.offer-card { position: relative; border-radius: 26px; padding: clamp(28px, 3.5vw, 44px); background: linear-gradient(180deg, #14131a, var(--bg-2)); border: 1px solid rgba(214, 185, 138, 0.45); box-shadow: 0 60px 120px -50px rgba(214, 185, 138, 0.35), 0 0 0 1px rgba(214, 185, 138, 0.08) inset; }
.offer-card::before { content: ""; position: absolute; inset: -1px; border-radius: 27px; padding: 1px; background: linear-gradient(135deg, var(--gold-2), transparent 35%, transparent 65%, var(--violet)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.8; }
.offer-card .ribbon { position: absolute; top: -14px; left: 28px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1408; font-weight: 700; }
.offer-card h3 { font-size: clamp(26px, 2.6vw, 34px); margin-top: 6px; }
.offer-card .price { margin-top: 18px; font-family: var(--serif); font-size: 22px; color: var(--gold-2); }
.offer-card .price small { display: block; font-family: var(--sans); font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.offer-list { margin-top: 26px; display: grid; gap: 16px; }
.offer-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: var(--ink-2); font-size: 14.5px; }
.offer-list li b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.offer-list .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-dim); border: 1px solid rgba(214, 185, 138, 0.4); display: grid; place-items: center; margin-top: 2px; }
.offer-list .ck::after { content: ""; width: 9px; height: 5px; border-left: 2px solid var(--gold-2); border-bottom: 2px solid var(--gold-2); transform: rotate(-45deg) translate(1px, -1px); }
.offer-card .btn { margin-top: 28px; }
.honest { margin-top: 26px; padding: 18px 20px; border-radius: var(--radius-sm); border: 1px dashed var(--line-2); font-size: 13.5px; color: var(--ink-2); }

/* FAQ */
.faq { margin-top: 48px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; font-family: var(--serif); font-size: clamp(18px, 1.6vw, 22px); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform 0.3s var(--ease), background 0.3s; }
.faq details[open] .plus { transform: rotate(45deg); background: var(--gold-dim); }
.faq .a { padding: 0 4px 24px; color: var(--ink-2); max-width: 70ch; }
details .a, details .obj-body { overflow: hidden; }
details.animating .a, details.animating .obj-body { transition: height 0.4s var(--ease), opacity 0.3s; }

/* Final CTA */
.final { position: relative; overflow: hidden; padding-block: clamp(90px, 12vw, 160px); }
.final .hero-grid { mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 10%, transparent 70%); }
.final-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.final .h2 { font-size: clamp(36px, 4.8vw, 62px); max-width: 16ch; }
.form { padding: clamp(24px, 3vw, 36px); border-radius: 22px; border: 1px solid var(--line-2); background: rgba(12, 12, 19, 0.85); backdrop-filter: blur(12px); }
.form h3 { font-size: 24px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.form label { display: block; font-size: 12.5px; color: var(--ink-3); margin-bottom: 6px; letter-spacing: 0.04em; }
.form input, .form textarea, .form select { width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--bg); color: var(--ink); font: inherit; font-size: 15px; transition: border-color 0.2s, box-shadow 0.2s; }
.form input:focus, .form textarea:focus, .form select:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214, 185, 138, 0.2); }
.form textarea { min-height: 96px; resize: vertical; }
.form .full { margin-top: 14px; }
.form .btn { margin-top: 18px; }
.form-note { margin-top: 12px; font-size: 12.5px; color: var(--ink-3); }
.form-status { margin-top: 12px; font-size: 14px; color: var(--gold-2); min-height: 1.4em; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 56px 0 28px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.footer li + li { margin-top: 10px; }
.footer a { color: var(--ink-2); font-size: 14.5px; transition: color 0.2s; }
.footer a:hover { color: var(--ink); }
.footer a.btn-primary, .footer a.btn-primary:hover { color: #1a1408; }
.final { padding-top: clamp(60px, 8vw, 110px); }
.footer .tag { font-size: 14.5px; color: var(--ink-2); margin-top: 12px; max-width: 34ch; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }

.to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(12, 12, 19, 0.85); backdrop-filter: blur(8px); display: grid; place-items: center; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity 0.3s, transform 0.3s; z-index: 40; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; }

/* Reveal */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-grid, .orb, .badge .dot { animation: none; }
  .mock { transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .proof { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile.span-2 { grid-column: span 2; }
  .cases { grid-template-columns: repeat(2, 1fr); }
  .how { grid-template-columns: repeat(2, 1fr); }
  .how::before { display: none; }
  .cost-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .obj-body { grid-template-columns: 1fr; padding-left: 24px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .burger { display: grid; }
  .grid-2, .cred, .founder, .offer, .final-inner, .roadmap-cta { grid-template-columns: 1fr; }
  .roadmap-cta .cta-row { justify-content: flex-start; }
  .sticky { position: static; }
  .hero .cta-row .btn { width: 100%; }
  .hero-micro { flex-direction: column; gap: 6px; }
  .mock { transform: none; }
}
@media (max-width: 560px) {
  .wrap { width: min(var(--max), 100% - 32px); }
  .bento, .cases, .how, .proof, .footer-grid, .form .row { grid-template-columns: 1fr; }
  .tile.span-2 { grid-column: span 1; }
  .tile.row-2 { grid-row: span 1; }
  .step { grid-template-columns: 1fr; }
  .step-n { width: 34px; height: 34px; font-size: 16px; }
  .obj summary { grid-template-columns: 1fr 36px; }
  .obj .on { display: none; }
  .btn-lg { padding: 16px 22px; }
  .btn { white-space: normal; text-align: center; line-height: 1.25; }
  .cta-row .btn { width: 100%; }
  .h1 { font-size: clamp(34px, 11vw, 46px); }
}


/* ---- v2 additions ---- */
.slides { position: relative; aspect-ratio: 1440 / 900; background: #0e0e15; }
.slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity 0.9s var(--ease); }
.slide.is-active { opacity: 1; }
.slide-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.slide-cap { text-align: left; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-2); font-size: 13.5px; line-height: 1.45; position: relative; overflow: hidden; transition: border-color 0.3s, color 0.3s, background 0.3s; }
.slide-cap b { color: var(--gold); font-family: var(--serif); font-weight: 500; font-size: 15px; margin-right: 6px; }
.slide-cap::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); }
.slide-cap.is-active { border-color: rgba(214, 185, 138, 0.5); color: var(--ink); background: var(--surface-2); }
html.js .slide-cap.is-active::after { animation: capbar 4.2s linear forwards; }
@keyframes capbar { from { width: 0 } to { width: 100% } }
.win-bar { display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: #14141d; border-bottom: 1px solid var(--line); font-size: 11.5px; color: var(--ink-3); }
.win-bar i { width: 8px; height: 8px; border-radius: 50%; background: #2a2a36; display: block; }
.win-bar i:nth-child(1) { background: #ff5f57 } .win-bar i:nth-child(2) { background: #febc2e } .win-bar i:nth-child(3) { background: #28c840 }
.win-bar span { margin-left: 6px; }
.case-shot { aspect-ratio: auto; display: flex; flex-direction: column; background: #14141d; }
.case-shot img { position: static; width: 100%; height: 190px; object-fit: cover; object-position: top left; border: 0; border-radius: 0; box-shadow: none; inset: auto; }
.case-shot .pill { top: 44px; }
.step figure { background: #14141d; }
.step figure img { display: block; }
.also { margin: 40px auto 0; max-width: 78ch; text-align: center; color: var(--ink-2); font-size: 15px; padding: 18px 22px; border: 1px dashed var(--line-2); border-radius: var(--radius-sm); }
.also b { color: var(--ink); font-weight: 600; }
.founder-card { padding: clamp(24px, 3vw, 40px); border-radius: 26px; border: 1px solid rgba(214, 185, 138, 0.3); background: linear-gradient(160deg, rgba(214, 185, 138, 0.10), var(--bg-3) 55%); }
.founder-head { display: flex; gap: 18px; align-items: center; }
.monogram { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 26px; color: #1a1408; background: linear-gradient(180deg, var(--gold-2), var(--gold)); box-shadow: 0 10px 30px -12px rgba(214, 185, 138, 0.7); }
.founder-name { font-family: var(--serif); font-size: 26px; letter-spacing: -0.01em; }
.founder-role { color: var(--ink-2); font-size: 14.5px; margin-top: 4px; }
.facts { display: grid; gap: 12px; }
.facts li { display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: baseline; font-size: 14.5px; color: var(--ink-2); padding-top: 12px; border-top: 1px solid var(--line); }
.facts li b { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--gold-2); letter-spacing: -0.02em; }
.price-main { display: block; font-family: var(--serif); font-size: 20px; color: var(--gold-2); line-height: 1.3; }
.offer-card .price small { margin-top: 8px; }
@media (max-width: 820px) { .slide-caps { grid-template-columns: 1fr; } }

[hidden] { display: none !important; }

/* Hero video: no effects, by request */
.mock-wrap.plain { perspective: none; }
.mock.plain { transform: none !important; transition: none; }
.mock.plain video { display: block; width: 100%; height: auto; background: #000; }
.video-cap { margin: 14px auto 0; max-width: 72ch; text-align: center; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

.founder-photo { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(214, 185, 138, 0.55), 0 10px 30px -12px rgba(214, 185, 138, 0.6); }

/* Scannable text: highlights, tl;dr lines, timeline, pills, bio */
mark.hl { background: none; color: var(--ink); font-weight: 600; }
em.fact { font-style: italic; color: var(--gold-2); font-family: var(--serif); font-size: 1.06em; }
.tldr { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 1.9vw, 26px); color: var(--gold-2); line-height: 1.3; margin-top: 18px; letter-spacing: -0.01em; max-width: 36ch; }
.timeline { display: grid; margin-top: 22px; }
.timeline li { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline li b { color: var(--ink); font-weight: 600; }
.tl-time { font-family: var(--serif); color: var(--gold); font-size: 21px; line-height: 1.15; font-variant-numeric: tabular-nums; }
.pills { display: grid; gap: 12px; margin-top: 26px; }
.pills li { padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
.pills li b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; font-size: 15.5px; }
.bio { display: grid; margin-top: 18px; }
.bio li { display: grid; grid-template-columns: 128px 1fr; gap: 14px; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; padding: 12px 0; border-top: 1px solid var(--line); }
.bio li b { color: var(--gold); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding-top: 4px; }
@media (max-width: 560px) { .bio li { grid-template-columns: 1fr; gap: 4px; } .timeline li { grid-template-columns: 52px 1fr; } }

.logo-mark svg { display: block; width: 23px; height: 23px; }

/* Mobile polish */
.mobile-menu { background: #07070b; }
@media (max-width: 560px) {
  .btn, .btn-sm { min-height: 44px; }
  .to-top { width: 40px; height: 40px; right: 14px; bottom: 14px; opacity: 0.85; }
  .to-top.show { opacity: 0.85; }
}

/* ---- v3: rhythm. Show, tell, show. ---- */
/* Break the day */
.break { max-width: 1000px; margin: 48px auto 0; }
.break-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.break-tab { text-align: left; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-2); font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 14px; min-height: 60px; transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s var(--ease); }
.break-tab b { font-family: var(--serif); color: var(--gold); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.break-tab:hover { border-color: var(--line-2); transform: translateY(-2px); }
.break-tab.is-active { border-color: rgba(214, 185, 138, 0.6); background: var(--gold-dim); color: var(--ink); }
.break-stage { margin-top: 14px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-2); background: #14141d; box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.9); }
.break-shot { position: relative; aspect-ratio: 904 / 560; background: #fff; }
.break-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity 0.45s var(--ease); }
.break-shot img.is-active { opacity: 1; }
.break-lines { margin-top: 18px; min-height: 3em; text-align: center; }
.break-lines p { display: none; color: var(--ink-2); font-size: 17px; max-width: 62ch; margin: 0 auto; line-height: 1.5; }
.break-lines p.is-active { display: block; animation: fadeUp 0.5s var(--ease); }
.break-cta { justify-content: center; margin-top: 22px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Ledger that writes itself */
html.js .ev-step { opacity: 0; transform: translateX(14px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
html.js .ev-step.on { opacity: 1; transform: none; }
.ledger.resolved .tag.red { border-color: rgba(74, 222, 128, 0.45); color: #8af0ad; text-decoration: line-through; }
.ledger.resolved .ev.live .k::before { animation: pulse 1.4s 3; }
.ledger-status { margin-top: 22px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 10px; }
.ledger-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(214, 185, 138, 0.18); }

/* Feature gallery, image first */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.gtile { border-radius: 18px; border: 1px solid var(--line); background: var(--bg-3); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; }
.gtile:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9); }
.gshot { background: #14141d; }
.gshot img { width: 100%; height: 200px; object-fit: cover; object-position: top left; display: block; border-bottom: 1px solid var(--line); transition: transform 0.6s var(--ease); }
.gtile:hover .gshot img { transform: scale(1.02); }
.gbody { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.gtile h3 { font-size: 21px; }
.gtile p { color: var(--ink-2); font-size: 14.5px; }

/* Founder, lighter */
.founder-photo.lg { width: 96px; height: 96px; }
.more { margin-top: 18px; border-top: 1px solid var(--line); }
.more summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-weight: 600; color: var(--gold-2); font-size: 14.5px; }
.more summary::-webkit-details-marker { display: none; }
.more .plus { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform 0.3s var(--ease); font-weight: 400; }
.more[open] .plus { transform: rotate(45deg); }
.more .a { padding-bottom: 12px; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.more .a p + p { margin-top: 12px; }
.more .bio { margin-top: 0; }
.more .bio li:first-child { border-top: 0; padding-top: 0; }

/* Numbers strip */
.numbers { padding-block: clamp(44px, 6vw, 72px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: radial-gradient(60% 100% at 50% 50%, rgba(214, 185, 138, 0.07), transparent 70%); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.numbers-grid b { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(48px, 5.4vw, 76px); line-height: 1; color: var(--gold-2); letter-spacing: -0.03em; }
.numbers-grid span { display: block; margin-top: 12px; color: var(--ink-2); font-size: 14.5px; max-width: 22ch; margin-inline: auto; line-height: 1.45; }

@media (max-width: 1024px) { .gallery { grid-template-columns: repeat(2, 1fr); } .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery, .break-tabs, .numbers-grid { grid-template-columns: 1fr; } .break-shot { aspect-ratio: 4 / 3; } .founder-photo.lg { width: 72px; height: 72px; } }
