:root {
  --navy: #0f172a;
  --deep-navy: #06141b;
  --green: #10b981;
  --green-deep: #059669;
  --paper: #ffffff;
  --mist: #f5f5f7;
  --line: #e5e7eb;
  --muted: #6b7280;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--navy); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { background: var(--deep-navy); color: white; }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 126px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: .9rem; color: #d7e0e4; }
.nav-links a:hover, .footer-links a:hover { color: var(--green); }
.hero { background: var(--deep-navy); color: white; padding: clamp(72px, 13vw, 150px) 0 clamp(78px, 14vw, 168px); overflow: hidden; }
.hero-inner { max-width: 810px; }
.eyebrow { color: #7ee6bf; font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin: 22px 0; font-size: clamp(2.7rem, 8.5vw, 6.35rem); line-height: .98; letter-spacing: -.065em; font-weight: 750; }
.hero-copy { max-width: 590px; margin-bottom: 31px; color: #d2dde1; font-size: clamp(1.05rem, 2.5vw, 1.3rem); line-height: 1.6; }
.coming-soon { display: inline-flex; align-items: center; min-height: 48px; padding: 0 20px; border-radius: 15px; background: var(--green); color: #062b20; font-size: .95rem; font-weight: 750; }
.section { padding: clamp(66px, 10vw, 122px) 0; }
.section-mist { background: var(--mist); }
.section-heading { max-width: 650px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 14px; font-size: clamp(2rem, 5vw, 3.35rem); letter-spacing: -.055em; line-height: 1.02; }
.section-heading p, .audience p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle { min-height: 215px; padding: 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.principle-mark { display: block; width: 11px; height: 11px; margin-bottom: 42px; border-radius: 50%; background: var(--green); }
.principle h3 { margin-bottom: 10px; font-size: 1.2rem; letter-spacing: -.025em; }
.principle p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.audience { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(35px, 9vw, 130px); align-items: end; }
.audience h2 { margin-bottom: 0; font-size: clamp(2.1rem, 5.5vw, 4rem); line-height: 1.02; letter-spacing: -.06em; }
.signature { margin-top: 22px; color: var(--green-deep); font-weight: 750; }
.site-footer { padding: 38px 0; background: var(--deep-navy); color: white; }
.footer-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.footer-name { margin-bottom: 8px; font-size: 1.05rem; font-weight: 750; }
.footer-note { margin: 0; color: #a9b5ba; font-size: .86rem; line-height: 1.55; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: #d7e0e4; font-size: .88rem; }
.legal-page { min-height: 100vh; background: var(--mist); }
.legal-main { padding: clamp(60px, 10vw, 110px) 0; }
.legal-card { max-width: 760px; padding: clamp(29px, 6vw, 65px); border: 1px solid var(--line); border-radius: 26px; background: var(--paper); }
.legal-card h1 { margin: 16px 0 20px; color: var(--navy); font-size: clamp(2.35rem, 7vw, 4.65rem); }
.legal-card p { max-width: 570px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.legal-card .placeholder { color: var(--navy); font-weight: 650; }
.support-email { display: inline-block; margin: 15px 0 24px; padding: 15px 18px; border-radius: 14px; background: var(--mist); color: var(--navy); font-weight: 700; word-break: break-word; }
.legal-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: var(--green-deep); font-weight: 700; }
@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 1120px); }
  .nav { height: 68px; }
  .nav-links { gap: 13px; font-size: .78rem; }
  .brand img { width: 108px; }
  .principles { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}
