:root {
  color-scheme: light;
  --porcelain: #fff7f1;
  --paper: #fffbf7;
  --mulberry: #6e4654;
  --rose: #8f5a63;
  --coral: #d98f7b;
  --clay: #e8cfc2;
  --ink: #2b1d22;
  --shadow: 0 24px 70px rgb(110 70 84 / 14%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  line-height: 1.65;
}
a { color: inherit; text-underline-offset: 0.25em; }
a:hover { color: var(--rose); }
a:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; border-radius: 4px; }
.skip-link { position: fixed; top: 1rem; left: 1rem; z-index: 10; padding: 0.6rem 0.9rem; background: var(--ink); color: white; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.site-header, .site-footer, main { width: min(1180px, calc(100% - 3rem)); margin-inline: auto; }
.site-header { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); font-size: 1.2rem; font-weight: 750; letter-spacing: -0.03em; text-decoration: none; }
.brand-mark { display: grid; width: 2.15rem; height: 2.15rem; place-items: center; border: 1px solid var(--rose); border-radius: 50%; color: var(--mulberry); font-family: ui-rounded, "Arial Rounded MT Bold", sans-serif; }
.site-nav, .site-footer nav { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.site-nav a, .site-footer nav a { color: var(--mulberry); font-size: 0.9rem; font-weight: 680; text-decoration: none; }
.site-nav a[aria-current="page"] { text-decoration: underline; }
.coming-soon { min-height: calc(100svh - 198px); display: grid; grid-template-columns: 1fr 0.82fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); padding-block: 4rem 6rem; }
.eyebrow { margin: 0 0 1rem; color: var(--rose); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2 { font-family: ui-rounded, "Arial Rounded MT Bold", "Avenir Next", sans-serif; line-height: 1.04; letter-spacing: -0.045em; }
h1 { max-width: 720px; margin: 0; font-size: clamp(3.5rem, 7vw, 6.8rem); font-weight: 720; }
.coming-lede { max-width: 640px; margin: 1.5rem 0 2rem; color: var(--mulberry); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.status-line { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1rem; border: 1px solid var(--clay); border-radius: 999px; background: var(--paper); color: var(--mulberry); font-size: 0.86rem; font-weight: 700; }
.status-line::before { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgb(217 143 123 / 16%); content: ""; }
.orbit-stage { position: relative; aspect-ratio: 1; width: min(100%, 500px); justify-self: center; filter: drop-shadow(0 30px 50px rgb(110 70 84 / 12%)); }
.orbit { position: absolute; inset: 0; margin: auto; border: 1px solid var(--clay); border-radius: 50%; }
.orbit::after { position: absolute; top: 50%; right: -0.42rem; width: 0.84rem; height: 0.84rem; border: 4px solid var(--porcelain); border-radius: 50%; background: var(--coral); content: ""; }
.orbit-outer { width: 100%; height: 100%; animation: breathe 7s ease-in-out infinite; }
.orbit-middle { width: 72%; height: 72%; transform: rotate(115deg); border-color: var(--coral); }
.orbit-inner { width: 44%; height: 44%; transform: rotate(230deg); border-color: var(--rose); }
.orbit-core { position: absolute; inset: 34%; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--mulberry); color: white; box-shadow: var(--shadow); }
.orbit-core span { font: 700 clamp(3rem, 7vw, 5rem)/1 ui-rounded, "Arial Rounded MT Bold", sans-serif; }
.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding-block: 3rem; border-top: 1px solid var(--clay); color: var(--mulberry); }
.footer-brand { color: var(--ink); }
.footer-company p { margin: 0.45rem 0 0; font-size: 0.78rem; }
.legal-page { background: var(--paper); }
.legal-shell { width: min(760px, calc(100% - 3rem)); padding-block: 6rem 8rem; }
.legal-shell h1 { font-size: clamp(3rem, 8vw, 5.8rem); }
.draft-note { margin: 2.5rem 0 4rem; padding: 1.5rem; border-left: 5px solid var(--coral); background: var(--porcelain); color: var(--mulberry); }
.draft-note strong { color: var(--ink); }
.draft-note p { margin: 0.4rem 0 0; }
.legal-section { padding-block: 1.8rem; border-top: 1px solid var(--clay); }
.legal-section h2 { font-size: 1.65rem; letter-spacing: -0.025em; }
.legal-section p, .legal-section li { color: var(--mulberry); }
.legal-return { margin-top: 3rem; font-weight: 700; }
.compact-footer { grid-template-columns: 1fr auto; }
@keyframes breathe { 50% { transform: scale(1.025) rotate(4deg); } }

@media (max-width: 820px) {
  .coming-soon { grid-template-columns: 1fr; min-height: auto; padding-block: 4rem 6rem; text-align: center; }
  .orbit-stage { width: min(86vw, 440px); order: -1; }
  .coming-lede { margin-inline: auto; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .site-header, .site-footer, main { width: min(100% - 2rem, 1180px); }
  .site-header { align-items: flex-start; padding-block: 1.25rem; }
  .site-nav { justify-content: flex-end; gap: 0.8rem; }
  .coming-soon { padding-top: 2.5rem; }
  .orbit-stage { width: min(78vw, 340px); }
  .legal-shell { width: min(100% - 2rem, 760px); padding-block: 4rem 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit-outer { animation: none; }
}
