:root {
  --ink: #101826;
  --muted: #657082;
  --line: #dce1e8;
  --soft: #f4f6f8;
  --paper: #fcfcfb;
  --white: #ffffff;
  --red: #f13b35;
  --red-dark: #d92e29;
  --lime: #b8f22e;
  --green: #0b8d54;
  --navy: #111d2e;
  --shadow: 0 28px 70px rgba(16, 24, 38, 0.1);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button:disabled { cursor: wait; opacity: .7; transform: none; }
button, label[for], a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  width: min(1240px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 800; }
.brand-accent { color: var(--red); }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--red); color: white;
  display: inline-grid; place-items: center; font-weight: 800; transform: rotate(-7deg);
}
.brand-mark.large { width: 44px; height: 44px; border-radius: 11px; font-size: 22px; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 700; }
.site-nav a { color: #354052; transition: color .2s; }
.site-nav a:hover { color: var(--red); }
.mobile-menu { display: none; background: none; border: 0; padding: 8px; }
.mobile-menu span { display: block; width: 23px; height: 2px; margin: 5px; background: var(--ink); }
.button {
  border: 1px solid transparent; border-radius: 8px; min-height: 48px; padding: 0 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 18px; }
.button-dark { background: var(--ink); color: white; }
.button-red { background: var(--red); color: white; box-shadow: 0 13px 26px rgba(241, 59, 53, .22); }
.button-red:hover { background: var(--red-dark); }
.button-ghost { border-color: var(--line); background: white; }
.button-light { background: white; color: var(--ink); }
.button-outline-light { border-color: rgba(255,255,255,.4); color: white; background: transparent; }
.full-button { width: 100%; }
.hero {
  min-height: 690px; padding: 70px 0 100px; display: grid; grid-template-columns: .92fr 1.08fr;
  align-items: center; gap: 80px;
}
.hero-copy h1, .section-heading h2, .final-cta h2 {
  margin: 0; font-size: clamp(52px, 6.2vw, 82px); line-height: .98; letter-spacing: -.072em; font-weight: 800;
}
.hero-copy h1 { font-size: clamp(52px, 4.7vw, 66px); }
.hero-copy h1 span { display: block; }
.hero-lede { max-width: 530px; margin: 28px 0 32px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.button-row { display: flex; gap: 12px; align-items: center; }
.trust-line { margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 18px; color: #7a8494; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.hero-demo, .analysis-window {
  background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.demo-topline, .window-head {
  padding: 12px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between;
  color: #7a8494; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
}
.live-label { color: var(--ink); }
.live-label i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--red); }
.demo-title { padding: 22px; display: flex; align-items: flex-start; justify-content: space-between; }
.demo-title h2 { margin: 5px 0 0; font-size: 18px; }
.micro-label { font-size: 9px; color: #7a8494; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.micro-label.light { color: rgba(255,255,255,.65); }
.confidence { min-height: 32px; color: #817321; background: #faf6d9; border-radius: 99px; padding: 6px 14px; display: inline-flex; align-items: center; justify-content: center; text-align: center; line-height: 1; font-size: 9px; font-weight: 800; }
.hero-demo:focus { outline: none; }
.hero-demo.is-highlighted { animation: example-highlight 1.15s ease; }
@keyframes example-highlight {
  0%, 100% { box-shadow: var(--shadow); }
  35% { box-shadow: 0 0 0 5px rgba(241, 59, 53, .2), 0 28px 70px rgba(16, 24, 38, .14); }
}
.money-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.money-grid div { padding: 16px 22px; }
.money-grid div + div { border-left: 1px solid var(--line); }
.money-grid span, .offer-check span, .offer-check small, .money-grid strong { display: block; }
.money-grid span, .offer-check span { color: #7a8494; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.money-grid strong { margin-top: 5px; font-size: 21px; }
.offer-check { margin: 18px 22px; padding: 17px; display: grid; grid-template-columns: 1fr auto; gap: 10px; border: 1px solid #ffc5c1; border-radius: 10px; background: #fff9f8; }
.offer-check strong { display: block; margin-top: 3px; font-size: 26px; }
.offer-check small { color: #8992a0; font-size: 9px; margin-top: 3px; }
.offer-rating { text-align: right; }
.offer-rating strong { color: var(--red); font-size: 20px; }
.value-track { height: 4px; border-radius: 8px; background: #dfe4e9; grid-column: 1 / -1; position: relative; margin-top: 8px; }
.value-track span { width: 66%; height: 100%; background: var(--red); border-radius: inherit; }
.value-track i { position: absolute; left: 65%; top: -4px; width: 2px; height: 12px; background: var(--red); }
.track-labels { grid-column: 1 / -1; display: flex; justify-content: space-between; color: #8b93a0; font-size: 8px; }
.leg-list { padding: 0 22px; }
.leg-list article, .analysis-legs article {
  min-height: 53px; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
}
.leg-list strong, .leg-list small, .analysis-legs strong, .analysis-legs small { display: block; }
.leg-list strong, .leg-list b, .analysis-legs strong { font-size: 11px; }
.leg-list small, .analysis-legs small { margin-top: 3px; color: #8b93a0; font-size: 9px; }
.status-icon { width: 20px; height: 20px; display: inline-grid; place-items: center; border-radius: 50%; font-size: 10px; font-weight: 900; }
.positive { background: #def6e8; color: var(--green); }
.warning { background: #fff0e5; color: #e2772d; }
.neutral { background: #e9edf2; color: #647084; }
.positive-text { color: var(--green); }
.upload-zone {
  margin: 18px 22px 22px; min-height: 62px; border: 1px dashed #c5cbd3; border-radius: 9px; display: flex; align-items: center;
  gap: 12px; padding: 10px 13px; cursor: pointer; transition: border .2s, background .2s;
}
.upload-zone:hover, .upload-zone.uploaded { border-color: var(--red); background: #fff9f8; }
.upload-zone input { display: none; }
.upload-zone span strong, .upload-zone span small { display: block; font-size: 10px; }
.upload-zone span small { color: #929aa7; margin-top: 3px; }
.upload-zone b { margin-left: auto; padding: 7px 11px; background: var(--ink); color: white; border-radius: 6px; font-size: 9px; }
.upload-icon { width: 28px; height: 28px; border-radius: 7px; background: var(--soft); display: grid; place-items: center; font-weight: 800; }
.upload-result { margin: -8px 22px 20px; padding: 11px; background: #f0faf4; border: 1px solid #c5ebd5; border-radius: 9px; display: flex; gap: 10px; align-items: center; }
.upload-result[hidden] { display: none; }
.upload-result strong, .upload-result small { display: block; font-size: 10px; }
.upload-result small { margin-top: 3px; color: var(--muted); }
.how { padding: 130px 0 120px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2 { font-size: clamp(42px, 5vw, 68px); }
.section-heading p { max-width: 570px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-heading.centered p { margin: 20px auto 0; }
.steps { margin-top: 70px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 22px; align-items: center; }
.steps > i { width: 80px; border-top: 1px dashed #c7ccd3; }
.steps article { text-align: center; position: relative; }
.steps article > span { position: absolute; top: 0; left: 20%; font: 500 9px "DM Mono"; color: #929aa7; }
.step-icon { width: 55px; height: 55px; margin: auto; border: 1px solid var(--line); border-radius: 14px; display: grid; place-items: center; background: white; font-size: 19px; }
.steps h3 { margin: 18px 0 8px; font-size: 14px; }
.steps p { margin: auto; max-width: 220px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.alive-card {
  max-width: 780px; margin: 85px auto 0; padding: 34px 40px 20px; display: grid; grid-template-columns: 1fr auto; gap: 20px;
  background: var(--navy); color: white; border-radius: 18px; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.alive-card h3 { margin: 12px 0 4px; font-size: 42px; line-height: .95; letter-spacing: -.07em; }
.alive-card p { margin: 0; color: rgba(255,255,255,.55); font-size: 11px; }
.alive-need { width: 155px; height: 155px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.alive-need span, .alive-need b { font-size: 8px; letter-spacing: .12em; color: rgba(255,255,255,.55); }
.alive-need strong { color: var(--lime); font-size: 62px; line-height: 1; }
.mini-pitch { height: 38px; grid-column: 1 / -1; border: 1px solid rgba(255,255,255,.12); position: relative; background: repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 80px, transparent 80px 160px); }
.mini-pitch span { position: absolute; inset: 0 auto 0 50%; border-left: 1px solid rgba(255,255,255,.12); }
.mini-pitch i { position: relative; display: inline-block; width: 5px; height: 5px; margin: 15px 40px; border-radius: 50%; background: var(--lime); }
.alive-card footer { grid-column: 1 / -1; display: flex; justify-content: space-between; font-size: 9px; color: rgba(255,255,255,.5); }
.pre-kickoff { padding: 130px 0; background: #f0f2f4; border-block: 1px solid #e0e4e9; }
.pre-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.text-link { display: inline-flex; gap: 18px; align-items: center; margin-top: 16px; padding-bottom: 6px; color: var(--red); border-bottom: 1px solid #f2aaa6; font-size: 12px; font-weight: 800; cursor: pointer; }
.analysis-window { box-shadow: 0 24px 60px rgba(16,24,38,.08); }
.analysis-summary { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); }
.analysis-summary div { padding: 18px 20px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
.analysis-summary span, .analysis-summary strong { display: block; }
.analysis-summary span { font-size: 8px; color: #8992a0; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.analysis-summary strong { margin-top: 6px; font-size: 22px; }
.analysis-summary .chance strong { color: var(--red); }
.analysis-summary .difficulty { background: var(--navy); color: white; }
.analysis-summary .difficulty strong { color: var(--red); }
.risk-block { margin: 18px; padding: 18px; border-left: 3px solid var(--red); background: #fff7f6; }
.risk-block span { color: var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.risk-block strong { display: block; margin-top: 6px; font-size: 13px; }
.risk-block p { margin: 4px 0 0; color: var(--muted); font-size: 9px; }
.analysis-legs { margin: 0 18px; }
.analysis-legs article { grid-template-columns: auto 1fr auto; }
.analysis-legs article > span { font: 500 9px "DM Mono"; color: #8992a0; }
.analysis-legs b { padding: 5px 8px; color: var(--green); background: #eaf7ef; border-radius: 99px; font-size: 8px; }
.analysis-legs .high-risk b { color: var(--red); background: #fff0ef; }
.conflict-note { margin: 16px 18px 20px; padding: 12px; display: flex; align-items: center; gap: 10px; background: #f1faf4; border-radius: 8px; color: var(--green); }
.conflict-note p { margin: 0; font-size: 9px; line-height: 1.6; }
.tracker-section { padding: 140px 0; }
.tracker-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.tracker-card { background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.tracker-head { padding: 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.tracker-head strong { display: block; margin-top: 5px; font-size: 20px; }
.tracker-live { padding: 7px 10px; border-radius: 99px; background: #fff1ef; color: var(--red); font-size: 9px; font-weight: 900; }
.tracker-metrics { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); }
.tracker-metrics div { padding: 18px 22px; border-top: 1px solid var(--line); }
.tracker-metrics div:nth-child(odd) { border-right: 1px solid var(--line); }
.tracker-metrics span, .tracker-metrics strong { display: block; }
.tracker-metrics span { color: #8992a0; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.tracker-metrics strong { margin-top: 7px; font-size: 19px; }
.tracker-status-list { padding: 6px 22px 18px; }
.tracker-status-list article { min-height: 58px; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); }
.tracker-status-list article:last-child { border-bottom: 0; }
.tracker-status-list strong, .tracker-status-list small { display: block; font-size: 11px; }
.tracker-status-list small { margin-top: 3px; color: var(--muted); }
.dead { background: #f2e5e5; color: #9e2520; }
.feed-section { padding: 140px 0; background: var(--navy); color: white; }
.feed-section .section-heading p { color: rgba(255,255,255,.62); }
.feed-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.feed-stack { display: grid; gap: 18px; }
.feed-card { padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); box-shadow: 0 28px 60px rgba(0,0,0,.18); }
.feed-card.tilted { transform: rotate(-1.4deg); background: var(--red); }
.feed-top, .vote-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.feed-top strong { font-size: 16px; }
.feed-top span { padding: 6px 9px; border-radius: 99px; background: rgba(255,255,255,.15); font-size: 8px; font-weight: 900; }
.feed-card p { margin: 22px 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.7; }
.vote-row button { flex: 1; min-height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 9px; background: white; color: var(--ink); font-size: 11px; font-weight: 900; }
.vote-row button:first-child { background: var(--lime); }
.feed-card small { display: block; margin-top: 14px; color: rgba(255,255,255,.62); font-size: 9px; }
.features { padding: 140px 0; }
.feature-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 120px; align-items: center; }
.feature-list { margin-top: 45px; }
.feature-list article { padding: 20px 0; display: grid; grid-template-columns: auto 1fr; gap: 18px; border-top: 1px solid var(--line); }
.feature-list article > span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; color: var(--red); }
.feature-list h3 { margin: 0 0 6px; font-size: 14px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 11px; }
.social-card { padding: 34px; background: var(--red); color: white; border-radius: 18px; box-shadow: 0 30px 65px rgba(241,59,53,.25); transform: rotate(2deg); }
.social-top, .social-offer, .social-card footer { display: flex; align-items: center; justify-content: space-between; }
.social-top { padding-bottom: 22px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.25); font-size: 11px; }
.social-top span { font-size: 8px; padding: 5px 8px; border-radius: 99px; background: rgba(255,255,255,.16); }
.social-card h3 { margin: 10px 0 24px; font-size: 76px; line-height: .8; letter-spacing: -.08em; }
.social-score { display: flex; gap: 16px; align-items: center; }
.social-score strong { font-size: 50px; }
.social-score small { font-size: 14px; }
.social-score span { font-size: 10px; font-weight: 800; }
.social-need { margin: 20px 0; padding: 17px; display: flex; justify-content: space-between; background: white; color: var(--ink); border-radius: 9px; }
.social-need span { font-size: 8px; font-weight: 800; color: var(--red); }
.social-need strong { font-size: 14px; }
.social-offer { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.25); font-size: 10px; }
.social-offer strong { color: var(--lime); font-size: 18px; }
.social-card footer { margin-top: 38px; font-size: 8px; color: rgba(255,255,255,.7); }
.pricing-section { padding: 140px 0; background: var(--navy); color: white; }
.pricing-section .section-heading p { color: rgba(255,255,255,.55); }
.pricing-grid { max-width: 850px; margin: 70px auto 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; align-items: center; }
.price-card { padding: 34px; border-radius: 16px; }
.price-card h3 { margin: 12px 0; font-size: 40px; letter-spacing: -.06em; }
.price-card p { min-height: 48px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.price-card ul { padding: 20px 0 25px; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.price-card li { padding: 7px 0; font-size: 10px; }
.price-card li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 900; }
.free-card { background: white; color: var(--ink); }
.paid-card { background: var(--red); color: white; position: relative; box-shadow: 0 26px 65px rgba(0,0,0,.22); }
.paid-card p { color: rgba(255,255,255,.72); }
.paid-card ul { border-color: rgba(255,255,255,.25); }
.paid-card li::before { color: var(--lime); }
.founder-limit { position: absolute; top: -13px; right: 18px; padding: 7px 12px; border-radius: 99px; background: var(--lime); color: var(--ink); font-size: 8px; font-weight: 800; }
.price-line { display: flex; justify-content: space-between; align-items: end; }
.price-line h3 small { font-size: 11px; letter-spacing: 0; }
.price-line span { margin-bottom: 17px; font-size: 9px; text-decoration: line-through; color: rgba(255,255,255,.58); }
.safety { padding: 130px 0 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: end; }
.safety-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.safety-list span { padding: 18px 0; border-bottom: 1px solid var(--line); color: #414b5b; font-size: 11px; font-weight: 700; }
.safety-list span:nth-child(even) { padding-left: 20px; }
.faq { padding: 70px 0 130px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 110px; }
.faq-list article { border-top: 1px solid var(--line); }
.faq-list article:last-child { border-bottom: 1px solid var(--line); }
.faq-list button { width: 100%; padding: 21px 0; border: 0; background: none; display: flex; justify-content: space-between; color: var(--ink); cursor: pointer; text-align: left; font-size: 13px; font-weight: 800; }
.faq-list button b { color: var(--red); font-size: 19px; }
.faq-list p { display: none; margin: -5px 35px 20px 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.faq-list button[aria-expanded="true"] + p { display: block; }
.final-cta { padding: 110px 0; background: var(--red); color: white; text-align: center; }
.final-cta h2 { font-size: clamp(42px, 5.5vw, 70px); }
.centered-buttons { justify-content: center; margin-top: 35px; }
.footer { padding: 40px 0; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.footer nav { display: flex; justify-content: center; gap: 22px; color: #687386; font-size: 9px; font-weight: 700; }
.footer p { margin: 0; color: #8b93a0; font-size: 8px; max-width: 220px; text-align: right; }
.access-modal { width: min(460px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 18px; box-shadow: 0 35px 100px rgba(16,24,38,.28); }
.access-modal::backdrop { background: rgba(16,24,38,.65); backdrop-filter: blur(5px); }
.modal-content { padding: 42px; }
.modal-content h2 { margin: 20px 0 10px; font-size: 34px; line-height: 1.05; letter-spacing: -.06em; }
.modal-content p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.modal-close { position: absolute; top: 14px; right: 16px; border: 0; background: none; color: #7b8594; font-size: 25px; cursor: pointer; }
.modal-content form { display: grid; gap: 10px; margin-top: 25px; }
.modal-content label { font-size: 10px; font-weight: 800; }
.modal-content input { min-height: 48px; border: 1px solid var(--line); border-radius: 8px; padding: 0 14px; outline: none; }
.modal-content input:focus { border-color: var(--red); }
.modal-content form small { text-align: center; color: #8b93a0; font-size: 8px; }
.form-error { margin: 0; padding: 10px; border-radius: 7px; background: #fff0ef; color: #b7211c !important; font-size: 10px !important; }
.form-error[hidden] { display: none; }
.modal-success { text-align: center; padding: 15px 0; }
.modal-success[hidden] { display: none; }
.modal-success .status-icon { margin: auto; width: 46px; height: 46px; font-size: 18px; }
.modal-success h3 { margin-bottom: 0; font-size: 20px; }

.legal-header { border-bottom: 1px solid var(--line); }
.legal-main { width: min(760px, calc(100% - 40px)); margin: 80px auto 120px; }
.legal-main h1 { margin: 0 0 15px; font-size: clamp(44px, 6vw, 68px); line-height: 1; letter-spacing: -.065em; }
.legal-main h2 { margin: 38px 0 10px; font-size: 19px; letter-spacing: -.025em; }
.legal-main p, .legal-main li { color: var(--muted); font-size: 13px; line-height: 1.8; }
.legal-main ul { padding-left: 20px; }
.legal-main .effective-date { margin-bottom: 45px; color: #8b93a0; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.legal-main .notice { margin: 30px 0; padding: 18px; border-left: 3px solid var(--red); background: #fff7f6; }
.legal-footer { border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .mobile-menu { display: block; }
  .site-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0; padding: 20px; flex-direction: column; align-items: stretch;
    background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero, .pre-layout, .tracker-layout, .feed-layout, .feature-layout, .safety, .faq { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; gap: 60px; }
  .pre-layout, .tracker-layout, .feed-layout, .feature-layout, .safety, .faq { gap: 55px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps > i { width: 1px; height: 25px; border-top: 0; border-left: 1px dashed #c7ccd3; margin: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer nav { flex-wrap: wrap; }
  .footer p { max-width: none; text-align: center; }
}

@media (min-width: 901px) {
  .hero-copy h1 span { white-space: nowrap; }
}

@media (max-width: 600px) {
  .section-shell, .site-header { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding: 45px 0 75px; }
  .hero-copy h1 { font-size: 52px; }
  .hero-lede { font-size: 14px; margin-top: 20px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .trust-line { display: grid; gap: 8px; }
  .demo-title, .money-grid div, .offer-check, .leg-list, .upload-zone { padding-left: 14px; padding-right: 14px; }
  .demo-title { gap: 10px; }
  .money-grid { grid-template-columns: 1fr 1fr; }
  .money-grid div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; }
  .offer-check { grid-template-columns: 1fr; }
  .offer-rating { text-align: left; }
  .leg-list article { grid-template-columns: auto 1fr; padding-block: 10px; }
  .leg-list b { grid-column: 2; }
  .how, .features, .pricing-section, .pre-kickoff, .tracker-section, .feed-section { padding: 90px 0; }
  .alive-card { padding: 25px; grid-template-columns: 1fr; }
  .alive-need { width: 130px; height: 130px; }
  .alive-card h3 { font-size: 36px; }
  .analysis-summary { grid-template-columns: 1fr 1fr; }
  .tracker-metrics { grid-template-columns: 1fr; }
  .tracker-metrics div:nth-child(odd) { border-right: 0; }
  .feed-card.tilted { transform: none; }
  .social-card { padding: 28px; }
  .social-card h3 { font-size: 65px; }
  .safety { padding-top: 90px; }
  .safety-list { grid-template-columns: 1fr; }
  .safety-list span:nth-child(even) { padding-left: 0; }
  .faq { padding-bottom: 90px; }
  .final-cta { padding: 85px 0; }
  .modal-content { padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
