/* ═══════════════════════════════════════════════════════════════════
   Wipeify — style.css          Savera Continental Ltd.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 0. Tokens ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --black:      #000000;
  --bg:         #080A0C;
  --bg-2:       #0D1017;
  --bg-card:    #111620;
  --bg-card-2:  #161C2A;
  --border:     rgba(255,255,255,.07);
  --border-hi:  rgba(26,127,255,.3);

  --blue:       #1A7FFF;
  --blue-lt:    #4D9FFF;
  --blue-dim:   rgba(26,127,255,.12);
  --blue-ring:  rgba(26,127,255,.25);
  --blue-glow:  rgba(26,127,255,.18);

  --white:      #FFFFFF;
  --grey-1:     #C8D0DC;
  --grey-2:     #8A95A3;
  --grey-3:     #4A5260;

  /* Shadows */
  --sh-sm:  0 2px 12px rgba(0,0,0,.4);
  --sh-md:  0 8px 32px rgba(0,0,0,.5);
  --sh-lg:  0 20px 60px rgba(0,0,0,.6);
  --sh-blue: 0 0 40px rgba(26,127,255,.25);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7.5rem;

  /* Radii */
  --r-xs:   6px;
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-pill: 9999px;

  /* Type */
  --display: 'Syne', system-ui, sans-serif;
  --body:    'DM Sans', system-ui, sans-serif;

  /* Motion */
  --ease:   cubic-bezier(.4,0,.2,1);
  --ease-o: cubic-bezier(0,0,.2,1);
  --t-xs:   0.14s;
  --t-sm:   0.22s;
  --t-md:   0.36s;
  --t-lg:   0.55s;
}

/* ─── 1. Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
ul  { list-style: none; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: var(--r-xs); }

/* ─── 2. Noise texture overlay ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* ─── 3. Utility ────────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.03rem;
  line-height: 1.78;
  color: var(--grey-2);
  max-width: 540px;
  margin-top: 1rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-lg) var(--ease), transform var(--t-lg) var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── 4. Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-sm) var(--ease), transform var(--t-xs) var(--ease), box-shadow var(--t-sm) var(--ease);
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 0.8rem 2rem;
  box-shadow: 0 0 24px var(--blue-glow);
}
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 0 36px var(--blue-glow); }

.btn-outline {
  background: transparent;
  color: var(--grey-1);
  padding: 0.8rem 1.75rem;
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue-ring); color: var(--white); }

/* ─── 5. Header ─────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--sp-md);
  transition: background var(--t-md) var(--ease), border-color var(--t-md) var(--ease);
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(8,10,12,.9);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: var(--border);
}

.header-logo { display: inline-flex; align-items: center; gap: 0.65rem; }
.header-logo-img { border-radius: 10px; }
.header-logo-name {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-2);
  padding: 0.38rem 0.85rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.01em;
  transition: color var(--t-sm) var(--ease), background var(--t-sm) var(--ease);
}
nav a:hover, nav a.nav-active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  margin-left: 0.6rem;
  box-shadow: 0 0 18px var(--blue-glow);
}
.nav-cta:hover { background: var(--blue-lt); color: var(--white); box-shadow: 0 0 28px var(--blue-glow); }

/* ─── 6. Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
}
.footer-inner { max-width: 1200px; margin-inline: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-md);
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.footer-brand-logo img { border-radius: 9px; }
.footer-brand-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.72; color: var(--grey-3); max-width: 280px; }
.footer-col h4 {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a { font-size: 0.84rem; color: var(--grey-3); transition: color var(--t-sm) var(--ease); }
.footer-col li a:hover { color: var(--blue-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--grey-3);
}
.footer-tagline { font-style: italic; }

/* ─── 7. Hero ───────────────────────────────────────────────────── */
#home {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 110px 90px;
  padding-inline: var(--sp-md);
  position: relative;
  overflow: hidden;
}

/* Glow orbs */
#home::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,127,255,.12) 0%, transparent 60%);
  top: -250px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
  animation: orb-hero 12s ease-in-out infinite;
}
#home::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,127,255,.07) 0%, transparent 65%);
  bottom: -150px; left: -80px;
  border-radius: 50%;
  pointer-events: none;
  animation: orb-hero 16s ease-in-out infinite reverse;
}
@keyframes orb-hero {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.08); }
}

/* Horizontal scan line (decorative) */
.hero-scan {
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-ring), transparent);
  top: 30%;
  pointer-events: none;
  opacity: 0.4;
  animation: scan 8s ease-in-out infinite;
}
@keyframes scan {
  0%,100% { top: 25%; opacity: 0.2; }
  50%      { top: 70%; opacity: 0.6; }
}

.hero-inner {
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-dim);
  border: 1px solid var(--blue-ring);
  border-radius: var(--r-pill);
  padding: 0.28rem 0.9rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-tag-dot {
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--blue);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; box-shadow: 0 0 6px var(--blue); }
  50%      { opacity: 0.5; box-shadow: 0 0 14px var(--blue); }
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: -0.03em;
}
.hero-h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
}

.hero-p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--grey-2);
  max-width: 420px;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero stats — HIDDEN. To re-enable: change display:none to display:flex */
.hero-stats { display: none; }
.hero-stats-inner {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label { font-size: 0.73rem; color: var(--grey-2); margin-top: 0.28rem; }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-screenshot {
  width: 280px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.7)) drop-shadow(0 0 40px rgba(26,127,255,.15));
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: 0.6rem 1rem;
  box-shadow: var(--sh-md), 0 0 20px var(--blue-glow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.hero-badge-value { color: var(--blue-lt); }
.hero-badge-left  { left: -50px; top: 28%; animation: badge-l 6s ease-in-out infinite; }
.hero-badge-right { right: -50px; bottom: 24%; animation: badge-r 7.5s ease-in-out infinite; }
@keyframes badge-l { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes badge-r { 0%,100%{transform:translateY(0)} 50%{transform:translateY(9px)} }

/* ─── 8. Features ───────────────────────────────────────────────── */
#features {
  padding-block: var(--sp-xl);
  padding-inline: var(--sp-md);
  position: relative;
}

/* Subtle grid pattern */
#features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.features-header .section-label { justify-content: center; }
.features-header .section-label::before { display: none; }
.features-header .section-sub { margin-inline: auto; }

.features-grid {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

/* Card base */
.feature-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-md) var(--ease), box-shadow var(--t-md) var(--ease), border-color var(--t-md) var(--ease);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--blue-dim), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-md) var(--ease);
  pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg), 0 0 30px var(--blue-glow); border-color: var(--border-hi); }
.feature-card:hover::after { opacity: 1; }

/* Featured PCM card */
.feature-card.featured {
  grid-column: span 3;
  background: linear-gradient(135deg, #0D1524 0%, #0A1020 50%, #060C18 100%);
  border-color: var(--blue-ring);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
}
.feature-card.featured .feature-text { }
.feature-card.featured::after {
  background: radial-gradient(ellipse at top right, rgba(26,127,255,.18), transparent 60%);
  opacity: 1;
}

/* PCM Waveform visual */
.pcm-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pcm-wave {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: rgba(0,0,0,.3);
  border-radius: var(--r-sm);
  border: 1px solid rgba(26,127,255,.15);
}
.pcm-wave-label {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grey-2);
  width: 90px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.pcm-wave-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  height: 32px;
}
.pcm-bar {
  flex: 1;
  border-radius: 2px;
  animation: bar-wave 1.4s ease-in-out infinite;
}
.pcm-wave.sine .pcm-bar   { background: var(--blue); }
.pcm-wave.mp3  .pcm-bar   { background: var(--grey-3); }

.pcm-bar:nth-child(1)  { animation-delay: 0.0s; }
.pcm-bar:nth-child(2)  { animation-delay: 0.05s; }
.pcm-bar:nth-child(3)  { animation-delay: 0.1s; }
.pcm-bar:nth-child(4)  { animation-delay: 0.15s; }
.pcm-bar:nth-child(5)  { animation-delay: 0.2s; }
.pcm-bar:nth-child(6)  { animation-delay: 0.25s; }
.pcm-bar:nth-child(7)  { animation-delay: 0.3s; }
.pcm-bar:nth-child(8)  { animation-delay: 0.35s; }
.pcm-bar:nth-child(9)  { animation-delay: 0.4s; }
.pcm-bar:nth-child(10) { animation-delay: 0.45s; }
.pcm-bar:nth-child(11) { animation-delay: 0.5s; }
.pcm-bar:nth-child(12) { animation-delay: 0.55s; }
.pcm-bar:nth-child(13) { animation-delay: 0.6s; }
.pcm-bar:nth-child(14) { animation-delay: 0.65s; }
.pcm-bar:nth-child(15) { animation-delay: 0.7s; }
.pcm-bar:nth-child(16) { animation-delay: 0.75s; }

.pcm-wave.sine .pcm-bar { animation-name: bar-wave-sine; }
.pcm-wave.mp3  .pcm-bar { animation-name: bar-wave-mp3;  animation-duration: 0.9s; }

@keyframes bar-wave-sine {
  0%,100% { height: 60%; }
  50%      { height: 100%; }
}
@keyframes bar-wave-mp3 {
  0%,100% { height: 40%; }
  30%      { height: 70%; }
  60%      { height: 20%; }
}

.pcm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue);
  border-radius: var(--r-pill);
  padding: 0.2rem 0.7rem;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.feature-tag-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(26,127,255,.1);
  border: 1px solid var(--blue-ring);
  border-radius: var(--r-pill);
  padding: 0.25rem 0.7rem;
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 600;
  color: var(--blue-lt);
  letter-spacing: 0.04em;
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  border: 1.5px solid var(--blue-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
}
.feature-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.feature-card p { font-size: 0.88rem; line-height: 1.74; color: var(--grey-2); }
.feature-card.featured h3 { font-size: 1.85rem; font-weight: 800; margin-bottom: 0.8rem; letter-spacing: -0.03em; }

/* ─── 9. How It Works ───────────────────────────────────────────── */
#how-it-works {
  padding-block: var(--sp-xl);
  padding-inline: var(--sp-md);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
#how-it-works::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,127,255,.07) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.how-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.how-content .section-sub { margin-bottom: 3rem; }

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 1.4rem;
  position: relative;
  padding-bottom: 2rem;
}
.step:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1.5px solid var(--blue-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}
.step-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, var(--blue-ring) 0%, transparent 100%);
  margin-top: 0.5rem;
  min-height: 32px;
}
.step:last-child .step-line { display: none; }
.step-content { padding-top: 0.35rem; }
.step-content h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.step-content p { font-size: 0.87rem; line-height: 1.7; color: var(--grey-2); }

/* Visual side */
.how-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.how-screenshot {
  width: 260px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.7)) drop-shadow(0 0 30px rgba(26,127,255,.12));
  transition: transform var(--t-md) var(--ease);
}
.how-screenshot:hover { transform: translateY(-6px); }

/* ─── 10. Download ──────────────────────────────────────────────── */
#download {
  padding-block: var(--sp-xl);
  padding-inline: var(--sp-md);
  position: relative;
  overflow: hidden;
}
#download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  pointer-events: none;
}
#download::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,127,255,.1) 0%, transparent 60%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.download-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.download-content .section-title { margin-bottom: 1.1rem; }
.download-content .section-sub   { margin-bottom: 2.4rem; }

.download-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.store-btn {
  display: inline-flex;
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: transform var(--t-sm) var(--ease), box-shadow var(--t-sm) var(--ease);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.info-chip {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.2rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.8rem;
  color: var(--grey-2);
  line-height: 1.5;
}
.info-chip strong { color: var(--white); }
.info-chip-icon   { font-size: 1.5rem; flex-shrink: 0; }

.dl-visual {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: center;
}
.dl-shot {
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.7)) drop-shadow(0 0 24px rgba(26,127,255,.1));
  transition: transform var(--t-md) var(--ease);
}
.dl-shot-a { width: 210px; }
.dl-shot-b { width: 170px; transform: translateY(30px); }
.dl-shot-a:hover { transform: translateY(-8px); }
.dl-shot-b:hover { transform: translateY(22px); }

/* ─── 11. Legal Pages ───────────────────────────────────────────── */
.legal-hero {
  padding-block: 138px 64px;
  padding-inline: var(--sp-md);
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,127,255,.08) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.legal-hero .section-label { justify-content: center; margin-bottom: 0.9rem; }
.legal-hero .section-label::before { display: none; }
.legal-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.9rem;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}
.legal-hero .dates { font-size: 0.82rem; color: var(--grey-2); position: relative; z-index: 1; }
.legal-hero .dates strong { color: var(--grey-1); }

.legal-wrap {
  max-width: 780px;
  margin-inline: auto;
  padding: 4rem var(--sp-md) var(--sp-xl);
}
.legal-intro {
  background: var(--blue-dim);
  border: 1.5px solid var(--blue-ring);
  border-radius: var(--r-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.75rem;
}
.legal-intro p { font-size: 0.9rem; line-height: 1.8; color: var(--grey-1); }
.legal-intro p + p { margin-top: 0.6rem; }
.legal-intro strong { color: var(--white); }

.legal-section {
  padding-bottom: 2.25rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h2 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  letter-spacing: -0.01em;
}
.section-num {
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid var(--blue-ring);
  border-radius: var(--r-pill);
  padding: 0.12rem 0.5rem;
  flex-shrink: 0;
  line-height: 1.7;
}
.legal-section p, .legal-section li {
  font-size: 0.89rem;
  line-height: 1.84;
  color: var(--grey-2);
  margin-bottom: 0.55rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--grey-1); }
.legal-section em     { font-style: italic; }
.legal-section a { color: var(--blue-lt); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--white); }
.legal-section ul, .legal-section ol {
  list-style: none;
  padding: 0;
  margin-block: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-section li { padding-left: 1.5rem; position: relative; margin-bottom: 0; }
.legal-section li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
}
.legal-caps {
  font-size: 0.78rem !important;
  line-height: 1.68 !important;
  font-weight: 600;
  color: var(--grey-1) !important;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 0 !important;
  letter-spacing: 0.01em;
}
.legal-contact-block {
  background: var(--bg-card);
  border: 1.5px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: 1.65rem 2rem;
  margin-top: 0.8rem;
}
.legal-contact-block p { color: var(--grey-2) !important; font-size: 0.86rem !important; margin-bottom: 0.35rem !important; }
.legal-contact-block strong { color: var(--white); }
.legal-contact-block a { color: var(--blue-lt); text-decoration: none; }
.legal-contact-block a:hover { text-decoration: underline; }

/* ─── 12. Responsive ────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .hero-inner   { gap: 3rem; }
  .download-inner { gap: 3.5rem; }
  .how-inner    { gap: 3.5rem; }
}

@media (max-width: 860px) {
  nav { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-p      { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .how-inner { grid-template-columns: 1fr; }
  .how-visual { display: none; }

  .download-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .download-btns  { justify-content: center; }
  .info-chip      { margin-inline: auto; }
  .dl-visual      { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
}

@media (max-width: 600px) {
  :root { --sp-xl: 5rem; --sp-lg: 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .footer-tagline { display: none; }
  .legal-section h2 { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-in { opacity: 1; transform: none; }
}
