/* Stoorie marketing + legal site. Design tokens per website/extracted design handoff (2026-07-22). */
:root {
  --paper: #FAFAF8;
  --ink: #1C2116;
  --body: #5b6150;
  --faint: #8a8f7d;
  --faint-2: #7c8170;
  --act: #638A35;
  --act-deep: #55702D;
  --olive: #3C4030;
  --mid-green: #97B85E;
  --lime: #B8D989;
  --border: #E9EADF;
  --input-border: #E1E3D8;
  --sage: #EFF1E7;
  --dark: #1C2116;
  --amber-bg: #F6E7CE;
  --amber-ink: #B5732A;
  --orange: #F0873E;
  --error: #B5502F;
  /* The one "pop" accent (2026-07-22), from the approved social palette's
     additive kit. Base stays neutral cream, olive/green stays the brand and
     action colour; violet is used only in small, contained moments. */
  --violet: #A855B0;
  --violet-deep: #7A3E82;
  --violet-soft: #F6EAF8;
  --maxw: 1320px;
  --maxw-section: 1200px;
  --maxw-text: 720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--act-deep); text-decoration: none; }
a:hover { color: var(--olive); }

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 60px; }
.wrap-narrow { max-width: var(--maxw-text); margin: 0 auto; padding: 0 40px; }

@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  .wrap-narrow { padding: 0 22px; }
}

/* Header */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 250, 248, 0.86);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 22px; letter-spacing: -0.5px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 28px; height: 28px; border-radius: 9px;
  background: var(--olive);
  display: grid; place-items: center; flex: none;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a.navlink { font-size: 15px; font-weight: 600; color: var(--olive); }
.nav a.navlink:hover { color: var(--act); }
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; border-radius: 100px;
  transition: transform 0.12s ease, background 0.12s ease;
}
.pill-cta {
  background: var(--olive); color: #FAFAF8;
  font-size: 14px; padding: 10px 18px;
}
.pill-cta:hover { color: #FAFAF8; background: #2c2f24; transform: translateY(-1px); }
.pill-act {
  background: var(--act); color: #fff;
  font-size: 16px; padding: 14px 26px;
}
.pill-act:hover { color: #fff; background: var(--act-deep); transform: translateY(-1px); }
.nav .hide-sm { display: inline-flex; }
@media (max-width: 640px) {
  .nav .navlink { display: none; }
}

/* Hero */
.hero { text-align: center; padding: 80px 0 44px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--act-deep); margin-bottom: 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--act-deep); flex: none; }
.hero h1 {
  font-size: clamp(32px, 6.2vw, 64px);
  line-height: 1.08; letter-spacing: -1.4px;
  font-weight: 800; margin: 0 auto 20px; max-width: 900px;
}
.hero .rotating {
  display: inline-block; color: var(--act);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.hero .rotating.swap { opacity: 0; transform: translateY(8px); }
.hero p.lead {
  font-size: clamp(16px, 2.2vw, 19px); line-height: 1.55;
  color: var(--body); max-width: 520px; margin: 0 auto 30px;
}
.store-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: #FAFAF8;
  border-radius: 14px; padding: 13px 22px;
}
.store-btn:hover { color: #FAFAF8; background: #2c2f24; }
.store-btn .lines { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-btn .lines .top { font-size: 10px; opacity: 0.82; }
.store-btn .lines .bottom { font-size: 17px; font-weight: 700; }
.sub-note { font-size: 11px; color: var(--faint-2); display: inline-flex; align-items: center; gap: 8px; }
.sub-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex: none; }

/* Marquee */
.marquee-band { padding: 8px 0 56px; overflow: hidden; }
.marquee-mask {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 90px, #000 calc(100% - 90px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 90px, #000 calc(100% - 90px), transparent);
}
.marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: marqx 42s linear infinite;
}
@keyframes marqx { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.note-card {
  width: 264px; flex: none; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 18px; box-shadow: 0 8px 22px rgba(28, 33, 22, 0.04);
}
.note-card .meta {
  display: flex; align-items: center; gap: 7px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em; color: #8a8f7d;
  margin-bottom: 8px;
}
.note-card .meta .dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.note-card .title { font-size: 15px; font-weight: 700; color: var(--ink); }

/* Generic section chrome */
.section { padding: 58px 0; }
.section.bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.section.sage { background: var(--sage); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head.wide { max-width: 760px; }
.section-head h2 {
  font-size: clamp(26px, 4.4vw, 42px); font-weight: 800; letter-spacing: -1px;
  margin: 0 0 12px;
}
.section-head p { font-size: clamp(15px, 2vw, 18px); color: var(--body); margin: 0; }

/* Try Stoorie + How it works read as ONE continuous zone (no border between
   them): try it, then this is what you just tried, explained. Needs enough
   visual weight of its own not to feel like a dip in energy right under the
   hero, and needs to not go flat again the moment How it works starts. */
.demo-section {
  background: var(--sage);
}
.demo-section-top {
  padding-top: 40px;
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(99, 138, 53, 0.08), transparent 70%),
    var(--sage);
  border-top: 1px solid var(--border);
}
.demo-section-bottom { border-bottom: 1px solid var(--border); }
.live-badge {
  background: #fff; border: 1px solid var(--border); border-radius: 100px;
  padding: 7px 14px; display: inline-flex; margin-bottom: 6px; color: var(--violet-deep);
}
.live-badge .dot.pulse {
  position: relative; background: var(--violet);
}
.live-badge .dot.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--violet); animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Try Stoorie demo cards */
.demo-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
@media (min-width: 800px) { .demo-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.demo-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 16px 40px rgba(28, 33, 22, 0.08);
}
.demo-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--act-deep);
  margin-bottom: 14px; display: block;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip {
  font-size: 13.5px; font-weight: 600; color: var(--olive);
  background: var(--paper); border: 1px solid var(--input-border);
  border-radius: 100px; padding: 8px 14px; cursor: pointer;
}
.chip:hover { border-color: var(--act); }
textarea.demo-input {
  width: 100%; min-height: 148px; resize: vertical;
  border: 1px solid var(--input-border); border-radius: 14px;
  padding: 14px; font-size: 15.5px; font-family: inherit;
  margin-bottom: 14px; background: var(--paper); color: var(--ink);
}
.demo-actions { display: flex; align-items: center; gap: 12px; }
.mic-btn {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  border: 1px solid var(--input-border); background: #fff;
  display: grid; place-items: center; cursor: pointer; color: var(--act);
}
.submit-btn {
  flex: 1; background: var(--act); color: #fff; border: none;
  font-size: 16px; font-weight: 700; border-radius: 12px;
  padding: 14px; cursor: pointer;
}
.submit-btn:hover { background: var(--act-deep); }
.submit-btn:disabled { opacity: 0.6; cursor: default; }
.demo-fineprint { font-size: 12.5px; color: var(--faint); margin-top: 12px; }

.demo-output { min-height: 300px; display: flex; flex-direction: column; }
.demo-empty { color: var(--faint); font-size: 15px; margin: auto 0; text-align: center; }
.demo-loading { margin: auto; display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--faint); }
.spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--act);
  animation: spin1 0.8s linear infinite;
}
@keyframes spin1 { to { transform: rotate(360deg); } }
.demo-error { margin: auto 0; color: var(--error); font-size: 15px; }
.result-block { margin-bottom: 18px; }
.result-block .rlabel {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--act-deep);
  margin-bottom: 6px; display: block;
}
.result-block p { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.6; }
.result-note { font-size: 14px; color: var(--body); background: var(--sage); border-radius: 12px; padding: 14px 16px; }
.result-support {
  font-size: 14px; color: var(--ink); background: var(--amber-bg);
  border-radius: 12px; padding: 14px 16px; line-height: 1.55;
}
.result-support a { color: var(--amber-ink); font-weight: 700; }
.keep-cta { border-top: 1px solid var(--border); margin-top: 18px; padding-top: 18px; display: flex; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 14px; }
.text-btn { min-height: 48px; background: none; border: 1px solid var(--act); border-radius: 100px; color: var(--act-deep); font-size: 14px; font-weight: 700; cursor: pointer; padding: 10px 20px; }
.text-btn:hover { color: var(--olive); }

/* How it works tabs */
.tab-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn {
  font-size: 14.5px; font-weight: 600; border-radius: 100px;
  padding: 10px 20px; cursor: pointer; border: 1px solid var(--input-border);
  background: #fff; color: var(--olive);
}
.tab-btn[aria-selected="true"] { background: var(--act); color: #fff; border-color: var(--act); }
.tab-panel {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: 36px 28px; max-width: 1000px; margin: 0 auto;
  align-items: center;
}
@media (min-width: 860px) { .tab-panel { grid-template-columns: 1fr 96px 260px; padding: 44px 48px; } }
.tab-step { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--act-deep); margin-bottom: 10px; }
.tab-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin: 0 0 12px; }
.tab-copy { font-size: 16.5px; color: var(--body); margin: 0; }
.connector { display: none; align-items: center; justify-content: center; gap: 4px; }
@media (min-width: 860px) { .connector { display: flex; } }
.connector .bar { width: 5px; border-radius: 3px; background: var(--lime); animation: swv 1.1s ease-in-out infinite; }
.connector .bar:nth-child(1) { height: 14px; animation-delay: 0s; background: var(--lime); }
.connector .bar:nth-child(2) { height: 26px; animation-delay: 0.12s; background: var(--mid-green); }
.connector .bar:nth-child(3) { height: 36px; animation-delay: 0.24s; background: var(--act); }
.connector .bar:nth-child(4) { height: 22px; animation-delay: 0.36s; background: var(--mid-green); }
.connector .bar:nth-child(5) { height: 12px; animation-delay: 0.48s; background: var(--lime); }
@keyframes swv { 0%, 100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }
.phone-mock {
  border: 9px solid var(--dark); border-radius: 38px; overflow: hidden;
  width: 100%; max-width: 238px; margin: 0 auto;
  box-shadow: 0 18px 40px rgba(28, 33, 22, 0.16);
}
.phone-mock img { display: block; width: 100%; }

/* Checklist */
.check-label { text-align: center; font-size: 17px; font-weight: 700; color: var(--olive); margin: 0 0 20px; }
.check-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 1000px; margin: 0 auto;
}
@media (min-width: 640px) { .check-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .check-grid { grid-template-columns: repeat(4, 1fr); } }
.check-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--input-border);
  border-radius: 12px; padding: 12px 14px; cursor: pointer; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--olive);
}
.check-item .box {
  width: 22px; height: 22px; border-radius: 7px; flex: none;
  border: 2px solid var(--input-border); background: #fff;
  display: grid; place-items: center;
}
.check-item.on { background: #fff; border-color: var(--act); color: var(--ink); }
.check-item.on .box { background: var(--act); border-color: var(--act); color: #fff; }
.tally-row { text-align: center; margin-top: 30px; }
.tally-headline { font-size: 24px; font-weight: 800; margin: 0 0 8px; transition: color 0.15s ease; }
.tally-headline.pop { color: var(--violet-deep); }
.tally-sub { font-size: 16px; color: var(--body); margin: 0 0 20px; }

/* Real life photo band */
.photo-band-wrap { padding: 0 0 58px; }
.photo-band {
  border-radius: 26px; min-height: 420px; position: relative; overflow: hidden;
  background-size: cover; background-position: 62% center;
  display: flex; align-items: center;
}
.photo-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28, 33, 22, 0.88), rgba(28, 33, 22, 0.2) 65%, transparent);
}
.photo-band-content { position: relative; z-index: 1; max-width: 520px; padding: 48px 32px; color: #fff; }
.photo-band-content .eyebrow { color: var(--lime); }
.photo-band-content h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin: 0 0 14px; }
.photo-band-content p { font-size: 16.5px; color: #d7dac8; margin: 0 0 18px; }
.photo-band-content .tagline { font-size: 12px; color: var(--lime); }

/* Over time cards */
.over-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 640px) { .over-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .over-grid { grid-template-columns: repeat(4, 1fr); } }
.over-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 26px;
}
.over-chip {
  width: 34px; height: 34px; border-radius: 10px; background: var(--sage); color: var(--act);
  display: grid; place-items: center; font-weight: 700; font-size: 14px; margin-bottom: 14px;
}
.over-card.pop .over-chip { background: var(--violet-soft); color: var(--violet-deep); }
.over-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.over-card p { font-size: 14.5px; color: var(--body); margin: 0; }

/* Privacy / ownership */
.privacy-section { padding: 64px 0; background: var(--olive); color: var(--paper); }
.privacy-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 860px) { .privacy-grid { grid-template-columns: 300px 1fr; gap: 64px; } }
.privacy-grid .phone-mock { border-color: var(--ink); }
.privacy-section .eyebrow { color: var(--lime); }
.privacy-section h2 { font-size: clamp(26px, 4.4vw, 42px); font-weight: 800; margin: 0 0 14px; }
.privacy-section > .wrap > .privacy-grid p.lead-text { font-size: 18px; color: #c6c9b8; margin: 0 0 26px; max-width: 520px; }
.mini-cards { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 22px; }
@media (min-width: 560px) { .mini-cards { grid-template-columns: repeat(3, 1fr); } }
.mini-card {
  background: rgba(250, 250, 248, 0.06); border: 1px solid rgba(184, 217, 137, 0.18);
  border-radius: 16px; padding: 16px;
}
.mini-card .t { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.mini-card .d { font-size: 13.5px; color: #c6c9b8; }
.privacy-section .readmore { color: var(--lime); font-weight: 600; font-size: 15px; }

/* Final CTA */
.final-cta { text-align: center; padding: 80px 0; }
.final-cta h2 {
  font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: -1px;
  margin: 0 auto 18px; max-width: 780px;
}
.final-cta p.lead { font-size: 19px; color: var(--body); max-width: 560px; margin: 0 auto 30px; }
.final-cta .store-row .store-btn { padding: 14px 24px; }
.final-cta .fine { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--faint); margin-top: 26px; }

/* Footer */
.site-foot { background: var(--dark); color: #c6c9b8; padding: 64px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.foot-brand .brand { color: #FAFAF8; margin-bottom: 12px; }
.foot-brand .brand .mark { background: var(--lime); }
.foot-brand .brand .mark svg { stroke: var(--olive); }
.foot-brand p { font-size: 14px; color: #9aa08b; max-width: 260px; }
.foot-col h4 {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: #9aa08b; margin: 0 0 14px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: #d7dac8; font-size: 14.5px; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid #33382b; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 13px; color: #8a8f7d;
}

/* Legal / doc pages */
.doc { padding: 56px 0 96px; }
.doc-head { margin-bottom: 36px; }
.doc-head h1 {
  font-size: clamp(28px, 5vw, 40px); letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.doc-head .updated { color: var(--faint); font-size: 14px; }
.doc h2 {
  font-size: 20px; letter-spacing: -0.01em;
  margin: 34px 0 8px; color: var(--olive);
}
.doc p { margin: 0 0 14px; color: var(--body); }
.doc .faq { border-top: 1px solid var(--border); padding: 22px 0; }
.doc .faq:last-of-type { border-bottom: 1px solid var(--border); }
.doc .faq h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -0.01em; }
.doc .faq p { margin: 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.doc th, .doc td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--border); }
.doc th { color: var(--faint); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.doc code { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 0.92em; }

/* Contact page */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 44px;
  max-width: 1080px; margin: 0 auto; padding: 56px 40px 96px;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.contact-grid h1 { font-size: clamp(30px, 5vw, 40px); font-weight: 800; letter-spacing: -1px; margin: 0 0 16px; }
.contact-grid > div:first-child > p { font-size: 17px; line-height: 1.6; color: var(--body); margin: 0 0 30px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list .k {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint-2); margin-bottom: 5px;
}
.contact-list .v { font-size: 16px; font-weight: 600; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--olive); margin: 0 0 6px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--input-border); border-radius: 12px;
  padding: 12px 14px; font-size: 15px; font-family: inherit; background: var(--paper);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .submit-btn { width: 100%; }
.form-success {
  min-height: 300px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 14px;
}
.form-success .check {
  width: 52px; height: 52px; border-radius: 50%; background: var(--act);
  display: grid; place-items: center;
}
.form-success h3 { font-size: 22px; font-weight: 700; margin: 0; }
.form-success p { font-size: 15px; color: var(--body); margin: 0; max-width: 320px; }
.form-error { color: var(--error); font-size: 14px; margin-top: 12px; }

/* Download page */
.download-hero { min-height: calc(100vh - 65px); display: flex; align-items: center; justify-content: center; padding: 60px 40px; text-align: center; }
.download-hero .inner { max-width: 900px; }
.download-hero h1 { font-size: clamp(28px, 5vw, 46px); font-weight: 800; letter-spacing: -1.2px; margin: 0 0 16px; }
.download-hero p { font-size: 18px; color: var(--body); max-width: 520px; margin: 0 auto 40px; }
.download-row { display: flex; gap: 40px; justify-content: center; align-items: center; flex-wrap: wrap; }
.qr-box {
  width: 150px; height: 150px; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; display: grid; place-items: center; overflow: hidden;
}
.qr-box img { width: 100%; height: 100%; object-fit: contain; }
.qr-caption { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint-2); margin-top: 10px; text-align: center; }
.download-fine { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--faint); margin-top: 40px; }

/* Corrected Stoorie7 landing page, 2026-07-22. */
body { background: #fff; }

.hero.hero-statement { padding: 92px 0 60px; }
.hero-statement h1 {
  max-width: 900px; font-size: clamp(42px, 6vw, 70px); line-height: 1;
  letter-spacing: -0.037em; margin-bottom: 26px; text-wrap: balance;
}
.hero-highlight { position: relative; z-index: 0; white-space: nowrap; color: var(--olive); }
.hero-highlight::before {
  content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: 8px;
  height: 16px; border-radius: 3px; background: var(--lime);
}
.hero-statement p.lead { max-width: 540px; font-size: clamp(17px, 2vw, 21px); line-height: 1.5; margin-bottom: 34px; }
.hero-statement .store-row { margin-bottom: 0; }
.marquee-band { padding: 4px 0 20px; background: var(--paper); }

.corrected-demo {
  padding: 64px 0; background: #fff; border-top: 1px solid #eef0e5; border-bottom: 1px solid #eef0e5;
}
.corrected-demo .section-head { max-width: 860px; margin-bottom: 0; }
.corrected-demo .section-head h2 { max-width: 760px; margin-left: auto; margin-right: auto; font-size: clamp(32px, 4vw, 46px); line-height: 1.06; letter-spacing: -0.026em; text-wrap: balance; }
.corrected-demo .section-head p { max-width: 540px; margin: 0 auto; }
.stage-rail { position: relative; display: flex; justify-content: space-between; max-width: 620px; margin: 40px auto 30px; }
.stage-line { position: absolute; left: 12%; right: 12%; top: 24px; height: 3px; border-radius: 3px; background: #dcdFcc; }
.stage-line span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--act); transition: width .55s ease; }
.stage-rail[data-demo-stage="1"] .stage-line span { width: 42%; }
.stage-rail[data-demo-stage="2"] .stage-line span { width: 84%; }
.stage-node { position: relative; z-index: 1; width: 150px; display: flex; flex-direction: column; align-items: center; gap: 9px; color: #9aa089; text-align: center; }
.stage-node .stage-number { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid #d6dac7; font-family: 'IBM Plex Mono', monospace; font-size: 16px; font-weight: 600; }
.stage-node strong { font-size: 16px; line-height: 1.25; }
.stage-node small { font-size: 14px; line-height: 1.25; }
.stage-node.active, .stage-node.done { color: var(--ink); }
.stage-node.active .stage-number { color: #fff; background: var(--act); border-color: transparent; }
.stage-node.done .stage-number { color: var(--olive); background: var(--lime); border-color: transparent; }
.demo-stage-card { max-width: 1200px; margin: 0 auto; background: #fff; border: 1px solid #e6e8da; border-radius: 28px; box-shadow: 0 22px 50px rgba(28,33,22,.09); padding: 44px 48px; min-height: 500px; }
.demo-stage-card [hidden] { display: none !important; }
.demo-stage-card .demo-card { border: 0; border-radius: 0; box-shadow: none; padding: 0; }
.demo-stage-card .demo-output { min-height: 276px; }
.demo-stage-card textarea.demo-input { min-height: 210px; resize: vertical; border: 0; border-radius: 0; padding: 16px 2px; font-size: 22px; line-height: 1.5; background: transparent; margin: 0; }
.demo-stage-card .chip-row { gap: 12px; margin-bottom: 10px; }
.demo-stage-card .chip { background: #fff; padding: 11px 18px; font-size: 15px; }
.demo-stage-card .demo-actions { border-top: 1px solid #eef0e5; padding-top: 24px; margin-top: 8px; }
.demo-stage-card .mic-btn { width: 54px; height: 54px; }
.mic-note { flex: 1; color: var(--faint); font-size: 15px; }
.demo-stage-card .submit-btn { flex: none; min-width: 310px; border-radius: 100px; padding: 17px 30px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; }
.corrected-demo > .wrap > .demo-fineprint { text-align: center; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .06em; margin-top: 14px; }
.demo-loading-bars { height: 56px; display: flex; align-items: center; gap: 6px; }
.demo-loading-bars i { width: 6px; height: 56px; border-radius: 4px; background: var(--lime); transform-origin: center; animation: swv 1.1s ease-in-out infinite; }
.demo-loading-bars i:nth-child(2), .demo-loading-bars i:nth-child(4) { background: var(--mid-green); }
.demo-loading-bars i:nth-child(2) { animation-delay: .12s; }
.demo-loading-bars i:nth-child(3) { background: var(--act); animation-delay: .24s; }
.demo-loading-bars i:nth-child(4) { animation-delay: .36s; }
.demo-loading-bars i:nth-child(5) { animation-delay: .48s; }
.result-success { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 15px; font-weight: 700; }
.result-success span { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--act); }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.result-grid .result-block { margin: 0; padding: 18px 20px; border: 1px solid #eaebdf; border-radius: 16px; background: #f7f8f1; }

.corrected-checklist { background: #fff; border-top: 1px solid #eef0e5; }
.checklist-layout { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; }
.scoreboard { text-align: center; }
.score-ring { width: 220px; height: 220px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--act) 0%, #dcdFcc 0); transition: background .35s ease; }
.score-ring > div { width: 168px; height: 168px; border-radius: 50%; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-ring strong { font-size: 64px; line-height: 1; letter-spacing: -2px; color: var(--olive); }
.score-ring span { max-width: 120px; margin-top: 2px; color: var(--faint); font-size: 13px; line-height: 1.3; }
.scoreboard p { max-width: 260px; margin: 20px auto 0; color: var(--body); font-size: 15px; line-height: 1.5; }
.checklist-copy h2 { max-width: 650px; margin: 0 0 8px; font-size: clamp(30px, 3.5vw, 38px); line-height: 1.08; letter-spacing: -1px; }
.checklist-copy > p { max-width: 560px; margin: 0 0 22px; color: var(--body); font-size: 17px; }
.corrected-checklist .check-grid { grid-template-columns: 1fr 1fr; gap: 10px; max-width: none; }
.corrected-checklist .check-item { padding: 13px 15px; font-size: 14px; background: #fff; border-width: 1.5px; }
.corrected-checklist .pill { margin-top: 22px; }

.patterns-section { padding-top: 0; }
.patterns-head { max-width: 720px; margin-bottom: 26px; }
.patterns-head h2 { margin: 0 0 14px; font-size: clamp(28px, 3.5vw, 36px); line-height: 1.1; letter-spacing: -.8px; }
.patterns-head p { margin: 0; color: var(--body); font-size: 17px; }
.pattern-rows { display: flex; flex-direction: column; gap: 12px; }
.pattern-row { display: grid; grid-template-columns: 190px 1fr; gap: 20px; align-items: center; }
.pattern-row > strong { font-size: 15px; }
.pattern-row > div { min-height: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid #eaebdf; border-radius: 100px; background: #fff; }
.pattern-row span { padding: 6px 12px; border-radius: 100px; background: #f2f4eb; color: var(--olive); font-size: 12px; font-weight: 600; }
.pattern-row.growth > div { border-color: #f1e7d2; }
.pattern-row.growth span { color: var(--amber-ink); background: #fbf4e6; }
.pattern-months { margin: 6px 0 0 210px; display: flex; justify-content: space-between; color: #9aa089; font-family: 'IBM Plex Mono', monospace; font-size: 11px; }

@media (max-width: 760px) {
  .hero.hero-statement { padding: 64px 0 44px; }
  .hero-highlight { white-space: normal; }
  .hero-highlight::before { bottom: 4px; height: 10px; }
  .corrected-demo { padding: 52px 0; }
  .stage-node { width: 92px; }
  .stage-line { top: 19px; }
  .stage-node .stage-number { width: 38px; height: 38px; font-size: 14px; }
  .stage-node small { display: none; }
  .demo-stage-card { padding: 22px; min-height: 320px; }
  .demo-stage-card textarea.demo-input { font-size: 17px; }
  .demo-stage-card .demo-actions { align-items: flex-end; flex-wrap: wrap; }
  .mic-note { order: 3; flex-basis: 100%; }
  .demo-stage-card .submit-btn { margin-left: auto; padding: 14px 18px; }
  .result-grid { grid-template-columns: 1fr; }
  .checklist-layout { grid-template-columns: 1fr; gap: 36px; }
  .corrected-checklist .check-grid { grid-template-columns: 1fr; }
  .pattern-row { grid-template-columns: 1fr; gap: 7px; }
  .pattern-row > div { border-radius: 18px; }
  .pattern-months { margin-left: 0; }
}

@media (min-width: 761px) {
  .corrected-demo > .wrap { max-width: 1440px; }
}
