/* ══════════════════════════════════════════════════════════
   Crumb — marketing landing page
   Built on colors_and_type.css tokens. Warm, playful, informative.
   ══════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* scroll progress — a thin ember trail at the very top */
#progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--ember-soft), var(--ember));
  z-index: 200; transition: width 80ms linear;
}

/* ── buttons ── */
.btn {
  appearance: none; cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: var(--fs-md); border-radius: var(--r-sm);
  padding: 11px 18px; display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--t-base) var(--ease); border: 1px solid var(--ink);
  background: transparent; color: var(--ink); white-space: nowrap; line-height: 1;
}
.btn:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--sh-soft); }
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.btn--lg { padding: 14px 22px; font-size: var(--fs-lg); border-radius: var(--r-md); }
.btn svg { width: 15px; height: 15px; }

.starpill {
  display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-body);
  font-weight: 500; color: var(--text-2); border: var(--border-strong);
  border-radius: var(--r-pill); padding: 6px 13px; transition: all var(--t-base) var(--ease);
}
.starpill:hover { background: var(--hover); }
.starpill .n { font-family: var(--font-mono); color: var(--mute); font-size: var(--fs-sm); }

.eyebrow {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--ls-eyebrow); color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ══ nav ══ */
nav.top {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(10px); border-bottom: var(--border);
}
nav.top .wrap { display: flex; align-items: center; gap: 12px; height: 64px; }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.02em; }
.logo svg { transition: transform var(--t-slow) var(--ease-spring); }
.logo:hover svg { transform: rotate(-8deg) scale(1.08); }
nav.top .links { margin-left: 30px; display: flex; gap: 26px; }
nav.top .links a { font-size: var(--fs-md); color: var(--mute); transition: color var(--t-fast); }
nav.top .links a:hover { color: var(--text); }
nav.top .right { margin-left: auto; display: flex; align-items: center; gap: 13px; }

/* ══ hero ══ */
.hero { text-align: center; padding: 78px 0 28px; }
.hero .eyebrow { justify-content: center; }
.hero h1 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(52px, 8vw, 84px);
  line-height: 0.96; letter-spacing: -0.03em; margin: 20px 0 0; text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); position: relative; }
.hero .sub { font-size: var(--fs-xl); line-height: 1.5; color: var(--mute); max-width: 52ch; margin: 22px auto 0; }
.hero .cta { display: flex; gap: 13px; justify-content: center; margin-top: 32px; }
.hero .note { font-size: var(--fs-body); color: var(--mute-2); margin-top: 18px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero .note span { display: inline-flex; align-items: center; gap: 6px; }
.hero .note .ok { color: var(--green); }

/* hero animated trail mark */
.hero-trail { display: inline-flex; align-items: flex-end; gap: 9px; justify-content: center; height: 22px; }
.hero-trail i { display: block; border-radius: var(--r-pill); background: var(--accent); opacity: 0; transform: translateY(8px); }
.hero-trail i:nth-child(1){ width:7px; height:7px; }
.hero-trail i:nth-child(2){ width:9px; height:9px; }
.hero-trail i:nth-child(3){ width:11px; height:11px; }
.hero-trail i:nth-child(4){ width:14px; height:14px; }
.hero-trail i:nth-child(5){ width:18px; height:18px; }
.loaded .hero-trail i { animation: dotIn 0.5s var(--ease-spring) forwards; }
.loaded .hero-trail i:nth-child(1){ animation-delay: 0.05s; }
.loaded .hero-trail i:nth-child(2){ animation-delay: 0.13s; }
.loaded .hero-trail i:nth-child(3){ animation-delay: 0.21s; }
.loaded .hero-trail i:nth-child(4){ animation-delay: 0.29s; }
.loaded .hero-trail i:nth-child(5){ animation-delay: 0.37s; }
@keyframes dotIn { to { opacity: 1; transform: translateY(0); } }

/* ══ bento ══ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 8px; }
.tile {
  background: var(--surface); border: var(--border); border-radius: var(--r-2xl);
  padding: 18px; position: relative; overflow: hidden;
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.tile:hover { border-color: var(--hair-strong); box-shadow: var(--sh-pop); }
.tile .thead { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.tile .thead .ic { width: 30px; height: 30px; border-radius: var(--r-md); background: var(--cream-2); border: var(--border); display: grid; place-items: center; color: var(--accent-deep); flex: 0 0 auto; }
.tile .thead h3 { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 600; letter-spacing: -0.01em; }
.tile .thead .tag { margin-left: auto; font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: var(--ls-cap); color: var(--mute-2); font-weight: 600; }
.tile p.blurb { font-size: var(--fs-body); color: var(--text-2); line-height: 1.5; margin: 0; }

/* spans */
.col-3 { grid-column: span 3; } .col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }
.row-2 { grid-row: span 2; }

/* ── status dots & chips (product vocabulary) ── */
.sdot { width: 7px; height: 7px; border-radius: var(--r-pill); display: inline-block; flex: 0 0 auto; }
.sdot.prog { background: var(--accent); }
.sdot.plan { background: transparent; box-shadow: inset 0 0 0 1.5px var(--accent); }
.sdot.ship { background: var(--green); }
.sdot.review { background: var(--amber); }
.schip {
  display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 500;
  padding: 3px 9px; border-radius: var(--r-pill); border: 1px solid var(--hair-strong); color: var(--mute); white-space: nowrap;
}
.schip.prog { color: var(--accent-deep); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.schip.ship { color: var(--green); border-color: color-mix(in srgb, var(--green) 38%, transparent); }
.schip.review { color: #9a7320; border-color: color-mix(in srgb, var(--amber) 45%, transparent); }

/* type icon badges */
.tbadge { width: 20px; height: 20px; border-radius: var(--r-sm); display: grid; place-items: center; flex: 0 0 auto; }
.tbadge.bug { color: var(--rust); background: var(--rust-soft); }
.tbadge.idea { color: var(--accent-deep); background: var(--ember-soft); }
.tbadge.q { color: var(--brown-2); background: var(--cream-2); }

/* ── INBOX tile (interactive) ── */
.inbox-head { display: flex; align-items: center; gap: 8px; font-size: var(--fs-sm); color: var(--mute); margin-bottom: 4px; }
.inbox-head .total { margin-left: auto; font-family: var(--font-mono); color: var(--accent-deep); font-weight: 500; }
.inbox { display: flex; flex-direction: column; }
.irow { display: flex; align-items: center; gap: 11px; padding: 10px 10px; border-radius: var(--r-md); cursor: pointer; transition: background var(--t-fast) var(--ease); }
.irow:hover { background: var(--hover); }
.irow .ttl { flex: 1; font-size: var(--fs-body); font-weight: 500; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.irow .arr { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--accent-deep); font-weight: 500; }
.irow .schip { cursor: pointer; }
.irow .schip:hover { background: var(--cream-2); }

/* ── WIDGET tile (interactive launcher → panel) ── */
/* the widget tile grows its stage to fill the tall tile so the open panel fits */
.tile:has(.widget-stage) { display: flex; flex-direction: column; }
.tile:has(.widget-stage) .widget-stage { flex: 1 1 auto; }
.widget-stage { position: relative; min-height: 274px; border-radius: var(--r-lg); background: var(--cream-2); border: 1px dashed var(--hair-strong); overflow: hidden; }
.widget-stage .host-lines { padding: 16px; display: flex; flex-direction: column; gap: 9px; opacity: 0.5; }
.host-bar { height: 9px; border-radius: 5px; background: var(--brown-10); }
.launcher {
  position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--hair-strong); border-radius: var(--r-pill);
  padding: 9px 15px 9px 12px; font-weight: 600; font-size: var(--fs-body); box-shadow: var(--sh-lift);
  cursor: pointer; transition: transform var(--t-base) var(--ease-spring); z-index: 3;
}
.launcher:hover { transform: scale(1.04); }
.launcher:active { transform: scale(0.96); }
.launcher .pulse { width: 9px; height: 9px; border-radius: var(--r-pill); background: var(--accent); position: relative; }
.launcher .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: var(--r-pill); border: 1.5px solid var(--accent); opacity: 0; animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(0.8); opacity: 0.7; } 100% { transform: scale(1.9); opacity: 0; } }
.wpanel {
  position: absolute; right: 14px; bottom: 14px; width: calc(100% - 28px); max-width: 290px;
  background: var(--paper); border: 1px solid var(--hair-strong); border-radius: var(--r-2xl);
  box-shadow: var(--sh-lift); padding: 14px; z-index: 4;
  opacity: 0; transform: translateY(10px) scale(0.96); pointer-events: none;
  transition: all var(--t-slow) var(--ease-spring); transform-origin: bottom right;
}
.wpanel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wpanel .wp-head { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-md); margin-bottom: 11px; }
.wpanel .wp-head .x { margin-left: auto; cursor: pointer; color: var(--mute); display: inline-flex; }
.wp-types { display: flex; gap: 7px; margin-bottom: 10px; }
.wp-type { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 9px 4px; border: 1px solid var(--hair-strong); border-radius: var(--r-md); cursor: pointer; font-size: var(--fs-xs); font-weight: 500; color: var(--mute); transition: all var(--t-fast) var(--ease); background: var(--cream-soft); }
.wp-type[aria-pressed="true"] { border-color: var(--accent); color: var(--accent-deep); background: var(--ember-soft); }
.wp-field { background: var(--cream-soft); border: 1px solid var(--hair-strong); border-radius: var(--r-md); padding: 9px 11px; font-size: var(--fs-body); color: var(--mute); min-height: 46px; }
.wp-ctx { font-size: var(--fs-2xs); color: var(--mute-2); margin: 8px 0; display: flex; align-items: center; gap: 6px; }
.wp-send { width: 100%; justify-content: center; }
.wp-sent { text-align: center; padding: 18px 8px; }
.wp-sent .ok { width: 42px; height: 42px; border-radius: var(--r-pill); background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 10px; }
.wp-sent h4 { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 600; margin: 0 0 4px; }
.wp-sent p { font-size: var(--fs-sm); color: var(--mute); margin: 0; }

/* ── AI CLUSTER tile (interactive) ── */
.cluster-stage { display: flex; flex-direction: column; gap: 11px; }
.loose { display: flex; flex-wrap: wrap; gap: 7px; min-height: 30px; }
.fchip { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 500; padding: 5px 10px; border-radius: var(--r-pill); border: 1px solid var(--hair-strong); background: var(--cream-soft); transition: all var(--t-slow) var(--ease); }
.fchip.flying { transform: translateY(-6px) scale(0.9); opacity: 0; }
.cluster-target { border: 1px dashed var(--hair-strong); border-radius: var(--r-md); padding: 11px; transition: all var(--t-base) var(--ease); }
.cluster-target.filled { border-style: solid; border-color: color-mix(in srgb, var(--accent) 35%, transparent); background: var(--ember-soft); }
.cluster-target .ct-head { display: flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; }
.cluster-target .ct-head .count { margin-left: auto; font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--accent-deep); }
.cluster-target .ct-body { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.cluster-target .ct-empty { font-size: var(--fs-xs); color: var(--mute-2); margin-top: 7px; }

/* ── TRACKER tile (interactive tabs) ── */
.trk-tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.trk-tab { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 6px; border: 1px solid var(--hair-strong); border-radius: var(--r-md); background: var(--cream-soft); cursor: pointer; font-size: var(--fs-sm); font-weight: 500; color: var(--mute); transition: all var(--t-fast) var(--ease); }
.trk-tab[aria-selected="true"] { border-color: var(--ink); color: var(--text); background: var(--paper); }
.trk-card { background: var(--paper); border: 1px solid var(--hair-strong); border-radius: var(--r-md); padding: 12px; }
.trk-card .tc-top { display: flex; align-items: center; gap: 8px; font-size: var(--fs-xs); color: var(--mute); margin-bottom: 8px; }
.trk-card .tc-top .id { font-family: var(--font-mono); color: var(--text); font-weight: 500; }
.trk-card .tc-top .ai { margin-left: auto; display: inline-flex; align-items: center; gap: 4px; color: var(--accent-deep); }
.trk-card .tc-title { font-size: var(--fs-md); font-weight: 600; line-height: 1.35; }
.trk-card .tc-body { font-size: var(--fs-xs); color: var(--text-2); line-height: 1.55; margin-top: 6px; }
.trk-card .tc-meta { display: flex; gap: 7px; margin-top: 10px; flex-wrap: wrap; }
.trk-card .tc-meta .m { font-size: var(--fs-2xs); padding: 2px 7px; border-radius: var(--r-sm); background: var(--cream-2); color: var(--text-2); font-family: var(--font-mono); }

/* ── REVENUE tile ── */
.rev-stage { display: flex; flex-direction: column; height: 100%; justify-content: center; }
.rev-num { font-family: var(--font-display); font-weight: 600; font-size: 46px; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.rev-num .pre { color: var(--accent); }
.rev-sub { font-size: var(--fs-sm); color: var(--mute); margin-top: 8px; }
.rev-bars { display: flex; align-items: flex-end; gap: 6px; height: 46px; margin-top: 14px; }
.rev-bars span { flex: 1; background: var(--ember-soft); border-radius: 3px 3px 0 0; height: 0; transition: height 0.7s var(--ease); }
.rev-bars span:last-child { background: var(--accent); }

/* ── ROADMAP tile ── */
.road-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.road-col .rc-h { font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: var(--ls-cap); font-weight: 600; color: var(--mute); margin-bottom: 7px; display: flex; align-items: center; gap: 5px; }
.road-card { background: var(--cream-soft); border: 1px solid var(--hair); border-radius: var(--r-sm); padding: 8px 9px; font-size: var(--fs-xs); font-weight: 500; margin-bottom: 6px; line-height: 1.3; cursor: default; transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease); }
.road-card:hover { transform: translateY(-2px); box-shadow: var(--sh-soft); }
.road-card .foll { display: flex; align-items: center; gap: 4px; margin-top: 5px; color: var(--mute-2); font-size: var(--fs-2xs); font-family: var(--font-mono); }

/* ══ generic section ══ */
section.band { padding: 76px 0; }
section.band.alt { background: var(--cream-2); border-top: var(--border); border-bottom: var(--border); }
.sec-head { text-align: center; max-width: 60ch; margin: 0 auto; }
.sec-head .eyebrow { justify-content: center; }
.sec-head h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 40px); font-weight: 600; letter-spacing: -0.02em; margin: 12px 0 0; text-wrap: balance; }
.sec-head p { font-size: var(--fs-lg); color: var(--mute); margin: 14px auto 0; line-height: 1.55; max-width: 56ch; }

/* ══ three acts ══ */
.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.act { background: var(--surface); border: var(--border); border-radius: var(--r-2xl); padding: 26px 24px; position: relative; transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease); }
.act:hover { box-shadow: var(--sh-soft); transform: translateY(-3px); }
.act .n { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--accent-deep); display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent); border-radius: var(--r-pill); }
.act h3 { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.01em; margin: 18px 0 8px; }
.act p { font-size: var(--fs-md); color: var(--text-2); line-height: 1.55; }
.act .seq { position: absolute; top: 26px; right: 24px; color: var(--mute-2); }

/* ══ loop / email ══ */
.loop { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.loop h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 36px); font-weight: 600; letter-spacing: -0.02em; margin: 12px 0 0; }
.loop p { color: var(--mute); font-size: var(--fs-lg); line-height: 1.6; margin: 16px 0 0; max-width: 44ch; }
.loop .steps { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.loop .steps .s { display: flex; gap: 11px; align-items: flex-start; font-size: var(--fs-md); color: var(--text-2); }
.loop .steps .s .k { width: 22px; height: 22px; border-radius: var(--r-pill); background: var(--ember-soft); color: var(--accent-deep); display: grid; place-items: center; flex: 0 0 auto; }
.email { background: var(--paper); border: var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-pop); overflow: hidden; }
.email .ehead { padding: 14px 18px; border-bottom: var(--border); display: flex; align-items: center; gap: 10px; }
.email .ehead .from b { font-weight: 600; font-size: var(--fs-md); }
.email .ehead .from span { color: var(--mute); font-size: var(--fs-md); }
.email .ehead .when { margin-left: auto; font-size: var(--fs-sm); color: var(--mute-2); font-family: var(--font-mono); }
.email .ebody { padding: 22px 20px; }
.email .ebody .sub { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.01em; }
.email .ebody p { font-size: var(--fs-md); color: var(--text-2); line-height: 1.6; margin: 12px 0 0; }
.email .ship { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: var(--fs-md); color: var(--green); font-weight: 500; padding: 8px 12px; background: var(--green-soft); border-radius: var(--r-md); }
.email .ebtn { display: inline-flex; margin-top: 18px; background: var(--accent); color: #fff; font-size: var(--fs-md); font-weight: 600; padding: 10px 16px; border-radius: var(--r-sm); }

/* ══ integrations ══ */
.integ-logos { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.integ-chip { display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border: var(--border); border-radius: var(--r-lg); background: var(--surface); font-size: var(--fs-md); font-weight: 600; color: var(--text-2); transition: all var(--t-base) var(--ease); }
.integ-chip:hover { box-shadow: var(--sh-soft); color: var(--text); transform: translateY(-2px); border-color: var(--hair-strong); }
.integ-chip .gl { color: var(--accent-deep); display: inline-flex; }
.integ-foot { text-align: center; margin-top: 26px; font-size: var(--fs-md); color: var(--mute); display: flex; align-items: center; gap: 8px; justify-content: center; }
.integ-foot .sparkle { color: var(--accent-deep); display: inline-flex; }

/* ══ testimonials ══ */
.tcols { columns: 3; column-gap: 18px; margin-top: 44px; }
.tcard { break-inside: avoid; background: var(--surface); border: var(--border); border-radius: var(--r-lg); padding: 18px; margin-bottom: 18px; transition: box-shadow var(--t-base) var(--ease); }
.tcard:hover { box-shadow: var(--sh-soft); }
.tcard .who { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tcard .av { width: 34px; height: 34px; border-radius: var(--r-pill); display: grid; place-items: center; font-size: var(--fs-xs); font-weight: 600; flex-shrink: 0; }
.tcard .nm { font-size: var(--fs-body); font-weight: 600; line-height: 1.2; }
.tcard .rl { font-size: var(--fs-xs); color: var(--mute); line-height: 1.2; }
.tcard p { font-size: var(--fs-md); line-height: 1.55; color: var(--text-2); }

/* ══ faq ══ */
.faq { max-width: 760px; margin: 44px auto 0; border-top: var(--border); }
.faq details { border-bottom: var(--border); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 4px; display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { margin-left: auto; color: var(--accent-deep); transition: transform var(--t-slow) var(--ease); flex-shrink: 0; display: inline-flex; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .ans { padding: 0 4px 22px; font-size: var(--fs-md); line-height: 1.65; color: var(--text-2); max-width: 66ch; }
.faq .ans code { font-family: var(--font-mono); font-size: var(--fs-sm); background: var(--cream-2); padding: 1px 6px; border-radius: var(--r-sm); }

/* ══ cta band ══ */
.cta-band { text-align: center; }
.cta-band .trail { display: inline-flex; gap: 9px; margin-bottom: 24px; }
.cta-band .trail span { width: 10px; height: 10px; border-radius: var(--r-pill); background: var(--accent); animation: tp 1.3s ease-in-out infinite; }
.cta-band .trail span:nth-child(2){ animation-delay: .15s; } .cta-band .trail span:nth-child(3){ animation-delay: .3s; }
.cta-band .trail span:nth-child(4){ animation-delay: .45s; } .cta-band .trail span:nth-child(5){ animation-delay: .6s; }
@keyframes tp { 0%,100% { transform: scale(1); opacity: .35; } 50% { transform: scale(1.4); opacity: 1; } }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 50px); font-weight: 600; letter-spacing: -0.025em; margin: 0; }
.cta-band p { color: var(--mute); font-size: var(--fs-lg); margin: 16px 0 30px; }
.cta-band .cta { display: flex; gap: 13px; justify-content: center; }

/* ══ footer ══ */
footer { border-top: var(--border); background: var(--cream-2); }
footer .wrap { padding: 56px 28px 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand .logo { margin-bottom: 12px; }
.foot-brand .tag { font-family: var(--font-display); font-style: italic; color: var(--mute); font-size: var(--fs-md); }
.foot-col h5 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: var(--ls-cap); color: var(--mute-2); font-weight: 600; margin: 0 0 14px; }
.foot-col a { display: block; font-size: var(--fs-md); color: var(--mute); margin-bottom: 10px; transition: color var(--t-fast); }
.foot-col a:hover { color: var(--text); }
.foot-bot { display: flex; align-items: center; gap: 16px; margin-top: 44px; padding-top: 22px; border-top: var(--border); font-size: var(--fs-sm); color: var(--mute-2); flex-wrap: wrap; }
.foot-bot .grow { flex: 1; }

/* ══ scroll reveal ══ */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: 0.08s; }
[data-reveal][data-d="2"] { transition-delay: 0.16s; }
[data-reveal][data-d="3"] { transition-delay: 0.24s; }
[data-reveal][data-d="4"] { transition-delay: 0.32s; }
[data-reveal][data-d="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-trail i { opacity: 1; transform: none; }
}

/* ══ responsive ══ */
@media (max-width: 940px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .col-3, .col-4, .col-5 { grid-column: span 6; }
  .col-6, .col-7, .col-8 { grid-column: span 6; }
  .col-12 { grid-column: span 6; }
  .row-2 { grid-row: span 1; }
  .acts { grid-template-columns: 1fr; }
  .loop { grid-template-columns: 1fr; gap: 36px; }
  .tcols { columns: 1; }
  nav.top .links { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 { grid-column: span 1; }
  .col-12 { grid-column: span 1; }
  .hero .cta { flex-direction: column; align-items: stretch; }
  .road-cols { grid-template-columns: 1fr; }
}
