/* Landing page-specific styles. Ported from the design's Landing.html <style>;
   shared shell rules live in base.css. Pure-animation rules (drag cursor, JS
   typewriter) are dropped — this build is static. */

/* ---------- hero ---------- */
.hero { position: relative; padding: 150px 0 90px; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; }
.hero h1 {
  font-family: var(--tmb-font-display);
  font-size: clamp(44px, 6vw, 76px); line-height: 1.04; letter-spacing: -.04em; font-weight: 800;
  margin: 22px 0 0; text-wrap: balance;
}
.hero p.lead { font-size: 20px; line-height: 1.6; color: var(--tmb-fg-2); margin: 24px 0 0; max-width: 480px; text-wrap: pretty; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* hero day card */
.hero-visual { position: relative; }
.daycard-shell {
  background: rgba(255,255,255,.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.6); border-radius: 40px; box-shadow: var(--tmb-shadow-2xl);
  padding: 22px; transform: rotate(-6deg); transition: transform .6s var(--tmb-ease-out);
}
.daycard-shell:hover { transform: rotate(0deg); }
.daycard { background: var(--tmb-surface); border: 1px solid var(--tmb-border); border-radius: 28px; overflow: hidden; box-shadow: var(--tmb-shadow-inner); }
.daycard-head { height: 60px; border-bottom: 1px solid var(--tmb-border); display: flex; align-items: center; justify-content: space-between; padding: 0 22px; }
.daycard-head .t { font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
.daycard-head .d { font-size: 13px; color: var(--tmb-fg-3); font-weight: 600; }
.daycard-body { padding: 22px; }
.blocks { display: grid; grid-template-columns: repeat(6, 1fr); gap: 11px; }
.blk {
  aspect-ratio: 1; border-radius: 28%; display: flex; align-items: center; justify-content: center;
  font-family: var(--tmb-font-sans); font-variant-numeric: tabular-nums; line-height: 1;
  transition: transform .25s var(--tmb-ease-out);
}
.blk .bl { font-weight: 800; font-size: 12px; color: rgba(255,255,255,.95); text-shadow: 0 1px 2px rgba(0,0,0,.18); }
.blk.focus { background: linear-gradient(135deg, var(--tmb-brand-light-from), var(--tmb-brand-light-to)); box-shadow: 0 4px 12px -3px rgba(0,159,255,.4); }
.blk.work  { background: var(--tmb-brand-dark-from); box-shadow: 0 4px 10px -3px rgba(10,42,115,.35); }
.blk.break { background: linear-gradient(135deg, #c084fc, #a855f7); box-shadow: 0 4px 12px -3px rgba(168,85,247,.4); }
.blk.move  { background: linear-gradient(135deg, #4ade80, #22c55e); box-shadow: 0 4px 12px -3px rgba(34,197,94,.4); }
.blk.meal  { background: linear-gradient(135deg, #fbbf24, #f59e0b); box-shadow: 0 4px 12px -3px rgba(245,158,11,.4); }
.blk.empty { background: var(--tmb-block-empty); }
.blk.empty .bl { font-weight: 600; font-size: 10px; color: var(--tmb-fg-4); letter-spacing: .02em; text-shadow: none; }
.blk:hover { transform: scale(1.12); }
.daycard-foot { height: 76px; border-top: 1px solid var(--tmb-border); background: var(--tmb-surface-soft); display: flex; align-items: center; justify-content: space-around; }
.daycard-foot .stat { text-align: center; }
.daycard-foot .stat .k { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--tmb-fg-3); }
.daycard-foot .stat .v { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-top: 2px; font-variant-numeric: tabular-nums; white-space: nowrap; }

.float-card {
  position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border: 1px solid var(--tmb-border); border-radius: 22px; box-shadow: var(--tmb-shadow-xl); padding: 16px; z-index: 5;
}
.float-card.prod { top: 60px; right: -28px; width: 200px; }
.float-card.focus { bottom: 92px; left: -34px; width: 220px; }
.fc-row { display: flex; align-items: center; gap: 12px; }
.fc-ic { width: 38px; height: 38px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-ic svg { width: 18px; height: 18px; }
.fc-row .k { font-size: 12px; color: var(--tmb-fg-3); font-weight: 600; }
.fc-row .v { font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.fc-bar { height: 6px; border-radius: 999px; background: var(--tmb-surface-soft); margin-top: 12px; overflow: hidden; }
.fc-bar i { display: block; height: 100%; width: 75%; background: var(--tmb-success); border-radius: 999px; }

/* ---------- generic section ---------- */
section { position: relative; z-index: 1; }
.sec { padding: 96px 0; }
.sec-head { max-width: 720px; margin: 0 auto; text-align: center; }
.sec-head h2 { font-family: var(--tmb-font-display); font-size: clamp(30px, 4vw, 50px); line-height: 1.08; letter-spacing: -.035em; font-weight: 800; margin: 0; text-wrap: balance; }
.sec-head p { font-size: 18px; line-height: 1.6; color: var(--tmb-fg-3); margin: 20px 0 0; text-wrap: pretty; }
.sec-soft { background: var(--tmb-surface-soft); border-block: 1px solid var(--tmb-border-soft); }

.sec-cta { display: flex; justify-content: center; margin-top: 48px; }
.sec-link {
  display: inline-flex; align-items: center; gap: 10px; height: 52px; padding: 0 26px;
  border-radius: var(--tmb-radius-pill); background: var(--tmb-surface); border: 1px solid var(--tmb-border);
  box-shadow: var(--tmb-shadow-xs); font-weight: 700; font-size: 15px; color: var(--tmb-fg-1);
  transition: transform .18s var(--tmb-ease-out), box-shadow .2s, border-color .2s;
}
.sec-link:hover { transform: translateY(-2px); border-color: var(--tmb-brand-light-to); box-shadow: var(--tmb-shadow-md); }
.sec-link svg { width: 18px; height: 18px; color: var(--tmb-brand-light-to); transition: transform .18s var(--tmb-ease-out); }
.sec-link:hover svg { transform: translateX(3px); }

/* ---------- data & privacy / features cards (shared card look) ---------- */
.data-grid, .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.data-card, .feat {
  background: var(--tmb-surface); border: 1px solid var(--tmb-border); border-radius: var(--tmb-radius-2xl);
  padding: 34px; box-shadow: var(--tmb-shadow-sm); transition: transform .25s var(--tmb-ease-out), box-shadow .25s;
}
.data-card:hover, .feat:hover { transform: translateY(-4px); box-shadow: var(--tmb-shadow-xl); }
.data-card .ic, .feat .ic { width: 58px; height: 58px; border-radius: 18px; background: var(--tmb-surface-soft); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.data-card .ic svg, .feat .ic svg { width: 30px; height: 30px; }
.data-card h3, .feat h3 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; }
.data-card p, .feat p { font-size: 15px; line-height: 1.6; color: var(--tmb-fg-2); margin: 0; }

/* ---------- the 168-hour reckoning ---------- */
.reckon { max-width: 900px; margin: 60px auto 0; }
.reckon-bar { display: flex; height: 104px; border-radius: var(--tmb-radius-xl); overflow: hidden; box-shadow: var(--tmb-shadow-md); border: 1px solid var(--tmb-border); }
.reckon-seg { display: flex; align-items: center; justify-content: center; min-width: 0; color: var(--tmb-fg-1); position: relative; }
.reckon-seg .h { font-family: var(--tmb-font-display); font-size: clamp(20px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1; }
.reckon-seg.sleep { background: #c7d2e4; }
.reckon-seg.work { background: #aab9d4; }
.reckon-seg.chores { background: #dde4ef; }
.reckon-seg.free { background: var(--tmb-grad-light); color: #fff; box-shadow: var(--tmb-glow-brand); }
.reckon-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 26px; }
.reckon-legend span { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--tmb-fg-3); }
.reckon-legend i { width: 13px; height: 13px; border-radius: 4px; flex-shrink: 0; }
.reckon-legend i.sleep { background: #c7d2e4; }
.reckon-legend i.work { background: #aab9d4; }
.reckon-legend i.chores { background: #dde4ef; }
.reckon-legend i.free { background: var(--tmb-grad-light); }
.reckon-punch { text-align: center; font-family: var(--tmb-font-display); font-size: clamp(24px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.2; margin: 48px auto 0; max-width: 760px; text-wrap: balance; }
@media (max-width: 640px) { .reckon-seg .h { font-size: 15px; } }

/* ---------- how it works (static 3-step) ---------- */
.how-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; align-items: stretch; }
.flow-step { display: flex; flex-direction: column; background: var(--tmb-surface); border: 1px solid var(--tmb-border); border-radius: var(--tmb-radius-3xl); padding: 24px; box-shadow: var(--tmb-shadow-lg); }
.flow-stage { position: relative; background: var(--tmb-surface-soft); border: 1px solid var(--tmb-border); border-radius: 22px; padding: 16px; }
.flow-stage .sh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.flow-stage .sh .d { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; }
.flow-stage .sh .d .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--tmb-brand-light-from); box-shadow: 0 0 0 4px rgba(0,191,255,.16); }
.flow-stage .sh .t { font-size: 11px; font-weight: 700; color: var(--tmb-fg-4); letter-spacing: .02em; }
.fg { display: grid; grid-template-columns: auto repeat(6, 1fr); gap: 6px; align-items: center; }
.fg .hl { font-size: 9px; font-weight: 700; color: var(--tmb-fg-3); text-transform: uppercase; letter-spacing: .1em; text-align: right; padding-right: 4px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.fb { aspect-ratio: 1; border-radius: 28%; background: var(--tmb-block-empty); display: flex; align-items: center; justify-content: center; position: relative; }
.fb .bl { font-weight: 800; font-size: 9px; line-height: 1; color: rgba(255,255,255,.95); text-shadow: 0 1px 2px rgba(0,0,0,.2); letter-spacing: .01em; }
.fb.empty .bl { font-weight: 600; font-size: 8px; color: var(--tmb-fg-4); text-shadow: none; }
.fb.focus { background: linear-gradient(135deg, var(--tmb-brand-light-from), var(--tmb-brand-light-to)); box-shadow: 0 3px 9px -3px rgba(0,159,255,.4); }
.fb.work  { background: var(--tmb-brand-dark-from); box-shadow: 0 3px 8px -3px rgba(10,42,115,.35); }
.fb.break { background: linear-gradient(135deg, #c084fc, #a855f7); box-shadow: 0 3px 9px -3px rgba(168,85,247,.4); }
.fb.move  { background: linear-gradient(135deg, #4ade80, #22c55e); box-shadow: 0 3px 9px -3px rgba(34,197,94,.4); }
.fb.meal  { background: linear-gradient(135deg, #fbbf24, #f59e0b); box-shadow: 0 3px 9px -3px rgba(245,158,11,.4); }
.flow-insight { position: absolute; right: 13px; bottom: 13px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 999px; background: var(--tmb-surface); box-shadow: var(--tmb-shadow-md); font-size: 12px; font-weight: 800; color: var(--tmb-brand-dark-from); }
.flow-insight .up { color: var(--tmb-success); font-size: 13px; }
.flow-cap { margin-top: 22px; display: flex; gap: 14px; }
.flow-cap .step-n { width: 34px; height: 34px; flex-shrink: 0; border-radius: 11px; background: var(--tmb-grad-light); color: #fff; font-weight: 800; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--tmb-glow-brand-sm); }
.flow-cap h3 { font-size: 17px; font-weight: 800; letter-spacing: -.02em; margin: 3px 0 6px; }
.flow-cap p { font-size: 13.5px; line-height: 1.55; color: var(--tmb-fg-2); margin: 0; }
.how-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 36px; }
.how-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--tmb-fg-2); }
.how-legend i { width: 13px; height: 13px; border-radius: 4px; }

/* ---------- accountability ---------- */
.acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.acc { background: var(--tmb-surface); border: 1px solid var(--tmb-border); border-radius: var(--tmb-radius-2xl); padding: 30px; box-shadow: var(--tmb-shadow-sm); display: flex; flex-direction: column; transition: transform .25s var(--tmb-ease-out), box-shadow .25s; }
.acc:hover { transform: translateY(-4px); box-shadow: var(--tmb-shadow-xl); }
.acc .ic { width: 50px; height: 50px; border-radius: 15px; background: var(--tmb-surface-soft); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.acc .ic svg { width: 26px; height: 26px; }
.acc h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 9px; }
.acc p { font-size: 14.5px; line-height: 1.6; color: var(--tmb-fg-2); margin: 0 0 24px; }
.acc .mock { margin-top: auto; }
.acc-note { display: flex; align-items: center; gap: 12px; padding: 13px 14px; background: var(--tmb-surface-soft); border: 1px solid var(--tmb-border); border-radius: 16px; }
.acc-note img { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; }
.acc-note .t { font-size: 13px; font-weight: 700; letter-spacing: -.01em; }
.acc-note .s { font-size: 12px; color: var(--tmb-fg-3); margin-top: 2px; }
.acc-note .time { margin-left: auto; font-size: 11px; color: var(--tmb-fg-4); font-weight: 700; white-space: nowrap; }
.acc-goals { display: flex; flex-direction: column; gap: 16px; }
.acc-goal .gr { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.acc-goal .gr s { color: var(--tmb-fg-3); font-weight: 600; text-decoration: none; font-variant-numeric: tabular-nums; }
.acc-track { height: 9px; border-radius: 999px; background: var(--tmb-surface-soft); overflow: hidden; }
.acc-track i { display: block; height: 100%; border-radius: 999px; }
.acc-streak { display: flex; flex-direction: column; gap: 16px; }
.acc-streak .big { display: flex; align-items: baseline; gap: 9px; }
.acc-streak .big b { font-family: var(--tmb-font-display); font-size: 42px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--tmb-brand-light-to); font-variant-numeric: tabular-nums; }
.acc-streak .big span { font-size: 13px; color: var(--tmb-fg-3); font-weight: 600; }
.acc-days { display: flex; gap: 7px; }
.acc-days i { flex: 1; height: 32px; border-radius: 9px; background: var(--tmb-surface-soft); }
.acc-days i.on { background: var(--tmb-grad-light); }
@media (max-width: 860px) { .acc-grid { grid-template-columns: 1fr; } }

/* ---------- viz row ---------- */
.viz-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.viz-card { border-radius: var(--tmb-radius-3xl); padding: 34px; box-shadow: var(--tmb-shadow-xl); display: flex; flex-direction: column; position: relative; overflow: hidden; min-height: 280px; }
.viz-card .vc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; position: relative; z-index: 1; }
.viz-card .vc-ic { width: 44px; height: 44px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; }
.viz-card .vc-ic svg { width: 22px; height: 22px; }
.viz-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 0; }
.viz-card p { font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; position: relative; z-index: 1; }
.viz-dark { background: var(--tmb-brand-dark-from); color: #fff; }
.viz-dark .glow { position: absolute; top: 0; right: 0; width: 160px; height: 160px; background: var(--tmb-brand-light-from); opacity: .25; filter: blur(50px); border-radius: 50%; transform: translate(40%,-40%); }
.viz-dark .vc-ic { background: rgba(255,255,255,.12); color: #fff; }
.viz-dark p { color: rgba(219,234,254,.72); }
.viz-grad { background: var(--tmb-grad-light); color: #fff; }
.viz-grad .vc-ic { background: rgba(255,255,255,.22); color: #fff; }
.viz-grad p { color: rgba(255,255,255,.85); }
.viz-light { background: var(--tmb-surface); border: 1px solid var(--tmb-border); }
.viz-light .vc-ic { background: rgba(0,159,255,.1); color: var(--tmb-brand-light-to); }
.viz-light p { color: var(--tmb-fg-2); }
.vc-chat { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.vc-msg { padding: 12px 15px; border-radius: 16px; font-size: 13.5px; line-height: 1.45; max-width: 92%; }
.vc-msg.them { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-bottom-left-radius: 5px; align-self: flex-start; color: rgba(255,255,255,.92); }
.vc-msg.me { background: var(--tmb-brand-light-from); border-bottom-right-radius: 5px; align-self: flex-end; font-weight: 600; box-shadow: var(--tmb-glow-brand-sm); }
.wm { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 22px; padding: 18px; margin-top: auto; }
.wm-top { display: flex; align-items: baseline; gap: 11px; }
.wm-big { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.wm-lbl { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.88); line-height: 1.25; }
.wm-week { display: flex; align-items: flex-end; gap: 6px; height: 48px; margin: 16px 0; }
.wm-week i { flex: 1; background: rgba(255,255,255,.4); border-radius: 4px 4px 2px 2px; }
.wm-week i.hi { background: #fff; }
.wm-stats { display: flex; gap: 10px; }
.wm-stats div { flex: 1; background: rgba(255,255,255,.14); border-radius: 13px; padding: 11px 13px; }
.wm-stats b { display: block; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.wm-stats s { text-decoration: none; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.82); }
.cm { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.cm-row { display: flex; gap: 16px; align-items: center; background: var(--tmb-surface-soft); border: 1px solid var(--tmb-border); border-radius: 18px; padding: 16px; }
.cm-donut { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; background: conic-gradient(var(--tmb-block-focus) 0 45%, var(--tmb-block-work) 45% 72%, var(--tmb-block-break) 72% 88%, var(--tmb-block-move) 88% 100%); display: flex; align-items: center; justify-content: center; }
.cm-donut::after { content: ""; width: 44px; height: 44px; background: var(--tmb-surface-soft); border-radius: 50%; }
.cm-leg { display: flex; flex-direction: column; gap: 7px; }
.cm-leg span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--tmb-fg-2); }
.cm-leg i { width: 11px; height: 11px; border-radius: 4px; flex-shrink: 0; }

/* ---------- philosophy ---------- */
.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; margin: 56px auto 0; }
.phil h3 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; display: flex; align-items: center; gap: 12px; }
.phil h3 .bar { width: 8px; height: 26px; border-radius: 999px; }
.phil p { font-size: 15.5px; line-height: 1.7; color: var(--tmb-fg-2); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--tmb-grad-dark); color: #fff; text-align: center; padding: 110px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% -20%, rgba(0,159,255,.4), transparent 60%); }
.cta-band h2 { font-family: var(--tmb-font-display); font-size: clamp(34px, 5vw, 60px); font-weight: 800; letter-spacing: -.035em; margin: 0; position: relative; }
.cta-band p { font-size: 20px; color: rgba(219,234,254,.85); margin: 24px auto 0; max-width: 540px; position: relative; }
.cta-band .hero-cta { justify-content: center; margin-top: 40px; position: relative; }

/* ---------- platforms ---------- */
.plat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.plat { border-radius: var(--tmb-radius-3xl); padding: 44px 36px; box-shadow: var(--tmb-shadow-xl); display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform .25s var(--tmb-ease-out); }
.plat:hover { transform: translateY(-5px); }
.plat .pic { width: 80px; height: 80px; border-radius: 24px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 28px; transition: transform .25s; }
.plat:hover .pic { transform: scale(1.08); }
.plat .pic svg { width: 40px; height: 40px; }
.plat h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; }
.plat p { font-size: 15px; line-height: 1.6; margin: 0 0 28px; flex: 1; }
.plat .btn, .plat .soon { width: 100%; }
.plat .soon { display: inline-flex; align-items: center; justify-content: center; height: 56px; border-radius: var(--tmb-radius-pill); font-weight: 700; font-size: 15px; color: var(--tmb-fg-3); background: var(--tmb-surface-soft); border: 1px dashed var(--tmb-border); }
.plat-light { background: var(--tmb-surface); border: 1px solid var(--tmb-border); }
.plat-light .pic { background: rgba(0,159,255,.1); color: var(--tmb-brand-light-to); }
.plat-light.dark .pic { background: rgba(0,62,160,.1); color: var(--tmb-brand-dark-from); }
.plat-light p { color: var(--tmb-fg-2); }
.plat-grad { background: var(--tmb-grad-light); color: #fff; }
.plat-grad .pic { background: rgba(255,255,255,.2); color: #fff; }
.plat-grad p { color: rgba(255,255,255,.85); }

/* ---------- pricing teaser ---------- */
.price-band { text-align: center; }
.price-band .price { font-family: var(--tmb-font-display); font-size: clamp(56px, 9vw, 96px); font-weight: 800; letter-spacing: -.05em; margin: 24px 0 0; }
.price-band .quote { font-size: 21px; line-height: 1.6; color: var(--tmb-fg-2); font-style: italic; max-width: 640px; margin: 28px auto 40px; text-wrap: pretty; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .feat-grid, .data-grid, .viz-row, .plat-grid { grid-template-columns: 1fr; }
  .phil-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-flow { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .hero { padding: 120px 0 60px; }
  .sec { padding: 64px 0; }
  .float-card.prod { right: -10px; }
  .float-card.focus { left: -10px; }
}
