@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0b2140;
  --navy-deep: #07182f;
  --navy-soft: #143256;
  --gold: #c79a3e;
  --gold-light: #e6c878;
  --gold-deep: #a8802c;
  --cream: #f1ebdd;
  --cream-light: #faf6ec;
  --paper: #fbf8f1;
  --ink: #15243d;
  --muted: #5a6478;
  --line: #e7dfcd;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Film grain overlay across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.015em;
}

section { scroll-margin-top: 84px; }

.eyebrow {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold-light); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 52px); font-weight: 600; color: var(--navy); }

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 24, 47, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(231, 200, 120, 0.14);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 15px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.brand span {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: #fff;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
  position: relative; transition: color .25s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1.5px; background: var(--gold-light);
  transition: width .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep) !important;
  padding: 10px 22px; border-radius: 999px; font-weight: 700 !important;
  box-shadow: 0 6px 18px rgba(199,154,62,0.32);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(199,154,62,0.44); }

/* ───────── HERO ───────── */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 600px at 78% 12%, rgba(230,200,120,0.20), transparent 60%),
    radial-gradient(700px 500px at 12% 100%, rgba(20,50,86,0.85), transparent 60%),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 58%, #16365c 100%);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(230,200,120,0.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(230,200,120,0.4), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.3), transparent);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: 96px 28px 104px;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 48px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(230,200,120,0.45);
  border-radius: 999px; padding: 8px 18px;
  backdrop-filter: blur(4px);
}
.badge::first-letter { color: var(--gold-light); }
.hero-copy h1 {
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 600; margin: 26px 0 22px;
  letter-spacing: -0.03em; line-height: 0.98;
}
.hero-copy h1 em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 19px; line-height: 1.6;
  color: rgba(255,255,255,0.82); max-width: 510px; margin-bottom: 34px;
}

/* Store buttons */
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--navy-deep);
  border-radius: 14px; padding: 12px 22px 12px 18px;
  text-decoration: none; font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,0.30); }
.store-btn svg { width: 26px; height: 26px; fill: var(--navy-deep); flex: none; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.15; font-size: 18px; font-family: 'Fraunces', serif; }
.store-btn small { font-size: 11px; font-weight: 600; opacity: .68; text-transform: uppercase; letter-spacing: .06em; font-family: 'Hanken Grotesk', sans-serif; }

/* Hero art */
.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-art::before {
  content: ""; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,200,120,0.28), transparent 70%);
  filter: blur(20px);
}
.hero-phone {
  position: relative; width: 290px; border-radius: 30px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-icon {
  position: absolute; top: -14px; left: 20%;
  width: 88px; height: 88px; border-radius: 22px; z-index: 3;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  border: 1px solid rgba(230,200,120,0.5);
}

/* ───────── DECORATIVE DIVIDER ───────── */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  max-width: 320px; margin: 0 auto;
}
.divider::before, .divider::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 1.3; }

/* ───────── TRUST BAND ───────── */
.trust {
  background:
    linear-gradient(90deg, rgba(199,154,62,0.10), rgba(199,154,62,0.02)),
    var(--cream);
  border-top: 1px solid rgba(199,154,62,0.4);
  border-bottom: 1px solid rgba(199,154,62,0.4);
}
.trust-inner {
  max-width: var(--max); margin: 0 auto; padding: 32px 28px;
  display: flex; align-items: center; gap: 24px;
}
.trust-icon {
  width: 60px; height: 60px; flex: none; border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(11,33,64,0.25);
}
.trust-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-text h2 { font-size: 27px; color: var(--navy); margin-bottom: 5px; font-weight: 600; }
.trust-text p { color: #45506a; font-size: 16px; max-width: 900px; }

/* ───────── SPLIT (image + copy) ───────── */
.split {
  max-width: var(--max); margin: 0 auto; padding: 110px 28px;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 20px; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(199,154,62,0.25);
}
.split-media img {
  width: 100%; border-radius: 20px; object-fit: cover;
  box-shadow: 0 30px 70px rgba(11,33,64,0.22);
}
.split-copy h2 { font-size: clamp(32px, 3.8vw, 46px); color: var(--navy); margin-bottom: 22px; font-weight: 600; }
.split-copy p { color: var(--muted); font-size: 18px; margin-bottom: 18px; line-height: 1.7; }
/* Editorial drop cap on the Shabbat passage */
#shabbat .split-copy p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 4.2em; font-weight: 600; float: left;
  line-height: 0.78; padding: 6px 14px 0 0; color: var(--gold);
}
.split-copy blockquote {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: 24px; color: var(--navy);
  border-left: 2px solid var(--gold); padding-left: 22px;
  margin-top: 28px; line-height: 1.42;
}
.ticks { list-style: none; margin-top: 24px; }
.ticks li {
  position: relative; padding-left: 32px; margin-bottom: 13px;
  color: var(--ink); font-weight: 500; font-size: 16.5px;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6c878' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}

/* ───────── MISSION ───────── */
.mission {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  padding: 100px 28px;
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(230,200,120,0.16), transparent 65%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 75%);
}
.mission-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.mission .star svg { width: 42px; height: 42px; fill: none; stroke: var(--gold-light); stroke-width: 1.3; stroke-linejoin: round; margin: 0 auto 24px; display: block; }
.mission blockquote {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(30px, 4.4vw, 50px); line-height: 1.18; margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.mission p { color: rgba(255,255,255,0.78); font-size: 18.5px; max-width: 640px; margin: 0 auto; }

/* ───────── ABOUT ───────── */
.about { max-width: var(--max); margin: 0 auto; padding: 110px 28px; }
.about-prose { max-width: 840px; margin: 0 auto; text-align: center; }
.about-prose p { font-size: 19px; line-height: 1.78; color: #404a60; margin-bottom: 22px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 26px; text-align: center;
  box-shadow: 0 10px 30px rgba(11,33,64,0.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(11,33,64,0.10); }
.p-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cream); border: 1px solid rgba(199,154,62,0.5);
  display: grid; place-items: center; margin: 0 auto 18px;
}
.p-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 19px; color: var(--navy); line-height: 1.3; font-weight: 600; }

/* ───────── FEATURES ───────── */
.features { max-width: var(--max); margin: 0 auto; padding: 110px 28px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 34px 30px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(11,33,64,0.05);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,33,64,0.12); border-color: rgba(199,154,62,0.4); }
.feature:hover::before { transform: scaleX(1); }
.f-icon {
  width: 58px; height: 58px; border-radius: 15px;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  display: grid; place-items: center; margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(11,33,64,0.22);
}
.f-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--gold-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.feature p { color: var(--muted); font-size: 16px; line-height: 1.62; }

/* ───────── HOW ───────── */
.how {
  background:
    linear-gradient(180deg, var(--cream-light), var(--cream));
  padding: 110px 28px;
}
.how-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.how-col {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 40px 36px; box-shadow: 0 14px 36px rgba(11,33,64,0.06);
}
.how-col h3 { font-size: 28px; color: var(--navy); margin-bottom: 24px; font-weight: 600; }
.how-col h3::after { content: ""; display: block; width: 44px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-top: 12px; }
.how-col ol { list-style: none; }
.how-col li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 13px 0; font-size: 16.5px; color: var(--ink);
  border-bottom: 1px solid #f1ece1;
}
.how-col li:last-child { border-bottom: none; }
.how-col li span {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: var(--gold-light); display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600;
}

/* ───────── SHOWCASE ───────── */
.showcase { max-width: var(--max); margin: 0 auto; padding: 110px 28px; }
.screens { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: start; }
.screens figure {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(11,33,64,0.14);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.screens figure:nth-child(even) { transform: translateY(20px); }
.screens figure:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(11,33,64,0.2); }
.screens figure:nth-child(even):hover { transform: translateY(12px); }
.screens img { width: 100%; }

/* ───────── COMMUNITY ───────── */
.charity {
  position: relative; overflow: hidden; padding: 110px 28px; color: #fff;
  background:
    radial-gradient(700px 500px at 85% 20%, rgba(230,200,120,0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 80%);
}
.charity-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.charity-copy h2 { font-size: clamp(32px, 4vw, 46px); color: #fff; margin: 4px 0 20px; font-weight: 600; }
.charity-copy p { color: rgba(255,255,255,0.82); font-size: 18px; margin-bottom: 17px; line-height: 1.7; }
.charity-stats { display: grid; gap: 16px; }
.value-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(230,200,120,0.22); border-radius: 18px;
  padding: 22px 24px; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.value-card:hover { transform: translateX(6px); border-color: rgba(230,200,120,0.5); }
.v-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 50%;
  background: rgba(230,200,120,0.14); border: 1px solid rgba(230,200,120,0.45);
  display: grid; place-items: center;
}
.v-icon svg { width: 23px; height: 23px; fill: none; stroke: var(--gold-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h4 { font-family: 'Fraunces', serif; font-size: 20px; color: #fff; margin-bottom: 4px; font-weight: 600; }
.value-card p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.45; }

/* ───────── TESTIMONIALS ───────── */
.testimonials { max-width: var(--max); margin: 0 auto; padding: 110px 28px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.t-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 40px 30px 32px; text-align: center;
  box-shadow: 0 12px 34px rgba(11,33,64,0.06);
}
.t-card::before {
  content: "\201C"; position: absolute; top: 6px; left: 26px;
  font-family: 'Fraunces', serif; font-size: 90px; line-height: 1;
  color: rgba(199,154,62,0.18);
}
.t-card img {
  width: 88px; height: 88px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 20px; position: relative;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--gold-light);
}
.t-card blockquote { font-size: 16.5px; color: var(--ink); line-height: 1.6; font-style: italic; margin-bottom: 18px; position: relative; }
.t-card figcaption { font-family: 'Fraunces', serif; font-weight: 600; color: var(--gold-deep); font-size: 18px; }

/* ───────── DOWNLOAD ───────── */
.download { max-width: var(--max); margin: 0 auto; padding: 30px 28px 110px; }
.download-inner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(500px 360px at 90% 10%, rgba(230,200,120,0.14), transparent 60%),
    linear-gradient(150deg, var(--navy), var(--navy-soft));
  border-radius: 28px; padding: 56px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 44px;
  box-shadow: 0 28px 70px rgba(11,33,64,0.28);
}
.dl-left h2 { font-size: clamp(30px, 3.6vw, 42px); color: #fff; margin-bottom: 14px; font-weight: 600; }
.dl-left p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 28px; max-width: 440px; }
.dl-qr { display: flex; gap: 24px; flex: none; }
.qr { text-align: center; }
.qr img { width: 134px; height: 134px; border-radius: 14px; padding: 9px; background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,0.25); }
.qr span { display: block; margin-top: 12px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.02em; }

/* ───────── FOOTER ───────── */
.footer { background: var(--navy-deep); color: #fff; }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 56px 28px 36px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 36px; flex-wrap: wrap;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 12px; max-width: 280px; }
.footer-brand .addr { font-size: 13.5px; color: rgba(255,255,255,0.45); margin-top: 12px; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 28px; max-width: 520px; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--max); margin: 0 auto; padding: 20px 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}

/* ───────── MOTION ───────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.feature.reveal:nth-child(2), .pillar.reveal:nth-child(2) { transition-delay: .08s; }
.feature.reveal:nth-child(3), .pillar.reveal:nth-child(3) { transition-delay: .16s; }
.feature.reveal:nth-child(5) { transition-delay: .08s; }
.feature.reveal:nth-child(6) { transition-delay: .16s; }
.screens figure.reveal:nth-child(2) { transition-delay: .07s; }
.screens figure.reveal:nth-child(3) { transition-delay: .14s; }
.screens figure.reveal:nth-child(4) { transition-delay: .21s; }
.screens figure.reveal:nth-child(5) { transition-delay: .28s; }
.t-card.reveal:nth-child(2) { transition-delay: .1s; }
.t-card.reveal:nth-child(3) { transition-delay: .2s; }
.value-card.reveal:nth-child(2) { transition-delay: .1s; }
.value-card.reveal:nth-child(3) { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 72px 28px 80px; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .store-buttons { justify-content: center; }
  .hero-art { margin-top: 28px; }
  .split { grid-template-columns: 1fr; gap: 40px; padding: 72px 28px; }
  .split.reverse .split-media { order: 0; }
  #shabbat .split-copy p:first-of-type::first-letter { font-size: 3.4em; }
  .charity-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid, .pillars { grid-template-columns: repeat(2, 1fr); }
  .screens { grid-template-columns: repeat(3, 1fr); }
  .screens figure:nth-child(even) { transform: none; }
  .t-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .download-inner { flex-direction: column; text-align: center; padding: 44px 32px; }
  .dl-left .store-buttons { justify-content: center; }
  .dl-left p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .feature-grid, .pillars { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .screens { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { flex-direction: column; text-align: center; }
  .dl-qr { flex-wrap: wrap; justify-content: center; }
  .hero-icon { left: 26%; }
}
