/* CalmClick site — calm, legible, senior-friendly app landing page.
   Mirrors the app's 2026-07 design tokens: soft surfaces, #1F5FAE accent,
   generous type, and one gentle animation that shows what the app does. */

:root {
  --accent: #1F5FAE;
  --accent-soft: #3D7CC9;
  --accent-tint: #E8F0FA;
  --bg: #F6F8FB;
  --bg-2: #EDF3FB;
  --card: #FFFFFF;
  --border: #E3E9F2;
  --text: #1C2634;
  --text-2: #4A5568;
  --text-3: #8A94A6;
  --safe: #1E7B45;
  --safe-tint: #E5F4EB;
  --caution: #8A6100;
  --caution-tint: #FBF3DC;
  --warn: #B42318;
  --warn-tint: #FDEBE9;
  --radius: 22px;
  --shadow: 0 6px 20px rgba(20, 30, 50, 0.05);
  --shadow-lg: 0 24px 60px rgba(20, 35, 65, 0.14);
  --header-bg: rgba(255, 255, 255, 0.78);
  --phone-frame: linear-gradient(160deg, #2C3646, #171E28 55%, #333E4F);
  --shot-bg: #FFFFFF;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #10151D;
    --bg-2: #131C29;
    --card: #1A212C;
    --border: #2A3340;
    --text: #ECF1F8;
    --text-2: #AEB9C9;
    --text-3: #77839A;
    --accent-tint: #1D2C42;
    --safe-tint: #14301F;
    --caution-tint: #33290F;
    --warn-tint: #371512;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
    --header-bg: rgba(16, 21, 29, 0.78);
    --shot-bg: #222A36;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */

header.site {
  position: sticky; top: 0; z-index: 60;
  padding: 12px 0;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
header.site.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 20px rgba(20, 30, 50, .05); }
header.site .wrap { display: flex; align-items: center; gap: 14px; }
header.site .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
header.site img { width: 40px; height: 40px; border-radius: 10px; }
header.site .name { font-weight: 700; font-size: 21px; letter-spacing: -0.2px; }
header.site nav { margin-left: auto; display: flex; gap: 22px; }
header.site nav a { color: var(--text-2); text-decoration: none; font-weight: 600; font-size: 17px; }
header.site nav a:hover { color: var(--accent-soft); }

/* ---------- App Store button ---------- */

.appstore {
  display: inline-flex; align-items: center; gap: 11px;
  background: #000; color: #fff; text-decoration: none;
  padding: 10px 20px 10px 18px; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.appstore:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, .28); }
.appstore:active { transform: translateY(0); }
.appstore .apple { width: 26px; height: 26px; fill: #fff; flex: none; }
.appstore .labels { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.appstore small { font-size: 11px; letter-spacing: .3px; opacity: .85; text-transform: none; }
.appstore strong { font-size: 19px; font-weight: 600; letter-spacing: -0.2px; }
.appstore--sm { margin-left: 20px; padding: 7px 15px 7px 13px; border-radius: 12px; }
.appstore--sm .apple { width: 20px; height: 20px; }
.appstore--sm small { font-size: 9px; }
.appstore--sm strong { font-size: 15px; }
.appstore--lg { padding: 13px 26px 13px 22px; border-radius: 16px; }
.appstore--lg .apple { width: 30px; height: 30px; }
.appstore--lg strong { font-size: 22px; }

@media (prefers-color-scheme: dark) {
  .appstore { background: #fff; color: #000; border-color: rgba(0, 0, 0, .1); }
  .appstore .apple { fill: #000; }
}

.ghost-btn {
  display: inline-flex; align-items: center;
  padding: 13px 24px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--card);
  color: var(--accent-soft); font-weight: 700; text-decoration: none;
  box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease;
}
.ghost-btn:hover { transform: translateY(-2px); border-color: var(--accent-soft); }

/* ---------- hero ---------- */

.hero { position: relative; padding: 56px 0 40px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero-bg .b1 { width: 520px; height: 520px; left: -160px; top: -180px; background: var(--accent-tint); }
.hero-bg .b2 { width: 460px; height: 460px; right: -140px; top: 120px; background: var(--safe-tint); opacity: .45; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; align-items: center;
}
.hero-copy { max-width: 560px; }
.badge {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: var(--accent-tint); color: var(--accent-soft);
  font-weight: 700; font-size: 15px; letter-spacing: .2px;
}
.hero-copy h1 {
  font-size: 54px; line-height: 1.08; letter-spacing: -1.4px;
  margin: 20px 0 16px;
}
.hero-copy .lead { font-size: 21px; color: var(--text-2); margin: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }
.trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin: 26px 0 0; padding: 0; color: var(--text-2); font-size: 16px; font-weight: 600;
}

/* ---------- animated device ---------- */

.hero-device { display: flex; justify-content: center; }
.stage { position: relative; width: 300px; height: 610px; margin-bottom: 58px; }
.stage-glow {
  position: absolute; left: 50%; top: 52%; width: 380px; height: 420px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 95, 174, .22), transparent 68%);
  filter: blur(8px);
}

.phone {
  position: absolute; inset: 0;
  border-radius: 46px; padding: 11px;
  background: var(--phone-frame);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .16);
  overflow: hidden;
}
.screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden;
  background: var(--card); color: var(--text);
  font-size: 13px; line-height: 1.4; text-align: left;
}
.statusbar {
  display: flex; justify-content: space-between; align-items: center;
  height: 34px; padding: 0 22px 0 24px;
  font-size: 12px; font-weight: 700; color: var(--text-2);
}
.statusbar .dots { letter-spacing: 1px; font-size: 9px; opacity: .7; }
.appbar {
  display: flex; align-items: center; gap: 9px;
  height: 52px; padding: 0 16px; border-bottom: 1px solid var(--border);
  font-weight: 700; font-size: 15px;
}
.appbar img { width: 24px; height: 24px; border-radius: 7px; }

.viewfinder {
  position: absolute; left: 14px; right: 14px; top: 96px; height: 286px;
  border-radius: 18px; background: var(--bg-2);
  border: 1px dashed var(--border);
}
.vf-hint {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  text-align: center; color: var(--text-3); font-size: 12px; padding: 0 24px;
}
.corner { position: absolute; width: 22px; height: 22px; border: 3px solid var(--accent-soft); border-radius: 3px; }
.corner.tl { left: 10px; top: 10px; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.corner.tr { right: 10px; top: 10px; border-left: 0; border-bottom: 0; border-top-right-radius: 8px; }
.corner.bl { left: 10px; bottom: 10px; border-right: 0; border-top: 0; border-bottom-left-radius: 8px; }
.corner.br { right: 10px; bottom: 10px; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }

.scanline {
  position: absolute; left: 14px; right: 14px; top: 96px; height: 3px; opacity: 0;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  box-shadow: 0 0 18px 5px rgba(61, 124, 201, .45);
  z-index: 10;
}

.snap {
  position: absolute; left: 0; right: 0; top: 440px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.snap-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); border: 4px solid var(--card);
  box-shadow: 0 0 0 3px var(--accent-soft), 0 8px 18px rgba(31, 95, 174, .35);
}
.snap-label { font-weight: 700; font-size: 13px; color: var(--text-2); }

.reading {
  position: absolute; left: 0; right: 0; top: 452px; opacity: 0;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: var(--accent-soft); font-weight: 700; font-size: 13px; z-index: 6;
}
.spinner {
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid var(--accent-tint); border-top-color: var(--accent-soft);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.result {
  position: absolute; left: 12px; right: 12px; top: 218px; bottom: 34px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 16px 16px 12px;
  box-shadow: 0 -8px 30px rgba(20, 30, 50, .12);
  z-index: 12; display: flex; flex-direction: column;
}
.verdict-pill {
  align-self: flex-start; padding: 6px 13px; border-radius: 999px;
  background: var(--warn-tint); color: var(--warn);
  font-weight: 800; font-size: 13px;
}
.result-title { margin: 11px 0 4px; font-size: 16px; font-weight: 700; line-height: 1.3; }
.result-list { list-style: none; margin: 6px 0 0; padding: 0; }
.result-list li {
  padding: 7px 0 7px 20px; position: relative;
  color: var(--text-2); font-size: 13px; border-top: 1px solid var(--border);
}
.result-list li:first-child { border-top: 0; }
.result-list li::before {
  content: ""; position: absolute; left: 3px; top: 15px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-soft);
}
.result-list b { color: var(--text); }
.result-actions {
  margin-top: auto; display: flex; gap: 8px; padding-top: 12px;
}
.result-actions span {
  flex: 1; text-align: center; padding: 9px 4px; border-radius: 11px;
  background: var(--accent-tint); color: var(--accent-soft);
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.result-foot {
  margin-top: 10px; padding-top: 9px; border-top: 1px solid var(--border);
  color: var(--text-3); font-size: 11px; text-align: center;
}
.homebar {
  position: absolute; left: 50%; bottom: 9px; transform: translateX(-50%);
  width: 108px; height: 5px; border-radius: 3px; background: var(--text-3); opacity: .5; z-index: 14;
}
.flash {
  position: absolute; inset: 0; background: #fff; opacity: 0;
  border-radius: 46px; pointer-events: none; z-index: 20;
}

/* the photo that flies in and becomes the card */
.shot {
  text-align: left;
  position: absolute; left: 50%; top: 107px; width: 250px; height: 286px;
  transform: translateX(-50%) scale(.38);
  transform-origin: 50% 0;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 14px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(20, 35, 65, .26), inset 0 0 40px rgba(20, 35, 65, .05);
  z-index: 7;
}
.shot-head {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 800; color: var(--text-3); margin-bottom: 10px;
}
.shot-head .av { width: 18px; height: 18px; border-radius: 50%; background: var(--border); flex: none; }
.shot .bubble {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  padding: 11px 13px; font-size: 13px; color: var(--text); margin-bottom: 9px;
}
.shot .bubble.small { font-size: 12px; color: var(--text-2); }
.shot .bubble:last-of-type { margin-bottom: 0; }
.shot .link { display: block; margin-top: 3px; color: var(--accent-soft); text-decoration: underline; }
.shot-flare {
  position: absolute; inset: -40% -120%; z-index: 2;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .55) 50%, transparent 58%);
  transform: translateX(-60%);
  opacity: 0;
}

.steps {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -46px; width: 340px; height: 34px; text-align: center;
}
.step {
  position: absolute; left: 0; right: 0; top: 0; opacity: 0;
  font-size: 16px; font-weight: 700; color: var(--accent-soft);
}

/* ---------- the animation ---------- */

.anim .shot       { animation: shotIn 12s cubic-bezier(.4, 0, .2, 1) infinite; }
.anim .shot-flare { animation: flare 12s ease-in-out infinite; }
.anim .flash      { animation: flash 12s ease-out infinite; }
.anim .scanline   { animation: scan 12s ease-in-out infinite; }
.anim .reading    { animation: fadeStep 12s ease infinite; }
.anim .snap       { animation: snapOut 12s ease infinite; }
.anim .vf-hint    { animation: hint 12s ease infinite; }
.anim .viewfinder { animation: vfOut 12s ease infinite; }
.anim .corner     { animation: corners 12s ease-in-out infinite; }
.anim .result     { animation: resultIn 12s cubic-bezier(.22, 1, .36, 1) infinite; }
.anim .ln         { animation: lineIn 12s ease-out infinite; }
.anim .ln.l2      { animation-delay: .35s; }
.anim .ln.l3      { animation-delay: .7s; }
.anim .result-actions { animation: lineIn 12s ease-out infinite; animation-delay: 1.05s; }
.anim .s1         { animation: stepA 12s ease infinite; }
.anim .s2         { animation: stepB 12s ease infinite; }
.anim .s3         { animation: stepC 12s ease infinite; }

@keyframes shotIn {
  0%   { opacity: 0; transform: translateX(-50%) translate(60px, -168px) scale(1.06) rotate(-9deg); }
  4%   { opacity: 1; transform: translateX(-50%) translate(56px, -140px) scale(1.06) rotate(-8deg); }
  16%  { opacity: 1; transform: translateX(-50%) translate(52px, -122px) scale(1.04) rotate(-6.5deg); }
  30%  { opacity: 1; transform: translateX(-50%) translate(0, 0) scale(1) rotate(0deg); }
  46%  { opacity: 1; transform: translateX(-50%) translate(0, 0) scale(1) rotate(0deg); }
  57%  { opacity: 1; transform: translateX(-50%) translate(0, 0) scale(.38) rotate(0deg); }
  92%  { opacity: 1; transform: translateX(-50%) translate(0, 0) scale(.38) rotate(0deg); }
  97%  { opacity: 0; transform: translateX(-50%) translate(0, 0) scale(.38) rotate(0deg); }
  100% { opacity: 0; transform: translateX(-50%) translate(60px, -168px) scale(1.06) rotate(-9deg); }
}
@keyframes flare {
  0%, 15% { opacity: 0; transform: translateX(-70%); }
  20% { opacity: 1; }
  32% { opacity: 0; transform: translateX(70%); }
  100% { opacity: 0; transform: translateX(70%); }
}
@keyframes flash {
  0%, 1% { opacity: 0; }
  3% { opacity: .7; }
  9%, 100% { opacity: 0; }
}
@keyframes scan {
  0%, 30% { opacity: 0; top: 96px; }
  32% { opacity: 1; top: 96px; }
  40% { opacity: 1; top: 376px; }
  48% { opacity: 1; top: 96px; }
  50%, 100% { opacity: 0; top: 96px; }
}
@keyframes fadeStep {
  0%, 30% { opacity: 0; }
  34%, 46% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes snapOut {
  0%, 26% { opacity: 1; transform: translateY(0); }
  32%, 100% { opacity: 0; transform: translateY(10px); }
}
@keyframes hint {
  0% { opacity: 0; }
  2%, 6% { opacity: 1; }
  12%, 100% { opacity: 0; }
}
@keyframes vfOut {
  0%, 48% { opacity: 1; }
  56%, 100% { opacity: 0; }
}
@keyframes corners {
  0%, 24% { opacity: .4; transform: scale(1); }
  32% { opacity: 1; transform: scale(1.06); }
  46%, 100% { opacity: 1; transform: scale(1); }
}
@keyframes resultIn {
  0%, 50% { opacity: 0; transform: translateY(115%); }
  58% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(115%); }
}
@keyframes lineIn {
  0%, 58% { opacity: 0; transform: translateY(9px); }
  63%, 92% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(0); }
}
@keyframes stepA {
  0% { opacity: 0; }
  4%, 22% { opacity: 1; }
  27%, 100% { opacity: 0; }
}
@keyframes stepB {
  0%, 29% { opacity: 0; }
  34%, 46% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@keyframes stepC {
  0%, 53% { opacity: 0; }
  59%, 90% { opacity: 1; }
  95%, 100% { opacity: 0; }
}

/* ---------- sections ---------- */

section { padding: 54px 0; }
section h2 { font-size: 34px; margin: 0 0 10px; letter-spacing: -0.6px; }
section p.sub { color: var(--text-2); margin: 0 0 30px; font-size: 20px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20, 35, 65, .10); }
.card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-tint); color: var(--accent-soft);
  font-weight: 700; font-size: 20px; margin-bottom: 14px;
}
.card h3 { margin: 0 0 8px; font-size: 21px; }
.card p { margin: 0; color: var(--text-2); font-size: 18px; }

.verdicts { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.verdict { border-radius: var(--radius); padding: 22px 24px; border: 1px solid var(--border); }
.verdict.safe { background: var(--safe-tint); }
.verdict.careful { background: var(--caution-tint); }
.verdict.warning { background: var(--warn-tint); }
.verdict b { display: block; font-size: 20px; margin-bottom: 6px; }
.verdict.safe b { color: var(--safe); }
.verdict.careful b { color: var(--caution); }
.verdict.warning b { color: var(--warn); }
.verdict span { color: var(--text-2); font-size: 17px; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 22px 24px; box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-3px); border-color: var(--accent-soft); }
.feature .fi { font-size: 26px; line-height: 1; display: block; margin-bottom: 10px; }
.feature h3 { margin: 0 0 6px; font-size: 19px; }
.feature p { margin: 0; color: var(--text-2); font-size: 17px; }

.privacy-banner {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow);
}
.privacy-banner ul { margin: 14px 0 0; padding-left: 24px; color: var(--text-2); }
.privacy-banner li { margin: 8px 0; }
.privacy-banner a { color: var(--accent-soft); font-weight: 600; }

.cta-band {
  text-align: center; border-radius: 30px; padding: 52px 32px;
  background: linear-gradient(150deg, var(--accent-tint), var(--card) 70%);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.cta-band .cta-icon { width: 84px; height: 84px; border-radius: 20px; box-shadow: var(--shadow-lg); }
.cta-band h2 { margin: 20px 0 6px; }
.cta-band p { margin: 0 0 24px; color: var(--text-2); }

.support-box { text-align: center; }
.support-box a.button {
  display: inline-block; margin-top: 12px; padding: 15px 34px;
  background: var(--accent); color: #fff; border-radius: 16px;
  text-decoration: none; font-weight: 700; font-size: 19px;
  box-shadow: 0 6px 16px rgba(31, 95, 174, 0.35);
  transition: transform .2s ease;
}
.support-box a.button:hover { transform: translateY(-2px); }

footer.site {
  border-top: 1px solid var(--border);
  padding: 34px 0 48px; color: var(--text-3); font-size: 16px;
  text-align: center; margin-top: 30px;
}
footer.site a { color: var(--text-3); }

/* Policy page */
article.policy { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin: 44px auto; max-width: 820px; box-shadow: var(--shadow); }
article.policy h1 { font-size: 34px; margin-top: 0; }
article.policy h2 { font-size: 23px; margin-top: 34px; }
article.policy p, article.policy li { color: var(--text-2); font-size: 18px; }
article.policy .updated { color: var(--text-3); font-size: 16px; }

/* ---------- scroll reveal ---------- */

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .hero-copy { max-width: 640px; margin: 0 auto; }
  .cta-row, .trust { justify-content: center; }
  header.site nav:not(:last-child) { display: none; }
  header.site nav { gap: 16px; font-size: 16px; }
  header.site .appstore--sm { margin-left: auto; }
}

@media (max-width: 600px) {
  body { font-size: 18px; }
  .hero { padding: 30px 0 16px; }
  .hero-copy h1 { font-size: 35px; letter-spacing: -1px; }
  .cta-row { flex-direction: column; align-items: stretch; margin-top: 24px; }
  .cta-row .appstore, .cta-row .ghost-btn { justify-content: center; }
  .trust { font-size: 15px; gap: 8px 16px; margin-top: 20px; }
  header.site .appstore--sm { padding: 6px 13px 6px 11px; }
  header.site .appstore--sm .apple { width: 18px; height: 18px; }
  header.site .appstore--sm strong { font-size: 14px; }
  header.site img { width: 34px; height: 34px; }
  header.site .name { font-size: 19px; }
  .hero-copy .lead { font-size: 19px; }
  section { padding: 40px 0; }
  section h2 { font-size: 28px; }
  section p.sub { font-size: 18px; }
  .cta-band { padding: 40px 22px; border-radius: 24px; }
  article.policy { padding: 26px; }
  .stage { transform: scale(.86); transform-origin: top center; margin-bottom: -20px; }
}

@media (max-width: 380px) {
  .stage { transform: scale(.74); margin-bottom: -100px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim .shot, .anim .shot-flare, .anim .flash, .anim .scanline, .anim .reading,
  .anim .vf-hint, .anim .viewfinder, .anim .corner, .anim .result, .anim .ln,
  .anim .result-actions, .anim .snap, .anim .s1, .anim .s2, .anim .s3, .spinner {
    animation: none !important;
  }
  .anim .shot { opacity: 1; }
  .anim .viewfinder, .anim .snap { opacity: 0; }
  .anim .result-actions { opacity: 1; transform: none; }
  .anim .result { opacity: 1; transform: none; }
  .anim .ln { opacity: 1; transform: none; }
  .anim .s3 { opacity: 1; }
  .card:hover, .feature:hover, .appstore:hover, .ghost-btn:hover, .support-box a.button:hover { transform: none; }
}
