:root {
  --text: #17182f;
  --muted: #62647a;
  --line: #e8e5f2;
  --bg: #fbf8ff;
  --surface: #ffffff;
  --soft: #f4f1fb;
  --sun: #ffb703;
  --coral: #ff5a3d;
  --coral-dark: #d93b25;
  --mint: #2fbfbc;
  --lavender: #7c5cff;
  --brown: #6f4a8e;
  --shadow: rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px, rgba(0,0,0,0.10) 0 16px 42px;
  --shadow-soft: rgba(0,0,0,0.04) 0 1px 2px, rgba(0,0,0,0.08) 0 18px 55px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 6%, rgba(255,183,3,.18), transparent 25rem),
    radial-gradient(circle at 88% 9%, rgba(124,92,255,.16), transparent 28rem),
    radial-gradient(circle at 50% 0%, rgba(255,90,61,.08), transparent 32rem),
    linear-gradient(180deg, #fff8ee 0%, #fbf8ff 40%, #ffffff 100%);
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

a { color: inherit; }
p { text-wrap: pretty; }
.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: white;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(236,232,225,.72);
  background: rgba(255,253,249,.88);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  box-shadow: 0 14px 30px rgba(255,56,92,.22);
  font-size: 1.25rem;
}
.brand strong { display: block; font-size: 1.02rem; letter-spacing: -.04em; }
.brand small { display: block; margin-top: 1px; color: var(--muted); font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); color: var(--muted); font-size: .96rem; font-weight: 800; }
.nav a { text-decoration: none; transition: color .18s ease, transform .18s ease; }
.nav a:hover { color: var(--text); transform: translateY(-1px); }
.nav-cta { padding: 12px 17px; border-radius: 999px; background: var(--text); color: #fff !important; }
.menu-toggle { display: none; align-items: center; gap: 4px; min-height: 42px; border: 1px solid var(--line); background: white; border-radius: 999px; padding: 0 14px; color: var(--text); font: inherit; font-weight: 900; }
.menu-toggle span { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }

.hero {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(56px, 8vw, 104px) 0 clamp(42px, 7vw, 82px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; letter-spacing: -.045em; text-wrap: balance; }
h1 { max-width: 12ch; font-size: clamp(3.8rem, 8vw, 7.45rem); line-height: .88; font-weight: 900; }
h2 { font-size: clamp(2.25rem, 5vw, 5.25rem); line-height: .94; font-weight: 900; }
h3 { font-size: 1.25rem; line-height: 1.05; font-weight: 900; }
.lead { max-width: 670px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.72; }
.lead.small { max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: rgba(0,0,0,.08) 0 12px 28px; }
.button.primary { border: 0; color: white; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.button.secondary { background: white; }

.hero-gallery {
  position: relative;
  min-height: 620px;
  border-radius: 40px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,183,3,.38), transparent 10rem),
    radial-gradient(circle at 82% 10%, rgba(124,92,255,.35), transparent 13rem),
    radial-gradient(circle at 75% 78%, rgba(47,191,188,.22), transparent 15rem),
    linear-gradient(145deg, #fffaf1 0%, #f1edff 54%, #11142d 100%);
}
.gallery-card {
  position: absolute;
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.main-card {
  left: 8%;
  top: 8%;
  width: 67%;
  min-height: 56%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background:
    linear-gradient(180deg, rgba(15,18,48,.05), rgba(15,18,48,.76)),
    radial-gradient(circle at 30% 24%, #ffd166, transparent 19%),
    radial-gradient(circle at 78% 18%, #c4b5fd, transparent 22%),
    linear-gradient(135deg, #ffb703, #fb8500 35%, #7c5cff 72%, #11142d);
}
.main-card .tag { align-self: flex-start; margin-bottom: auto; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.22); font-size: .8rem; font-weight: 900; }
.main-card h2 { max-width: 9ch; font-size: clamp(2rem, 4vw, 3.4rem); }
.main-card p { max-width: 310px; color: rgba(255,255,255,.82); line-height: 1.45; }
.birthday-card { right: 7%; top: 18%; width: 28%; min-height: 28%; display: grid; align-content: center; color: var(--text); transform: rotate(4deg); }
.birthday-card strong { display: block; font-size: clamp(3.2rem, 6vw, 5.6rem); line-height: .85; letter-spacing: -.08em; }
.birthday-card span, .album-card span, .note-card span { color: var(--muted); font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.note-card { right: 8%; bottom: 10%; width: 42%; color: var(--text); }
.note-card p { margin: 12px 0 0; font-size: clamp(1.25rem, 2.6vw, 2rem); line-height: 1.05; font-weight: 900; letter-spacing: -.04em; }
.album-card { left: 10%; bottom: 9%; width: 31%; min-height: 25%; display: grid; align-content: center; color: white; background: linear-gradient(135deg, #222, #4b2a15); transform: rotate(-3deg); }
.album-card strong { margin-top: 8px; font-size: 1.8rem; }
.album-card span { color: rgba(255,255,255,.68); }

.quick-strip {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: rgba(0,0,0,.04) 0 12px 34px;
}
.quick-strip div { display: flex; align-items: center; gap: 12px; min-height: 62px; padding: 10px 14px; border-radius: 20px; background: var(--soft); }
.quick-strip strong { color: var(--coral); font-size: .84rem; }
.quick-strip span { color: var(--text); font-weight: 900; line-height: 1.15; }

.auth-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
  padding: clamp(26px, 5vw, 56px);
  border-radius: 40px;
  color: white;
  background:
    radial-gradient(circle at 10% 12%, rgba(255,183,3,.32), transparent 18rem),
    radial-gradient(circle at 90% 10%, rgba(47,191,188,.26), transparent 18rem),
    linear-gradient(135deg, #11142d, #21184e 55%, #4b1e64);
  box-shadow: var(--shadow-soft);
}
.auth-card .lead { color: rgba(255,255,255,.72); }
.auth-status, .signed-in-panel {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.signed-in-panel { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.signed-in-panel[hidden] { display: none; }
.signed-in-panel p { margin: 0; }
.auth-forms {
  padding: clamp(20px, 4vw, 30px);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  box-shadow: rgba(0,0,0,.18) 0 24px 70px;
}
.field-label { display: block; margin: 14px 0 7px; color: var(--text); font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.text-field {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  outline: none;
}
.text-field:focus { border-color: var(--lavender); box-shadow: 0 0 0 4px rgba(124,92,255,.14); }
.field-help, .auth-note { margin: 8px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.provider-row { margin: 18px 0; }
.auth-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.auth-form { padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: var(--soft); }
.auth-form h3 { margin-bottom: 10px; }
.button-control { width: 100%; border: 0; cursor: pointer; font: inherit; }
.button-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.link-button { margin-top: 12px; padding: 0; border: 0; background: transparent; color: var(--coral-dark); font: inherit; font-weight: 900; cursor: pointer; text-decoration: underline; }
.recaptcha-box { min-height: 78px; margin: 12px 0; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: 16px; background: #fff; overflow: hidden; }

.section { width: min(1220px, calc(100% - 36px)); margin: 0 auto; padding: clamp(58px, 8vw, 108px) 0; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow), .story-copy p { color: var(--muted); font-size: 1.08rem; line-height: 1.72; }
.centered { margin-left: auto; margin-right: auto; text-align: center; }
.album-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.album-card-ui {
  min-height: 312px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(236,232,225,.82);
  box-shadow: rgba(0,0,0,.04) 0 12px 34px;
}
.album-card-ui.large { color: white; background: linear-gradient(135deg, #ffb703, #fb8500 48%, #ff5a3d); }
.album-card-ui.coral { background: #fff0e8; }
.album-card-ui.mint { background: #ecfbff; }
.album-card-ui.lavender { background: #f1eeff; }
.album-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,255,255,.7); font-size: 1.45rem; }
.label { margin: 0 0 9px; color: inherit; opacity: .68; font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.album-card-ui p:last-child { color: var(--muted); line-height: 1.6; }
.album-card-ui.large p:last-child { color: rgba(255,255,255,.82); }

.camera-card {
  display: grid;
  grid-template-columns: 1fr minmax(290px, 420px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 42px;
  color: white;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,183,3,.35), transparent 18rem),
    radial-gradient(circle at 86% 18%, rgba(124,92,255,.35), transparent 18rem),
    linear-gradient(135deg, #11142d, #2d245f 55%, #ff5a3d 140%);
  box-shadow: var(--shadow-soft);
}
.camera-card .lead { color: rgba(255,255,255,.74); }
.camera-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
}
.camera-points li {
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.phone-demo {
  position: relative;
  padding: 18px;
  border: 10px solid rgba(255,255,255,.16);
  border-radius: 42px;
  background: rgba(255,255,255,.10);
  box-shadow: rgba(0,0,0,.28) 0 24px 70px;
}
.phone-top {
  width: 78px;
  height: 7px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
}
.upload-preview {
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  overflow: hidden;
  border-radius: 30px;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 40% 22%, rgba(255,209,102,.8), transparent 8rem),
    linear-gradient(160deg, #ff9f1c, #7c5cff 60%, #07091f);
}
.upload-preview.has-image {
  background-size: cover;
  background-position: center;
}
.upload-preview.has-image span,
.upload-preview.has-image strong,
.upload-preview.has-image small { display: none; }
.upload-preview span { font-size: 4rem; }
.upload-preview strong { font-size: 1.5rem; line-height: 1.05; letter-spacing: -.04em; }
.upload-preview small { color: rgba(255,255,255,.72); font-weight: 800; }
.camera-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}
.camera-button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border-radius: 999px;
  color: #11142d;
  background: white;
  font-weight: 900;
  cursor: pointer;
}
.camera-note {
  margin: 12px 4px 0;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  text-align: center;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.vote-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: rgba(0,0,0,.04) 0 12px 34px;
}
.vote-image {
  min-height: 210px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 3.4rem;
}
.vote-image.sunrise { background: linear-gradient(135deg, #ffd166, #fb8500, #ff5a3d); }
.vote-image.sunset { background: linear-gradient(135deg, #ff7a3d, #d946ef, #312e81); }
.vote-image.moon { background: radial-gradient(circle at 50% 42%, #fff9c4 0 18%, transparent 19%), linear-gradient(135deg, #11142d, #39416d); }
.vote-image.stars { background: radial-gradient(circle at 25% 25%, #fff 0 1px, transparent 2px), radial-gradient(circle at 70% 35%, #fff 0 1px, transparent 2px), radial-gradient(circle at 50% 70%, #fff 0 1px, transparent 2px), linear-gradient(135deg, #090a1f, #312e81, #0f766e); }
.vote-body { padding: 22px; }
.vote-body p:not(.label) { color: var(--muted); line-height: 1.55; }
.vote-button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--lavender), #11142d);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.vote-button:hover { transform: translateY(-2px); box-shadow: rgba(17,20,45,.22) 0 12px 26px; }
.vote-button.has-voted { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.vote-button strong { min-width: 2.1rem; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.18); }

.updates-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,183,3,.32), transparent 18rem),
    linear-gradient(135deg, #222222, #3b2414 58%, #5d1f2d);
  box-shadow: var(--shadow-soft);
}
.updates-card .lead { color: rgba(255,255,255,.74); }
.update-list { display: grid; gap: 14px; }
.update-list article { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); }
.update-list .step-label { display: inline-block; margin-bottom: 10px; color: #ffd166; font-weight: 900; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.update-list p { margin-bottom: 0; color: rgba(255,255,255,.72); line-height: 1.55; }

.stories { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 82px); align-items: center; }
.quote-stack { display: grid; gap: 16px; }
.quote-stack blockquote { margin: 0; padding: 26px; border-radius: 28px; background: white; box-shadow: var(--shadow); font-size: clamp(1.25rem, 2.4vw, 2rem); line-height: 1.08; font-weight: 900; letter-spacing: -.04em; }
.quote-stack blockquote:nth-child(2) { transform: translateX(28px); background: #fff8e8; }
.quote-stack blockquote:nth-child(3) { transform: translateX(56px); background: #fff1f4; }

.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.roadmap-grid article { padding: 28px; border-radius: var(--radius); background: white; border: 1px solid var(--line); box-shadow: rgba(0,0,0,.04) 0 12px 34px; }
.roadmap-grid span { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 50%; background: var(--text); color: white; font-weight: 900; }
.roadmap-grid p { color: var(--muted); line-height: 1.62; }

.contribute-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(30px, 5vw, 58px); border-radius: 38px; background: linear-gradient(135deg, #fff, #fff3d2); border: 1px solid var(--line); box-shadow: var(--shadow); }
.site-footer { display: flex; justify-content: space-between; gap: 18px; padding: 28px clamp(18px, 4vw, 64px); color: var(--muted); border-top: 1px solid var(--line); }
.site-footer a { color: var(--coral); font-weight: 900; text-decoration: none; }

@media (max-width: 980px) {
  .hero, .updates-card, .stories, .camera-card, .auth-card { grid-template-columns: 1fr; }
  .auth-split { grid-template-columns: 1fr; }
  .hero-gallery { min-height: 560px; }
  .quick-strip, .album-grid, .vote-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .quote-stack blockquote:nth-child(2), .quote-stack blockquote:nth-child(3) { transform: none; }
}
@media (max-width: 700px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding-top: 8px; }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-top: 1px solid var(--line); }
  .nav-cta { margin-top: 10px; text-align: center; }
  h1 { font-size: clamp(3.3rem, 16vw, 5.3rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.8rem); }
  .hero-gallery { min-height: 510px; border-radius: 30px; }
  .main-card { width: 78%; min-height: 48%; }
  .birthday-card { width: 34%; right: 4%; top: 25%; }
  .note-card { width: 54%; right: 5%; }
  .album-card { width: 42%; }
  .quick-strip, .album-grid, .vote-grid { grid-template-columns: 1fr; }
  .album-card-ui.large { grid-column: auto; }
  .contribute-card, .site-footer, .signed-in-panel { flex-direction: column; align-items: flex-start; }
  .button-row { grid-template-columns: 1fr; }
  .camera-points { grid-template-columns: 1fr; }
  .phone-demo { border-width: 7px; border-radius: 34px; }
  .upload-preview { min-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  *, html { scroll-behavior: auto !important; transition: none !important; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #edeaff;
    --muted: #8b8daa;
    --line: #252744;
    --bg: #0c0e24;
    --surface: #13152e;
    --soft: #181a38;
    --shadow: rgba(0,0,0,.5) 0 0 0 1px, rgba(0,0,0,.3) 0 2px 6px, rgba(0,0,0,.5) 0 16px 42px;
    --shadow-soft: rgba(0,0,0,.3) 0 1px 2px, rgba(0,0,0,.4) 0 18px 55px;
  }
  body {
    background:
      radial-gradient(circle at 10% 6%, rgba(255,183,3,.10), transparent 25rem),
      radial-gradient(circle at 88% 9%, rgba(124,92,255,.12), transparent 28rem),
      radial-gradient(circle at 50% 0%, rgba(255,90,61,.06), transparent 32rem),
      linear-gradient(180deg, #0e1024 0%, #0c0e20 40%, #080a1a 100%);
  }
  .site-header {
    border-bottom-color: rgba(255,255,255,.08);
    background: rgba(10,12,30,.90);
  }
  .hero-gallery { background: var(--surface); }
  .gallery-card { background: rgba(20,22,52,.78); border-color: rgba(255,255,255,.10); }
  .button.secondary { background: var(--surface); border-color: var(--line); }
  .quick-strip { background: var(--surface); border-color: var(--line); }
  .quick-strip div { background: var(--soft); }
  .album-card-ui { background: var(--surface); border-color: var(--line); }
  .album-card-ui.coral { background: #2a1a12; }
  .album-card-ui.mint { background: #0d1f24; }
  .album-card-ui.lavender { background: #1a1538; }
  .album-card-ui p:last-child { color: var(--muted); }
  .vote-card { background: var(--surface); border-color: var(--line); }
  .auth-forms { background: rgba(24,26,56,.97); color: var(--text); box-shadow: rgba(0,0,0,.4) 0 24px 70px; }
  .auth-form { background: var(--bg); border-color: var(--line); }
  .text-field { background: var(--soft); color: var(--text); border-color: var(--line); }
  .text-field:focus { border-color: var(--lavender); }
  .roadmap-grid article { background: var(--surface); border-color: var(--line); }
  .quote-stack blockquote { background: var(--surface); }
  .quote-stack blockquote:nth-child(2) { background: #1c1810; }
  .quote-stack blockquote:nth-child(3) { background: #1c0e12; }
  .contribute-card { background: linear-gradient(135deg, var(--surface), #1c1810); border-color: var(--line); }
  .site-footer { border-top-color: var(--line); }
}
