/* BrandPro 360 marketing/legal site — matches the app's dark theme
   (bg #0A0C10, surface #10131A, brand blue #3384FC, light blue #52CFFE) */

:root {
  --bg: #0A0C10;
  --surface: #10131A;
  --surface-2: #141821;
  --surface-3: #1A1E27;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-faint: rgba(255, 255, 255, 0.42);
  --blue: #3384FC;
  --light-blue: #52CFFE;
  --purple: #C38FFF;
  --red: #FF525D;
  --link: #52CFFE;
  --radius: 20px;
}

[data-theme="light"] {
  --bg: #F6F8FB;
  --surface: #FFFFFF;
  --surface-2: #FFFFFF;
  --surface-3: #EEF2F8;
  --border: rgba(13, 27, 52, 0.09);
  --border-strong: rgba(13, 27, 52, 0.16);
  --text: #0C1322;
  --text-dim: rgba(12, 19, 34, 0.66);
  --text-faint: rgba(12, 19, 34, 0.46);
  --link: #1B6FE8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

::selection { background: rgba(51, 132, 252, 0.4); }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span { font-weight: 700; font-size: 16.5px; letter-spacing: -0.2px; white-space: nowrap; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color 0.2s; white-space: nowrap; }
nav a:hover { color: var(--text); }
nav a.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #2563EB);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(51, 132, 252, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
nav a.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(51, 132, 252, 0.5); }
@media (max-width: 560px) {
  nav { gap: 14px; }
  nav a { font-size: 13px; }
  nav a.nav-cta, nav a.nav-how { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background:
    radial-gradient(ellipse 600px 420px at 38% 30%, rgba(51, 132, 252, 0.22), transparent 65%),
    radial-gradient(ellipse 520px 380px at 68% 45%, rgba(82, 207, 254, 0.13), transparent 65%),
    radial-gradient(ellipse 420px 320px at 55% 70%, rgba(195, 143, 255, 0.08), transparent 65%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
}
.hero-copy { max-width: 560px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(82, 207, 254, 0.35);
  background: rgba(82, 207, 254, 0.08);
  color: var(--light-blue);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 26px;
}
.pill .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--light-blue);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(82, 207, 254, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(82, 207, 254, 0); }
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(95deg, var(--blue) 10%, var(--light-blue) 60%, var(--purple) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 30px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), #2563EB);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(51, 132, 252, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(51, 132, 252, 0.55); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.2); }
.hero-trust { color: var(--text-faint); font-size: 13.5px; }
.hero-trust strong { color: var(--text-dim); font-weight: 600; }

/* ---------- Phone mockup ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: -10% -16%;
  background: radial-gradient(ellipse at 50% 45%, rgba(51, 132, 252, 0.22), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}
.phone {
  position: relative;
  width: 296px;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2f3a, #14171e 40%, #1d212b);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 8px 28px rgba(51, 132, 252, 0.12);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; }
  .pill .pulse { animation: none; }
}
.screen {
  background: #0A0C10;
  color: #FFFFFF;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.notch {
  width: 96px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
}
.app-bar {
  display: flex; align-items: center; gap: 9px;
  padding: 4px 18px 12px;
}
.app-bar img { width: 26px; height: 26px; border-radius: 7px; }
.app-bar .t { font-size: 12.5px; font-weight: 700; }
.app-bar .s { font-size: 10px; color: var(--light-blue); font-weight: 600; }
.post-card {
  margin: 0 14px 14px;
  background: #141821;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
}
.post-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 82, 93, 0.55), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(82, 207, 254, 0.4), transparent 46%),
    linear-gradient(150deg, #1b3f8f 0%, #2a6ae0 48%, #163070 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 18px;
}
.post-art .badge-day {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.post-art .headline {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.post-art .brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 9.5px;
  font-weight: 700;
}
.post-art .brand-chip img { width: 13px; height: 13px; border-radius: 4px; }
.post-meta { padding: 12px 14px 14px; }
.cap-line { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); margin-bottom: 6px; }
.cap-line.w70 { width: 70%; }
.tags { display: flex; gap: 5px; margin: 9px 0 12px; flex-wrap: wrap; }
.tag {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--light-blue);
  background: rgba(82, 207, 254, 0.1);
  border: 1px solid rgba(82, 207, 254, 0.25);
  border-radius: 999px;
  padding: 2.5px 8px;
}
.post-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--blue), #2563EB);
  border-radius: 11px;
  padding: 10px;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(51, 132, 252, 0.4);
}
.home-dots { display: flex; justify-content: center; gap: 5px; padding: 2px 0 12px; }
.home-dots i { width: 4.5px; height: 4.5px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.home-dots i.on { background: var(--light-blue); width: 14px; border-radius: 3px; }

/* floating chips around the phone */
.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  background: rgba(20, 24, 33, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.float-chip .ico { font-size: 15px; }
.float-chip.c1 { top: 12%; left: -8%; animation: floaty 8s 0.6s ease-in-out infinite; }
.float-chip.c2 { top: 44%; right: -12%; animation: floaty 9s 1.4s ease-in-out infinite; }
.float-chip.c3 { bottom: 9%; left: -4%; animation: floaty 7.5s 0.2s ease-in-out infinite; }
@media (max-width: 1020px) {
  .float-chip.c1 { left: 2%; }
  .float-chip.c2 { right: 0; }
  .float-chip.c3 { left: 6%; }
}
@media (max-width: 560px) {
  .float-chip { display: none; }
}

@media (max-width: 880px) {
  .hero { padding: 60px 0 50px; }
  .hero .container { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}

/* ---------- Logo strip / audience ---------- */
.audience {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.015);
}
.audience .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
}
.audience .label { color: var(--text-faint); font-size: 13px; margin-right: 8px; font-weight: 500; }
.aud-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 16px;
}

/* ---------- Home slider ---------- */
.showcase { padding: 72px 0 0; }
.slider { position: relative; }
.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 6px 24px rgba(51, 132, 252, 0.1);
  scrollbar-width: none;
}
.slides::-webkit-scrollbar { display: none; }
.slides img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: block;
}
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.slider-dots button {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.slider-dots button.on { background: var(--light-blue); width: 26px; }
@media (max-width: 560px) {
  .showcase { padding-top: 48px; }
  .slides { border-radius: 16px; }
}

/* ---------- Sections ---------- */
section.block { padding: 88px 0; }
.kicker {
  display: block;
  text-align: center;
  color: var(--light-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2.section-title {
  text-align: center;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  max-width: 620px;
  margin: 0 auto 14px;
}
p.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 540px;
  margin: 0 auto 56px;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  transition: transform 0.25s, border-color 0.25s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(51, 132, 252, 0.35); }
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(51, 132, 252, 0.22), rgba(82, 207, 254, 0.12));
  border: 1px solid rgba(51, 132, 252, 0.4);
  color: var(--light-blue);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
}
.step h3 { font-size: 18.5px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 14.5px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 207, 254, 0.3);
  background: var(--surface-2);
}
.card .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  font-size: 21px;
  border-radius: 14px;
  background: rgba(51, 132, 252, 0.12);
  border: 1px solid rgba(51, 132, 252, 0.25);
  margin-bottom: 18px;
}
.card h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 7px; }
.card p { color: var(--text-dim); font-size: 14px; }
@media (max-width: 880px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* ---------- Highlight banner ---------- */
.banner {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(51, 132, 252, 0.3);
  background:
    radial-gradient(ellipse 480px 280px at 18% 0%, rgba(51, 132, 252, 0.28), transparent 65%),
    radial-gradient(ellipse 420px 260px at 88% 110%, rgba(82, 207, 254, 0.16), transparent 60%),
    linear-gradient(160deg, #11182a, #0c1018);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
}
.banner h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.banner h2 .accent {
  background: linear-gradient(95deg, var(--light-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.banner p { color: rgba(255, 255, 255, 0.62); font-size: 17px; max-width: 520px; margin: 0 auto 32px; }
@media (max-width: 600px) { .banner { padding: 48px 24px; } }

/* ---------- Download / CTA ---------- */
.store-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 12px 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
.store-badge:hover { border-color: rgba(255, 255, 255, 0.28); transform: translateY(-2px); }
.store-badge .glyph { font-size: 26px; line-height: 1; }
.store-badge .lines { text-align: left; line-height: 1.25; }
.store-badge .small { display: block; font-size: 10.5px; color: var(--text-faint); letter-spacing: 0.4px; text-transform: uppercase; font-weight: 600; }
.store-badge .big { display: block; font-size: 16.5px; font-weight: 700; letter-spacing: -0.2px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Legal pages ---------- */
main.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 90px; }
main.legal h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 6px; }
main.legal p.updated { color: var(--text-faint); font-size: 14px; margin-bottom: 38px; }
main.legal h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin: 38px 0 10px; }
main.legal p, main.legal li { color: var(--text-dim); font-size: 15.5px; margin-bottom: 10px; }
main.legal ul { padding-left: 22px; margin-bottom: 12px; }
main.legal a { color: var(--link); }
main.legal strong { color: var(--text); }
main.legal .note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 56px;
  color: var(--text-faint);
  font-size: 13.5px;
  background: rgba(255, 255, 255, 0.012);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  justify-content: space-between;
}
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-brand img { width: 26px; height: 26px; border-radius: 7px; }
.foot-brand span { color: var(--text-dim); font-weight: 700; font-size: 14.5px; }
footer a { color: var(--text-faint); text-decoration: none; margin-right: 18px; transition: color 0.2s; }
footer a:hover { color: var(--text); }
footer a:last-child { margin-right: 0; }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.theme-toggle:hover { color: var(--text); background: rgba(127, 127, 127, 0.08); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }
[data-theme="light"] .theme-toggle .ic-moon { display: block; }

/* ---------- Light theme overrides ---------- */
[data-theme="light"] header {
  background: rgba(246, 248, 251, 0.8);
  border-bottom-color: var(--border);
}
[data-theme="light"] .hero::before {
  background:
    radial-gradient(ellipse 600px 420px at 38% 30%, rgba(51, 132, 252, 0.13), transparent 65%),
    radial-gradient(ellipse 520px 380px at 68% 45%, rgba(82, 207, 254, 0.1), transparent 65%),
    radial-gradient(ellipse 420px 320px at 55% 70%, rgba(195, 143, 255, 0.07), transparent 65%);
}
[data-theme="light"] .pill {
  color: #1B6FE8;
  border-color: rgba(51, 132, 252, 0.35);
  background: rgba(51, 132, 252, 0.07);
}
[data-theme="light"] .pill .pulse { background: #1B6FE8; }
@keyframes pulseLight {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27, 111, 232, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(27, 111, 232, 0); }
}
[data-theme="light"] .pill .pulse { animation-name: pulseLight; }
[data-theme="light"] .hero h1 .accent {
  background: linear-gradient(95deg, #1B6FE8 10%, #3384FC 55%, #8A4DE8 110%);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="light"] .btn-ghost { background: rgba(12, 19, 34, 0.03); }
[data-theme="light"] .btn-ghost:hover { background: rgba(12, 19, 34, 0.07); border-color: rgba(12, 19, 34, 0.25); }
[data-theme="light"] .phone-wrap::before {
  background: radial-gradient(ellipse at 50% 45%, rgba(51, 132, 252, 0.16), transparent 62%);
}
[data-theme="light"] .phone {
  box-shadow:
    0 0 0 1px rgba(12, 19, 34, 0.08),
    0 30px 80px rgba(13, 27, 52, 0.25),
    0 8px 28px rgba(51, 132, 252, 0.12);
}
[data-theme="light"] .audience { background: rgba(12, 19, 34, 0.015); }
[data-theme="light"] .kicker { color: #1B6FE8; }
[data-theme="light"] .step .num { color: #1B6FE8; }
[data-theme="light"] .step:hover,
[data-theme="light"] .card:hover { border-color: rgba(51, 132, 252, 0.45); }
[data-theme="light"] .slides {
  box-shadow: 0 24px 60px rgba(13, 27, 52, 0.18), 0 6px 24px rgba(51, 132, 252, 0.1);
}
[data-theme="light"] .slider-dots button { background: rgba(12, 19, 34, 0.18); }
[data-theme="light"] .slider-dots button.on { background: var(--blue); }
[data-theme="light"] .store-badge:hover { border-color: rgba(12, 19, 34, 0.3); }
[data-theme="light"] footer { background: rgba(12, 19, 34, 0.018); }
