/* Weather Wallpapers landing page
   Theme: CSS custom properties driven by a `data-theme` attribute on <html>.
   No attribute = "auto" (follows prefers-color-scheme live, no JS needed for repaint).
   "light" / "dark" = explicit override, persisted in localStorage by script.js. */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Hanken+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  color-scheme: dark;
  --page: radial-gradient(120% 80% at 50% -10%, #10142a 0%, #07080f 55%, #05060c 100%);
  --body-bg: #07080f;
  --text: #f3f1ec;
  --text-mid: #b4b2c0;
  --text-soft: #c9c7d4;
  --text-dim: #8b8998;
  --text-dimmer: #6f6e7c;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.12);
  --seg-active: rgba(255, 255, 255, 0.16);
  --gold-text: #f6c66b;
  --accent: #ff7a4d;
  --accent-text: #ff7a4d;
  --good: #59d38a;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) { color-scheme: light; }
  :root:not([data-theme]) {
    --page: radial-gradient(120% 80% at 50% -10%, #e7ecfb 0%, #f5f4f0 52%, #eeece7 100%);
    --body-bg: #f3f2ee;
    --text: #1a1922;
    --text-mid: #55535f;
    --text-soft: #403e4a;
    --text-dim: #666370;
    --text-dimmer: #57545f;
    --surface: rgba(22, 20, 32, 0.035);
    --surface-2: rgba(22, 20, 32, 0.06);
    --border: rgba(22, 20, 32, 0.1);
    --border-2: rgba(22, 20, 32, 0.14);
    --seg-active: rgba(22, 20, 32, 0.11);
    --gold-text: #6e4a10;
    --accent-text: #8a3a1c;
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --page: radial-gradient(120% 80% at 50% -10%, #e7ecfb 0%, #f5f4f0 52%, #eeece7 100%);
  --body-bg: #f3f2ee;
  --text: #1a1922;
  --text-mid: #55535f;
  --text-soft: #403e4a;
  --text-dim: #666370;
  --text-dimmer: #57545f;
  --surface: rgba(22, 20, 32, 0.035);
  --surface-2: rgba(22, 20, 32, 0.06);
  --border: rgba(22, 20, 32, 0.1);
  --border-2: rgba(22, 20, 32, 0.14);
  --seg-active: rgba(22, 20, 32, 0.11);
  --gold-text: #6e4a10;
  --accent-text: #8a3a1c;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: radial-gradient(120% 80% at 50% -10%, #10142a 0%, #07080f 55%, #05060c 100%);
  --body-bg: #07080f;
  --text: #f3f1ec;
  --text-mid: #b4b2c0;
  --text-soft: #c9c7d4;
  --text-dim: #8b8998;
  --text-dimmer: #6f6e7c;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.12);
  --seg-active: rgba(255, 255, 255, 0.16);
  --gold-text: #f6c66b;
}

body {
  background: var(--body-bg);
  color: var(--text);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
}

::selection { background: rgba(255, 122, 77, 0.3); }

a { color: inherit; }

.page {
  background: var(--page);
  min-height: 100vh;
  overflow-x: clip;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 720px) {
  .wrap { padding-left: 22px; padding-right: 22px; }
}

/* ---------- Nav ---------- */

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 16px;
  column-gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(239, 122, 62, 0.35);
}

.brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  order: 2;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s ease;
}

.icon-btn:hover { color: var(--text); border-color: var(--border-2); }

button.icon-btn { padding: 0; }

.icon-btn-coffee { color: var(--gold-text); border-color: rgba(246, 198, 107, 0.3); }

.gh-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.star-count {
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  color: var(--text-dim);
}

.star-count::before { content: '★ '; }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 14px;
  column-gap: 28px;
}

.nav-link {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
}

/* Keep logo + icons on one row on phones; nav links wrap to their own
   row, centered. (order swaps back to icons-before-links so wrapping
   groups brand+icons on line 1 instead of brand+links.) */
@media (max-width: 640px) {
  .nav { column-gap: 10px; }
  .nav-icons { gap: 8px; order: 1; }
  .nav-links { order: 2; width: 100%; justify-content: center; }
  .icon-btn { width: 32px; height: 32px; font-size: 14px; }
  .brand { gap: 9px; }
  .brand img { width: 30px; height: 30px; }
  .brand span { font-size: 15.5px; }
}

/* ---------- Hero ---------- */

.hero {
  padding: 48px 0 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-phone { justify-self: center; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 13px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin-bottom: 26px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 8px var(--good);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}

@media (max-width: 560px) {
  .hero h1 { font-size: 42px; }
}

.hero p.lede {
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--text-mid);
  max-width: 460px;
  margin: 0 0 34px;
}

.hero p.lede strong { color: var(--text); font-weight: 600; }

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 13px;
}

.btn-primary {
  background: var(--accent);
  color: #1a0e08;
  box-shadow: 0 6px 24px rgba(255, 122, 77, 0.3);
}

.btn-ghost {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text);
}

/* Keep both CTAs on one row on phones instead of wrapping. */
@media (max-width: 480px) {
  .cta-row { flex-wrap: nowrap; gap: 8px; }
  .btn { padding: 11px 14px; font-size: 13px; gap: 6px; white-space: nowrap; }
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13.5px;
  color: var(--text-dim);
  font-family: 'Space Mono', monospace;
}

.spec-row .sep { opacity: 0.4; }

/* Phone mockup */

.hero-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-phone .glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(60% 60% at 50% 45%, rgba(255, 122, 77, 0.22), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 620px;
  border-radius: 52px;
  background: linear-gradient(160deg, #23242e, #0e0f16);
  padding: 11px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--surface-2);
  animation: ww-float 7s ease-in-out infinite;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #05060c;
}

.sky {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.sky.is-active { opacity: 1; }

.sky-sunrise { background: linear-gradient(180deg, #2a2140 0%, #6b4a6b 32%, #c96f8a 56%, #f0a978 80%, #ffd9a0 100%); }
.sky-day { background: linear-gradient(180deg, #1f6fd6 0%, #4a9be8 42%, #8fc7f0 74%, #dcf1ff 100%); }
.sky-sunset { background: linear-gradient(180deg, #241436 0%, #5e2a52 28%, #a8375a 52%, #e8623f 78%, #ffb15a 100%); }
.sky-night { background: linear-gradient(180deg, #05060f 0%, #0d1330 46%, #1a2350 80%, #2b3a6b 100%); }

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: ww-twinkle 3s ease-in-out infinite;
}

.mountains { position: absolute; inset: 0; z-index: 2; }

.mountains .far {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: rgba(8, 7, 16, 0.42);
  clip-path: polygon(0 55%, 18% 30%, 34% 50%, 52% 22%, 70% 46%, 86% 28%, 100% 52%, 100% 100%, 0 100%);
}

.mountains .near {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: rgba(5, 4, 12, 0.7);
  clip-path: polygon(0 60%, 22% 42%, 40% 60%, 60% 38%, 78% 58%, 100% 44%, 100% 100%, 0 100%);
}

.lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 34px;
  color: #fff;
}

.lock-date { font-size: 15px; font-weight: 600; opacity: 0.95; }

.lock-time {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 76px;
  line-height: 1;
  margin-top: 2px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.lock-spacer { flex: 1; }

.lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 8px 15px;
  background: rgba(10, 10, 18, 0.34);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.island {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 26px;
  background: #05060c;
  border-radius: 999px;
  z-index: 4;
}

.preview-controls {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.time-toggle, .weather-toggle {
  display: flex;
  gap: 4px;
}

.weather-toggle {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.time-toggle button, .weather-toggle button {
  flex: 1;
  border: none;
  cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  border-radius: 999px;
  background: transparent;
  color: var(--text-dim);
  transition: all .25s ease;
}

.time-toggle button {
  font-size: 13px;
  padding: 9px 12px;
}

.weather-toggle button {
  font-size: 11.5px;
  padding: 7px 8px;
}

.time-toggle button[aria-pressed="true"],
.weather-toggle button[aria-pressed="true"] {
  background: var(--seg-active);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

/* Weather overlay on the phone preview — sits above the time-of-day sky,
   below the mountains. "clear" shows nothing; others tint/texture the sky. */
.weather-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}

.weather-fx.is-active { opacity: 1; }

.weather-fx[data-weather-fx="cloudy"] {
  background:
    radial-gradient(ellipse 60px 26px at 20% 20%, rgba(255, 255, 255, 0.75), transparent 70%),
    radial-gradient(ellipse 50px 22px at 33% 15%, rgba(255, 255, 255, 0.7), transparent 70%),
    radial-gradient(ellipse 78px 30px at 63% 13%, rgba(255, 255, 255, 0.75), transparent 70%),
    radial-gradient(ellipse 55px 24px at 77% 20%, rgba(255, 255, 255, 0.65), transparent 70%),
    radial-gradient(ellipse 68px 28px at 30% 35%, rgba(255, 255, 255, 0.6), transparent 70%),
    radial-gradient(ellipse 72px 28px at 70% 37%, rgba(255, 255, 255, 0.6), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 60%);
}

.weather-fx[data-weather-fx="rain"] {
  background:
    repeating-linear-gradient(112deg, rgba(214, 227, 255, 0.35) 0 2px, transparent 2px 16px),
    linear-gradient(180deg, rgba(12, 16, 30, 0.22), rgba(12, 16, 30, 0.1));
}

.weather-fx[data-weather-fx="snow"] {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 1.4px, transparent 1.6px);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
}

/* ---------- Math / concept section ---------- */

.section { padding: 80px 0; }

@media (max-width: 640px) {
  .section { padding: 52px 0; }
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 18px;
}

.math-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 860px) {
  .math-grid { grid-template-columns: 1fr; }
}

.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.section p.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 440px;
  margin: 0 0 28px;
}

.math-equation {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Space Grotesk', sans-serif;
}

.math-equation .num { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; }
.math-equation .num.accent { color: var(--accent); }
.math-equation .unit { font-size: 12.5px; color: var(--text-dim); font-family: 'Space Mono', monospace; margin-top: 2px; }
.math-equation .op { font-size: 26px; color: var(--text-dimmer); font-weight: 300; }

.variant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.variant-swatch { text-align: center; }

.variant-swatch .card {
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px var(--border);
  position: relative;
  overflow: hidden;
}

.variant-swatch .ridge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 34%;
  clip-path: polygon(0 60%, 40% 32%, 70% 55%, 100% 38%, 100% 100%, 0 100%);
}

.variant-swatch.sunrise .card { background: linear-gradient(170deg, #2a2140, #c96f8a 58%, #ffd9a0); }
.variant-swatch.sunrise .ridge { background: rgba(6, 5, 14, 0.5); }
.variant-swatch.day .card { background: linear-gradient(170deg, #1f6fd6, #8fc7f0 68%, #dcf1ff); }
.variant-swatch.day .ridge { background: rgba(6, 5, 14, 0.42); }
.variant-swatch.sunset .card { background: linear-gradient(170deg, #241436, #a8375a 54%, #ffb15a); }
.variant-swatch.sunset .ridge { background: rgba(6, 5, 14, 0.55); }
.variant-swatch.night .card { background: linear-gradient(170deg, #05060f, #1a2350 78%, #2b3a6b); }
.variant-swatch.night .ridge { background: rgba(6, 5, 14, 0.7); }

.variant-swatch .label {
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  color: var(--text-dim);
  margin-top: 7px;
}

.condition-list {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  line-height: 2.05;
  color: var(--text-dimmer);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

/* ---------- Feature cards ---------- */

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-left: auto; margin-right: auto; }
.section-head p { font-size: 16.5px; line-height: 1.55; color: var(--text-mid); max-width: 480px; margin: 0 auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.card {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 122, 77, 0.22), var(--surface));
  border: 1px solid rgba(255, 122, 77, 0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
}

.card .tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  margin-bottom: 8px;
}

.card .title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 11px;
}

.card p { font-size: 14.5px; line-height: 1.6; color: var(--text-mid); margin: 0; }

/* ---------- How it works ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step {
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.step.is-final {
  background: linear-gradient(160deg, rgba(255, 122, 77, 0.14), var(--surface));
  border-color: rgba(255, 122, 77, 0.25);
}

.step .index { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--accent); margin-bottom: 18px; }
.step .title { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--text-mid); margin: 0; }
.step.is-final p { color: var(--text-soft); }

.shortcut-strip {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--text-soft);
}

.shortcut-strip .label { color: var(--text-dim); }
.shortcut-strip .step-pill { padding: 6px 12px; background: var(--surface-2); border-radius: 8px; }
.shortcut-strip .step-pill.is-highlight {
  background: rgba(255, 122, 77, 0.16);
  border: 1px solid rgba(255, 122, 77, 0.3);
  color: var(--accent-text);
}
.shortcut-strip .arrow { color: var(--text-dimmer); }

/* ---------- Providers / privacy ---------- */

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 720px) {
  .split-grid { grid-template-columns: 1fr; }
}

.split-grid .card { padding: 32px 30px; }
.split-grid h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.provider-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
}

.provider-row + .provider-row { margin-top: 12px; }

.provider-row .swatch { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
.provider-row.chatgpt .swatch { background: linear-gradient(160deg, #10a37f, #0d8f6f); }
.provider-row.gemini .swatch { background: linear-gradient(160deg, #f6d365, #e8a33d); }
.provider-row .name { font-size: 15px; font-weight: 600; }
.provider-row .meta { font-family: 'Space Mono', monospace; font-size: 11.5px; color: var(--text-dim); }

.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; gap: 12px; }
.check-item .mark { color: var(--good); font-size: 16px; }
.check-item span:last-child { font-size: 14.5px; color: var(--text-mid); line-height: 1.5; }

/* ---------- Final CTA ---------- */

.sky-cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 72px 40px;
  text-align: center;
  background: linear-gradient(180deg, #241436 0%, #5e2a52 34%, #a8375a 62%, #e8623f 86%, #ffb15a 100%);
}

.sky-cta .ridge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44%;
  background: rgba(8, 7, 16, 0.35);
  clip-path: polygon(0 55%, 18% 34%, 36% 52%, 54% 26%, 72% 48%, 88% 30%, 100% 52%, 100% 100%, 0 100%);
}

.sky-cta .content { position: relative; }

.sky-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.sky-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.sky-cta .cta-row { justify-content: center; }

.btn-dark {
  background: #0c0d14;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 14px;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 14px;
}

/* ---------- Support / donate ---------- */

.support-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 44px;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(246, 198, 107, 0.14), var(--surface));
  border: 1px solid rgba(246, 198, 107, 0.28);
}

@media (max-width: 720px) {
  .support-card { grid-template-columns: 1fr; text-align: center; }
  .support-card .cta-side { justify-self: center; }
}

.support-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--gold-text);
  margin-bottom: 16px;
}

.support-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text);
}

.support-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0;
}

.cta-side { justify-self: end; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 11px;
  background: linear-gradient(150deg, #ffd873, #f6b53f);
  color: #3a2504;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 30px;
  border-radius: 16px;
  white-space: nowrap;
  box-shadow: 0 10px 34px rgba(246, 181, 63, 0.32);
}

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding: 32px 0 60px;
}

.site-footer .brand img { width: 26px; height: 26px; border-radius: 7px; box-shadow: none; }
.site-footer .brand span { font-size: 14.5px; }

.site-footer .meta {
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  color: var(--text-dimmer);
}

/* ---------- Motion ---------- */

@keyframes ww-twinkle { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
@keyframes ww-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (prefers-reduced-motion: reduce) {
  .phone, .star { animation: none; }
}
