/* ============================================================
   Elenco — Product-Led Bento landing
   Dark, premium, glass + depth. Raycast/Linear/Vercel vibe.
   ============================================================ */

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/geist-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/geist-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/geist-mono-latin-wght-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url("./fonts/space-grotesk-latin-wght-normal.woff2") format("woff2");
}

:root {
  /* ink / surfaces — deep neutral, slightly cool */
  --bg: #07080a;
  --bg-2: #0b0d11;
  --surface: #101319;
  --surface-2: #141821;
  --surface-3: #191e29;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.05);

  /* text */
  --txt: #f4f6f9;
  --txt-2: #b7bfca;
  --txt-3: #7d8694;
  --txt-4: #5a6271;

  /* accent — emerald/spring, matches the app's green status */
  --acc: #34e0a1;
  --acc-2: #15c989;
  --acc-deep: #0c8f63;
  --acc-glow: rgba(52, 224, 161, 0.5);
  --acc-soft: rgba(52, 224, 161, 0.12);

  /* secondary accent for depth — violet edge light */
  --vio: #7c83ff;
  --vio-soft: rgba(124, 131, 255, 0.14);

  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --maxw: 1200px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --display: "Space Grotesk", var(--font);

  --shadow-soft: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 50px -20px rgba(0,0,0,0.7);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.05) inset, 0 30px 60px -28px rgba(0,0,0,0.8);
  --shadow-float: 0 40px 90px -30px rgba(0,0,0,0.85), 0 0 0 1px var(--line);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01";
  overflow-x: hidden;
}

/* ambient background — large soft auras + grain-ish dot grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(52,224,161,0.16), transparent 60%),
    radial-gradient(760px 480px at 10% 4%, rgba(124,131,255,0.12), transparent 60%),
    radial-gradient(1200px 700px at 50% 120%, rgba(52,224,161,0.07), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(1000px 700px at 50% 0%, #000 30%, transparent 80%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* ---------- shared atoms ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 3px var(--acc-soft), 0 0 12px var(--acc-glow);
}

.section { padding: 110px 0; position: relative; }
.section-head { max-width: 680px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 16px 0 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--txt-2);
  max-width: 560px;
  line-height: 1.6;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 540;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  color: #04140d;
  background: linear-gradient(180deg, var(--acc) 0%, var(--acc-2) 100%);
  box-shadow: 0 0 0 1px rgba(52,224,161,0.5), 0 10px 30px -8px rgba(52,224,161,0.55), 0 1px 0 rgba(255,255,255,0.35) inset;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(52,224,161,0.6), 0 16px 40px -10px rgba(52,224,161,0.7), 0 1px 0 rgba(255,255,255,0.45) inset; }
.btn-ghost {
  color: var(--txt);
  background: rgba(255,255,255,0.03);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 13px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--txt-2);
  background: rgba(255,255,255,0.025);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(8,9,12,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.9);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .logo-mark { width: 30px; height: 30px; flex: none; }
.brand .logo-word {
  font-family: var(--display);
  font-weight: 600; font-size: 19px; letter-spacing: -0.01em; color: var(--txt);
}
.brand .logo-word b { color: var(--acc); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; color: var(--txt-2); padding: 8px 13px; border-radius: 9px;
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--txt); background: rgba(255,255,255,0.05); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 64px 0 40px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 8px 6px 6px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  font-size: 12.5px; color: var(--txt-2);
  margin: 0 auto;
}
.hero-badge .tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 999px;
  background: var(--acc-soft); color: var(--acc);
  border: 1px solid rgba(52,224,161,0.25);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 26px auto 0;
  max-width: 14ch;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--acc) 10%, #9af5d2 50%, var(--vio) 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--txt-2);
  max-width: 62ch;
  margin: 24px auto 0;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 22px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--txt-3);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 15px; height: 15px; color: var(--acc); }

/* hero product shot — the centerpiece */
.hero-shot {
  margin: 56px auto 0;
  max-width: 1080px;
  position: relative;
}
.hero-shot .glow {
  position: absolute; inset: -8% 4% auto 4%; height: 70%; top: -6%;
  background: radial-gradient(60% 80% at 50% 0%, rgba(52,224,161,0.35), transparent 70%);
  filter: blur(40px); z-index: 0;
}
.window {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(22,26,34,0.9), rgba(12,14,19,0.95));
  box-shadow: var(--shadow-float), 0 60px 120px -40px rgba(0,0,0,0.9);
  overflow: hidden;
}
.window-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.win-dots { display: flex; gap: 7px; }
.win-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.win-dots i:nth-child(1) { background: #ff5f57; }
.win-dots i:nth-child(2) { background: #febc2e; }
.win-dots i:nth-child(3) { background: #28c840; }
.win-title {
  font-family: var(--mono); font-size: 11.5px; color: var(--txt-3);
  letter-spacing: 0.02em;
}
.win-status {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; color: var(--acc);
}
.win-status .blip { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 10px var(--acc-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.window img { width: 100%; display: block; }

/* logo strip / trust */
.trust { padding: 26px 0 0; }
.trust-row {
  display: flex; align-items: center; justify-content: center; gap: 14px 32px;
  flex-wrap: wrap; color: var(--txt-4);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em;
}
.trust-row .lbl { color: var(--txt-3); }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 15px; height: 15px; opacity: .8; }

/* ============================================================
   BENTO — the core
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
}
.cell {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012) 40%, rgba(255,255,255,0) 100%),
    var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.cell:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.cell::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.cell .pad { padding: 24px; display: flex; flex-direction: column; gap: 10px; height: 100%; }
.cell .ico {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--acc-soft), rgba(52,224,161,0.04));
  border: 1px solid rgba(52,224,161,0.22);
  color: var(--acc);
}
.cell .ico svg { width: 19px; height: 19px; }
.cell h3 {
  font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin-top: 4px;
}
.cell p { font-size: 14px; color: var(--txt-2); line-height: 1.55; }
.cell .tagline { font-family: var(--mono); font-size: 11px; color: var(--acc); letter-spacing: 0.08em; text-transform: uppercase; }

/* spans */
.c-wide { grid-column: span 4; }
.c-half { grid-column: span 3; }
.c-third { grid-column: span 2; }
.c-tall { grid-row: span 2; }
.c-full { grid-column: span 6; }

/* feature cell with embedded shot */
.cell.shot { padding: 0; }
.cell.shot .pad { padding: 26px 26px 0; gap: 8px; }
.cell.shot .frame {
  margin: 18px 26px 0; margin-bottom: -2px;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--line);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.04) inset, 0 24px 50px -24px rgba(0,0,0,0.8);
  position: relative;
}
.cell.shot .frame img { width: 100%; display: block; }
.cell.shot .frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* mini stat tiles inside a cell */
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.stat-tile {
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px;
  background: rgba(255,255,255,0.02);
}
.stat-tile .n { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -0.02em; }
.stat-tile .n .acc { color: var(--acc); }
.stat-tile .l { font-size: 11.5px; color: var(--txt-3); margin-top: 2px; }

/* terminal-ish prompt cell */
.promptbox {
  margin-top: auto;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(0,0,0,0.35);
  font-family: var(--mono); font-size: 12.5px; color: var(--txt-2);
  overflow: hidden;
}
.promptbox .pb-head {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  border-bottom: 1px solid var(--line); color: var(--txt-3); font-size: 11px;
}
.promptbox .pb-head .d { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); }
.promptbox .pb-body { padding: 12px; line-height: 1.7; }
.promptbox .pb-body .u { color: var(--txt); }
.promptbox .pb-body .c { color: var(--acc); }
.promptbox .pb-body .muted { color: var(--txt-4); }
.cursor { display: inline-block; width: 7px; height: 14px; background: var(--acc); vertical-align: -2px; margin-left: 2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* flow steps inside a cell */
.flow { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.flow-step { display: flex; gap: 11px; align-items: flex-start; }
.flow-step .num {
  width: 22px; height: 22px; border-radius: 7px; flex: none;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; color: var(--acc);
  background: var(--acc-soft); border: 1px solid rgba(52,224,161,0.25);
}
.flow-step .txt { font-size: 13px; color: var(--txt-2); line-height: 1.4; }
.flow-step .txt b { color: var(--txt); font-weight: 540; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.agent {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 50%),
    var(--surface);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, border-color .22s ease;
  overflow: hidden;
}
.agent:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.agent::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  opacity: 0; transition: opacity .25s ease;
}
.agent:hover::before { opacity: .7; }
.agent-top { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--txt);
  background: linear-gradient(150deg, var(--surface-3), var(--surface-2));
  border: 1px solid var(--line-strong);
  position: relative;
}
.avatar .on {
  position: absolute; right: -2px; bottom: -2px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--acc); border: 2.5px solid var(--surface);
  box-shadow: 0 0 8px var(--acc-glow);
}
.agent .name { font-family: var(--display); font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; }
.agent .role { font-size: 12px; color: var(--txt-3); margin-top: 1px; }
.agent .mission { font-size: 13px; color: var(--txt-2); line-height: 1.5; margin-top: 14px; }
.agent .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.agent .tags span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em;
  padding: 3px 8px; border-radius: 7px; color: var(--txt-3);
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
}
.agent .seal { font-family: var(--mono); font-size: 10px; color: var(--txt-4); letter-spacing: 0.06em; }

/* ============================================================
   HOW IT WORKS — stepped
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  position: relative; padding: 26px 22px;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-card);
}
.step .k {
  font-family: var(--mono); font-size: 12px; color: var(--acc);
  letter-spacing: 0.1em; margin-bottom: 14px; display: inline-block;
}
.step h4 { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--txt-2); line-height: 1.55; }
.step .line { position: absolute; top: 38px; right: -8px; width: 16px; height: 1px; background: var(--line-strong); }

/* ============================================================
   BETA / waitlist
   ============================================================ */
.beta-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(52,224,161,0.12), transparent 50%),
    radial-gradient(120% 120% at 100% 100%, rgba(124,131,255,0.1), transparent 50%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: clamp(32px, 5vw, 64px);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  text-align: center;
}
.beta-card .glow-ring {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  top: -260px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(52,224,161,0.22), transparent 60%);
  filter: blur(20px); pointer-events: none;
}
.beta-card h2 {
  font-family: var(--display); font-weight: 600; font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.025em; line-height: 1.05; position: relative;
}
.beta-card .free {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--acc); padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(52,224,161,0.3); background: var(--acc-soft);
  margin-bottom: 18px;
}
.beta-card p.lead { font-size: 17px; color: var(--txt-2); max-width: 52ch; margin: 16px auto 0; line-height: 1.6; }
.waitlist {
  display: flex; gap: 10px; max-width: 480px; margin: 30px auto 0;
  position: relative; flex-wrap: wrap; justify-content: center;
}
.waitlist input {
  flex: 1; min-width: 220px;
  font-family: var(--font); font-size: 15px; color: var(--txt);
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.4);
  outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.waitlist input::placeholder { color: var(--txt-4); }
.waitlist input:focus { border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-soft); }
.beta-foot {
  margin-top: 18px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  font-size: 12.5px; color: var(--txt-3);
}
.beta-foot span { display: inline-flex; gap: 6px; align-items: center; }
.beta-foot svg { width: 14px; height: 14px; color: var(--acc); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
details.faq {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); padding: 4px 20px;
  transition: border-color .2s ease, background .2s ease;
}
details.faq[open] { border-color: var(--line-strong); background: var(--surface-2); }
details.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font); font-weight: 540; font-size: 15.5px; color: var(--txt);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus {
  width: 22px; height: 22px; flex: none; position: relative;
  border: 1px solid var(--line-strong); border-radius: 7px;
}
details.faq summary .plus::before,
details.faq summary .plus::after {
  content: ""; position: absolute; background: var(--txt-2);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: transform .22s ease, opacity .22s ease;
}
details.faq summary .plus::before { width: 10px; height: 1.5px; }
details.faq summary .plus::after { width: 1.5px; height: 10px; }
details.faq[open] summary .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
details.faq[open] summary .plus { border-color: var(--acc); }
details.faq[open] summary .plus::before { background: var(--acc); }
details.faq .a { padding: 0 0 20px; font-size: 14px; color: var(--txt-2); line-height: 1.65; max-width: 60ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 64px 0 40px; margin-top: 40px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { margin-bottom: 16px; }
.footer .blurb { font-size: 14px; color: var(--txt-3); max-width: 38ch; line-height: 1.6; }
.footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt-4); margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--txt-2); transition: color .18s ease; }
.footer ul a:hover { color: var(--acc); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--txt-4);
}
.footer-bottom .badges { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-bottom .badges span { display: inline-flex; gap: 6px; align-items: center; }
.footer-bottom svg { width: 14px; height: 14px; }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step .line { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .c-wide, .c-half, .c-third, .c-full { grid-column: span 2; }
  .c-tall { grid-row: auto; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 78px 0; }
  .bento { grid-template-columns: 1fr; }
  .c-wide, .c-half, .c-third, .c-full { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { gap: 14px; }
  .wrap { padding: 0 18px; }
}
