/* ══════════════════════════════════════════════════════════════
   TRTL — Quran Reels
   Editorial "emerald ember-field" with old-film grain.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* deep green field */
  --bg:        #06110a;
  --bg-2:      #08160d;
  --panel:     rgba(10, 26, 17, 0.55);
  --panel-2:   rgba(7, 19, 12, 0.72);

  /* gold accent (the reel's highlight + the generate button) */
  --gold:      #e3c463;
  --gold-lt:   #f3e0a0;
  --gold-dk:   #b48f30;
  --ember:     #ddb24f;

  /* warm cream text on green */
  --cream:     #f2ecd9;
  --cream-2:   #ccc6ac;
  --cream-3:   #8d977f;
  --muted:     #67755f;

  --line:      rgba(227, 196, 99, 0.16);
  --line-soft: rgba(242, 236, 217, 0.10);

  --font-disp: 'Instrument Serif', Georgia, serif;
  --font-ui:   'Hanken Grotesk', -apple-system, system-ui, sans-serif;
  --font-ar:   'Amiri', 'Instrument Serif', serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ── the emerald ember field ─────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(48% 60% at 0% 0%,    rgba(46, 128, 78, 0.20) 0%, transparent 60%),
    radial-gradient(50% 64% at 100% 0%,  rgba(227, 196, 99, 0.12) 0%, transparent 62%),
    radial-gradient(55% 70% at 100% 100%, rgba(30, 92, 58, 0.22) 0%, transparent 60%),
    radial-gradient(52% 66% at 0% 100%,  rgba(227, 196, 99, 0.07) 0%, transparent 60%),
    radial-gradient(130% 130% at 50% 22%,
      #04100a 0%, #061309 30%, #0a1c12 62%, #051209 88%, #030c07 100%),
    var(--bg);
  background-blend-mode: screen, screen, screen, screen, normal, normal;
}

/* ── faint sacred grid ───────────────────────────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(227,196,99,0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227,196,99,0.030) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 80%);
}

/* ── animated old-film grain ─────────────────────────────────── */
.grain {
  position: fixed;
  inset: -150%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(4) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3%, 2%); }
  50%  { transform: translate(2%, -3%); }
  75%  { transform: translate(-2%, -2%); }
  100% { transform: translate(3%, 3%); }
}

/* ── vignette + a single drifting film scratch ───────────────── */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(130% 120% at 50% 42%, transparent 58%, rgba(0,0,0,0.55) 100%);
}
.vignette::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 28%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(242,236,217,0.10), transparent);
  animation: scratch 7s linear infinite;
  opacity: 0.6;
}
@keyframes scratch {
  0%   { left: 18%; opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.4; }
  100% { left: 82%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .vignette::after { animation: none; }
}

/* ── shared accent square ────────────────────────────────────── */
.sq {
  width: 7px; height: 7px;
  background: var(--gold);
  display: inline-block;
  box-shadow: 0 0 10px rgba(227,196,99,0.6);
}

/* ── eyebrow / section heads ─────────────────────────────────── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-title {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-top: 18px;
}
.sec-title em, .hero-title em { font-style: italic; color: var(--ember); }
.sec-lede {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.66;
  color: var(--cream-2);
  max-width: 48ch;
  margin-top: 1.3rem;
}

/* ════════════ NAV ════════════ */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 5vw, 3.5rem);
  background: rgba(5, 14, 9, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
nav.scrolled {
  padding-top: 0.7rem; padding-bottom: 0.7rem;
  background: rgba(5, 14, 9, 0.86);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: baseline; gap: 0.7rem; text-decoration: none; }
.brand-mark {
  font-family: var(--font-disp);
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  line-height: 1;
}
.brand-mark.big { font-size: 3rem; display: block; margin-bottom: 0.8rem; }
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-links { display: flex; gap: 2.1rem; list-style: none; }
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-2);
  text-decoration: none;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #1a1400;
  background: var(--gold);
  padding: 0.62rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(227,196,99,0.30);
}
@media (max-width: 760px) { .nav-links { display: none; } }

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(7rem, 16vh, 11rem) clamp(1.2rem, 5vw, 2rem) 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-title {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: clamp(2.9rem, 7.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 1.3rem 0 0;
}
.bismillah {
  font-family: var(--font-ar);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--gold);
  direction: rtl;
  margin: 1.5rem 0 0;
  opacity: 0.92;
}
.hero-lede {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.66;
  color: var(--cream-2);
  max-width: 46ch;
  margin-top: 1.5rem;
}
.hero-lede em { color: var(--cream); font-style: italic; }
.hero-ctas { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }

.btn-gold {
  font-family: var(--font-ui);
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1400;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  border: none;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(227,196,99,0.22), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(227,196,99,0.34), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-ghost {
  font-size: 0.92rem; font-weight: 600;
  color: var(--cream);
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(227,196,99,0.05); }

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.hero-stats dt {
  font-family: var(--font-disp);
  font-size: 1.7rem;
  color: var(--cream);
  line-height: 1;
}
.hero-stats dd {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--cream-3);
  margin-top: 0.45rem;
  max-width: 14ch;
}

/* ── phone mockup ── */
.hero-phone { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.phone {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  padding: 8px;
  background: linear-gradient(155deg, #1c2a1f, #0a140d 60%);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.05) inset,
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(227,196,99,0.16),
    0 0 60px -10px rgba(46,128,78,0.4);
  transition: transform .5s var(--ease);
}
.phone.large { width: min(320px, 80vw); }
.hero-phone .phone:hover { transform: translateY(-6px) rotate(-1deg); }
.phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 6px; border-radius: 999px;
  background: rgba(0,0,0,0.6); z-index: 3;
}
.phone video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 25px;
  display: block;
  background: #000;
}
.phone-glare {
  position: absolute; inset: 8px;
  border-radius: 25px;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(255,255,255,0.10) 0%, transparent 30%, transparent 100%);
}
.phone-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--cream-3);
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone { order: -1; }
  .hero-stats { flex-wrap: wrap; }
}

/* ════════════ MARQUEE ════════════ */
.marquee {
  position: relative; z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.1rem 0;
  background: rgba(4, 12, 8, 0.4);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  white-space: nowrap;
  animation: scroll 34s linear infinite;
}
.marquee-track span {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  color: var(--cream-3);
  font-style: italic;
}
.marquee-track .dot { color: var(--gold); font-size: 0.8rem; font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ════════════ SECTIONS ════════════ */
.section {
  position: relative; z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.2rem, 5vw, 2rem);
}

/* ── demo ── */
.demo-note {
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--cream-2);
  margin: -28px 0 48px;
}
.demo-stage { display: flex; justify-content: center; }
.demo-stage .phone { width: min(340px, 86vw); }

/* ── steps ── */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  padding: 2rem 1.7rem 2.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--panel);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease);
}
.step:hover { border-color: var(--line); transform: translateY(-4px); }
.step .num {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-ui);
  font-size: 1.12rem; font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.95rem; line-height: 1.6; color: var(--cream-3); }

/* ── craft grid ── */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  padding: 1.9rem 1.7rem;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--panel);
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.card:hover { border-color: var(--line); transform: translateY(-4px); background: var(--panel-2); }
.card.span2 { grid-column: span 2; }
.card .kicker {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.card h3 {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0.7rem 0 0.6rem;
  line-height: 1.1;
}
.card p { font-size: 0.96rem; line-height: 1.62; color: var(--cream-3); }
.card.span2 p { font-size: 1.04rem; max-width: 60ch; }

@media (max-width: 860px) {
  .steps, .craft-grid { grid-template-columns: 1fr; }
  .card.span2 { grid-column: span 1; }
}

/* ════════════ STUDIO ════════════ */
.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.panel {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7);
}
.field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.panel label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 0.55rem;
}
.panel input[type=number], .panel select {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(4, 12, 8, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.panel input:focus, .panel select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227,196,99,0.14);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: "▾";
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); pointer-events: none; font-size: 0.8rem;
}
.panel select option { background: #0a160d; color: var(--cream); }

.bgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.bg {
  font-size: 0.92rem;
  color: var(--cream-2);
  background: rgba(4, 12, 8, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.bg .swatch { width: 12px; height: 12px; border-radius: 3px; }
.bg:hover { border-color: var(--line); }
.bg.active { border-color: var(--gold); color: var(--cream); box-shadow: 0 0 0 1px var(--gold) inset; }

.check {
  display: flex; align-items: center; gap: 0.7rem;
  cursor: pointer; margin: 0.4rem 0 1.3rem;
}
.check input { display: none; }
.check .box {
  width: 20px; height: 20px; flex: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(4,12,8,0.6);
  position: relative;
  transition: background .2s, border-color .2s;
}
.check input:checked + .box { background: var(--gold); border-color: var(--gold); }
.check input:checked + .box::after {
  content: "✓"; color: #1a1400; font-size: 0.8rem; font-weight: 800;
  position: absolute; inset: 0; display: grid; place-items: center;
}
.check span:last-child {
  font-size: 0.92rem; color: var(--cream-2);
  text-transform: none; letter-spacing: 0; margin: 0;
}

.nudge-wrap { margin-bottom: 1.6rem; transition: opacity .3s; }
.nudge-wrap.disabled { opacity: 0.35; pointer-events: none; }
.nudge-wrap label { display: flex; justify-content: space-between; align-items: baseline; }
.nudge-val { font-family: var(--font-disp); font-size: 1.1rem; color: var(--gold); letter-spacing: 0; }
input[type=range] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  margin: 0.3rem 0;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-lt);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold), 0 2px 8px rgba(0,0,0,0.5);
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-lt); border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold); cursor: pointer;
}
.hint { font-size: 0.72rem; color: var(--muted); }

.btn-gold.full { width: 100%; margin-top: 0.5rem; padding: 1.05rem; font-size: 1rem; }
.disclaimer { font-size: 0.74rem; color: var(--muted); line-height: 1.5; margin-top: 1rem; text-align: center; }

/* studio is a static product shot — not interactive */
.panel.mockup { cursor: default; user-select: none; transform: rotate(-1.1deg); }
.panel.mockup * { pointer-events: none; }
.mock-bar { display: flex; gap: 7px; margin-bottom: 1.5rem; }
.mock-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(242,236,217,0.14);
}
.mock-bar span:first-child { background: rgba(227,196,99,0.55); }

/* preview side */
.preview { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.preview-phone { width: min(300px, 78vw); transform: rotate(1.4deg); }

@media (max-width: 860px) {
  .studio-grid { grid-template-columns: 1fr; }
  .preview { order: -1; margin-bottom: 1rem; }
  .panel.mockup, .preview-phone { transform: none; }
}

/* ════════════ WAITLIST ════════════ */
.waitlist { display: flex; justify-content: center; }
.waitlist-card {
  width: 100%;
  max-width: 680px;
  text-align: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(2.2rem, 5vw, 3.6rem);
  backdrop-filter: blur(8px);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.75), 0 0 70px -20px rgba(46,128,78,0.30);
}
.waitlist-card .eyebrow { justify-content: center; }
.waitlist-title {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.04;
  color: var(--cream);
  margin: 1rem 0 0;
}
.waitlist-title em { font-style: italic; color: var(--ember); }
.waitlist-lede {
  font-size: 1.05rem;
  line-height: 1.66;
  color: var(--cream-2);
  max-width: 46ch;
  margin: 1.1rem auto 2rem;
}
.tally-embed {
  background: rgba(4, 11, 7, 0.45);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 0.6rem 1rem;
  text-align: left;
  min-height: 120px;
}
.tally-embed iframe { display: block; color-scheme: light dark; }
.waitlist-fine { font-size: 0.78rem; color: var(--muted); margin-top: 1.2rem; letter-spacing: 0.04em; }

/* ════════════ FOOTER ════════════ */
.footer {
  position: relative; z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem clamp(1.2rem, 5vw, 2rem) 3rem;
}
.foot-top {
  display: flex; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.foot-tag { max-width: 36ch; color: var(--cream-3); line-height: 1.6; font-size: 0.96rem; }
.foot-ayah { text-align: right; }
.foot-ayah .ar {
  font-family: var(--font-ar);
  direction: rtl;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.foot-ayah .en { font-style: italic; font-family: var(--font-disp); font-size: 1.05rem; color: var(--cream-3); }
.foot-rule { height: 1px; background: var(--line-soft); margin: 2.6rem 0 1.4rem; }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.74rem; letter-spacing: 0.08em; color: var(--muted);
  text-transform: uppercase;
}
.foot-link { color: var(--cream-3); text-decoration: none; transition: color .25s; }
.foot-link:hover { color: var(--gold); }

@media (max-width: 700px) {
  .foot-top { flex-direction: column; }
  .foot-ayah { text-align: left; }
}

/* ════════════ LOAD REVEALS ════════════ */
.reveal { opacity: 0; transform: translateY(22px); }
.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.d1.in { transition-delay: .08s; }
.d2.in { transition-delay: .16s; }
.d3.in { transition-delay: .24s; }
.d4.in { transition-delay: .32s; }
.d5.in { transition-delay: .40s; }
