:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --ink: #01284e;
  --muted: #5b6078;
  --line: #e7e2d9;
  --accent: #00908e;
  --accent-ink: #ffffff;
  --accent-soft: #e0f4f3;
  --brand-teal: #01b0ae;
  --teal: #00908e;
  --gold: #e9a23b;
  --violet: #6c5ce7;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(1, 40, 78, .08);
  --max: 1160px;
}

/* Per-audience accent */
body.aud-teachers { --accent: #00908e; --accent-soft: #e0f4f3; }
body.aud-safety { --accent: #e9a23b; --accent-soft: #fdf3e2; --accent-ink: #01284e; }
body.aud-orgs { --accent: #2f6fd6; --accent-soft: #e6effc; }
body.aud-community { --accent: #e0603f; --accent-soft: #fdeee9; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Heebo", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}
h1, h2, h3, h4 { font-family: "Rubik", "Heebo", sans-serif; line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section.alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
body.aud-safety .eyebrow { color: #9a6310; }
.lead { font-size: 1.2rem; color: var(--muted); }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 99px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font: inherit; font-weight: 600;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 35%, transparent); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: "Rubik"; font-weight: 800; font-size: 1.4rem; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-size: .95rem; letter-spacing: .5px;
}
.logo-mark { font-size: 1.2rem; color: var(--accent); }
.logo-4 { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; padding: 8px 12px; border-radius: 10px; font-weight: 500; font-size: .98rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--accent-soft); color: var(--ink); }
.nav-links .btn { padding: 9px 20px; margin-inline-start: 8px; }
.nav-links .btn:hover { background: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 72px; inset-inline: 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { margin: 8px 0 0; justify-content: center; }
}

/* Hero */
.hero { padding: 80px 0 90px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 .hl { color: var(--accent); }
.hero .lead { max-width: 560px; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: "Rubik"; font-size: 1.8rem; }
.hero-stats span { color: var(--muted); font-size: .92rem; }
.hero-visual {
  position: relative; min-height: 420px; border-radius: 32px;
  background: var(--ink);
  padding: 28px; color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: var(--brand-teal); filter: blur(60px); opacity: .55; top: -15%; inset-inline-end: -15%;
}
.chat-bubble {
  position: relative; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 12px 16px; border-radius: 16px; font-size: .95rem; max-width: 88%;
}
.chat-bubble.me { align-self: flex-start; border-bottom-right-radius: 4px; }
.chat-bubble.ai { align-self: flex-end; background: var(--accent); color: var(--accent-ink); border: 0; border-bottom-left-radius: 4px; }
.chat-label { font-size: .75rem; opacity: .7; display: block; margin-bottom: 2px; }

@media (max-width: 900px) {
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: auto; min-height: 320px; }
}

/* Cards */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card p:last-child { margin-bottom: 0; }
.icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 18px;
}
body.aud-safety .icon { color: #b0750f; }
.icon svg { width: 26px; height: 26px; }

/* Audience cards on home */
.aud-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  border-top: 5px solid var(--c);
  position: relative;
}
.aud-card .icon { background: color-mix(in srgb, var(--c) 14%, white); color: var(--c); }
.aud-card .more { margin-top: auto; padding-top: 14px; font-weight: 600; color: var(--c); }
.aud-card ul { margin: 0 0 8px; padding-inline-start: 20px; color: var(--muted); font-size: .95rem; }

/* Formats */
.format { position: relative; }
.format .tag { font-size: .82rem; font-weight: 600; color: var(--muted); display: block; margin-bottom: 6px; }
.format.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.format.featured .tag, .format.featured p { color: rgba(255,255,255,.75); }

/* Split / checklist */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
  content: "✓"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700; margin-top: 3px;
}

/* Syllabus */
.syllabus { counter-reset: s; display: grid; gap: 14px; }
.syllabus .card { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 22px 26px; }
.syllabus .card::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: "Rubik"; font-weight: 800; font-size: 1.6rem; color: var(--accent); line-height: 1.2;
}
body.aud-safety .syllabus .card::before { color: #b0750f; }
.syllabus h3 { margin-bottom: 4px; }
.syllabus p { color: var(--muted); }

/* Pain -> gain */
.pain { font-size: .95rem; color: var(--muted); margin-bottom: 10px; }
.pain b { color: var(--ink); }
.gain { font-weight: 500; }

/* Page hero (audience) */
.page-hero { padding: 72px 0 64px; background: var(--accent-soft); border-bottom: 1px solid var(--line); }
.page-hero .lead { max-width: 640px; }
.crumbs { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { text-decoration: none; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 30px; }
.pill { background: var(--surface); border: 1px solid var(--line); padding: 6px 14px; border-radius: 99px; font-size: .9rem; font-weight: 500; }

/* Quote */
.quote { font-size: 1.1rem; }
.quote footer { margin-top: 14px; font-size: .9rem; color: var(--muted); font-style: normal; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--accent); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); }

/* CTA band */
.cta-band {
  background: var(--ink); color: #fff; border-radius: 28px;
  padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: var(--accent); opacity: .35; filter: blur(70px); inset-inline-start: -80px; bottom: -160px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.75); margin: 0; }
@media (max-width: 640px) { .cta-band { padding: 36px 26px; } }

/* Form */
.form-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; } }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 32px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form { padding: 22px; } }
label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
textarea { min-height: 110px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form.sent .form-grid, .form.sent .btn, .form.sent .form-note { display: none; }
.form.sent .form-success { display: block; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.contact-list a { text-decoration: none; font-weight: 600; }

/* Footer */
.site-footer { padding: 56px 0 32px; background: var(--ink); color: rgba(255,255,255,.75); margin-top: 88px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: #fff; font-size: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer .logo { color: #fff; margin-bottom: 12px; }
.site-footer .logo-mark { background: #fff; color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; font-size: .88rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp */
.wa-float {
  position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
}
.wa-float svg { width: 30px; height: 30px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* About */
.about { display: grid; grid-template-columns: 230px 1fr; gap: 48px; align-items: center; }
.about-photo {
  position: relative; border-radius: 24px; overflow: hidden;
  background: var(--ink); aspect-ratio: 4 / 5; width: 230px;
  display: flex; align-items: flex-end; justify-content: center;
  box-shadow: var(--shadow);
}
.about-photo::before {
  content: ""; position: absolute; width: 85%; aspect-ratio: 1; border-radius: 50%;
  background: var(--brand-teal); top: 12%; inset-inline-start: 7.5%;
}
.about-photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(1,176,174,.4), transparent 45%);
}
.about-photo img { position: relative; z-index: 1; width: 92%; height: auto; }
.about-facts { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.about-facts li { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.about-facts strong { display: block; font-family: "Rubik"; color: var(--accent); }
.about-facts span { font-size: .88rem; color: var(--muted); line-height: 1.5; display: block; }
.about > * { min-width: 0; }
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { width: 180px; }
}
@media (max-width: 560px) { .about-facts { grid-template-columns: 1fr; } }

/* Contact card with photo */
.contact-card { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.contact-card img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; object-position: top; background: var(--accent); }
.contact-card strong { display: block; font-family: "Rubik"; }

/* Logo image */
.logo img { height: 42px; width: auto; }
.site-footer .logo img { height: 72px; }

/* ===== Hero v2 ===== */
.hero2 {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink); color: #fff;
  padding: 88px 0 44px;
}
.hero2-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 420px at 18% 30%, rgba(1,176,174,.35), transparent 70%),
    radial-gradient(500px 400px at 95% 90%, rgba(47,111,214,.35), transparent 70%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 44px 44px;
}
.hero2-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero2-grid > * { min-width: 0; }
.hero2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: #bff0ef;
  background: rgba(1,176,174,.14); border: 1px solid rgba(1,176,174,.35);
  padding: 6px 14px; border-radius: 99px; margin-bottom: 20px;
}
.hero2-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-teal); box-shadow: 0 0 0 4px rgba(1,176,174,.25); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(1,176,174,0); } }
.hero2 h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); color: #fff; margin-bottom: 20px; }
.rotator { color: var(--brand-teal); white-space: nowrap; display: block; min-height: 1.25em; }
.caret { display: inline-block; width: 3px; height: .85em; background: var(--brand-teal); margin-inline-start: 4px; vertical-align: -0.06em; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero2-lead { font-size: 1.2rem; color: rgba(255,255,255,.78); max-width: 540px; margin-bottom: 30px; }
.hero2 .btn-primary { background: var(--brand-teal); color: var(--ink); box-shadow: 0 10px 30px rgba(1,176,174,.35); }
.btn-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }
.hero2-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero2-chips a {
  text-decoration: none; font-size: .92rem; font-weight: 500;
  padding: 7px 14px; border-radius: 99px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  transition: background .15s, border-color .15s;
}
.hero2-chips a:hover { background: rgba(1,176,174,.2); border-color: var(--brand-teal); }

.hero2-visual { position: relative; aspect-ratio: 1; max-width: 470px; width: 100%; justify-self: center; }
.hero2-ring { position: absolute; inset: 1%; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.22); animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero2-circle {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #22d8d4, var(--brand-teal) 45%, #007a78);
  box-shadow: 0 30px 80px rgba(1,176,174,.35);
}
/* Photo sits inside the circle: bottom half clipped round, head pops out above */
.hero2-visual img {
  position: absolute; left: 8%; width: 84%; bottom: 8%; height: auto;
  /* image width == circle diameter; circle centre sits 60.4% down the image */
  -webkit-mask-image: radial-gradient(50% 39.65% at 50% 60.4%, #000 99.5%, transparent 100%), linear-gradient(#000 60.4%, transparent 60.4%);
          mask-image: radial-gradient(50% 39.65% at 50% 60.4%, #000 99.5%, transparent 100%), linear-gradient(#000 60.4%, transparent 60.4%);
}
.float {
  position: absolute; z-index: 2;
  background: #fff; color: var(--ink);
  border-radius: 16px; padding: 10px 14px;
  font-weight: 600; font-size: .9rem; line-height: 1.3; white-space: nowrap;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  display: grid; grid-template-columns: auto auto; column-gap: 10px; align-items: center;
  animation: float 6s ease-in-out infinite;
}
.float small { grid-column: 2; font-weight: 400; font-size: .78rem; color: var(--muted); }
.f-ico { grid-row: span 2; width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); display: grid; place-items: center; font-size: 1.05rem; color: var(--accent); }
.f1 { top: 10%; inset-inline-end: 0; }
.f2 { top: 50%; inset-inline-start: -6%; animation-delay: -2s; }
.f3 { bottom: 4%; inset-inline-end: 2%; animation-delay: -4s; }
@keyframes float { 50% { transform: translateY(-10px); } }

.hero2-stats {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
}
.hero2-stats > div { padding: 18px 22px; border-inline-start: 1px solid rgba(255,255,255,.1); }
.hero2-stats > div:first-child { border-inline-start: 0; }
.hero2-stats strong { display: block; font-family: "Rubik"; font-size: 1.15rem; }
.hero2-stats span { font-size: .86rem; color: rgba(255,255,255,.65); }

@media (max-width: 900px) {
  .hero2 { padding: 40px 0 32px; }
  .hero2-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero2-visual { max-width: 330px; margin-top: 56px; }
  .float { font-size: .78rem; padding: 7px 10px; border-radius: 12px; }
  .float small { font-size: .68rem; }
  .f-ico { width: 26px; height: 26px; font-size: .9rem; border-radius: 8px; }
  .f2 { inset-inline-start: -4%; }
  .hero2-stats { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
  .hero2-stats > div:nth-child(3) { border-inline-start: 0; }
  .hero2-stats > div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .hero2-stats > div { padding: 14px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .float, .hero2-ring, .caret, .hero2-eyebrow .dot { animation: none; }
}

/* Scenes (AI illustrations in circle, hero style) */
.scene { position: relative; aspect-ratio: 1; width: 100%; max-width: 400px; justify-self: center; --sc: var(--accent); }
.scene-ring { position: absolute; inset: 1%; border-radius: 50%; border: 1.5px dashed color-mix(in srgb, var(--sc) 50%, transparent); animation: spin 60s linear infinite; }
.scene-circle {
  position: absolute; inset: 9%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--sc) 55%, white), var(--sc) 55%, color-mix(in srgb, var(--sc) 80%, black));
  box-shadow: 0 30px 70px color-mix(in srgb, var(--sc) 35%, transparent);
}
.scene-art { position: absolute; inset: 22%; width: 56%; height: 56%; filter: drop-shadow(0 10px 18px rgba(1,40,78,.25)); }
.scene .float { box-shadow: 0 14px 34px rgba(1,40,78,.16); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.page-hero-grid > * { min-width: 0; }
.about { grid-template-columns: 1.1fr .9fr; }
.flow-art { width: 100%; max-width: 420px; margin-top: 24px; }
.flow-lines { animation: dash 1.2s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -12; } }
@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .scene { max-width: 300px; }
  .about { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { .scene-ring, .flow-lines { animation: none; } }
