/* ==========================================================================
   Time Blocks — landing page
   Imported from claudedesign/timeblocks/v1 ("Time Blocks Landing.html").

   The mock is DARK-FIRST (that is the design). Dark is also the site default,
   so the dark token set lives on :root and the light set is a modest tonal
   inversion applied only when the site toggle removes data-dark. Token layer
   only — no layout or component is redesigned for light.

   Deviations from the handoff (deliberate, both for the a11y >= 95 deploy gate):
   - --text-3 is rgba(242,242,244,.55) not .28. At .28 the fine print, footer,
     empty task placeholders and the "Today" control all land ~2.3:1 and fail
     the contrast audit. .52 is the mathematical floor for 4.5:1 on #141417
     and #1e1e22; .55 buys headroom.
   - --accent-ink: the orange #ff9f0a is 9:1 on the dark page but only ~1.9:1
     on a light page, so kickers/links/numbers use a darkened orange in light.
   ========================================================================== */

:root {
  /* surfaces */
  --bg: #141417;
  --bg-2: #1b1b1f;
  --win-bg: #28282c;
  --toolbar-bg: #303034;
  --content-bg: #1e1e22;
  --card-bg: #252529;
  --control-bg: #3a3a3f;
  --control-hover: #45454b;
  --lift-bg: #2c2c31;
  --wfield-bg: rgba(255, 255, 255, .06);

  /* ink */
  --text: #f2f2f4;
  --text-2: rgba(242, 242, 244, .58);
  --text-3: rgba(242, 242, 244, .55);

  /* lines */
  --sep: rgba(255, 255, 255, .09);
  --sep-strong: rgba(255, 255, 255, .2);

  /* accent */
  --accent: #ff9f0a;
  --accent-hover: #ffb340;
  --accent-ink: #ff9f0a;
  --accent-soft: rgba(255, 159, 10, .16);
  --on-accent: #141417;

  /* effects */
  --control-shadow: 0 .5px 1.5px rgba(0, 0, 0, .4);
  --win-shadow: 0 0 0 .5px rgba(0, 0, 0, .6), 0 40px 100px -20px rgba(0, 0, 0, .9);
  --hero-glow: radial-gradient(60% 55% at 50% 0%, rgba(255, 159, 10, .14), transparent 70%);
  --price-bg: linear-gradient(180deg, #232327, #1b1b1f);
  --video-bg: linear-gradient(160deg, #2a2a2f, #18181b);
  --cap-scrim: rgba(12, 12, 14, .82);

  /* site chrome */
  --c-bg: #131316;
  --c-ink: #f0eadf;
  --c-ink2: #c9bfae;
  --c-line: rgba(240, 234, 223, .14);
  --c-accent: #ff9f0a;
  --c-chip: rgba(255, 255, 255, .07);

  --wrap: 1080px;
}

/* Light = tonal inversion of the token layer only. Specificity (0,2,0) beats
   :root, so dark still wins if JS never runs. */
:root:not([data-dark="true"]) {
  --bg: #f7f6f3;
  --bg-2: #efeeea;
  --win-bg: #ffffff;
  --toolbar-bg: #eceae6;
  --content-bg: #ffffff;
  --card-bg: #f5f4f0;
  --control-bg: #ffffff;
  --control-hover: #f0efeb;
  --lift-bg: #ffffff;
  --wfield-bg: rgba(0, 0, 0, .04);

  --text: #17171a;
  --text-2: #4e4e56;
  --text-3: #6b6b73;

  --sep: rgba(0, 0, 0, .1);
  --sep-strong: rgba(0, 0, 0, .18);

  --accent-ink: #8a4f00;
  --accent-soft: rgba(255, 159, 10, .18);

  --control-shadow: 0 .5px 1.5px rgba(0, 0, 0, .12);
  --win-shadow: 0 0 0 .5px rgba(0, 0, 0, .1), 0 30px 70px -24px rgba(0, 0, 0, .35);
  --hero-glow: radial-gradient(60% 55% at 50% 0%, rgba(255, 159, 10, .2), transparent 70%);
  --price-bg: linear-gradient(180deg, #ffffff, #f2f1ed);
  --video-bg: linear-gradient(160deg, #ffffff, #eceae6);
  --cap-scrim: rgba(255, 255, 255, .9);

  --c-bg: #f9f4ef;
  --c-ink: #1a1714;
  --c-ink2: #4d4438;
  --c-line: rgba(26, 23, 20, .12);
  --c-accent: #8a4f00;
  --c-chip: rgba(26, 23, 20, .06);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ══════════════════ humbleha.us site chrome ══════════════════ */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: .75rem 1.25rem;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.site-nav .nav-brand { display: flex; align-items: center; gap: .5rem; min-width: 0; flex-shrink: 1; }
.site-nav .nav-brand a {
  color: var(--c-ink); text-decoration: none; font-size: .875rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-nav .nav-brand a:hover { color: var(--c-accent); }
.exp-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  padding: .15rem .4rem; border-radius: .25rem;
  background: var(--c-chip); color: var(--c-ink2);
  flex-shrink: 0;
}
.site-nav .nav-right { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.donate-link {
  font-size: .8rem; color: var(--c-ink2); text-decoration: none;
  white-space: nowrap; position: relative;
}
.donate-link:hover { color: var(--c-accent); }
/* 44px tap target without changing the visual box */
.donate-link::before {
  content: ''; position: absolute; top: 50%; left: 0;
  width: 100%; min-width: 44px; height: 44px; transform: translateY(-50%);
}
.dark-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--c-line); background: transparent;
  cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.dark-toggle::after { content: '☀️'; }
[data-dark="true"] .dark-toggle::after { content: '🌙'; }
.dark-toggle::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px; transform: translate(-50%, -50%);
}
@media (max-width: 540px) { .site-nav { padding: .75rem 1rem; gap: .5rem; } }

/* ══════════════════ Imported design ══════════════════ */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* Product brand line — the design's own nav is replaced by the site nav above,
   so this keeps the wordmark without shipping a second navigation bar. */
.brandline {
  display: flex; align-items: center; gap: 9px;
  height: 64px;
  font-weight: 700; font-size: 15px; letter-spacing: -.01em; color: var(--text);
}
.logo-mark {
  width: 22px; height: 22px; border-radius: 6px; background: var(--accent);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 4px; flex: none;
}
.logo-mark i { background: #141417; border-radius: 1.5px; display: block; }
.logo-mark i:nth-child(2), .logo-mark i:nth-child(3) { opacity: .35; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 9px; font-weight: 600; font-size: 14px;
  padding: 10px 16px; min-height: 44px;
  cursor: pointer; border: none; font-family: inherit;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 14px; height: 14px; flex: none; }
.btn-primary {
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset, 0 8px 24px -8px rgba(255, 159, 10, .55);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn-ghost { background: var(--control-bg); color: var(--text); box-shadow: var(--control-shadow); }
.btn-ghost:hover { background: var(--control-hover); color: var(--text); }
.btn[disabled] {
  background: var(--control-bg); color: var(--text-2);
  box-shadow: var(--control-shadow); cursor: not-allowed; transform: none;
}

/* ---------- Hero ---------- */
.hero { padding: 60px 0 40px; text-align: center; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -120px 0 auto 0; height: 520px;
  background: var(--hero-glow); pointer-events: none;
}
.hero > * { position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-soft);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 26px;
}
.eyebrow b {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 159, 10, .25); flex: none;
}
h1 {
  font-size: clamp(34px, 6vw, 68px); line-height: 1.02; letter-spacing: -.035em;
  font-weight: 700; margin: 0 auto 22px; max-width: 820px;
}
h1 em { font-style: normal; color: var(--accent-ink); }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2); max-width: 560px; margin: 0 auto 34px; }
.cta-row { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-note { font-size: 12.5px; color: var(--text-3); margin-top: 16px; }
.cta-note a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- App mock (static replica of the real macOS window) ---------- */
.mock-wrap { padding: 56px 0 0; perspective: 1400px; }
.win {
  background: var(--win-bg); border-radius: 12px; box-shadow: var(--win-shadow);
  overflow: hidden; text-align: left; font-size: 13px;
  transform: rotateX(4deg); transform-origin: 50% 0;
  margin: 0 auto; max-width: 1000px;
  display: grid; grid-template-rows: auto 1fr auto;
}
.tb {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 16px; background: var(--toolbar-bg);
  border-bottom: .5px solid var(--sep-strong);
}
.lights { position: absolute; left: 16px; display: flex; gap: 8px; }
.lights i { width: 12.5px; height: 12.5px; border-radius: 50%; display: block; border: .5px solid rgba(0, 0, 0, .12); }
.lights i:nth-child(1) { background: #ff736a; }
.lights i:nth-child(2) { background: #febc2e; }
.lights i:nth-child(3) { background: #19c332; }
.mctl {
  height: 28px; padding: 0 13px; border-radius: 7px;
  border: .5px solid var(--sep); background: var(--control-bg); box-shadow: var(--control-shadow);
  font-size: 12px; font-weight: 500; color: var(--text-2);
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
}
.mctl.date { min-width: 234px; justify-content: center; font-size: 13px; font-weight: 600; color: var(--text); }
.mctl.date svg { width: 14px; height: 14px; opacity: .65; }
.mctl.arrow { width: 28px; padding: 0; justify-content: center; color: var(--text); }
.mctl.arrow svg { width: 9px; height: 9px; }
.daynav-r { position: absolute; right: 16px; display: flex; gap: 8px; }

.win-main { display: grid; grid-template-columns: 1.15fr 1fr; background: var(--content-bg); }
.pane-l {
  display: flex; flex-direction: column; gap: 14px;
  padding: 16px 20px; border-right: .5px solid var(--sep-strong); min-width: 0;
}
.pane-r { display: flex; flex-direction: column; padding: 16px 22px 18px 20px; min-width: 0; }
.pane-head {
  display: flex; align-items: center; justify-content: space-between; gap: 4px 10px;
  flex-wrap: wrap;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-2);
}
.hint {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500; text-transform: none; letter-spacing: .01em;
  color: var(--accent-ink);
}
.hint svg { width: 7px; height: 11px; flex: none; }
.hint { min-width: 0; }

.tgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 12px; row-gap: 2px; }
.row {
  display: grid; grid-template-columns: 14px 12px 1fr; gap: 6px; align-items: center;
  border-radius: 6px; padding: 0 4px; height: 30px; position: relative; font-size: 12.5px;
}
.row .grip { color: var(--text-3); display: grid; place-items: center; }
.row .grip svg { width: 8px; height: 13px; }
.row .dot { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--text-3); }
.row .dot.c { border-color: rgba(255, 255, 255, .18); background: var(--c); }
.row span.lbl { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row.empty span.lbl { color: var(--text-3); }
.row.empty .grip { opacity: .55; }
.row.lift {
  transform: rotate(-2deg) translate(0, -2px);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .8), 0 0 0 1.5px var(--accent);
  background: var(--lift-bg); z-index: 2;
}
.row.lift .grip { color: var(--accent); }
.cursor { position: absolute; width: 18px; height: 22px; z-index: 20; filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .6)); }

.notes {
  margin-top: 4px; border: .5px solid var(--sep); border-radius: 10px; background: var(--card-bg);
  flex: 1; min-height: 150px; display: grid; grid-template-rows: auto 1fr; overflow: hidden;
}
.notes-h {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-2); padding: 9px 14px 7px; border-bottom: .5px solid var(--sep);
}
.notes-b { padding: 10px 14px; font-size: 13px; line-height: 1.55; color: var(--text); }

.sched-head { display: grid; grid-template-columns: 44px 1fr 1fr; padding-bottom: 4px; font-size: 11px; font-weight: 600; color: var(--text-2); }
.sched-head span { padding-left: 10px; }
.sched {
  flex: 1; display: grid; grid-template-columns: 44px 1fr 1fr; grid-auto-rows: 32px;
  border: .5px solid transparent; border-radius: 9px; overflow: hidden; position: relative;
  background: var(--content-bg);
  box-shadow: 0 0 0 2px var(--accent-soft), inset 0 0 0 1px var(--accent);
}
.hr {
  border-top: .5px solid var(--sep); border-right: .5px solid var(--sep-strong);
  font-size: 11.5px; font-weight: 500; color: var(--text-2);
  display: grid; place-items: center; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.hr.first, .slot.first { border-top: none; }
.hr.now { color: var(--accent-ink); font-weight: 700; }
.slot {
  border-top: .5px solid var(--sep); border-right: .5px solid var(--sep);
  display: flex; align-items: center; gap: 8px; padding: 0 10px; font-size: 12.5px;
  background: var(--accent-soft); animation: breathe 1.4s ease-in-out infinite; min-width: 0;
}
.slot.nr { border-right: none; }
.slot.has { background: transparent; animation: none; }
.slot.target { animation: none; background: var(--accent-soft); box-shadow: inset 0 0 0 1.5px var(--accent); }
.slot.struck { text-decoration: line-through; }
.slot.struck span { opacity: .55; }
.slot span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chip { width: 4px; height: 18px; border-radius: 2px; background: var(--c, var(--accent)); flex: none; }
@keyframes breathe { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.nowline { position: absolute; left: 44px; right: 0; height: 1.5px; background: var(--accent); z-index: 5; }
.nowline::before {
  content: ""; position: absolute; left: -4px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

.win-foot {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
  padding: 10px 20px; background: var(--toolbar-bg); border-top: .5px solid var(--sep-strong);
}
.foot-c { display: flex; align-items: center; gap: 12px; justify-content: center; }
.words-l { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); white-space: nowrap; }
.wfield {
  width: 130px; height: 26px; border-radius: 7px; background: var(--wfield-bg);
  border: .5px solid var(--sep); font-size: 13px; font-weight: 500;
  text-align: center; line-height: 25px; color: var(--text);
}
.wfield.e { color: var(--text-3); font-weight: 400; }
.addt {
  height: 24px; padding: 0 10px 0 8px; border-radius: 7px; border: .5px solid var(--sep);
  background: var(--control-bg); box-shadow: var(--control-shadow);
  font-size: 12px; font-weight: 500; color: var(--text);
  display: inline-flex; align-items: center; gap: 5px; width: max-content;
}
.gear {
  width: 30px; height: 30px; border-radius: 8px; border: .5px solid var(--sep);
  background: var(--control-bg); box-shadow: var(--control-shadow); color: var(--text-2);
  display: grid; place-items: center; margin-left: auto;
}
.gear svg { width: 17px; height: 17px; }

/* ---------- Sections ---------- */
section { padding: 96px 0; scroll-margin-top: 16px; }
.sec-head { max-width: 620px; margin-bottom: 48px; }
.kicker { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 12px; }
h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.03em; line-height: 1.08; margin: 0 0 14px; font-weight: 700; }
.sub { color: var(--text-2); font-size: 17px; margin: 0; }

/* ---------- Video ---------- */
.video { padding-top: 0; }
.video-frame {
  position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  background: var(--video-bg); border: .5px solid var(--sep-strong);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .5); display: grid; place-items: center;
}
.video-frame video, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.play {
  width: 76px; height: 76px; border-radius: 50%; background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center;
  box-shadow: 0 0 0 12px rgba(255, 159, 10, .14), 0 16px 40px -10px rgba(255, 159, 10, .6);
}
.play svg { width: 26px; height: 26px; margin-left: 4px; }
.video-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 24px;
  font-size: 13px; color: var(--text); background: var(--cap-scrim);
  display: flex; justify-content: space-between; gap: 12px;
}

/* ---------- Features ---------- */
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--win-bg); border: .5px solid var(--sep); border-radius: 14px; padding: 26px; display: grid; gap: 12px; align-content: start; }
.card .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; }
.card .ico svg { width: 18px; height: 18px; }
.card h3 { margin: 6px 0 0; font-size: 17px; letter-spacing: -.015em; }
.card p { margin: 0; color: var(--text-2); font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: .5px solid var(--sep); }
.step { padding: 30px 26px 0 0; display: grid; gap: 8px; align-content: start; border-right: .5px solid var(--sep); }
.step + .step { padding-left: 26px; }
.step:last-child { border-right: none; }
.num { font-size: 12px; font-weight: 700; color: var(--accent-ink); font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.step h3 { margin: 0; font-size: 19px; letter-spacing: -.02em; }
.step p { margin: 0; color: var(--text-2); font-size: 15px; }

/* ---------- Pricing ---------- */
.price {
  background: var(--price-bg); border: .5px solid var(--sep-strong); border-radius: 20px;
  padding: 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center; position: relative; overflow: hidden;
}
.price::after {
  content: ""; position: absolute; right: -140px; top: -140px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255, 159, 10, .22), transparent 65%);
  pointer-events: none;
}
.price > * { position: relative; z-index: 1; }
.amount { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 6px; flex-wrap: wrap; }
.amount b { font-size: clamp(46px, 6vw, 64px); letter-spacing: -.04em; line-height: 1; }
.amount span { color: var(--text-2); font-size: 15px; }
.strike { color: var(--text-3); text-decoration: line-through; font-size: 18px; margin-left: 8px; font-weight: 400; }
.incl { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.incl li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--text); }
.incl svg { width: 18px; height: 18px; flex: none; color: var(--accent-ink); }
.price .btn { width: 100%; padding: 14px; font-size: 15px; margin-top: 22px; }
.fine { font-size: 12.5px; color: var(--text-3); text-align: center; margin: 12px 0 0; }
.fine a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.faq details { border-top: .5px solid var(--sep); padding: 18px 0; }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-ink); font-size: 20px; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--text-2); margin: 10px 0 0; font-size: 14.5px; }

/* ---------- Footer ---------- */
.page-foot {
  border-top: .5px solid var(--sep); padding: 32px 0 44px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px 24px;
  flex-wrap: wrap; font-size: 13px; color: var(--text-3);
}
.foot-links { display: flex; gap: 20px; font-size: 13px; flex-wrap: wrap; }
.foot-links a { color: var(--text-2); }
.foot-links a:hover { color: var(--accent-ink); }
.page-foot .brandline { height: auto; font-size: 13px; }
.page-foot .logo-mark { width: 18px; height: 18px; padding: 3px; }

/* ══════════════════ Responsive ══════════════════ */
@media (max-width: 860px) {
  .feat, .steps, .price, .faq { grid-template-columns: 1fr; }
  .step { border-right: none; border-top: .5px solid var(--sep); padding-left: 0 !important; padding-right: 0; }
  .price { padding: 32px; }
  .win-main { grid-template-columns: 1fr; }
  .pane-l { border-right: none; border-bottom: .5px solid var(--sep-strong); }
  .notes, .mctl.date, .foot-c { display: none; }
  .win { transform: none; }
  .win-foot { grid-template-columns: 1fr auto; }
  section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .tgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 40px 0 24px; }
  .mock-wrap { padding-top: 36px; }
  section { padding: 56px 0; }
  .sec-head { margin-bottom: 32px; }
  .price { padding: 24px; }
  .card { padding: 20px; }
  .cta-row .btn { width: 100%; }
  .pane-l, .pane-r { padding: 14px 12px; }
  .video-cap { padding: 12px 14px; font-size: 12px; }
  .page-foot { justify-content: flex-start; }
}

@media (max-width: 380px) {
  .tgrid { grid-template-columns: 1fr; }
  .lights { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .slot { animation: none; }
}
