/* Warmer Sun — warmersun.com
   Deep night + sunrise gold. Hopeful, premium, young. */

:root {
  --bg: #0b0a14;
  --bg-elevated: #12111c;
  --bg-card: rgba(255, 248, 240, 0.035);
  --bg-card-hover: rgba(255, 248, 240, 0.06);
  --border: rgba(255, 220, 180, 0.1);
  --border-strong: rgba(255, 180, 100, 0.22);

  --text: #f7f0e6;
  --text-soft: rgba(247, 240, 230, 0.72);
  --text-muted: rgba(247, 240, 230, 0.48);

  --gold: #ffb347;
  --gold-soft: #ffd28a;
  --amber: #ff9f43;
  --coral: #ff6b4a;
  --cream: #fff4e6;
  --sun: #ffe29a;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --header-h: 72px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(255, 159, 67, 0.16), transparent 55%),
    radial-gradient(900px 600px at 10% 20%, rgba(255, 107, 74, 0.08), transparent 50%),
    radial-gradient(800px 500px at 50% 100%, rgba(255, 179, 71, 0.07), transparent 55%),
    var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Atmosphere */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.45;
}

.orb-a {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.35), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}

.orb-b {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.22), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, 40px, 0) scale(1.08); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 40px);
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(11, 10, 20, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(11, 10, 20, 0.82);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  z-index: 2;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff8e7 0%, var(--sun) 28%, var(--amber) 62%, var(--coral) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 226, 154, 0.25),
    0 0 24px rgba(255, 159, 67, 0.55);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.35), transparent 70%);
  z-index: -1;
}

.logo-mark.small {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.nav {
  display: none;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 0.92rem;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--cream);
}

.nav-cta {
  padding: 10px 16px !important;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.18), rgba(255, 107, 74, 0.14));
  border: 1px solid var(--border-strong);
  color: var(--cream) !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.28), rgba(255, 107, 74, 0.22));
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 39;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 24px;
  background: rgba(11, 10, 20, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  padding: 14px 12px;
  border-radius: 12px;
  color: var(--text-soft);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding:
    calc(var(--header-h) + clamp(40px, 8vh, 90px))
    clamp(20px, 5vw, 48px)
    clamp(48px, 8vh, 80px);
  display: grid;
  align-content: center;
  gap: clamp(40px, 6vh, 72px);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-sun {
  position: absolute;
  top: 12%;
  right: clamp(-40px, 2vw, 40px);
  width: min(520px, 58vw);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
}

.sun-core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #fff9ec 0%, var(--sun) 26%, var(--gold) 55%, var(--coral) 100%);
  box-shadow:
    0 0 60px rgba(255, 179, 71, 0.55),
    0 0 140px rgba(255, 107, 74, 0.35),
    inset 0 -20px 40px rgba(255, 90, 50, 0.25);
  animation: sunPulse 6s ease-in-out infinite;
}

.sun-halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.28) 0%, rgba(255, 107, 74, 0.08) 42%, transparent 68%);
  filter: blur(8px);
  animation: sunPulse 8s ease-in-out infinite reverse;
}

.sun-rays {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(255, 210, 140, 0.12) 12deg,
      transparent 28deg,
      transparent 55deg,
      rgba(255, 160, 90, 0.1) 70deg,
      transparent 90deg,
      transparent 140deg,
      rgba(255, 220, 160, 0.1) 155deg,
      transparent 175deg,
      transparent 220deg,
      rgba(255, 140, 80, 0.1) 240deg,
      transparent 265deg,
      transparent 300deg,
      rgba(255, 200, 130, 0.1) 320deg,
      transparent 340deg
    );
  mask: radial-gradient(circle, transparent 32%, #000 48%, #000 70%, transparent 78%);
  animation: spinSlow 48s linear infinite;
  opacity: 0.85;
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.92; }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.4rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 24px;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--sun) 0%, var(--gold) 45%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  color: var(--cream);
}

.hero-lead {
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-soft);
  max-width: 34em;
}

.hero-lead strong {
  color: var(--cream);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #1a1208;
  background: linear-gradient(135deg, #ffe29a 0%, #ffb347 48%, #ff8a5b 100%);
  box-shadow:
    0 10px 30px rgba(255, 140, 70, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  box-shadow:
    0 14px 36px rgba(255, 140, 70, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 200, 140, 0.35);
}

.lyric {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 420px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 244, 230, 0.05), rgba(255, 159, 67, 0.04));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.lyric p {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--cream);
}

.lyric cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.lyric cite em {
  font-style: italic;
  color: var(--text-soft);
}

/* Strip */
.strip {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--border);
  background: rgba(255, 248, 240, 0.02);
}

.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.strip-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.strip-value {
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

@media (min-width: 800px) {
  .strip-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 12vh, 120px) clamp(20px, 5vw, 48px);
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  gap: 28px 64px;
  margin-bottom: 48px;
}

@media (min-width: 860px) {
  .section-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .section-grid.reverse {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .section-grid.reverse .section-intro {
    order: 2;
  }
}

.section-intro.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-sub {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.prose p {
  margin: 0 0 1.1em;
  color: var(--text-soft);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--cream);
  font-weight: 600;
}

.prose em {
  color: var(--gold-soft);
  font-style: italic;
}

.prose.center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.prose a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-color: rgba(255, 210, 138, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.prose a:hover {
  color: var(--cream);
  text-decoration-color: rgba(255, 244, 230, 0.55);
}

.sustain-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.callout {
  padding: 18px 20px;
  border-left: 2px solid var(--amber);
  background: linear-gradient(90deg, rgba(255, 159, 67, 0.08), transparent);
  border-radius: 0 12px 12px 0;
  color: var(--cream) !important;
}

.inline-link,
.text-link {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-color: rgba(255, 210, 138, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.inline-link:hover,
.text-link:hover {
  color: var(--sun);
  text-decoration-color: rgba(255, 226, 154, 0.7);
}

/* Cards */
.subject-cards,
.who-grid,
.pillars {
  display: grid;
  gap: 16px;
}

@media (min-width: 760px) {
  .subject-cards,
  .who-grid,
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card,
.who-card,
.pillar {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.card:hover,
.who-card:hover,
.pillar:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.card p,
.who-card p,
.pillar p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.card-icon,
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

/* Why panel */
.why {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.why-panel {
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 48px);
  border-radius: 0;
  border-block: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 179, 71, 0.07), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(18, 17, 28, 0.65);
  display: grid;
  gap: 36px;
}

@media (min-width: 900px) {
  .why-panel {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-left: clamp(20px, 5vw, 48px);
    margin-right: clamp(20px, 5vw, 48px);
  }
}

.why-copy p {
  color: var(--text-soft);
  margin: 0 0 1em;
}

.why-copy p:last-child {
  margin-bottom: 0;
}

.quote-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at top right, rgba(255, 179, 71, 0.16), transparent 55%),
    rgba(11, 10, 20, 0.55);
}

.quote-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.quote-body {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--cream);
}

/* MTP */
.mtp {
  max-width: none;
  padding-top: 40px;
  padding-bottom: 40px;
}

.mtp-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 179, 71, 0.18), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 107, 74, 0.1), transparent 50%),
    rgba(18, 17, 28, 0.7);
  box-shadow: var(--shadow);
}

.mtp-inner h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.mtp-inner p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* Join / waitlist */
.join-panel {
  display: grid;
  gap: 36px;
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(255, 226, 154, 0.06), transparent 45%),
    rgba(18, 17, 28, 0.72);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .join-panel {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 48px;
  }
}

.join-copy p {
  margin: 0;
  color: var(--text-soft);
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.field-row {
  display: grid;
  gap: 10px;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }

  .field-row:last-of-type {
    grid-template-columns: 1.2fr auto;
  }
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(11, 10, 20, 0.65);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  color-scheme: dark;
}

.waitlist-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23ffd28a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(255, 179, 71, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.12);
}

.waitlist-form .btn {
  min-height: 52px;
  white-space: nowrap;
}

.form-note {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status.ok {
  color: #9be7a8;
}

.form-status.err {
  color: #ff9b8a;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 48px) 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid var(--border);
}

@media (min-width: 720px) {
  .site-footer {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 28em;
}

.footer-meta {
  text-align: left;
}

@media (min-width: 720px) {
  .footer-meta {
    text-align: right;
  }
}

.footer-meta p {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-meta a {
  color: var(--gold-soft);
}

.footer-sep {
  margin: 0 0.35em;
  opacity: 0.55;
}

.footer-lyric {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-soft) !important;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sun-core,
  .sun-halo,
  .sun-rays,
  .orb {
    animation: none !important;
  }
}
