/* ODO DAO: ododao.com */

:root {
  --bg: #0b0a10;
  --bg-2: #13111b;
  --surface: #1a1724;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4f1fa;
  --muted: #a39cb6;
  --faint: #6e6784;

  --teal: #2bd9c9;
  --pink: #ff1f96;
  --yellow: #f2b63c;
  --orange: #ff6a00;
  --magenta: #c214c4;
  --purple: #7c3aed;

  --grad: linear-gradient(90deg, var(--purple), var(--magenta) 32%, var(--pink) 52%, var(--orange) 78%, #ff9a3c);
  --grad-warm: linear-gradient(90deg, var(--yellow), var(--orange) 30%, var(--pink) 65%, var(--magenta));

  --radius: 18px;
  --max: 1160px;
  --gutter: clamp(16px, 4vw, 40px);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; display: block; }
.section-head p { margin-top: 20px; color: var(--muted); font-size: 1.12rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-ghost { border: 1px solid rgba(255,255,255,.22); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 10, 16, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 38px; height: 38px; }
.brand span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) { text-decoration: none; color: var(--muted); font-size: 0.95rem; transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links .btn { padding: 10px 18px; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 8px; cursor: pointer; }

/* Hero */
.hero {
  min-height: 88vh; min-height: 88svh;
  display: flex; align-items: center;
  padding: 110px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(closest-side, rgba(124,58,237,.35), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: -15%; bottom: -30%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(closest-side, rgba(255,31,150,.16), transparent 70%);
  pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero .eyebrow { margin-bottom: 26px; display: inline-flex; align-items: center; gap: 10px; }
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.hero-lede { margin-top: 24px; font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 560px; }
.hero-lede strong { color: var(--text); font-weight: 500; }
.hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { position: relative; justify-self: center; width: min(100%, 360px); }
.hero-art img { width: 100%; height: auto; animation: float 9s ease-in-out infinite; filter: drop-shadow(0 40px 80px rgba(194,20,196,.25)); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) { .hero-art img { animation: none; } }

/* Product strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; }
.strip-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 500; }
.strip-item small { font-family: var(--font-body); font-weight: 400; color: var(--faint); font-size: 0.85rem; }

/* Status pills */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-display);
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill-live { color: var(--teal); background: rgba(43,217,201,.1); }
.pill-concept { color: var(--yellow); background: rgba(242,182,60,.1); }

/* Problem */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card {
  padding: 32px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.problem-card .num { font-family: var(--font-display); font-size: 0.85rem; color: var(--faint); margin-bottom: 40px; display: block; }
.problem-card h3 { margin-bottom: 12px; }
.problem-card p { color: var(--muted); font-size: 0.98rem; }
.problem-close {
  margin-top: 48px; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.35; max-width: 820px; letter-spacing: -0.01em;
}

/* Products */
.products { background: var(--bg-2); }
.product {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px);
  padding: clamp(32px, 4.5vw, 56px);
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.product + .product { margin-top: 20px; }
.product::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; }
.product.town::before { background: linear-gradient(90deg, var(--purple), var(--magenta)); }
.product.square::before { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.product.atlas::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.product-name { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; letter-spacing: -0.02em; margin: 18px 0 10px; }
.product-tag { font-size: 1.12rem; color: var(--text); }
.product-body p { color: var(--muted); }
.product-body p + p { margin-top: 14px; }
.product-body strong { color: var(--text); font-weight: 500; }
.facts { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.facts li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; font-size: 0.97rem; color: var(--muted); }
.facts li::before { content: "→"; color: var(--faint); }
.facts li b { color: var(--text); font-weight: 500; }
.product-link { margin-top: 28px; display: inline-flex; gap: 8px; font-family: var(--font-display); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 3px; }
.product-link:hover { border-color: var(--text); }

.price-callout {
  margin-top: 20px;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 48px); align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(124,58,237,.16), rgba(194,20,196,.12) 50%, rgba(255,106,0,.08));
  border: 1px solid rgba(255,255,255,.12);
}
.price-big { font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 7vw, 5rem); line-height: 1; letter-spacing: -0.03em; }
.price-callout h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 10px; }
.price-callout p { color: var(--muted); }
.fn { font-size: 0.78rem; color: var(--faint); margin-top: 12px; }

/* Why now */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface), transparent 140%); }
.why-card .where { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.why-card h3 { margin: 14px 0 12px; }
.why-card p { color: var(--muted); font-size: 0.98rem; }

/* Traction */
.traction { background: var(--bg-2); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.stat .value { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 4.4vw, 3.4rem); line-height: 1; letter-spacing: -0.03em; }
.stat .label { margin-top: 14px; color: var(--muted); font-size: 0.95rem; }
/* Placeholder marker: remove .tbd once real numbers are in */
.tbd { outline: 1px dashed var(--yellow); outline-offset: 4px; }
.stats-3 { grid-template-columns: repeat(3, 1fr); }
.stats-note { margin: 14px 0 clamp(56px, 7vw, 80px); }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 2px; background: var(--grad); opacity: .5; }
.timeline li { position: relative; padding-top: 34px; }
.timeline li::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--muted);
}
.timeline li.now::before { border-color: var(--teal); background: var(--teal); box-shadow: 0 0 14px var(--teal); }
.timeline .when { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.timeline li.now .when { color: var(--teal); }
.timeline h3 { font-size: 1.12rem; margin: 10px 0 8px; }
.timeline p { color: var(--muted); font-size: 0.95rem; }

.metrics-head { margin: clamp(64px, 8vw, 96px) 0 24px; max-width: 640px; }
.metrics-head h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 10px; }
.metrics-head p { color: var(--muted); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.metric { padding: 28px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.metric .k { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin: 18px 0 8px; letter-spacing: -0.01em; }
.metric p { color: var(--muted); font-size: 0.95rem; }

.traction-foot { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: space-between; }
.traction-foot p { color: var(--muted); max-width: 640px; font-size: 0.97rem; }

.quote { margin-top: 20px; padding: clamp(28px, 4vw, 44px); border-radius: 26px; border: 1px solid var(--line); }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.4; letter-spacing: -0.01em; }
.quote cite { display: block; margin-top: 18px; font-style: normal; color: var(--muted); font-size: 0.95rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.person { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  margin-bottom: 22px; position: relative;
  background: var(--bg);
}
.avatar::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; padding: 2px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
button.person {
  font: inherit; color: inherit; text-align: left; cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: border-color .2s ease, transform .2s ease;
}
button.person:hover { border-color: rgba(255,255,255,.25); transform: translateY(-3px); }
.avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; padding: 3px; }
button.person .avatar { width: 96px; height: 96px; }
.bio-head .avatar { width: 72px; height: 72px; }
.person h3 { font-size: 1.12rem; }
.person .role { color: var(--muted); font-size: 0.93rem; margin-top: 4px; display: block; }
.person .more { margin-top: auto; padding-top: 22px; font-family: var(--font-display); font-size: 0.85rem; font-weight: 500; color: var(--faint); transition: color .2s; }
button.person:hover .more { color: var(--text); }

/* Bio dialog */
.bio {
  width: min(560px, calc(100vw - 32px));
  padding: 36px; border-radius: 24px;
  background: var(--surface); color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.bio::backdrop { background: rgba(6,5,10,.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.bio[open] { animation: pop .25s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.bio-close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--line); background: transparent;
  color: var(--muted); font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.bio-close:hover { color: var(--text); border-color: rgba(255,255,255,.3); }
.bio-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; padding-right: 40px; }
.bio-head .avatar { margin: 0; flex: none; }
.bio-head h3 { font-size: 1.35rem; }
.bio-head .role { color: var(--muted); font-size: 0.95rem; margin-top: 4px; }
.bio-body p { color: var(--muted); }
.bio-body p + p { margin-top: 14px; }
.bio-body a { color: var(--text); }
@media (prefers-reduced-motion: reduce) { .bio[open] { animation: none; } }

/* Origin */
.origin .wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.origin-art { position: relative; max-width: 380px; }
.origin-art img { width: 100%; opacity: .95; }
.origin-body h2 { margin: 18px 0 24px; }
.origin-body p { color: var(--muted); font-size: 1.08rem; }
.origin-body p + p { margin-top: 16px; }
.origin-body em { color: var(--text); }
.origin-quote { margin-top: 32px; padding-left: 20px; border-left: 3px solid var(--purple); }
.origin-quote p { color: var(--text); font-family: var(--font-display); font-size: 1.1rem; line-height: 1.5; }
.origin-quote cite { display: block; margin-top: 10px; font-style: normal; color: var(--faint); font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  padding: clamp(32px, 4.5vw, 52px); border-radius: 26px;
  border: 1px solid var(--line); background: var(--surface);
  display: flex; flex-direction: column; align-items: flex-start;
}
.contact-card.investors { background: linear-gradient(145deg, rgba(124,58,237,.28), rgba(255,31,150,.14) 60%, var(--surface)); border-color: rgba(255,255,255,.14); }
.contact-card h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 16px 0 14px; }
.contact-card p { color: var(--muted); margin-bottom: 30px; }
.contact-card .btn { margin-top: auto; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; color: var(--muted); font-size: 0.92rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 80px); flex-wrap: wrap; }
.footer h4 { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--text); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--faint); font-size: 0.85rem; }
.footer-tag { max-width: 300px; margin-top: 16px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

/* Tablet */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; width: min(60vw, 300px); justify-self: center; }
  .product { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .timeline::before { display: none; }
  .origin .wrap { grid-template-columns: 1fr; }
  .origin-art { max-width: 240px; justify-self: center; width: 100%; }
}

/* Phone spacing: keep last so desktop rules can't override it */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,10,16,.97); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav.open { background: rgba(11,10,16,.97); }
  .nav-links a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links .btn { margin-top: 18px; justify-content: center; padding: 14px; }

  .hero { min-height: auto; padding: 104px 0 64px; }
  .hero-art { width: 170px; }
  .hero .wrap { gap: 12px; }
  .hero .eyebrow { margin-bottom: 18px; }
  .hero-lede { margin-top: 20px; }
  .hero-ctas { margin-top: 30px; }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }

  .strip .wrap { flex-direction: column; align-items: flex-start; gap: 10px; }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 32px; }
  .problem-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .problem-card .num { margin-bottom: 20px; }
  .problem-close { margin-top: 32px; }
  .product { padding: 28px 22px; border-radius: 22px; }
  .product + .product { margin-top: 14px; }
  .price-callout { grid-template-columns: 1fr; gap: 14px; padding: 28px 22px; }
  .why-card { padding: 26px 22px; }
  .stats, .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .timeline { grid-template-columns: 1fr; gap: 26px; padding-left: 30px; }
  .timeline::before { display: block; top: 6px; bottom: 6px; left: 7px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--purple), var(--pink), var(--orange)); }
  .timeline li { padding-top: 0; }
  .timeline li::before { left: -30px; top: 3px; }
  .metrics { grid-template-columns: 1fr; gap: 12px; }
  .metric { padding: 24px 22px; }
  .stat { padding: 22px 18px; }
  .person { padding: 22px 18px; }
  .avatar { width: 52px; height: 52px; font-size: 1.1rem; margin-bottom: 16px; }
  .origin-art { max-width: 160px; }
  .origin .wrap { gap: 28px; }
  .contact-card { padding: 28px 22px; }
  .contact-card .btn { width: 100%; justify-content: center; }
  .footer { padding: 44px 0 32px; }
}
@media (max-width: 760px) { .bio { padding: 26px 22px; } }
@media (max-width: 760px) {
  .stats-3 { grid-template-columns: 1fr; gap: 10px; }
  .stats-3 .stat { display: flex; align-items: center; gap: 18px; padding: 18px 20px; }
  .stats-3 .value { font-size: 2.2rem; min-width: 96px; }
  .stats-3 .label { margin-top: 0; }
  .stats-note { margin-bottom: 48px; }
}

/* Weighted poll example */
.weighted { margin: 24px 0 0; padding: 20px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); }
.weighted figcaption { font-size: 0.8rem; color: var(--faint); margin-bottom: 12px; font-family: var(--font-display); letter-spacing: 0.04em; }
.wbar { display: flex; height: 38px; border-radius: 10px; overflow: hidden; gap: 3px; }
.wbar span { flex: var(--w) 0 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: #0b0a10; }
.w1 { background: linear-gradient(90deg, var(--purple), var(--pink)); color: #fff !important; }
.w2 { background: var(--teal); }
.w3 { background: var(--yellow); }
.wlegend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 12px; font-size: 0.88rem; color: var(--muted); }
.wlegend span { display: inline-flex; align-items: center; gap: 7px; }
.wlegend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }

/* Legal pages */
.legal { padding: 140px 0 100px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 16px 0 10px; }
.legal .updated { color: var(--faint); font-size: 0.9rem; }
.legal .lead { margin: 36px 0 12px; font-size: 1.15rem; color: var(--text); padding: 22px 24px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.legal h2 { font-size: 1.3rem; margin: 44px 0 12px; }
.legal p { color: var(--muted); }
.legal a { color: var(--text); }
.nav-back { padding: 9px 16px; font-size: 0.88rem; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }
@media (max-width: 760px) { .legal { padding: 110px 0 72px; } .footer .footer-bottom:only-child { margin-top: 0; } }
@media (max-width: 760px) { button.person .avatar { width: 64px; height: 64px; } }
/* Tighter vertical rhythm on phones */
@media (max-width: 760px) {
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 24px; }
  .section-head p { margin-top: 14px; }
  .section-head .eyebrow { margin-bottom: 12px; }
  .problem-close { margin-top: 24px; }
  .price-callout { margin-top: 14px; }
  .metrics-head { margin: 44px 0 18px; }
  .traction-foot { margin-top: 22px; }
  .hero { padding-bottom: 48px; }
  .footer { padding-top: 36px; }
}
@media (max-width: 760px) { .origin { padding-top: 8px; } #team { padding-bottom: 32px; } }
@media (max-width: 760px) { .team-grid > .person:last-child:nth-child(odd) { grid-column: span 2; } }
.team-sub { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 44px 0 18px; }
@media (max-width: 760px) { .team-sub { margin: 32px 0 14px; } }
