/* ===== Design tokens ===== */
:root {
  --bg: #ffffff;
  --bg-tint: #fbfaff;
  --bg-alt: #f4f3fc;
  --ink: #0c1024;
  --muted: #5d6480;
  --line: #e9e8f4;
  --primary: #6d5efc;
  --primary-dark: #4f3fe0;
  --accent: #1fd4e6;
  --fuchsia: #e35ad6;
  --grad: linear-gradient(120deg, #7c5cfc 0%, #5b8bff 45%, #1fd4e6 100%);
  --grad-warm: linear-gradient(120deg, #8b5cf6 0%, #e35ad6 55%, #fb7185 100%);
  --grad-soft: linear-gradient(135deg, #efe9ff 0%, #e3f8fd 100%);
  --grad-text: linear-gradient(110deg, #7c5cfc 0%, #e35ad6 50%, #1fd4e6 100%);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 10px rgba(20, 18, 60, .06);
  --shadow: 0 24px 60px -22px rgba(70, 50, 160, .34);
  --shadow-lg: 0 50px 110px -34px rgba(70, 50, 160, .5);
  --glow: 0 0 0 1px rgba(124, 92, 252, .14), 0 22px 50px -18px rgba(124, 92, 252, .45);
  --container: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg-tint);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* subtle grain for depth */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
h1, h2, h3, h4 { font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif; line-height: 1.08; letter-spacing: -.025em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 10000; }
.skip-link:focus { left: 0; }

.grad-text {
  background: var(--grad-text); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ===== Buttons ===== */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .95rem; padding: 13px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-primary { background: var(--grad); background-size: 160% 160%; color: #fff; box-shadow: 0 14px 34px -10px rgba(109, 94, 252, .7); animation: gradmove 7s ease infinite; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -12px rgba(109, 94, 252, .82); }
.btn-primary:hover::after { left: 130%; }
@keyframes gradmove { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--ink); border-color: var(--line); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 255, .7);
  backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(251, 250, 255, .85); }
.nav { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark { border-radius: 10px; flex: none; box-shadow: 0 6px 16px -6px rgba(109,94,252,.6); }
.brand-name { font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; letter-spacing: -.02em; }
.brand-sub { color: var(--muted); font-weight: 600; }
.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a { position: relative; color: var(--muted); font-weight: 600; font-size: .95rem; transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; border-radius: 2px; background: var(--grad); transition: width .25s var(--ease); }
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }
.nav-cta { margin-left: 4px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 24px; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu a { padding: 12px 4px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 12px; border-bottom: 0; }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 120px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--bg-tint); }
/* animated aurora orbs */
.hero-bg::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 120%;
  background:
    radial-gradient(38% 50% at 18% 22%, rgba(124, 92, 252, .42), transparent 60%),
    radial-gradient(34% 48% at 82% 12%, rgba(31, 212, 230, .40), transparent 60%),
    radial-gradient(40% 55% at 65% 78%, rgba(227, 90, 214, .30), transparent 62%);
  filter: blur(28px); animation: drift 16s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,92,252,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(124,92,252,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 0%, #000, transparent 78%);
          mask-image: radial-gradient(75% 65% at 50% 0%, #000, transparent 78%);
}
@keyframes drift { 0% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-3%,2%,0) scale(1.06); } 100% { transform: translate3d(3%,-2%,0) scale(1); } }

.hero-inner { display: grid; grid-template-columns: 1.06fr .94fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary-dark); background: rgba(255,255,255,.7); padding: 8px 15px; border-radius: 999px; margin-bottom: 22px;
  border: 1px solid rgba(124,92,252,.22); box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(124,92,252,.18); }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); font-weight: 800; margin-bottom: 22px; letter-spacing: -.035em; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.26rem); color: var(--muted); max-width: 552px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 17px; border-radius: 14px; background: var(--ink); color: #fff; transition: transform .25s var(--ease), box-shadow .25s; }
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.store-badge svg { color: #fff; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 700; font-size: .95rem; }
.store-badge small { font-size: .62rem; font-weight: 500; opacity: .75; text-transform: uppercase; letter-spacing: .05em; }

/* Hero visual / phone */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: var(--grad); filter: blur(70px); opacity: .35; z-index: -1; }
.phone {
  position: relative; width: 280px; height: 572px; border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #20245c, #0c1024); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08); animation: float 6s ease-in-out infinite;
}
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 124px; height: 26px; background: #0c1024; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; padding: 22px 18px; background: linear-gradient(180deg, #f3f1ff, #e7e6ff); display: flex; flex-direction: column; gap: 14px; }
.phone-status { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .05em; }
.phone-hello { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.18rem; }
.phone-card { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 18px; }
.phone-card strong { display: block; font-size: .9rem; }
.phone-card small { color: var(--muted); font-size: .76rem; }
.pc-ring { flex: none; width: 52px; height: 52px; border-radius: 50%; background: conic-gradient(var(--primary) 0 65%, #dcd9f6 65% 100%); display: grid; place-items: center; font-size: .65rem; font-weight: 800; color: var(--primary-dark); }
.pc-ring span { background: #fff; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; }
.phone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 10px; margin-top: 4px; }
.pg-app { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .66rem; font-weight: 600; color: #3a4163; }
.pg-ico { width: 48px; height: 48px; border-radius: 15px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.pg-app:hover .pg-ico { transform: translateY(-4px) scale(1.06); }
.i1 { background: linear-gradient(135deg, #7c5cfc, #a855f7); }
.i2 { background: linear-gradient(135deg, #1fd4e6, #0ea5e9); }
.i3 { background: linear-gradient(135deg, #fbbf24, #fb7185); }
.i4 { background: linear-gradient(135deg, #34d399, #059669); }
.i5 { background: linear-gradient(135deg, #f472b6, #e35ad6); }
.i6 { background: linear-gradient(135deg, #60a5fa, #7c5cfc); }

.glass { background: rgba(255, 255, 255, .72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, .85); box-shadow: var(--shadow-sm); }
.float-card { position: absolute; padding: 11px 17px; border-radius: 16px; font-weight: 700; font-size: .82rem; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow); }
.fc1 { top: 56px; left: -14px; animation: float 5s ease-in-out infinite; }
.fc2 { top: 234px; right: -22px; animation: float 6.5s ease-in-out infinite .4s; }
.fc3 { bottom: 66px; left: -26px; animation: float 5.5s ease-in-out infinite .8s; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot.ok { background: #10b981; box-shadow: 0 0 0 4px rgba(16, 185, 129, .18); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

/* ===== Stats ===== */
.stats { position: relative; color: #fff; padding: 52px 0; overflow: hidden; background: linear-gradient(120deg, #4f3fe0, #7c5cfc 40%, #1fd4e6); background-size: 180% 180%; animation: gradmove 12s ease infinite; }
.stats::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% -10%, rgba(255,255,255,.18), transparent 60%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num, .stat-suffix { font-family: "Space Grotesk", sans-serif; font-size: clamp(2.1rem, 4.2vw, 3rem); font-weight: 700; display: inline; }
.stat-num + .stat-suffix { color: #d7fbff; }
.stat > p { color: rgba(255,255,255,.8); font-size: .92rem; margin-top: 6px; }

/* ===== Sections ===== */
.section { padding: clamp(68px, 9vw, 116px) 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 58px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; margin-bottom: 14px; letter-spacing: -.03em; }
.section-sub { color: var(--muted); font-size: 1.1rem; }
.section-sub.left { max-width: 440px; }
.eyebrow.center { margin-bottom: 18px; }

/* Apps */
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.app-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; overflow: hidden; }
.app-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.app-card:hover { transform: translateY(-8px); box-shadow: var(--glow); border-color: transparent; }
.app-card:hover::before { transform: scaleX(1); }
.app-icon { width: 56px; height: 56px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.app-card:hover .app-icon { transform: scale(1.08) rotate(-4deg); }
.grad-1 { background: linear-gradient(135deg, #7c5cfc, #a855f7); }
.grad-2 { background: linear-gradient(135deg, #1fd4e6, #0ea5e9); }
.grad-3 { background: linear-gradient(135deg, #fbbf24, #fb7185); }
.grad-4 { background: linear-gradient(135deg, #34d399, #059669); }
.grad-5 { background: linear-gradient(135deg, #f472b6, #e35ad6); }
.grad-6 { background: linear-gradient(135deg, #60a5fa, #7c5cfc); }
.app-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.app-card p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.app-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--primary-dark); background: var(--grad-soft); padding: 6px 13px; border-radius: 999px; }
.apps-note { text-align: center; color: var(--muted); margin-top: 42px; font-weight: 600; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: transform .35s var(--ease), box-shadow .35s; overflow: hidden; }
.feature::after { content: ""; position: absolute; width: 140px; height: 140px; right: -50px; top: -50px; border-radius: 50%; background: var(--grad-soft); opacity: 0; transition: opacity .4s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.feature:hover::after { opacity: 1; }
.feature-ico { position: relative; font-size: 1.7rem; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--grad-soft); margin-bottom: 16px; }
.feature h3 { font-size: 1.22rem; margin-bottom: 8px; position: relative; }
.feature p { color: var(--muted); font-size: .96rem; position: relative; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; letter-spacing: -.03em; }
.about-copy p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-copy strong { color: var(--ink); }
.timeline { margin-top: 32px; display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 18px; padding: 16px 0; border-left: 2px solid var(--line); padding-left: 24px; position: relative; }
.tl-item::before { content: ""; position: absolute; left: -8px; top: 22px; width: 14px; height: 14px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(124,92,252,.15); }
.tl-year { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--primary-dark); flex: none; width: 52px; }
.tl-item p { color: var(--muted); margin: 0; }
.about-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 98px; }
.value-card { border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden; }
.value-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); }
.value-card h3 { margin-bottom: 16px; font-size: 1.32rem; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.value-list li { padding-left: 30px; position: relative; color: var(--muted); font-size: .96rem; }
.value-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-soft); color: var(--primary-dark); font-weight: 800; font-size: .7rem; }
.value-list strong { color: var(--ink); }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.mini-stats div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 8px; transition: transform .3s var(--ease), box-shadow .3s; }
.mini-stats div:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.mini-stats strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.55rem; color: var(--primary-dark); }
.mini-stats span { font-size: .8rem; color: var(--muted); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .35s var(--ease), box-shadow .35s; }
.review:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.review blockquote { font-size: 1.04rem; margin-bottom: 22px; color: #2a2f4c; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review figcaption span:last-child { display: flex; flex-direction: column; }
.review figcaption small { color: var(--muted); font-size: .8rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; flex: none; }
.a1 { background: linear-gradient(135deg, #7c5cfc, #a855f7); }
.a2 { background: linear-gradient(135deg, #1fd4e6, #0ea5e9); }
.a3 { background: linear-gradient(135deg, #f472b6, #e35ad6); }

/* CTA */
.cta { padding: clamp(60px, 8vw, 96px) 0; }
.cta-inner { background: var(--grad-warm); background-size: 180% 180%; animation: gradmove 10s ease infinite; color: #fff; border-radius: 32px; padding: clamp(44px, 6vw, 72px); text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 80% 0%, rgba(255,255,255,.26), transparent 60%); }
.cta-inner::after { content: ""; position: absolute; width: 300px; height: 300px; left: -80px; bottom: -120px; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta-inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 14px; position: relative; letter-spacing: -.03em; }
.cta-inner p { max-width: 580px; margin: 0 auto 28px; font-size: 1.1rem; opacity: .94; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.contact-grid h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; letter-spacing: -.03em; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 18px; text-align: center; display: flex; flex-direction: column; gap: 6px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
a.contact-card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: transparent; }
.cc-ico { font-size: 1.5rem; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--grad-soft); margin: 0 auto 6px; }
.contact-card strong { font-size: 1.05rem; }
.contact-card span:last-child { color: var(--muted); font-size: .9rem; word-break: break-word; }

/* Footer */
.site-footer { background: #080b1c; color: #c5cbe3; padding: 68px 0 28px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 80%; height: 100%; background: radial-gradient(50% 50% at 50% 50%, rgba(124,92,252,.22), transparent 70%); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #8d96bd; font-size: .92rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; font-family: "Plus Jakarta Sans", sans-serif; }
.footer-col a { display: block; color: #9aa3c7; font-size: .92rem; padding: 6px 0; transition: color .2s, transform .2s; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { position: relative; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { font-size: .85rem; color: #7d86ab; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; font-weight: 700; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Legal pages ===== */
.legal { padding: clamp(48px, 7vw, 90px) 0; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal p, .legal li { color: #33395a; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--primary-dark); font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-dark); font-weight: 700; margin-bottom: 28px; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }
  .apps-grid, .features-grid, .reviews-grid, .contact-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
