/* ─────────────────────────────────────────────
   QuuMo — "Count Pop" Global Styles (Retail)
───────────────────────────────────────────── */

:root {
  --cream: #FFF7EC;
  --cream-alt: #FBF8F2;
  --white: #FFFFFF;
  --ink: #181410;
  --ink-panel: #23201A;
  --ink-border: #3A352C;
  --body: #5B574F;
  --muted: #8A8782;
  --muted-2: #4A463F;
  --dot: #E9DCC6;
  --coral: #FF5C39;
  --green: #1FB877;
  --blue: #2E7DF6;
  --yellow: #FFD23F;
  --font-display: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Zen Kaku Gothic New', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-body);
  color: var(--ink);
}
::selection { background: var(--coral); color: #fff; }
img, svg { display: block; }
a { color: inherit; }

.page { overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* color helpers */
.coral { color: var(--coral); }
.green { color: var(--green); }
.blue  { color: var(--blue); }
.yellow{ color: var(--yellow); }
.ink   { color: var(--ink); }
.bold  { font-weight: 700; }
.sm    { font-size: 13px; }

/* ── keyframes (copy exactly) ── */
@keyframes qm-blink{0%,100%{opacity:1}50%{opacity:.25}}
@keyframes qm-marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
@keyframes qm-wiggle{0%,100%{transform:rotate(-7deg)}50%{transform:rotate(5deg)}}
@keyframes qm-wiggle2{0%,100%{transform:rotate(6deg)}50%{transform:rotate(-4deg)}}
@keyframes qm-walk{0%{transform:translateX(-40px);opacity:0}8%{opacity:1}92%{opacity:1}100%{transform:translateX(640px);opacity:0}}
@keyframes qm-pulse{0%,100%{transform:scale(.8);opacity:.45}50%{transform:scale(1.18);opacity:.9}}
@keyframes qm-cellpulse{0%,100%{opacity:.4}50%{opacity:1}}
@keyframes qm-rise{0%{opacity:0;transform:translateY(28px)}100%{opacity:1;transform:none}}
@keyframes qm-scrolldot{0%{transform:translateY(0);opacity:0}30%{opacity:1}100%{transform:translateY(34px);opacity:0}}

.blink { animation: qm-blink 1.6s ease-in-out infinite; }
.wiggle { animation: qm-wiggle 3s ease-in-out infinite; }
.wiggle2 { animation: qm-wiggle2 3s ease-in-out infinite; }

/* generic dots */
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: var(--green); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,247,236,.86);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--ink);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-svg { height: 26px; width: auto; fill: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link { font-size: 13px; font-weight: 500; color: var(--muted-2); text-decoration: none; }
.nav-link:hover { color: var(--ink); }
.nav-toggle { display: none; }

.pill {
  font-size: 13px; font-weight: 700; border: 2px solid var(--ink);
  border-radius: 999px; text-decoration: none; box-shadow: 2px 2px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.pill:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.pill-yellow { color: var(--ink); background: var(--yellow); padding: 6px 14px; }
.pill-coral  { color: #fff; background: var(--coral); padding: 8px 18px; }

/* ── buttons ── */
.btn { display: inline-block; font-weight: 700; text-decoration: none; border-radius: 999px; border: 2px solid var(--ink); transition: transform .15s, box-shadow .15s; }
.btn-ink-coral { font-size: 14px; color: #fff; background: var(--ink); padding: 15px 28px; box-shadow: 4px 4px 0 var(--coral); }
.btn-ink-coral:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--coral); }
.btn-outline { font-size: 14px; color: var(--ink); background: #fff; padding: 13px 26px; }
.btn-outline:hover { transform: translateY(-2px); }
.btn-ink-coral-block { display: block; text-align: center; font-size: 15px; color: #fff; background: var(--ink); padding: 16px; box-shadow: 4px 4px 0 var(--coral); }
.btn-ink-coral-block:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--coral); }
.btn-cream-big { font-size: 16px; color: var(--ink); background: var(--cream); padding: 17px 40px; box-shadow: 5px 5px 0 var(--ink); margin-top: 34px; }
.btn-cream-big:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ── backgrounds ── */
.dotgrid {
  background-image: radial-gradient(var(--dot) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
}
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-coral { width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,92,57,.16), transparent 70%); }
.blob-green { width: 460px; height: 460px; background: radial-gradient(circle, rgba(31,184,119,.13), transparent 70%); }
.hero-blob-1 { top: -120px; right: -60px; }
.hero-blob-2 { bottom: -160px; left: -120px; }

/* ── HERO ── */
.hero { position: relative; background: var(--cream); overflow: hidden; }
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 72px 40px 84px;
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: center; position: relative;
}
.status-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 2px solid var(--ink); border-radius: 999px; padding: 8px 15px;
  font-size: 12px; font-weight: 700; box-shadow: 3px 3px 0 var(--ink); margin-bottom: 28px;
}
.hero-h1 { font-family: var(--font-display); font-weight: 900; font-size: 82px; line-height: .98; letter-spacing: -.02em; }
.hero-lead { font-size: 15px; line-height: 2.05; color: var(--body); margin-top: 26px; max-width: 400px; }

.hero-card-wrap { position: relative; }
.walk-track { position: absolute; top: -26px; left: 8px; right: 40px; height: 24px; overflow: hidden; pointer-events: none; }
.walk-dot { position: absolute; top: 8px; left: 0; width: 10px; height: 10px; border-radius: 50%; animation: qm-walk 3.4s linear infinite; }

.live-card { background: #fff; border: 3px solid var(--ink); border-radius: 24px; padding: 26px; box-shadow: 8px 8px 0 var(--ink); }
.live-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mono-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); }
.live-chip { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.live-chip-green { color: var(--green); background: #E4F7EE; }
.live-number { font-family: var(--font-display); font-weight: 900; font-size: 74px; line-height: 1; }
.live-card-stats { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.stat-chip { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.stat-chip-green { color: var(--green); background: #E4F7EE; }
.muted-sm { font-size: 12px; color: var(--muted); }
.minibars { display: flex; align-items: flex-end; gap: 7px; height: 66px; margin-top: 22px; }
.minibar { flex: 1; height: 0; border-radius: 6px 6px 0 0; transition: height .8s cubic-bezier(.2,.8,.2,1); }

/* stickers */
.sticker {
  position: absolute; font-family: var(--font-display); font-weight: 900; font-size: 13px;
  white-space: nowrap; background: var(--yellow); border: 2px solid var(--ink);
  border-radius: 12px; padding: 8px 13px; box-shadow: 3px 3px 0 var(--ink); z-index: 3;
}
.sticker-hero { right: -18px; top: -24px; transform: rotate(8deg); }
.sticker-price { top: -20px; right: -14px; font-size: 14px; border-radius: 14px; padding: 9px 14px; transform: rotate(7deg); }

/* scroll cue */
.scroll-cue { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.scroll-mouse { width: 22px; height: 34px; border: 2px solid var(--ink); border-radius: 999px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); animation: qm-scrolldot 1.6s ease-in-out infinite; }
.scroll-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; color: var(--muted); }

/* ── MARQUEE ── */
.marquee { background: var(--ink); overflow: hidden; padding: 15px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.marquee-track { display: flex; width: max-content; animation: qm-marquee 24s linear infinite; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--cream); white-space: nowrap; }
.marquee-group { display: flex; gap: 34px; padding-right: 34px; }

/* ── sections ── */
.section { padding: 96px 0; }
.section-white { background: #fff; }
.section-cream { background: var(--cream); }
.section-bordered { border-top: 2px solid var(--ink); }
.section-dark { background: var(--ink); color: var(--cream); }

.section-head { }
.section-head-narrow { max-width: 660px; margin-bottom: 52px; }
.section-head-spacious { margin-bottom: 56px; }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; margin-bottom: 14px; }
.eyebrow-coral { color: var(--coral); }
.eyebrow-yellow { color: var(--yellow); }
.section-h2 { font-family: var(--font-display); font-weight: 900; font-size: 46px; line-height: 1.18; letter-spacing: -.01em; }

/* grids */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-3 { grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-gap-lg { gap: 22px; }

/* shadows */
.shadow-coral, .shadow-green, .shadow-blue, .shadow-yellow { transition: transform .18s, box-shadow .18s; }
.shadow-coral { box-shadow: 6px 6px 0 var(--coral); }
.shadow-green { box-shadow: 6px 6px 0 var(--green); }
.shadow-blue  { box-shadow: 6px 6px 0 var(--blue); }
.shadow-yellow{ box-shadow: 6px 6px 0 var(--yellow); }
.shadow-coral:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--coral); }
.shadow-green:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--green); }
.shadow-blue:hover  { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--blue); }
.shadow-yellow:hover{ transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--yellow); }

.shadow-coral-7, .shadow-green-7, .shadow-blue-7 { transition: transform .18s, box-shadow .18s; }
.shadow-coral-7 { box-shadow: 7px 7px 0 var(--coral); }
.shadow-green-7 { box-shadow: 7px 7px 0 var(--green); }
.shadow-blue-7  { box-shadow: 7px 7px 0 var(--blue); }
.shadow-coral-7:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--coral); }
.shadow-green-7:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--green); }
.shadow-blue-7:hover  { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--blue); }

/* ── PROBLEM ── */
.problem-card { background: var(--cream); border: 3px solid var(--ink); border-radius: 20px; padding: 30px; }
.problem-num { font-family: var(--font-display); font-weight: 900; font-size: 54px; line-height: 1; margin-bottom: 12px; }
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.card-body { font-size: 13.5px; line-height: 2; color: var(--body); }

/* ── SUITE ── */
.suite-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 44px; }
.suite-head .section-h2 { line-height: 1.08; }
.suite-intro { font-size: 14px; line-height: 2; color: var(--body); max-width: 420px; }
.suite-card { background: #fff; border: 3px solid var(--ink); border-radius: 22px; padding: 28px; display: flex; flex-direction: column; }
.icon-tile { width: 46px; height: 46px; border: 2px solid var(--ink); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-square { width: 16px; height: 16px; border: 2.5px solid; border-radius: 4px; }
.icon-chart-green { width: 16px; height: 12px; background: linear-gradient(transparent 60%, var(--green) 60%); border-bottom: 2.5px solid var(--green); }
.icon-connect { display: flex; gap: 3px; }
.icon-connect-fill { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.icon-connect-ring { width: 7px; height: 7px; border-radius: 50%; border: 2px solid var(--blue); }
.product-code { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; margin-bottom: 8px; }
.suite-card-title { font-family: var(--font-display); font-weight: 900; font-size: 23px; margin-bottom: 10px; }
.suite-card-body { font-size: 13px; line-height: 1.95; color: var(--body); flex: 1; }
.bullet-list { list-style: none; margin-top: 18px; padding-top: 18px; border-top: 2px dashed var(--dot); display: flex; flex-direction: column; gap: 9px; }
.bullet-list li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--muted-2); }
.bullet-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tag-mini { font-size: 10px; font-weight: 700; border: 1.5px solid; border-radius: 999px; padding: 1px 7px; }

/* ── DASHBOARD MOCK ── */
.dash { margin-top: 36px; background: #0E1116; border: 3px solid var(--ink); border-radius: 22px; overflow: hidden; box-shadow: 8px 8px 0 var(--ink); }
.dash-bar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-bottom: 1px solid #23272E; }
.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-bar-title { font-family: var(--font-mono); font-size: 11px; color: #6b7785; margin-left: 10px; }
.dash-live { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--green); background: rgba(31,184,119,.14); padding: 4px 10px; border-radius: 999px; }
.dash-body { display: grid; grid-template-columns: 200px 1fr; }
.dash-side { border-right: 1px solid #23272E; padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.dash-nav { padding: 9px 12px; border-radius: 10px; color: #7a8694; font-size: 12px; display: flex; align-items: center; gap: 9px; }
.dash-nav-active { background: rgba(255,92,57,.14); color: #FF7E60; font-weight: 700; }
.dash-nav-icon { width: 12px; height: 12px; border-radius: 3px; }
.dash-main { padding: 22px; }
.dash-main-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-overview { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: #7a8694; }
.dash-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 14px; }
.dash-tile { background: #171B22; border-radius: 14px; padding: 16px; }
.dash-tile-num { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: #fff; line-height: 1; }
.dash-tile-unit { font-size: 13px; color: #7a8694; }
.dash-tile-label { font-size: 10px; color: #7a8694; margin-top: 7px; }
.dash-tile-delta { font-size: 10px; color: #7a8694; margin-top: 3px; }
.dash-tile-delta.green { color: var(--green); }
.dash-chart { background: #171B22; border-radius: 14px; padding: 18px; }
.dash-chart-label { font-size: 11px; color: #7a8694; margin-bottom: 14px; }
.dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 96px; }
.dash-cbar { flex: 1; height: 0; border-radius: 5px 5px 0 0; transition: height .9s cubic-bezier(.2,.8,.2,1); }
.caption-center { text-align: center; font-size: 11px; color: var(--muted); margin-top: 14px; letter-spacing: .05em; }

/* ── HOW IT WORKS ── */
.step-card { position: relative; background: var(--cream); border: 3px solid var(--ink); border-radius: 22px; padding: 30px; box-shadow: 6px 6px 0 var(--ink); }
.step-badge { position: absolute; top: -18px; left: 24px; font-family: var(--font-display); font-weight: 900; font-size: 15px; border: 2px solid var(--ink); border-radius: 999px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 0 var(--ink); }
.step-icon { margin-top: 18px; width: 42px; height: 42px; border: 2px solid var(--ink); border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-icon-chart { align-items: flex-end; gap: 3px; padding: 9px; }
.step-icon-chart span { width: 5px; }
.icon-phone { width: 14px; height: 20px; border: 2px solid var(--ink); border-radius: 4px; }
.icon-star { width: 18px; height: 18px; background: var(--yellow); clip-path: polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.step-title { font-family: var(--font-display); font-weight: 900; font-size: 22px; margin-bottom: 10px; }
.step-body { font-size: 13px; line-height: 2; color: var(--body); }

/* ── AI INSIGHTS (dark) ── */
.insights-head { max-width: 680px; margin-bottom: 18px; }
.dark-lead { font-size: 14px; line-height: 2.05; color: #b8b2a6; margin-top: 18px; }
.sample-chip { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; color: #b8b2a6; border: 1px solid var(--ink-border); border-radius: 999px; padding: 7px 14px; margin-bottom: 34px; }
.insight-card { background: var(--ink-panel); border: 2px solid var(--ink-border); border-top: 5px solid; border-radius: 18px; padding: 28px; transition: transform .2s; }
.insight-card:hover { transform: translateY(-6px); }
.insight-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.insight-pill .dot { width: 6px; height: 6px; }
.insight-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.45; margin-bottom: 12px; }
.insight-body { font-size: 13px; line-height: 2; color: #b8b2a6; }
.insight-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--ink-border); display: flex; align-items: flex-end; justify-content: space-between; }
.insight-stat { font-family: var(--font-display); font-weight: 900; font-size: 26px; }
.insight-stat-label { font-size: 10px; color: #8a8378; margin-top: 3px; }
.insight-foot-right { font-size: 10px; color: #8a8378; text-align: right; }
.datasource { margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: var(--ink-panel); border: 1px solid var(--ink-border); border-radius: 14px; padding: 18px 24px; }
.datasource-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: #8a8378; }
.datasource-chip { font-size: 12px; color: #b8b2a6; border: 1px solid var(--ink-border); border-radius: 999px; padding: 5px 13px; }

/* ── PRICING ── */
.pricing-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.pricing-head .section-h2 { line-height: 1.1; }
.pricing-intro { font-size: 14px; line-height: 2; color: var(--body); margin-top: 16px; }
.price-card { position: relative; max-width: 480px; margin: 0 auto; background: #fff; border: 3px solid var(--ink); border-radius: 26px; padding: 38px 34px; }
.price-card-coral { box-shadow: 10px 10px 0 var(--coral); }
.price-code { margin-bottom: 12px; letter-spacing: .16em; }
.price-plan { font-family: var(--font-display); font-weight: 900; font-size: 24px; margin-bottom: 6px; }
.price-desc { font-size: 13px; color: var(--body); margin-bottom: 22px; }
.price-amount { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 4px; }
.price-yen { font-size: 22px; font-weight: 700; color: var(--muted); margin-bottom: 14px; }
.price-figure { font-family: var(--font-display); font-weight: 900; font-size: 72px; line-height: .9; }
.price-unit { font-size: 12px; color: var(--muted); margin-bottom: 26px; letter-spacing: .04em; }
.price-tier { padding: 16px 0; }
.price-tier-label { font-family: var(--font-display); font-weight: 900; font-size: 15px; color: var(--ink); margin-bottom: 6px; letter-spacing: .02em; }
.price-figure-sm { font-size: 48px; }
.price-tier-unit { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 8px; margin-left: 2px; }
.price-tier-desc { font-size: 12.5px; color: var(--body); margin-top: 4px; line-height: 1.6; }
.price-plus { font-family: var(--font-display); font-weight: 900; font-size: 32px; color: var(--coral); text-align: center; line-height: 1; margin: 2px 0; }
.price-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 20px; margin-bottom: 6px; padding: 14px 18px; border: 2px solid var(--ink); border-radius: 16px; background: var(--cream); }
.price-total-label { font-size: 13px; font-weight: 700; color: var(--body); }
.price-total-amount { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--ink); line-height: 1; }
.price-footnote { font-size: 12px; color: var(--body); line-height: 1.7; margin-bottom: 22px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 14px; }
.check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.pricing-note { text-align: center; font-size: 13px; color: var(--body); margin-top: 28px; }

/* ── CONTACT CTA ── */
.contact-cta { padding: 104px 0; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); position: relative; overflow: hidden; }
.contact-cta-coral { background: var(--coral); }
.contact-circle { position: absolute; border-radius: 50%; }
.contact-circle-light { background: rgba(255,255,255,.1); }
.contact-circle-dark { background: rgba(24,20,16,.08); }
.contact-circle-tl { top: -80px; left: -40px; width: 300px; height: 300px; }
.contact-circle-br { bottom: -90px; right: -50px; width: 340px; height: 340px; }
.contact-inner { max-width: 720px; margin: 0 auto; padding: 0 40px; text-align: center; position: relative; }
.contact-eyebrow { color: #fff; margin-bottom: 18px; opacity: .85; }
.contact-h2 { font-family: var(--font-display); font-weight: 900; font-size: 54px; line-height: 1.12; color: #fff; letter-spacing: -.01em; }
.contact-lead { font-size: 15px; line-height: 2; color: #fff; margin-top: 22px; opacity: .92; }

/* ── FOOTER ── */
.footer { background: var(--ink); color: var(--cream); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; margin-bottom: 40px; }
.footer-logo { height: 30px; width: auto; fill: var(--cream); margin-bottom: 18px; }
.footer-tagline { font-size: 13px; line-height: 1.95; color: #b8b2a6; max-width: 300px; }
.footer-cols { display: grid; grid-template-columns: repeat(2,auto); gap: 64px; }
.footer-col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--yellow); margin-bottom: 16px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-list a { font-size: 13px; color: #b8b2a6; text-decoration: none; }
.footer-list a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid var(--ink-border); padding-top: 24px; }
.footer-bottom span { font-size: 12px; color: #8a8378; }

/* ── reveal (enhancement only; never hides content) ── */
.qm-reveal { animation: qm-rise .7s cubic-bezier(.2,.8,.2,1) both; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .suite-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .grid-3 { grid-template-columns: 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid #23272E; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  /* nav -> hamburger */
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 36px; background: #fff; border: 2px solid var(--ink);
    border-radius: 10px; cursor: pointer; box-shadow: 2px 2px 0 var(--ink); padding: 0 8px;
  }
  .nav-toggle span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 14px;
    background: var(--cream); border-bottom: 2px solid var(--ink);
    padding: 20px 40px 28px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 15px; padding: 4px 0; }
  .pill { text-align: center; }
}

@media (max-width: 720px) {
  .container, .hero-inner, .nav-inner { padding-left: 22px; padding-right: 22px; }
  .nav-links { padding-left: 22px; padding-right: 22px; }
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 54px; }
  .section-h2 { font-size: 32px; line-height: 1.22; }
  .contact-h2 { font-size: 38px; }
  .live-number { font-size: 60px; }
  .price-figure { font-size: 58px; }
  .price-figure-sm { font-size: 42px; }
  .dash-tiles { grid-template-columns: 1fr; }
  .marquee-track { font-size: 13px; }
  .hero-inner { padding-top: 48px; padding-bottom: 60px; }
  .scroll-cue { display: none; }
}

@media (max-width: 420px) {
  .hero-h1 { font-size: 44px; }
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .blink, .wiggle, .wiggle2, .walk-dot, .scroll-dot,
  .qm-reveal { animation: none !important; }
  .minibar, .dash-cbar { transition: none !important; }
}
