:root{
--cream:#FFF8EC;
--cream-2:#FFF1DA;
--saffron:#FF8A3D;
--saffron-dark:#E96A1E;
--pink:#FF6FA0;
--gold:#FFC93C;
--indigo:#352255;
--indigo-soft:#5B4785;
--blue-krishna:#3B6FD6;
--green:#2FBF8F;
--white:#ffffff;
--shadow-soft: 0 20px 45px -20px rgba(53,34,85,0.25);
--shadow-btn: 0 12px 28px -10px rgba(233,106,30,0.55);
/* Darkened saffron/pink pair — same hue, luminance lowered so white button
   text clears 4.5:1 (the decorative --saffron/--pink stops don't, ~2.3:1) */
--cta-grad-1:#AD5E29;
--cta-grad-2:#AD4B6D;
/* --saffron-dark reads 3.2:1 on white (fails AA); this darker step is for
   small badge text on light backgrounds. --saffron-dark itself stays as-is
   since it also sits on dark surfaces (footer) where it already passes. */
--saffron-text:#B85518;
/* --gold itself is ~1.5:1 on cream — invisible as text. This deeper amber
   clears the 3:1 bar for the decorative star glyphs (adjacent label text
   carries the actual rating info, so 3:1 non-text is the right bar). */
--gold-text:#A67C00;

/* Motion system: strong custom curves, not the built-in CSS weaklings */
--ease-out: cubic-bezier(0.23, 1, 0.32, 1);
--ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
--ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
font-family:'Nunito', sans-serif;
background:var(--cream);
color:var(--indigo);
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ font-family:'Fredoka', sans-serif; text-wrap:balance; }
p{ text-wrap:pretty; }
img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
a:focus-visible, button:focus-visible{
outline:2px solid var(--blue-krishna); outline-offset:3px; border-radius:4px;
}
.cta-section a:focus-visible, footer a:focus-visible{ outline-color:var(--gold); }
.wrap{ max-width:1200px; margin:0 auto; padding:0 24px; }
.visually-hidden{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0);}

/* Decorative blobs */
.blob{ position:absolute; border-radius:50%; filter:blur(10px); opacity:.55; pointer-events:none; }

/* ---------- NAV ---------- */
header.site-nav{
position:fixed; top:0; left:0; right:0; z-index:100;
background:rgba(255,248,236,0.75);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);
border-bottom:1px solid rgba(53,34,85,0.06);
padding-left:env(safe-area-inset-left); padding-right:env(safe-area-inset-right); padding-top:env(safe-area-inset-top);
transition:box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}
header.site-nav.scrolled{ box-shadow:0 8px 30px -12px rgba(53,34,85,.18); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; max-width:1200px; margin:0 auto; }
.brand{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:1.05rem; color:var(--indigo); }
.brand img{ width:44px; height:44px; border-radius:13px; box-shadow:0 6px 16px -6px rgba(233,106,30,.5); flex-shrink:0; }
.brand span{ font-family:'Fredoka',sans-serif; line-height:1.05; }
.brand small{ display:block; font-size:.62rem; font-weight:600; letter-spacing:.14em; color:var(--saffron-dark); text-transform:uppercase; }
nav.nav-links{ display:flex; align-items:center; gap:34px; }
nav.nav-links a{ font-weight:700; font-size:.92rem; color:var(--indigo-soft); position:relative; padding:4px 0; transition:color 160ms var(--ease-out); }
nav.nav-links a::after{ content:''; position:absolute; left:0; bottom:-3px; width:0; height:3px; border-radius:2px; background:linear-gradient(90deg,var(--saffron),var(--pink)); transition:width 220ms var(--ease-out); }
@media (hover:hover) and (pointer:fine){
nav.nav-links a:hover{ color:var(--indigo); }
nav.nav-links a:hover::after{ width:100%; }
}
.nav-cta{
display:inline-block;
background:linear-gradient(135deg,var(--cta-grad-1),var(--cta-grad-2));
color:#fff; font-weight:700; font-size:.88rem; padding:11px 22px; border-radius:999px;
box-shadow:var(--shadow-btn); transition:transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
@media (hover:hover) and (pointer:fine){
.nav-cta:hover{ transform:translateY(-2px) scale(1.03); box-shadow:0 16px 32px -10px rgba(233,106,30,.65); }
}
.nav-cta:active{ transform:scale(0.96); box-shadow:0 8px 18px -10px rgba(233,106,30,.55); transition-duration:100ms; }

.vedic-link{
display:flex; align-items:center; gap:8px; padding:5px 12px 5px 5px; border-radius:999px;
background:rgba(53,34,85,.05); border:1px solid rgba(53,34,85,.1);
transition:background 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.vedic-link img{ width:26px; height:26px; border-radius:50%; object-fit:cover; }
.vedic-link span{ font-size:.72rem; font-weight:700; color:var(--indigo-soft); white-space:nowrap; }
@media (hover:hover) and (pointer:fine){
.vedic-link:hover{ background:rgba(53,34,85,.1); transform:translateY(-1px); }
}
.vedic-link:active{ transform:scale(0.96); transition-duration:100ms; }
@media (max-width:640px){ .vedic-link span{ display:none; } }

.nav-toggle{ display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; padding:6px; width:44px; height:44px; flex-shrink:0; }
.nav-toggle span{ width:24px; height:2.5px; border-radius:2px; background:var(--indigo); transform-origin:center; transition:transform 220ms var(--ease-out), opacity 220ms var(--ease-out); }
.nav-toggle.active span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; transform:scaleX(0); }
.nav-toggle.active span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero{ position:relative; padding:150px 0 90px; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:0;
background:
  radial-gradient(60% 55% at 82% 8%, rgba(255,201,60,.55), transparent 60%),
  radial-gradient(55% 50% at 10% 15%, rgba(255,111,160,.35), transparent 60%),
  linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero .blob-1{ width:280px; height:280px; background:var(--gold); top:60px; left:-80px; }
.hero .blob-2{ width:220px; height:220px; background:var(--pink); bottom:-40px; right:6%; }
.hero-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:center; }
.hero-logo-wrap{ position:relative; z-index:1; display:flex; justify-content:center; margin-bottom:36px; }
.hero-logo{
width:200px; height:200px; object-fit:contain; aspect-ratio:1/1; flex-shrink:0;
border-radius:44px; box-shadow:0 20px 40px -16px rgba(53,34,85,.4), 0 0 0 6px #fff;
}

/* Stagger fade-up: each element animates independently, cascading after the previous.
 Shared by the hero (fires on load) and any .reveal-group (fires on scroll via IntersectionObserver). */
.stagger{
opacity:0;
transform:translateY(20px) scale(0.96);
transition:opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
transition-delay:calc(var(--i, 0) * 110ms);
}
.reveal-group.in .stagger{ opacity:1; transform:translateY(0) scale(1); }

.eyebrow{
display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid rgba(233,106,30,.18);
padding:8px 16px; border-radius:999px; font-weight:800; font-size:.78rem; letter-spacing:.05em;
color:var(--saffron-text); box-shadow:0 8px 20px -12px rgba(53,34,85,.25); margin-bottom:22px;
}
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 0 3px rgba(47,191,143,.25); animation:pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot{ 0%,100%{opacity:1;} 50%{opacity:.35;} }
.hero h1{ font-size:clamp(2.3rem, 4.6vw, 3.6rem); line-height:1.08; font-weight:700; color:var(--indigo); }
.hero h1 .grad{
background:linear-gradient(100deg,var(--saffron-dark),var(--pink) 60%, var(--blue-krishna));
-webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p.lead{ margin-top:20px; font-size:1.12rem; line-height:1.65; color:var(--indigo-soft); max-width:520px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.store-btn{
display:flex; align-items:center; gap:12px; background:var(--indigo); color:#fff; padding:12px 20px 12px 16px;
border-radius:16px; box-shadow:0 14px 30px -14px rgba(53,34,85,.55);
transition:transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out);
}
@media (hover:hover) and (pointer:fine){
.store-btn:hover{ transform:translateY(-3px); background:#241a3e; box-shadow:0 18px 34px -12px rgba(53,34,85,.6); }
}
.store-btn:active{ transform:translateY(-1px) scale(0.97); transition-duration:100ms; }
.store-btn svg{ width:26px; height:26px; flex-shrink:0; }
.store-btn .store-text{ line-height:1.1; text-align:left; }
.store-btn .store-text small{ display:block; font-size:.62rem; opacity:.8; font-weight:600; letter-spacing:.04em; }
.store-btn .store-text strong{ font-size:1.02rem; font-weight:700; font-family:'Fredoka',sans-serif; }
.hero-trust{ display:flex; align-items:center; gap:16px; margin-top:34px; }
.avatar-stack{ display:flex; }
.avatar-stack span{
width:36px; height:36px; border-radius:50%; border:3px solid var(--cream);
margin-left:-10px; display:flex; align-items:center; justify-content:center; font-size:1rem;
box-shadow:0 4px 10px -4px rgba(0,0,0,.25);
}
.avatar-stack span:first-child{ margin-left:0; }
.hero-trust .rating{ font-size:.85rem; font-weight:700; color:var(--indigo-soft); }
.hero-trust .rating .stars{ color:var(--gold-text); letter-spacing:2px; margin-right:4px; }

/* Landscape device mockup (video) */
.hero-visual{ position:relative; display:flex; justify-content:center; align-items:center; }
.device-frame{
position:relative; width:460px; max-width:88vw; aspect-ratio:16/9; border-radius:28px;
background:linear-gradient(160deg,#241a3e,#3b2b54);
padding:14px; box-shadow: var(--shadow-soft), 0 0 0 2px rgba(255,255,255,.04) inset;
animation:float-phone 5.5s var(--ease-in-out) infinite;
}
@keyframes float-phone{ 0%,100%{ transform:translateY(0) rotate(-1deg);} 50%{ transform:translateY(-14px) rotate(0.5deg);} }
.device-screen{ position:relative; width:100%; height:100%; border-radius:16px; overflow:hidden; background:#000; }
.device-screen video{ width:100%; height:100%; object-fit:cover; display:block; }
.device-cam{ position:absolute; top:50%; left:6px; transform:translateY(-50%); width:8px; height:8px; border-radius:50%; background:#0e0a1a; box-shadow:inset 0 0 0 2px rgba(255,255,255,.08); z-index:2; }
.float-badge{
position:absolute; display:flex; align-items:center; gap:10px; background:#fff; padding:10px 16px; border-radius:16px;
box-shadow:var(--shadow-soft); font-weight:700; font-size:.82rem; color:var(--indigo); animation:float-badge 4.5s var(--ease-in-out) infinite;
}
.badge-1{ top:14%; left:-8%; animation-delay:.2s; }
.badge-2{ bottom:12%; right:-10%; animation-delay:1s; }
@keyframes float-badge{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }
.badge-icon{ width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.15rem; }
.badge-1 .badge-icon{ background:linear-gradient(135deg,var(--gold),var(--saffron)); }
.badge-2 .badge-icon{ background:linear-gradient(135deg,var(--pink),#c060ff); }
.glow-ring{ position:absolute; width:380px; height:380px; border-radius:50%; background:radial-gradient(circle, rgba(255,201,60,.4), transparent 70%); z-index:-1; filter:blur(6px); }

/* Marquee strip */
.marquee-strip{ background:var(--indigo); overflow:hidden; padding:16px 0; }
.marquee-track{ display:flex; width:max-content; animation:marquee 24s linear infinite; }
.marquee-track span{ color:#fff; font-family:'Fredoka',sans-serif; font-weight:600; font-size:1rem; padding:0 28px; opacity:.85; white-space:nowrap; display:flex; align-items:center; gap:10px; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---------- SECTION HEADS ---------- */
.section{ padding:110px 0; position:relative; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 64px; }
.section-tag{
display:inline-block; font-weight:800; font-size:.76rem; letter-spacing:.14em; text-transform:uppercase;
color:var(--saffron-text); background:rgba(255,138,61,.12); padding:7px 16px; border-radius:999px; margin-bottom:16px;
}
.section-head h2{ font-size:clamp(1.8rem,3.4vw,2.6rem); font-weight:700; color:var(--indigo); line-height:1.2; }
.section-head p{ margin-top:16px; font-size:1.05rem; color:var(--indigo-soft); line-height:1.6; }

/* ---------- FEATURES ---------- */
.features{ background:var(--white); }
.features .wrap{ display:flex; flex-direction:column; }
.feature-row{
display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
padding:52px 0; border-bottom:1px solid rgba(53,34,85,.08);
}
.feature-row:last-child{ border-bottom:none; }
.feature-row.reverse .feature-media{ order:2; }
.feature-row.reverse .feature-copy{ order:1; }
.feature-media{ position:relative; display:flex; justify-content:center; }
.feature-media .frame{
position:relative; width:100%; max-width:400px; border-radius:26px; overflow:hidden;
box-shadow:var(--shadow-soft); border:6px solid #fff; transform:rotate(-1.5deg);
transition:transform 260ms var(--ease-out);
}
.feature-row.reverse .frame{ transform:rotate(1.5deg); }
@media (hover:hover) and (pointer:fine){
.feature-media:hover .frame{ transform:rotate(0deg) scale(1.02); }
}
.feature-media .frame img{ width:100%; height:100%; object-fit:cover; aspect-ratio:16/9.6; }
.feature-icon{
width:60px; height:60px; border-radius:18px; display:flex; align-items:center; justify-content:center;
font-size:1.7rem; margin-bottom:20px; box-shadow:0 10px 24px -10px rgba(53,34,85,.35);
}
.icon-a{ background:linear-gradient(135deg,var(--saffron),var(--gold)); }
.icon-b{ background:linear-gradient(135deg,var(--pink),#c060ff); }
.icon-c{ background:linear-gradient(135deg,var(--blue-krishna),#4fd1c5); }
.icon-d{ background:linear-gradient(135deg,var(--green),#8be36c); }
.feature-copy h3{ font-size:1.7rem; font-weight:700; color:var(--indigo); margin-bottom:14px; }
.feature-copy p{ font-size:1.03rem; color:var(--indigo-soft); line-height:1.7; margin-bottom:20px; }
.feature-copy ul{ display:flex; flex-direction:column; gap:10px; }
.feature-copy ul li{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:.92rem; color:var(--indigo); }
.feature-copy ul li .tick{
width:20px; height:20px; border-radius:50%; background:rgba(47,191,143,.15); color:var(--green);
display:flex; align-items:center; justify-content:center; font-size:.72rem; flex-shrink:0;
}

/* ---------- CTA / QR ---------- */
.cta-section{ position:relative; background:linear-gradient(160deg,var(--indigo) 0%, #2a1d47 55%, #1f1636 100%); color:#fff; overflow:hidden; }
.cta-section .blob-1{ width:320px; height:320px; background:var(--saffron); top:-100px; right:-60px; opacity:.35; }
.cta-section .blob-2{ width:260px; height:260px; background:var(--blue-krishna); bottom:-80px; left:-40px; opacity:.35; }
.cta-inner{ position:relative; z-index:1; display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
.cta-inner .section-tag{ background:rgba(255,201,60,.16); color:var(--gold); }
.cta-inner h2{ color:#fff; font-size:clamp(1.9rem,3.6vw,2.7rem); }
.cta-inner p.lead{ color:rgba(255,255,255,.75); margin-top:16px; font-size:1.05rem; max-width:480px; line-height:1.65; }
.cta-store-row{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.cta-store-row .store-btn{ background:#fff; color:var(--indigo); }
@media (hover:hover) and (pointer:fine){
.cta-store-row .store-btn:hover{ background:#f2eefc; }
}
.qr-cards{ display:flex; gap:22px; flex-wrap:wrap; justify-content:center; }
.qr-card{
background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); backdrop-filter:blur(8px);
border-radius:22px; padding:22px; text-align:center; width:190px; transition:transform 220ms var(--ease-out), background 220ms var(--ease-out);
}
@media (hover:hover) and (pointer:fine){
.qr-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,.1); }
}
.qr-card canvas{ border-radius:12px; background:#fff; padding:10px; width:130px; height:130px; margin:0 auto 14px; }
.qr-card strong{ display:block; font-family:'Fredoka',sans-serif; font-size:.95rem; margin-bottom:4px; }
.qr-card span{ font-size:.78rem; color:rgba(255,255,255,.65); }

/* ---------- FOOTER ---------- */
footer{ background:#1a1330; color:rgba(255,255,255,.75); padding:64px 0 28px; }
.footer-top{ display:grid; grid-template-columns:1.3fr repeat(3,1fr); gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .brand{ color:#fff; margin-bottom:14px; }
.footer-brand p{ font-size:.92rem; line-height:1.6; max-width:280px; color:rgba(255,255,255,.55); }
.footer-initiative{
display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:.82rem; font-weight:700;
color:var(--gold); border-bottom:1px solid rgba(255,201,60,.35); padding-bottom:2px;
transition:color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
@media (hover:hover) and (pointer:fine){
.footer-initiative:hover{ color:#fff; border-color:rgba(255,255,255,.5); }
}
.social-row{ display:flex; gap:10px; margin-top:20px; }
.social-row a{
width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center;
transition:background 200ms var(--ease-out), transform 200ms var(--ease-out);
}
@media (hover:hover) and (pointer:fine){
.social-row a:hover{ background:linear-gradient(135deg,var(--saffron),var(--pink)); transform:translateY(-3px); }
}
.social-row a:active{ transform:scale(0.94); transition-duration:100ms; }
.footer-col h4{ font-family:'Fredoka',sans-serif; color:#fff; font-size:.95rem; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:.9rem; color:rgba(255,255,255,.55); transition:color 180ms var(--ease-out); }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top:26px; font-size:.82rem; color:rgba(255,255,255,.58); }
.footer-bottom .heart{ color:var(--pink); }

/* Reveal on scroll: single-element sections (section headers, hero visual) */
.reveal{
opacity:0;
transform:translateY(24px) scale(0.98);
transition:opacity 750ms var(--ease-out), transform 750ms var(--ease-out);
}
.reveal.in{ opacity:1; transform:translateY(0) scale(1); }

/* Feature cards: media settles in first, the copy's .stagger children cascade in after it */
.reveal-group .feature-media{
opacity:0;
transform:translateY(24px) scale(0.97);
transition:opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-group.in .feature-media{ opacity:1; transform:translateY(0) scale(1); }
.reveal-group .feature-copy .stagger{ transition-delay:calc(140ms + var(--i, 0) * 110ms); }

/* Gallery grid: four photos settle in left to right */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.reveal-group.gallery-grid > *{
opacity:0;
transform:translateY(22px) scale(0.96);
transition:opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-group.gallery-grid > *:nth-child(2){ transition-delay:90ms; }
.reveal-group.gallery-grid > *:nth-child(3){ transition-delay:180ms; }
.reveal-group.gallery-grid > *:nth-child(4){ transition-delay:270ms; }
.reveal-group.gallery-grid.in > *{ opacity:1; transform:translateY(0) scale(1); }

/* Back to top */
.to-top{
position:fixed; right:calc(22px + env(safe-area-inset-right)); bottom:calc(22px + env(safe-area-inset-bottom)); width:48px; height:48px; border-radius:50%;
background:linear-gradient(135deg,var(--cta-grad-1),var(--cta-grad-2)); color:#fff; display:flex; align-items:center; justify-content:center;
box-shadow:var(--shadow-btn); opacity:0; pointer-events:none; transform:translateY(12px) scale(0.9);
transition:opacity 220ms var(--ease-out), transform 220ms var(--ease-out); z-index:90; font-size:1.2rem;
}
.to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0) scale(1); }
.to-top:active{ transform:translateY(0) scale(0.9); transition-duration:100ms; }

@media (max-width:920px){
nav.nav-links{ position:fixed; top:70px; left:0; right:0; background:var(--cream); flex-direction:column; padding:26px; gap:20px;
  box-shadow:0 16px 30px -18px rgba(53,34,85,.3); transform:translateY(-12px); opacity:0; visibility:hidden;
  transition:transform 260ms var(--ease-drawer), opacity 220ms var(--ease-out), visibility 0ms linear 260ms; }
nav.nav-links.open{ transform:translateY(0); opacity:1; visibility:visible; transition:transform 260ms var(--ease-drawer), opacity 220ms var(--ease-out), visibility 0ms; }
nav.nav-links a{ font-size:1.05rem; padding:6px 0; }
.nav-toggle{ display:flex; }
.hero{ padding:128px 0 64px; }
.hero-grid{ grid-template-columns:1fr; gap:40px; }
.hero-visual{ order:-1; margin-bottom:12px; }
.hero-logo-wrap{ margin-bottom:24px; }
.hero-logo{ width:160px; height:160px; border-radius:36px; }
.badge-1{ left:4px; top:10%; }
.badge-2{ right:4px; bottom:8%; }
.float-badge{ padding:8px 12px; font-size:.74rem; gap:6px; }
.badge-icon{ width:28px; height:28px; font-size:.95rem; }
.section{ padding:72px 0; }
.section-head{ margin-bottom:44px; }
.feature-row{ gap:32px; padding:40px 0; }
.feature-row, .feature-row.reverse{ grid-template-columns:1fr; }
.feature-row .feature-media, .feature-row.reverse .feature-media{ order:1; }
.feature-row .feature-copy, .feature-row.reverse .feature-copy{ order:2; }
.gallery-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
.cta-inner{ grid-template-columns:1fr; text-align:center; gap:40px; }
.cta-store-row, .hero-ctas{ justify-content:center; }
.qr-cards{ justify-content:center; }
.footer-top{ grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:640px){
.wrap{ padding:0 18px; }
.nav-inner{ padding:12px 18px; gap:8px; }
.nav-cta{ padding:10px 16px; font-size:.8rem; }
.vedic-link{ padding:5px; gap:0; }
}
@media (max-width:560px){
.footer-top{ grid-template-columns:1fr; }
.footer-brand p{ max-width:none; }
.device-frame{ width:320px; }
.hero-logo{ width:140px; height:140px; border-radius:32px; }
}
@media (max-width:400px){
.gallery-grid{ grid-template-columns:1fr; }
.store-btn{ width:100%; justify-content:center; }
.hero-ctas{ flex-direction:column; }
}

/* Respect users who get motion-sick: keep opacity fades, drop movement */
@media (prefers-reduced-motion: reduce){
html{ scroll-behavior:auto; }
.device-frame, .float-badge, .eyebrow .dot, .marquee-track{ animation:none !important; }
.stagger, .reveal, .reveal-group .feature-media, .reveal-group.gallery-grid > *{ transition-property:opacity; transform:none !important; }
.stagger.in, .reveal-group.in .stagger, .reveal.in, .reveal-group.in .feature-media, .reveal-group.gallery-grid.in > *{ transform:none !important; }
}
.qr-card {
    text-align: center;
}
.qr-card div {
    width:130px;
    height:130px;
    margin:0 auto 15px;
}
.qr-card canvas,
.qr-card img {
    width:130px !important;
    height:130px !important;
    border-radius:12px;
    display:block;
}