:root {
  color-scheme: dark;
  --bg: #090b0b;
  --panel: #141818;
  --panel-2: #191e1e;
  --ink: #f6f7f3;
  --muted: #929b9b;
  --line: #282e2d;
  --orange: #ffb347;
  --green: #63d6ad;
  --red: #ff7777;
  --cyan: #81d7e7;
  --max: 1500px;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 52% -18%, #26302e 0, #111515 32%, var(--bg) 72%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.shell { width: min(var(--max), 100%); margin: auto; padding: 0 28px 48px; }
.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; color: #d9dcda; text-decoration: none; }
.brand img { display: block; width: clamp(150px, 13vw, 190px); height: auto; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 15px; border-radius: 24px; color: #b9c0bd; text-decoration: none; font-size: .88rem; }
.nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] { color: var(--ink); background: #191e1e; outline: none; }
.nav .nav-cta { border: 1px solid #4d4537; color: #19130b; background: var(--orange); font-weight: 750; }
.nav .nav-cta:hover, .nav .nav-cta:focus-visible { color: #111; background: #ffc369; }

.eyebrow { margin: 0; color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 10px 0 18px; font-size: clamp(3rem, 7vw, 7rem); line-height: .94; letter-spacing: -.07em; font-weight: 420; }
h2 { margin: 6px 0 10px; font-size: clamp(1.8rem, 3vw, 3.25rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 520; }
h3 { margin: 4px 0 8px; font-size: 1.15rem; letter-spacing: -.025em; }
.lede { max-width: 690px; margin: 0; color: #bec5c2; font-size: clamp(1.08rem, 1.7vw, 1.4rem); }
.hero { min-height: 570px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(36px, 6vw, 90px); align-items: center; padding: 72px 0 66px; }
.hero > * { min-width: 0; }
.hero-copy { max-width: 830px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid #3a4240; border-radius: 28px; background: #151919; color: var(--ink); text-decoration: none; font-weight: 730; }
.button:hover, .button:focus-visible { border-color: #707a77; outline: none; }
.button.primary { border-color: var(--orange); background: var(--orange); color: #15100a; }
.button.primary:hover, .button.primary:focus-visible { background: #ffc369; }
.button .arrow { color: currentColor; }

.dashboard-preview, .panel { background: linear-gradient(145deg, rgba(25,30,30,.98), rgba(16,19,19,.98)); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 60px rgba(0,0,0,.2); }
.dashboard-preview { overflow: hidden; transform: rotate(.8deg); }
.dashboard-photo { width: min(100%, 680px); max-width: 100%; min-width: 0; margin: 0; justify-self: end; overflow: hidden; border: 1px solid #343b39; border-radius: 20px; background: #111515; box-shadow: 0 24px 70px rgba(0,0,0,.36); }
.dashboard-photo img { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.dashboard-photo figcaption { padding: 11px 15px; color: #89928f; background: #101313; font-size: .72rem; }
.offer-summary { display: grid; grid-template-columns: minmax(190px,.7fr) minmax(0,1.3fr); gap: 28px; align-items: center; padding: 22px 24px; }
.offer-summary p { margin: 5px 0 0; color: #d4d9d6; }
.offer-points { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 18px; margin: 0; padding: 0; color: #bdc5c1; list-style: none; }
.offer-points li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 800; }
.preview-top { display: flex; justify-content: space-between; align-items: center; padding: 18px; border-bottom: 1px solid var(--line); }
.preview-time { font: 300 2.4rem/1 ui-monospace, monospace; letter-spacing: -.08em; }
.preview-status { color: var(--muted); font-size: .72rem; }
.preview-grid { display: grid; grid-template-columns: 1.1fr .9fr; }
.preview-column { padding: 17px; border-right: 1px solid var(--line); }
.preview-column:last-child { border-right: 0; }
.preview-label { color: var(--orange); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mini-event { margin-top: 10px; padding: 8px 9px; border-left: 2px solid var(--cyan); border-radius: 4px; background: #182426; font-size: .78rem; }
.mini-weather { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 12px; }
.mini-weather span { padding: 9px 4px; border: 1px solid var(--line); border-radius: 7px; color: #c8cecb; font-size: .72rem; text-align: center; }

.section { padding: 70px 0; border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.section-head > p { max-width: 560px; margin: 0 0 7px; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 205px; padding: 24px; }
.feature-number { color: #626d69; font: .75rem ui-monospace, monospace; }
.feature-card h3 { margin-top: 28px; font-size: 1.35rem; }
.feature-card p { margin: 0; color: var(--muted); }
.price-panel { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 34px; }
.price-line { display: flex; align-items: baseline; gap: 13px; margin-top: 18px; }
.price { font: 350 clamp(3.2rem, 6vw, 6rem)/1 ui-monospace, monospace; letter-spacing: -.08em; }
.was { color: #717a77; text-decoration: line-through; }
.payment-terms { display: flex; flex-direction: column; gap: 5px; max-width: 660px; margin: 20px 0 0; padding: 14px 16px; border-left: 2px solid var(--orange); background: rgba(255,179,71,.06); }
.payment-terms strong { color: #f3f5f2; }
.payment-terms span { color: var(--muted); font-size: .84rem; }
.included { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 22px; margin: 22px 0 0; padding: 0; list-style: none; color: #bdc3c0; }
.included li::before { content: "—"; color: var(--orange); margin-right: 8px; }
.fine-print { color: var(--muted); font-size: .8rem; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.step { min-height: 185px; padding: 24px; border-right: 1px solid var(--line); background: rgba(17,20,20,.76); }
.step:last-child { border-right: 0; }
.step strong { display: block; margin: 26px 0 8px; font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); }
.cta-band { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding: 35px; border-color: #54452f; background: linear-gradient(110deg, rgba(255,179,71,.13), rgba(20,24,24,.96) 58%); }
.cta-band h2 { max-width: 720px; margin-bottom: 0; }

@keyframes soft-text-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy > *,
.page-intro > *,
.context-copy > *,
.section-head > *,
.feature-card > *,
.step > *,
.price-panel > *,
.cta-band > * {
  animation: soft-text-rise .7s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-copy > :nth-child(2),
.page-intro > :nth-child(2),
.context-copy > :nth-child(2),
.feature-card > :nth-child(2),
.step > :nth-child(2) { animation-delay: .08s; }

.hero-copy > :nth-child(3),
.page-intro > :nth-child(3),
.context-copy > :nth-child(3),
.feature-card > :nth-child(3),
.step > :nth-child(3) { animation-delay: .16s; }

.hero-copy > :nth-child(4),
.page-intro > :nth-child(4),
.context-copy > :nth-child(4) { animation-delay: .24s; }

.page-intro { min-height: 360px; display: grid; align-content: center; padding: 65px 0 50px; }
.page-intro h1 { max-width: 1000px; font-size: clamp(3rem, 6vw, 6.5rem); }
.faq-intro { min-height: 270px; }
.faq-list { max-width: 1000px; margin: 0 auto; padding-top: 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 22px 48px 22px 0; color: #e4e7e4; cursor: pointer; font-size: 1.08rem; font-weight: 680; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; top: 17px; right: 4px; color: var(--orange); font: 300 1.55rem/1 ui-monospace, monospace; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { max-width: 800px; margin: 0; padding: 0 48px 22px 0; color: var(--muted); }
.faq-item p a { color: #d9dedb; text-underline-offset: 3px; }
.faq-item p a:hover, .faq-item p a:focus-visible { color: var(--orange); }
.faq-item summary:focus-visible { color: var(--ink); outline: 2px solid var(--orange); outline-offset: 4px; }

.guide-intro { min-height: 330px; }
.guide-intro h1 { max-width: 860px; }
.guide-requirement { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: 38px; align-items: center; margin-bottom: 56px; padding: 28px 30px; border-color: #5e4828; background: linear-gradient(110deg, rgba(255,179,71,.12), rgba(20,24,24,.98) 58%); }
.guide-requirement h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.guide-requirement > p { margin: 0; color: #c6cdca; font-size: 1.03rem; }
.guide-layout { max-width: 1180px; display: grid; grid-template-columns: minmax(240px,.64fr) minmax(0,1.36fr); gap: 28px; align-items: start; margin: 0 auto; padding-bottom: 70px; }
.guide-sidebar { position: sticky; top: 18px; display: grid; gap: 16px; }
.guide-checklist { padding: 23px; }
.guide-checklist h2 { font-size: 1.65rem; }
.guide-checklist ol { display: grid; gap: 14px; margin: 20px 0 0; padding-left: 24px; }
.guide-checklist li { padding-left: 6px; color: #c3cac7; }
.guide-checklist li::marker { color: var(--orange); font: 700 .78rem ui-monospace, monospace; }
.scope-note { padding: 22px 23px; border: 1px solid #573232; border-radius: 16px; background: rgba(63,25,25,.28); }
.scope-note .eyebrow { color: #ff9a9a; }
.scope-note h2 { margin-top: 7px; font-size: 1.35rem; }
.scope-note p:last-child { margin-bottom: 0; color: #c3aaa9; font-size: .9rem; }
.guide-content { display: grid; gap: 18px; min-width: 0; }
.guide-section { padding: 2px 4px 18px; }
.guide-section p:last-child { max-width: 760px; margin-bottom: 0; color: var(--muted); }
.provider-section { padding-top: 18px; padding-bottom: 2px; }
.provider-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.provider-card { padding: 28px; }
.provider-heading { display: grid; grid-template-columns: 34px 48px 1fr; gap: 12px; align-items: start; margin-bottom: 22px; }
.provider-number { color: #69726f; font: .78rem/1.7 ui-monospace, monospace; }
.provider-mark { width: 46px; height: 46px; display: grid; place-items: center; overflow: hidden; border: 1px solid #d8ddda; border-radius: 12px; background: #f5f6f4; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.provider-mark img { display: block; width: 30px; height: 30px; object-fit: contain; }
.provider-heading h2 { margin-top: 4px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.guide-steps { display: grid; gap: 13px; margin: 0; padding-left: 32px; list-style: decimal-leading-zero; }
.guide-steps li { min-height: 30px; padding-left: 8px; color: #b9c1bd; }
.guide-steps li::marker { color: var(--orange); font: 700 .72rem ui-monospace, monospace; }
.provider-card > p { color: #b9c1bd; }
.provider-compact { min-width: 0; padding: 22px; }
.provider-compact .provider-heading { grid-template-columns: 24px 42px 1fr; gap: 9px; margin-bottom: 18px; }
.provider-compact .provider-mark { width: 40px; height: 40px; border-radius: 10px; }
.provider-compact .provider-mark img { width: 27px; height: 27px; }
.provider-compact .provider-heading h2 { font-size: 1.42rem; }
.provider-compact .guide-steps { gap: 10px; padding-left: 27px; }
.provider-compact .guide-steps li { font-size: .91rem; }
.provider-note { margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: .84rem; }
.provider-warning { margin-top: 20px; padding: 13px 15px; border-left: 2px solid var(--orange); background: rgba(255,179,71,.06); font-size: .9rem; }
.source-link { display: inline-flex; margin-top: 14px; color: #d8ddda; text-underline-offset: 4px; font-size: .88rem; }
.source-link-secondary { margin-left: 18px; }
.source-link:hover, .source-link:focus-visible { color: var(--orange); }
.privacy-panel { padding: 28px; border: 1px solid #37564f; border-radius: 18px; background: linear-gradient(145deg, rgba(31,64,56,.42), rgba(16,25,23,.9)); }
.privacy-panel .eyebrow { color: var(--green); }
.privacy-panel h2 { font-size: clamp(1.75rem, 3vw, 2.55rem); }
.privacy-panel p, .privacy-panel li { color: #b9c9c4; }
.privacy-panel ul { display: grid; gap: 7px; margin-bottom: 0; padding-left: 20px; }
.guide-submit { display: grid; grid-template-columns: minmax(190px,.7fr) minmax(0,1.3fr); gap: 28px; padding: 28px; }
.guide-submit h2 { font-size: 2rem; }
.guide-submit ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.guide-submit li { padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.guide-submit li:last-child { padding-bottom: 0; border-bottom: 0; }
.guide-submit strong, .guide-submit span { display: block; }
.guide-submit span { margin-top: 2px; color: var(--muted); font-size: .86rem; }
.demo-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.context-showcase { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr); gap: clamp(28px, 5vw, 68px); align-items: start; }
.context-showcase-reverse { grid-template-columns: minmax(270px, .55fr) minmax(0, 1.45fr); }
.context-photo { margin: 0; overflow: hidden; }
.context-photo img { display: block; width: 100%; height: auto; object-fit: cover; }
.context-photo figcaption { padding: 10px 14px; color: #8d9693; background: #101313; font-size: .74rem; }
.context-copy > p:not(.eyebrow) { margin: 0 0 18px; color: var(--muted); }
.image-stage { position: relative; }
.image-callouts { position: absolute; right: 14px; bottom: 14px; left: 14px; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 7px; pointer-events: none; }
.image-callouts span { padding: 7px 10px; border: 1px solid rgba(255,179,71,.55); border-radius: 999px; color: #ffe0ad; background: rgba(9,11,11,.86); box-shadow: 0 5px 18px rgba(0,0,0,.28); font-size: .72rem; font-weight: 780; letter-spacing: .04em; }
.choice-grid { display: grid; gap: 9px; margin-top: 22px; }
.choice-grid div { padding: 13px 15px; border: 1px solid var(--line); border-left: 2px solid var(--orange); border-radius: 9px; background: rgba(17,20,20,.72); }
.choice-grid strong, .choice-grid span { display: block; }
.choice-grid strong { color: #e7eae7; }
.choice-grid span { margin-top: 3px; color: var(--muted); font-size: .84rem; }
.module-callouts { margin: 0; padding: 0; list-style: none; }
.module-callouts li { position: relative; padding: 14px 0 14px 24px; border-top: 1px solid var(--line); }
.module-callouts li::before { content: ""; position: absolute; top: 21px; left: 1px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,179,71,.1); }
.module-callouts strong, .module-callouts span { display: block; }
.module-callouts strong { color: #e7eae7; }
.module-callouts span { margin-top: 2px; color: var(--muted); font-size: .83rem; }
.demo-card { display: flex; min-height: 390px; flex-direction: column; padding: 24px; text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.demo-card:hover, .demo-card:focus-visible { transform: translateY(-3px); border-color: #56605d; outline: none; }
.demo-card .mock { min-height: 170px; margin-bottom: 34px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #0d1010; }
.demo-card .mock-line { height: 7px; margin: 8px 0; border-radius: 4px; background: #27302e; }
.demo-card .mock-line.accent { width: 55%; background: #6f5633; }
.demo-card p { color: var(--muted); }
.demo-card .demo-link { margin-top: auto; color: var(--orange); font-weight: 700; }

.demo-shell { width: min(1600px, 100%); margin: auto; padding: 20px 28px 45px; }
.demo-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 62px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.demo-bar nav { display: flex; align-items: center; gap: 8px; }
.demo-bar a { color: #b7bfbc; text-decoration: none; font-size: .82rem; }
.demo-bar .back { min-height: 42px; display: inline-flex; align-items: center; padding: 0 13px; border: 1px solid #343b39; border-radius: 24px; }
.demo-bar .back:hover { color: var(--ink); border-color: #5a6561; }
.sample-badge { padding: 6px 9px; border: 1px solid #604b2d; border-radius: 5px; color: #ffd18e; background: #211a10; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.dash-header { min-height: 180px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.dash-id { color: #cbd0cd; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.dash-clock { text-align: center; }
.dash-clock strong { display: block; font: 300 clamp(4.5rem, 9vw, 8rem)/1 ui-monospace, monospace; letter-spacing: -.08em; }
.dash-clock span { color: var(--muted); }
.dash-place { justify-self: end; color: #d4d9d6; }
.dash-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; }
.dash-grid > *, .dash-stack > *, .calendar-first > * { min-width: 0; }
.dash-stack { display: grid; gap: 20px; }
.panel-head { display: flex; justify-content: space-between; align-items: end; padding: 20px 22px 16px; }
.panel-head h2 { font-size: 1.45rem; margin: 2px 0 0; }
.panel-head small { color: var(--muted); }
.five-day { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); border-top: 1px solid var(--line); }
.day { min-height: 310px; border-right: 1px solid var(--line); }
.day:last-child { border-right: 0; }
.day.today { background: linear-gradient(180deg, rgba(255,179,71,.08), transparent); }
.day-head { display: flex; justify-content: space-between; padding: 13px; border-bottom: 1px solid var(--line); }
.day-head strong { color: var(--orange); }
.day-head span { color: var(--muted); font: .75rem ui-monospace, monospace; }
.events { display: grid; gap: 8px; padding: 11px; }
.event { padding: 10px; border-left: 3px solid var(--cyan); border-radius: 6px; background: #182426; }
.event strong { display: block; font-size: .88rem; line-height: 1.3; }
.event span { color: var(--cyan); font: .7rem ui-monospace, monospace; }
.event.alt { border-left-color: var(--orange); background: #252015; }
.weather-row { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); border-top: 1px solid var(--line); }
.weather-day { min-height: 145px; display: grid; place-items: center; gap: 3px; padding: 12px 8px; border-right: 1px solid var(--line); text-align: center; }
.weather-day:last-child { border-right: 0; }
.weather-day .icon { font-size: 1.7rem; }
.weather-day small { color: var(--muted); }
.story-list { border-top: 1px solid var(--line); }
.story { display: grid; grid-template-columns: 27px 1fr; gap: 10px; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.story:last-child { border-bottom: 0; }
.story > span { color: #616b68; font: .68rem ui-monospace, monospace; }
.story strong { display: block; font-size: .86rem; line-height: 1.35; }
.story small { color: var(--muted); }
.ticker-list { border-top: 1px solid var(--line); }
.ticker { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.ticker:last-child { border-bottom: 0; }
.ticker span { color: var(--muted); font-size: .76rem; }
.ticker .up { color: var(--green); }
.ticker .down { color: var(--red); }
.links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; padding: 0 18px 18px; }
.quick-link { min-height: 64px; display: flex; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 9px; color: #dce0de; background: #111515; text-decoration: none; font-weight: 650; }
.quick-link:hover { border-color: #56615d; }

.calendar-first { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 20px; }
.calendar-first .calendar-panel { min-width: 0; }
.calendar-first .day { min-height: 430px; }
.side-weather { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.side-weather .weather-day { border-bottom: 1px solid var(--line); }

.sports-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.team-card { min-height: 240px; display: flex; flex-direction: column; padding: 22px; }
.team-code { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid #3c4845; border-radius: 50%; color: var(--cyan); font: 800 .78rem ui-monospace, monospace; }
.team-card h2 { margin-top: 28px; font-size: 1.45rem; }
.score { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.score strong { font: 700 1.4rem ui-monospace, monospace; }
.score span { color: var(--muted); font-size: .75rem; text-align: right; }
.sports-note { margin-bottom: 18px; padding: 12px 15px; border: 1px solid #5e4828; border-radius: 10px; color: #ffd293; background: #241c11; font-size: .85rem; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; padding: 40px 0 15px; border-top: 1px solid var(--line); color: #7f8986; font-size: .78rem; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 18px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .dashboard-preview { max-width: 720px; transform: none; }
  .dashboard-photo { width: min(100%, 760px); justify-self: start; }
  .feature-grid, .demo-cards, .sports-grid { grid-template-columns: repeat(2,1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .calendar-first { grid-template-columns: 1fr; }
  .calendar-first .side-stack { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
  .context-showcase { grid-template-columns: 1fr; }
  .context-showcase-reverse { grid-template-columns: 1fr; }
  .context-copy { max-width: 760px; }
}

@media (max-width: 720px) {
  .shell, .demo-shell { padding-left: 13px; padding-right: 13px; }
  .site-header { align-items: flex-start; padding: 13px 0; }
  .brand img { width: clamp(126px, 30vw, 154px); }
  .nav { flex-wrap: wrap; justify-content: flex-end; }
  .nav a { min-height: 40px; padding: 0 11px; font-size: .78rem; }
  .hero { padding: 58px 0; }
  .section { padding: 52px 0; }
  .section.faq-list { padding-top: 0; }
  .offer-summary { grid-template-columns: 1fr; }
  .offer-points { grid-template-columns: 1fr; }
  .feature-card, .step { min-height: auto; padding: 20px; }
  .feature-card h3, .step strong { margin-top: 14px; }
  .price-panel, .cta-band { padding: 24px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.7rem); }
  .feature-grid, .demo-cards, .sports-grid { grid-template-columns: 1fr; }
  .price-panel, .cta-band { grid-template-columns: 1fr; display: grid; }
  .included { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .section-head { align-items: start; flex-direction: column; }
  .dash-header { min-height: auto; grid-template-columns: 1fr; justify-items: center; gap: 10px; padding: 8px 0 24px; }
  .dash-clock { grid-column: auto; grid-row: auto; }
  .dash-clock strong { font-size: clamp(3.8rem, 21vw, 5.25rem); }
  .dash-id, .dash-place { justify-self: center; position: relative; z-index: 2; text-align: center; font-size: .68rem; }
  .five-day { grid-template-columns: 1fr; overflow: visible; }
  .day, .calendar-first .day { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .day:last-child { border-bottom: 0; }
  .weather-row { grid-template-columns: repeat(2, minmax(0,1fr)); overflow: visible; }
  .calendar-first .side-stack { grid-template-columns: 1fr; }
  .demo-bar { align-items: flex-start; padding-bottom: 10px; }
  .demo-bar nav { flex-direction: column; align-items: flex-end; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .guide-requirement, .guide-layout, .guide-submit { grid-template-columns: 1fr; }
  .guide-requirement { gap: 12px; margin-bottom: 38px; padding: 23px; }
  .guide-layout { padding-bottom: 52px; }
  .guide-sidebar { position: static; }
  .provider-grid { grid-template-columns: 1fr; }
  .provider-card, .privacy-panel, .guide-submit { padding: 22px; }
  .provider-heading { grid-template-columns: 25px 44px 1fr; gap: 9px; }
  .provider-mark { width: 42px; height: 42px; border-radius: 10px; }
  .source-link-secondary { display: flex; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
