
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   AdventCircle Marketing — Premium Futuristic Faith-Tech Theme
   Standalone stylesheet (do NOT pair with styles.css)
   ============================================================ */

:root {
  --cream: #F0EBE3;
  --cream-dark: #e8e2d8;
  --navy: #0F1520;
  --navy-mid: #161b28;
  --blue: #1E88E5;
  --blue-soft: rgba(30, 136, 229, 0.15);
  --orange: #FF9800;
  --orange-soft: rgba(255, 152, 0, 0.15);
  --green: #25D366;
  --green-soft: rgba(37, 211, 102, 0.18);
  --text: #1c1c1c;
  --text-muted: #4a4a4a;
  --text-soft: #777;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-border-subtle: rgba(0, 0, 0, 0.06);
  --glass-dark: rgba(15, 21, 32, 0.85);
  --shadow-soft: 0 8px 32px rgba(15, 21, 32, 0.08);
  --shadow-md: 0 16px 48px rgba(15, 21, 32, 0.12);
  --shadow-glow-blue: 0 0 40px rgba(30, 136, 229, 0.25);
  --shadow-glow-orange: 0 0 40px rgba(255, 152, 0, 0.2);
  --shadow-glow-green: 0 0 32px rgba(37, 211, 102, 0.35);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --phone-width: 350px;
  --phone-screen-h: 500px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.marketing {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body.marketing .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ——— Background atmosphere ——— */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.orb-blue {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, rgba(30, 136, 229, 0.45) 0%, transparent 70%);
  top: -8%;
  left: -10%;
  animation: orb-drift-1 22s ease-in-out infinite alternate;
}

.orb-orange {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: radial-gradient(circle, rgba(255, 152, 0, 0.35) 0%, transparent 70%);
  top: 35%;
  right: -12%;
  animation: orb-drift-2 26s ease-in-out infinite alternate;
}

.orb-green {
  width: min(35vw, 340px);
  height: min(35vw, 340px);
  background: radial-gradient(circle, rgba(37, 211, 102, 0.22) 0%, transparent 70%);
  bottom: 5%;
  left: 25%;
  animation: orb-drift-3 20s ease-in-out infinite alternate;
}

.mesh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 136, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 229, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
  animation: mesh-drift 40s linear infinite;
}

@keyframes mesh-drift {
  to { background-position: 48px 48px; }
}

.light-streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.35), rgba(255, 152, 0, 0.25), transparent);
  opacity: 0.5;
  animation: streak-drift 18s ease-in-out infinite alternate;
}

.light-streak-1 {
  width: 60%;
  top: 22%;
  left: 10%;
  transform: rotate(-8deg);
}

.light-streak-2 {
  width: 45%;
  bottom: 30%;
  right: 5%;
  transform: rotate(6deg);
  animation-delay: -6s;
}

@keyframes streak-drift {
  to { transform: rotate(-8deg) translateX(40px); opacity: 0.75; }
}

@keyframes orb-drift-1 {
  to { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes orb-drift-2 {
  to { transform: translate(-35px, 25px) scale(1.05); }
}

@keyframes orb-drift-3 {
  to { transform: translate(25px, -30px) scale(1.1); }
}

/* ——— Glass header ——— */
.site-header,
body.marketing header.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 12px 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.glass-header .header-inner {
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

body.marketing a.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue) !important;
}

body.marketing a.logo span {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: var(--blue) !important;
  color: var(--blue) !important;
}

body.marketing a.logo .logo-accent,
.logo-accent {
  -webkit-text-fill-color: var(--orange) !important;
  color: var(--orange) !important;
}

.logo-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.25);
}

.site-nav {
  display: flex;
  gap: 6px;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.site-nav a.nav-active {
  color: var(--blue);
  background: var(--blue-soft);
}

.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

body.marketing .btn-header {
  padding: 9px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.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);
}

/* ——— Buttons ——— */
body.marketing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

body.marketing .btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

body.marketing .btn-primary {
  background: linear-gradient(135deg, #2ee06a 0%, var(--green) 50%, #1db954 100%);
  color: #fff;
  box-shadow: var(--shadow-glow-green), 0 4px 16px rgba(37, 211, 102, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

body.marketing .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

body.marketing .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(37, 211, 102, 0.45), 0 8px 24px rgba(37, 211, 102, 0.35);
}

body.marketing .btn-glass,
body.marketing .btn-outline {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.marketing .btn-glass:hover,
body.marketing .btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.marketing .btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.marketing .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--blue);
  border-color: rgba(30, 136, 229, 0.3);
}

.btn-ripple-host {
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  to { transform: scale(2.5); opacity: 0; }
}

/* ——— Hero (full viewport) ——— */
main {
  position: relative;
  z-index: 1;
}

.wa-hero,
.hero-fullscreen {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 24px 0 56px;
  overflow-x: hidden;
}

.reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js-ready .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.4s;
}

.hero-scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  animation: chevron-bob 2s ease-in-out infinite;
}

@keyframes chevron-bob {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

.wa-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}

@media (min-width: 901px) {
  :root {
    --phone-width: 385px;
    --phone-screen-h: 530px;
  }

  .wa-hero-grid {
    gap: 40px;
  }

  .hero-product-visual,
  #hero-product-visual {
    min-height: 620px;
    justify-content: flex-end;
  }

  .showcase-stage {
    max-width: 500px;
    min-height: 600px;
  }

  .showcase-orbit-1 {
    width: 420px;
    height: 420px;
  }

  .showcase-orbit-2 {
    width: 480px;
    height: 480px;
  }

  .visual-glow-ring {
    width: min(100%, 420px);
    height: min(100%, 420px);
  }

  .visual-glow-ring-2 {
    width: min(100%, 500px);
    height: min(100%, 500px);
  }

  .wa-phone-frame {
    width: var(--phone-width);
  }

  .wa-phone-screen {
    height: var(--phone-screen-h);
    max-height: var(--phone-screen-h);
    min-height: var(--phone-screen-h);
  }
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  border: 1px solid rgba(30, 136, 229, 0.15);
}

.wa-hero-copy h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--navy);
}

.headline-accent {
  background: linear-gradient(135deg, var(--blue) 0%, #42a5f5 40%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wa-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 22px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-subtle);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-dot-blue { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.badge-dot-orange { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.badge-dot-green { background: var(--green); box-shadow: 0 0 8px var(--green); }

.wa-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.wa-note {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0;
}

.wa-apps-coming {
  text-align: inherit;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 10px 0 0;
}

/* Floating hero bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-bubble {
  position: absolute;
  padding: 10px 16px;
  border-radius: 18px 18px 18px 4px;
  background: var(--glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0;
  animation: bubble-in 1s var(--ease-out) forwards;
}

.float-bubble span { white-space: nowrap; }

.fb-1 { top: 18%; left: 4%; animation-delay: 0.3s, 0.3s; border-radius: 18px 18px 4px 18px; }
.fb-2 { top: 28%; right: 6%; animation-delay: 0.7s, 0.7s; }
.fb-3 { bottom: 32%; left: 8%; animation-delay: 1.1s, 1.1s; border-radius: 18px 4px 18px 18px; }
.fb-4 { bottom: 22%; right: 10%; animation-delay: 1.5s, 1.5s; }

/* Desktop: keep bubbles in the visual column, not over copy */
@media (min-width: 901px) {
  .fb-1 { top: 14%; left: auto; right: 18%; }
  .fb-2 { top: 22%; right: 4%; }
  .fb-3 { bottom: 28%; left: auto; right: 14%; }
  .fb-4 { bottom: 14%; right: 6%; display: block; }
}

@keyframes bubble-in {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to { opacity: 0.85; transform: translateY(0) scale(1); }
}

.float-bubble {
  animation: bubble-in 1s var(--ease-out) forwards, bubble-float 6s ease-in-out infinite;
}

.fb-1 { animation-delay: 0.3s, 0.3s; }
.fb-2 { animation-delay: 0.7s, 0.7s; }
.fb-3 { animation-delay: 1.1s, 1.1s; }
.fb-4 { animation-delay: 1.5s, 1.5s; }

@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ——— Hero product showcase (CSS-only; Spline can mount here later) ——— */
.hero-product-visual,
#hero-product-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.showcase-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  width: var(--phone-width);
}

.phone-motion-wrap {
  flex-shrink: 0;
  width: var(--phone-width);
  will-change: transform;
}

.phone-tilt-target {
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out);
  width: var(--phone-width);
}

.hero-creator-credit {
  margin: 0;
}

.signature-glow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: linear-gradient(105deg, #1E88E5 0%, #64b5f6 25%, #FF9800 55%, #ffb74d 75%, #1E88E5 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: signature-shimmer 5s linear infinite;
  filter: drop-shadow(0 0 14px rgba(30, 136, 229, 0.55)) drop-shadow(0 0 28px rgba(255, 152, 0, 0.25));
}

.cta-signature {
  margin: 18px 0 0;
  font-size: 0.72rem;
}

@keyframes signature-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.showcase-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30, 136, 229, 0.12);
  pointer-events: none;
}

.showcase-orbit-1 {
  width: 340px;
  height: 340px;
  animation: orbit-spin 40s linear infinite;
}

.showcase-orbit-2 {
  width: 400px;
  height: 400px;
  border-color: rgba(255, 152, 0, 0.1);
  animation: orbit-spin 55s linear infinite reverse;
}

.showcase-orbit-1::after,
.showcase-orbit-2::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.showcase-orbit-2::after {
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  top: auto;
  bottom: -4px;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.visual-glow-ring {
  position: absolute;
  width: min(100%, 340px);
  height: min(100%, 340px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.22) 0%, rgba(255, 152, 0, 0.08) 45%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}

.visual-glow-ring-2 {
  width: min(100%, 420px);
  height: min(100%, 420px);
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 65%);
  animation-delay: -2s;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.06); opacity: 1; }
}

.wa-phone-frame {
  position: relative;
  z-index: 2;
  width: var(--phone-width);
  flex-shrink: 0;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(165deg, #4a5060 0%, #252830 35%, #12151c 70%, #080a0f 100%);
  box-shadow:
    0 48px 96px rgba(15, 21, 32, 0.45),
    0 16px 32px rgba(30, 136, 229, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 0 100px rgba(30, 136, 229, 0.2);
  filter: drop-shadow(0 20px 40px rgba(255, 152, 0, 0.08));
}

.phone-levitate {
  animation: phone-levitate-y 5s ease-in-out infinite;
}

.phone-interactive.phone-levitate {
  animation: none;
}

@keyframes phone-levitate-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.wa-phone-edge-glow {
  position: absolute;
  inset: -2px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.4), rgba(255, 152, 0, 0.2), rgba(37, 211, 102, 0.15));
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
}

.wa-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0a0c10;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.wa-phone-screen {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  height: var(--phone-screen-h);
  max-height: var(--phone-screen-h);
  min-height: var(--phone-screen-h);
  padding: 38px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.wa-wallpaper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 30% 10%, rgba(30, 136, 229, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 90% 80%, rgba(255, 152, 0, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.05) 0%, transparent 60%);
  opacity: 0.9;
}

.wa-wallpaper::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.wa-phone-reflection {
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 40%, transparent 100%);
  pointer-events: none;
}

.wa-phone-header {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-phone-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wa-phone-title {
  font-size: 0.88rem;
}

.wa-phone-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.wa-phone-header img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.wa-phone-status {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  opacity: 0.9;
}

.wa-fly-reactions {
  position: absolute;
  inset: 38px 0 36px;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.fly-reaction {
  position: absolute;
  line-height: 1;
  opacity: 0;
  animation: fly-heart-up 2.8s ease-out forwards;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  will-change: transform, opacity;
}

.fly-reaction-1 { animation-name: fly-heart-up-left; }
.fly-reaction-2 { animation-name: fly-heart-up-right; }

@keyframes fly-heart-up {
  0% { opacity: 0; transform: translateY(0) scale(0.35); }
  10% { opacity: 1; transform: translateY(-6px) scale(1.05); }
  100% { opacity: 0; transform: translateY(-145px) scale(0.9); }
}

@keyframes fly-heart-up-left {
  0% { opacity: 0; transform: translate(0, 0) scale(0.35); }
  12% { opacity: 1; transform: translate(-8px, -8px) scale(1.08); }
  100% { opacity: 0; transform: translate(-32px, -155px) scale(0.85); }
}

@keyframes fly-heart-up-right {
  0% { opacity: 0; transform: translate(0, 0) scale(0.35); }
  12% { opacity: 1; transform: translate(10px, -10px) scale(1.12); }
  100% { opacity: 0; transform: translate(36px, -150px) scale(0.8); }
}

.wa-chat-preview {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-height: 0;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 4px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to bottom, transparent 0, #000 10px, #000 calc(100% - 6px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10px, #000 calc(100% - 6px), transparent 100%);
}

.wa-chat-preview::-webkit-scrollbar {
  display: none;
}

.chat-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-width: 92%;
}

.chat-item-in {
  align-self: flex-start;
}

.chat-item-out {
  align-self: flex-end;
  align-items: flex-end;
}

.bubble-sender-name {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 4px;
  padding-left: 2px;
}

.bubble-sender-name-out {
  padding-left: 0;
  padding-right: 2px;
  text-align: right;
  color: rgba(255, 200, 140, 0.75);
}

.wa-bubble {
  width: 100%;
  padding: 10px 13px;
  border-radius: 18px;
  font-size: 0.82rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.bubble-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bubble-row-out {
  justify-content: flex-end;
}

.bubble-text {
  flex: 1;
}

.bubble-avatar {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 2px solid transparent;
}

.bubble-avatar.ring-green {
  border-color: #4caf50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.65), 0 0 20px rgba(76, 175, 80, 0.25);
}
.bubble-avatar.ring-blue {
  border-color: #1e88e5;
  box-shadow: 0 0 10px rgba(30, 136, 229, 0.65), 0 0 20px rgba(30, 136, 229, 0.25);
}
.bubble-avatar.ring-purple {
  border-color: #9c27b0;
  box-shadow: 0 0 10px rgba(156, 39, 176, 0.65), 0 0 20px rgba(156, 39, 176, 0.25);
}
.bubble-avatar.ring-gold {
  border-color: #ffd54a;
  box-shadow: 0 0 10px rgba(255, 213, 74, 0.7), 0 0 20px rgba(255, 152, 0, 0.3);
}

.bubble-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-a { background: linear-gradient(135deg, #1E88E5, #1565c0); }
.avatar-b { background: linear-gradient(135deg, #FF9800, #ef6c00); }
.avatar-c { background: linear-gradient(135deg, #25D366, #1db954); }
.avatar-d { background: linear-gradient(135deg, #7e57c2, #5e35b1); }

.wa-bubble.is-active {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.15);
}

.wa-bubble.in {
  background: rgba(255, 255, 255, 0.1);
  color: #eef2f7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
}

.wa-bubble.out {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.45), rgba(255, 152, 0, 0.25));
  color: #fff;
  border: 1px solid rgba(255, 152, 0, 0.3);
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15);
}

.wa-media-bubble {
  max-width: 100%;
}

.wa-media-bubble .bubble-row {
  align-items: flex-start;
}

.bubble-media-wrap {
  flex: 1;
  min-width: 0;
}

.chat-media-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 21, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.chat-media-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.chat-media-card--fallback {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(30, 136, 229, 0.25), rgba(255, 152, 0, 0.15)),
    rgba(15, 21, 32, 0.6);
}

.chat-media-fallback-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  line-height: 1.4;
}

.chat-media-label {
  display: block;
  padding: 7px 10px 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.chat-reaction-pill {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.chat-enter {
  animation: chat-pop 0.45s var(--ease-out) both;
}

.wa-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.wa-phone-tabs {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  padding: 10px 4px 4px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.wa-phone-tabs .tab-active {
  color: var(--green);
}

@keyframes chat-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: var(--glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  animation: badge-float 5s ease-in-out infinite;
}

.wa-float-1 { top: 6%; right: -2%; animation-delay: 0s; z-index: 3; }
.wa-float-2 { bottom: 32%; left: -4%; animation-delay: 1.5s; z-index: 3; }
.wa-float-3 { bottom: 10%; right: 0; animation-delay: 0.8s; z-index: 3; }
.wa-float-4 { top: 38%; right: -8%; animation-delay: 2.2s; z-index: 3; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ——— Features ——— */
.wa-features {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.features-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.feat-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: feat-orb-drift 14s ease-in-out infinite;
}

.feat-orb-blue {
  width: 280px;
  height: 280px;
  background: rgba(30, 136, 229, 0.35);
  top: 10%;
  left: -5%;
}

.feat-orb-orange {
  width: 240px;
  height: 240px;
  background: rgba(255, 152, 0, 0.28);
  bottom: 5%;
  right: -3%;
  animation-delay: -5s;
}

.feat-holo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 136, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 229, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  transform: perspective(800px) rotateX(58deg) scale(1.4);
  transform-origin: center 30%;
  opacity: 0.7;
}

.feat-beam {
  position: absolute;
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(30, 136, 229, 0.5), transparent);
  opacity: 0.4;
  animation: feat-beam-scan 8s ease-in-out infinite;
}

.feat-beam-1 { left: 18%; top: 20%; }
.feat-beam-2 { right: 22%; top: 35%; animation-delay: -3s; background: linear-gradient(to bottom, transparent, rgba(255, 152, 0, 0.45), transparent); }

@keyframes feat-orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -16px); }
}

@keyframes feat-beam-scan {
  0%, 100% { opacity: 0.15; transform: scaleY(0.6); }
  50% { opacity: 0.55; transform: scaleY(1.2); }
}

.feature-card-3d {
  perspective: 900px;
  transform-style: preserve-3d;
}

.feature-card-3d:hover .feature-scene {
  transform: rotateX(8deg) rotateY(-6deg) translateZ(8px);
}

.feature-scene {
  position: relative;
  width: 100%;
  height: 140px;
  margin: 0 auto 20px;
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease-out);
}

.fs-orbit-ring {
  position: absolute;
  inset: 8px 20px;
  border-radius: 50%;
  border: 1px dashed rgba(30, 136, 229, 0.25);
  animation: fs-orbit-spin 12s linear infinite;
  transform: rotateX(62deg);
}

.fs-orbit-orange { border-color: rgba(255, 152, 0, 0.3); animation-duration: 15s; animation-direction: reverse; }
.fs-orbit-green { border-color: rgba(37, 211, 102, 0.3); animation-duration: 10s; }

@keyframes fs-orbit-spin {
  to { transform: rotateX(62deg) rotateZ(360deg); }
}

.fs-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(24px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: fs-core-float 4s ease-in-out infinite;
}

.fs-core svg {
  width: 26px;
  height: 26px;
}

.fs-core-blue { background: linear-gradient(145deg, rgba(30, 136, 229, 0.25), rgba(255, 255, 255, 0.85)); color: var(--blue); box-shadow: 0 0 30px rgba(30, 136, 229, 0.35); }
.fs-core-orange { background: linear-gradient(145deg, rgba(255, 152, 0, 0.25), rgba(255, 255, 255, 0.85)); color: var(--orange); box-shadow: 0 0 30px rgba(255, 152, 0, 0.3); }
.fs-core-green { background: linear-gradient(145deg, rgba(37, 211, 102, 0.22), rgba(255, 255, 255, 0.85)); color: var(--green); box-shadow: 0 0 30px rgba(37, 211, 102, 0.28); }

@keyframes fs-core-float {
  0%, 100% { transform: translateZ(24px) translateY(0); }
  50% { transform: translateZ(32px) translateY(-6px); }
}

/* Chat scene — holographic bubbles */
.fs-holo-bubble {
  position: absolute;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(30, 136, 229, 0.15);
  animation: fs-bubble-float 5s ease-in-out infinite;
}

.fs-holo-bubble span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(30, 136, 229, 0.2);
  margin: 10px 12px;
}

.fs-hb-1 { width: 72px; height: 36px; left: 12%; top: 18%; transform: rotate(-8deg) translateZ(12px); background: rgba(255, 255, 255, 0.55); }
.fs-hb-2 { width: 88px; height: 40px; right: 10%; top: 28%; transform: rotate(6deg) translateZ(18px); background: rgba(255, 152, 0, 0.15); animation-delay: -1.5s; }
.fs-hb-3 { width: 64px; height: 32px; left: 22%; bottom: 16%; transform: rotate(4deg) translateZ(8px); background: rgba(37, 211, 102, 0.12); animation-delay: -2.8s; }

.fs-hb-2 span { background: rgba(255, 152, 0, 0.25); width: 60px; }
.fs-hb-3 span { background: rgba(37, 211, 102, 0.22); width: 44px; }

@keyframes fs-bubble-float {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateZ(12px) translateY(0); }
  50% { transform: rotate(var(--r, 0deg)) translateZ(20px) translateY(-8px); }
}

.fs-hb-1 { --r: -8deg; }
.fs-hb-2 { --r: 6deg; }
.fs-hb-3 { --r: 4deg; }

/* Share scene — floating photo cards */
.fs-photo-card {
  position: absolute;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(30, 136, 229, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  animation: fs-photo-drift 6s ease-in-out infinite;
}

.fs-photo-card::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
}

.fs-pc-1 { width: 56px; height: 44px; left: 14%; top: 22%; transform: rotate(-14deg) translateZ(16px); }
.fs-pc-2 { width: 64px; height: 50px; right: 12%; top: 20%; transform: rotate(10deg) translateZ(28px); animation-delay: -2s; background: linear-gradient(135deg, rgba(30, 136, 229, 0.25), rgba(255, 152, 0, 0.18)); }
.fs-pc-3 { width: 48px; height: 38px; left: 28%; bottom: 14%; transform: rotate(5deg) translateZ(10px); animation-delay: -4s; }

@keyframes fs-photo-drift {
  0%, 100% { transform: rotate(var(--pr, 0deg)) translateZ(16px) translateY(0); }
  50% { transform: rotate(var(--pr, 0deg)) translateZ(24px) translateY(-10px); }
}

.fs-pc-1 { --pr: -14deg; }
.fs-pc-2 { --pr: 10deg; }
.fs-pc-3 { --pr: 5deg; }

/* Shield scene — orbital rings */
.fs-shield-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.25);
  animation: fs-shield-pulse 3s ease-in-out infinite;
  transform: rotateX(70deg);
}

.fs-shield-ring-2 {
  width: 130px;
  height: 130px;
  margin: -65px 0 0 -65px;
  border-color: rgba(30, 136, 229, 0.18);
  animation-delay: -1.5s;
  animation-duration: 4s;
}

@keyframes fs-shield-pulse {
  0%, 100% { transform: rotateX(70deg) scale(1); opacity: 0.6; }
  50% { transform: rotateX(70deg) scale(1.08); opacity: 1; }
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ——— Stats bar ——— */
.wa-stats-bar {
  padding: 0 0 64px;
}

.stats-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding: 28px 32px !important;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}

.stat-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 16px currentColor;
}

.stat-mark-blue { background: var(--blue); color: var(--blue); }
.stat-mark-orange { background: var(--orange); color: var(--orange); }
.stat-mark-green { background: var(--green); color: var(--green); }

.stat-item span:last-child {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.wa-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wa-feature {
  text-align: center;
  padding: 36px 24px 32px;
  position: relative;
  z-index: 1;
}

.wa-feature:hover {
  box-shadow: var(--shadow-md), 0 0 40px rgba(30, 136, 229, 0.12), 0 0 60px rgba(255, 152, 0, 0.08);
  transform: translateY(-8px);
}

.wa-feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  color: var(--blue);
}

.fi-icon {
  width: 28px;
  height: 28px;
}

.glow-blue .fi-icon { color: var(--blue); }
.glow-orange .fi-icon { color: var(--orange); }
.glow-green .fi-icon { color: var(--green); }

.glow-blue { box-shadow: 0 0 24px rgba(30, 136, 229, 0.2); }
.glow-orange { box-shadow: 0 0 24px rgba(255, 152, 0, 0.2); }
.glow-green { box-shadow: 0 0 24px rgba(37, 211, 102, 0.2); }

.wa-feature h3 {
  font-size: 1.12rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.wa-feature p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

/* ——— Bottom CTA ——— */
.wa-bottom-cta {
  padding: 48px 0 80px;
  position: relative;
  overflow: hidden;
}

.cosmos-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cosmos-nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: cosmos-drift 20s ease-in-out infinite;
}

.cosmos-nebula-1 {
  width: 420px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(30, 136, 229, 0.45) 0%, rgba(126, 87, 194, 0.25) 40%, transparent 70%);
  top: -10%;
  left: 10%;
}

.cosmos-nebula-2 {
  width: 380px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(255, 152, 0, 0.3) 0%, rgba(255, 105, 180, 0.15) 45%, transparent 70%);
  bottom: -5%;
  right: 5%;
  animation-delay: -8s;
}

.cosmos-milkyway {
  position: absolute;
  inset: -20% -10%;
  background:
    linear-gradient(135deg, transparent 30%, rgba(200, 180, 255, 0.08) 42%, rgba(30, 136, 229, 0.12) 48%, rgba(255, 255, 255, 0.06) 52%, rgba(255, 152, 0, 0.06) 58%, transparent 70%);
  transform: rotate(-12deg);
  animation: milkyway-shimmer 12s ease-in-out infinite;
  opacity: 0.85;
}

.cosmos-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(200, 220, 255, 0.8), transparent),
    radial-gradient(1px 1px at 72% 45%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 88% 75%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 45% 88%, rgba(255, 220, 180, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 18% 42%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 92% 28%, rgba(255, 255, 255, 0.65), transparent);
  animation: stars-twinkle 6s ease-in-out infinite;
}

.cosmos-stars-2 {
  background-image:
    radial-gradient(1px 1px at 5% 55%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 38% 8%, rgba(180, 200, 255, 0.6), transparent),
    radial-gradient(1px 1px at 62% 72%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 78% 12%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 25% 92%, rgba(255, 255, 255, 0.35), transparent);
  animation-delay: -3s;
  opacity: 0.7;
}

@keyframes cosmos-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -10px) scale(1.05); }
}

@keyframes milkyway-shimmer {
  0%, 100% { opacity: 0.65; transform: rotate(-12deg) scale(1); }
  50% { opacity: 1; transform: rotate(-12deg) scale(1.03); }
}

@keyframes stars-twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.cosmos-panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(240, 235, 227, 0.75) 40%, rgba(15, 21, 32, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    var(--shadow-md),
    0 0 80px rgba(30, 136, 229, 0.12),
    0 0 120px rgba(126, 87, 194, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.cosmos-logo-orbit {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  top: 56px;
  margin-left: -60px;
  border-radius: 50%;
  border: 1px solid rgba(30, 136, 229, 0.2);
  animation: cosmos-orbit-spin 20s linear infinite;
  pointer-events: none;
}

.cosmos-logo-orbit::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes cosmos-orbit-spin {
  to { transform: rotate(360deg); }
}

.logo-float-3d {
  position: relative;
  z-index: 2;
  animation: logo-float-3d 5s ease-in-out infinite;
  box-shadow:
    0 16px 48px rgba(255, 152, 0, 0.35),
    0 0 0 4px rgba(255, 255, 255, 0.6),
    0 0 40px rgba(30, 136, 229, 0.2);
}

@keyframes logo-float-3d {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-8px) rotateY(8deg); }
}

.cosmos-panel h2 {
  position: relative;
  z-index: 2;
}

.cosmos-panel .btn-primary {
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 0 48px rgba(37, 211, 102, 0.15);
}

.glass-panel {
  text-align: center;
  padding: 56px 32px;
  border-radius: var(--radius-xl);
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wa-bottom-inner {
  max-width: 560px;
  margin: 0 auto;
}

.wa-cta-logo {
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 12px 40px rgba(255, 152, 0, 0.25), 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.wa-bottom-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.wa-bottom-inner p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.wa-bottom-inner .wa-apps-coming {
  text-align: center;
  margin-top: 16px;
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, #0a0e16 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 40px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(30, 136, 229, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-logo {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
}

.footer-brand strong {
  font-size: 1.15rem;
  display: block;
}

.footer-creator {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--orange);
  font-weight: 600;
}

.kingston-grace-link {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-decoration: none;
  border-radius: 2px;
  outline: none;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.kingston-grace-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
}

.kingston-grace-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.signature-glow .kingston-grace-link {
  -webkit-text-fill-color: transparent;
  background: inherit;
  background-size: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  animation: inherit;
}

.footer-signature {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 10px;
  font-weight: 600;
}

.footer-signature.signature-glow {
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: transparent;
}

body.marketing .footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

body.marketing .footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

body.marketing .footer-links a:hover {
  color: var(--orange);
  background: rgba(255, 152, 0, 0.12);
}

body.marketing .copyright {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-apps-coming {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 12px;
}

/* ——— Inner pages ——— */
.marketing-main {
  position: relative;
  z-index: 1;
  padding: 40px 0 64px;
  min-height: calc(100dvh - var(--header-h));
}

.marketing-legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px;
  color: var(--text-muted);
  line-height: 1.7;
}

.marketing-legal h1 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.marketing-legal .effective-date {
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.marketing-legal h2 {
  font-size: 1.15rem;
  color: var(--blue);
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}

.marketing-legal h3 {
  font-size: 1.02rem;
  color: var(--navy);
  margin-top: 22px;
  font-weight: 700;
}

.marketing-legal p,
.marketing-legal li {
  color: #444;
  margin-bottom: 12px;
}

.marketing-legal a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.marketing-legal a:hover {
  text-decoration: underline;
}

.marketing-legal .contact-section {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--blue-soft);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
}

.marketing-legal ul,
.marketing-legal ol {
  margin-left: 1.25rem;
  margin-bottom: 16px;
}

.marketing-about {
  max-width: 760px;
  margin: 0 auto;
}

.about-hero {
  text-align: center;
  margin-bottom: 36px;
  padding: 16px 0 0;
}

.about-logo {
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 12px 40px rgba(255, 152, 0, 0.25), 0 0 0 4px rgba(255, 255, 255, 0.4);
}

.about-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.about-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

.about-card {
  padding: 28px 26px;
  margin-bottom: 18px;
}

.about-card h2 {
  font-size: 1.12rem;
  color: var(--blue);
  margin: 0 0 12px;
  font-weight: 700;
}

.about-card p {
  color: #444;
  margin: 0;
  line-height: 1.7;
}

.about-values {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #444;
}

.about-values li {
  position: relative;
  padding: 11px 14px 11px 34px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.about-values li:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.12);
}

.about-values li::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.about-cta {
  text-align: center;
  padding: 40px 24px;
  margin-top: 12px;
}

.about-cta h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-cta.cosmos-panel {
  margin-top: 28px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.84) 0%, rgba(240, 235, 227, 0.78) 45%, rgba(15, 21, 32, 0.04) 100%);
  box-shadow: var(--shadow-md), 0 0 72px rgba(30, 136, 229, 0.1);
}

.marketing-legal.inner-card-3d {
  margin-top: 0;
}

.marketing-about,
.marketing-main > .container {
  position: relative;
  z-index: 1;
}

.about-cta p {
  color: var(--text-muted);
}

/* ——— Inner page 3D atmosphere ——— */
body.page-inner .marketing-main {
  position: relative;
  overflow: hidden;
}

.page-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.page-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
  animation: feat-orb-drift 16s ease-in-out infinite;
}

.page-orb-blue {
  width: 280px;
  height: 280px;
  background: rgba(30, 136, 229, 0.32);
  top: 4%;
  right: -6%;
}

.page-orb-orange {
  width: 240px;
  height: 240px;
  background: rgba(255, 152, 0, 0.26);
  bottom: 8%;
  left: -4%;
  animation-delay: -6s;
}

.page-orb-purple {
  width: 220px;
  height: 220px;
  background: rgba(126, 87, 194, 0.2);
  top: 38%;
  left: 15%;
  animation-delay: -3s;
}

.page-holo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 136, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 229, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  transform: perspective(600px) rotateX(54deg) scale(1.45);
  transform-origin: center top;
  opacity: 0.65;
}

.page-milky-streak {
  position: absolute;
  inset: -8% -18%;
  background: linear-gradient(128deg, transparent 34%, rgba(200, 180, 255, 0.08) 44%, rgba(30, 136, 229, 0.09) 52%, rgba(255, 255, 255, 0.05) 58%, transparent 67%);
  transform: rotate(-10deg);
  animation: milkyway-shimmer 14s ease-in-out infinite;
}

.inner-page-hero {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.inner-hero-visual {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 20px;
}

.inner-hero-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(30, 136, 229, 0.28);
  animation: fs-orbit-spin 14s linear infinite;
  transform: rotateX(62deg);
}

.inner-hero-glow {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.22) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}

.inner-hero-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  margin: -31px 0 0 -31px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(30, 136, 229, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.22);
  animation: fs-core-float 4s ease-in-out infinite;
}

.inner-hero-icon svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.inner-hero-icon.icon-orange svg { color: var(--orange); }
.inner-hero-icon.icon-green svg { color: var(--green); }

.inner-card-3d {
  perspective: 900px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.inner-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.5), rgba(255, 152, 0, 0.35), transparent);
  border-radius: 2px;
  opacity: 0.75;
  z-index: 1;
}

.inner-card-3d:hover {
  box-shadow: var(--shadow-md), 0 0 52px rgba(30, 136, 229, 0.12);
}

.page-canvas {
  position: relative;
  overflow: hidden;
}

.page-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 85% 55% at 50% 0%, rgba(126, 87, 194, 0.07) 0%, transparent 62%);
  pointer-events: none;
}

.about-hero {
  position: relative;
  z-index: 1;
}

.about-hero .about-logo-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.about-hero .about-logo-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 152, 0, 0.35);
  animation: fs-orbit-spin 18s linear infinite reverse;
  transform: rotateX(58deg);
}

.about-hero .about-logo {
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 18px;
  animation: logo-float-3d 5s ease-in-out infinite;
  box-shadow: 0 16px 48px rgba(255, 152, 0, 0.28), 0 0 44px rgba(30, 136, 229, 0.18);
}

.about-card.inner-card-3d {
  margin-bottom: 22px;
}

.marketing-about,
.marketing-main > .container {
  position: relative;
  z-index: 1;
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .orb { animation: none !important; }
  .mesh-grid { animation: none !important; }
  .float-bubble { opacity: 0.7 !important; }
  .phone-levitate,
  .phone-motion-wrap { animation: none !important; transform: none !important; }
  .phone-tilt-target { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) !important; }
  .showcase-orbit { animation: none !important; }
  .hero-scroll-hint { display: none; }
  html { scroll-behavior: auto; }
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  :root {
    --header-h: 68px;
    --phone-width: 310px;
    --phone-screen-h: 455px;
  }

  .glass-header {
    padding: 10px 0;
  }

  .glass-header .header-inner {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .logo-img {
    height: 34px;
    width: 34px;
  }

  body.marketing a.logo {
    font-size: 1.05rem;
    min-width: 0;
    max-width: min(42vw, 150px);
    overflow: hidden;
  }

  body.marketing a.logo > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-end {
    gap: 6px;
    flex-shrink: 0;
  }

  body.marketing .btn-header {
    padding: 8px 12px;
    font-size: 0.78rem;
    min-height: 36px;
  }

  .nav-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    background: var(--glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-md);
    z-index: 300;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 16px;
    text-align: center;
  }

  .glass-header .header-inner {
    position: relative;
  }

  .hero-bubbles {
    display: none !important;
  }

  .wa-hero-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .wa-hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.65rem);
    padding: 0 2px;
    margin-bottom: 22px;
  }

  .trust-badges-inline {
    justify-content: center;
    gap: 6px;
  }

  .trust-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .wa-cta-row {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-fullscreen {
    min-height: auto;
    padding: 12px 0 36px;
  }

  .hero-product-visual,
  #hero-product-visual {
    min-height: 380px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .showcase-stage {
    max-width: 100%;
    min-height: 420px;
  }

  .showcase-orbit {
    display: none;
  }

  .wa-float {
    font-size: 0.68rem;
    padding: 6px 10px;
    max-width: calc(100% - 20px);
  }

  .wa-float-1 { top: 4%; right: 0; left: auto; display: flex; }
  .wa-float-2 { display: none; }
  .wa-float-3 { bottom: 6%; left: 0; right: auto; display: flex; }
  .wa-float-4 { display: none; }

  .wa-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .glass-panel {
    padding: 36px 20px;
  }

  .marketing-legal,
  .about-card {
    padding: 28px 20px;
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --phone-width: 300px;
    --phone-screen-h: 445px;
  }

  .wa-hero-grid {
    gap: 24px;
  }

  .hero-product-visual,
  #hero-product-visual {
    max-width: 340px;
    min-height: 400px;
  }

  .wa-chat-preview {
    gap: 8px;
  }

  .wa-bubble {
    font-size: 0.78rem;
    padding: 9px 12px;
  }

  .chat-reaction-pill {
    font-size: 0.58rem;
    padding: 3px 7px;
  }
}

@media (max-width: 480px) {
  :root {
    --phone-width: 292px;
    --phone-screen-h: 438px;
  }

  .trust-badge:nth-child(n+3) {
    display: none;
  }

  body.marketing .btn-lg {
    width: 100%;
    max-width: 300px;
  }

  .header-cta {
    gap: 4px;
  }

  body.marketing a.logo > span {
    display: none;
  }

  body.marketing a.logo {
    max-width: none;
  }

  body.marketing .btn-header {
    padding: 8px 10px;
    font-size: 0.74rem;
    min-height: 36px;
  }

  body.marketing .btn-header.btn-primary {
    padding: 8px 12px;
  }

  .hero-product-visual,
  #hero-product-visual {
    max-width: 320px;
  }

  .wa-phone-screen {
    padding: 34px 12px 10px;
  }

  .hero-creator-credit {
    font-size: 0.68rem;
  }

  .wa-hero-copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .wa-note {
    font-size: 0.82rem;
    padding: 0 8px;
  }
}

/* Install guide — calm, optional PWA section */
.wa-install-hint {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 10px 0 0;
}

.wa-install-hint a {
  color: rgba(190, 220, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wa-install-guide {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
}

.wa-install-guide--page {
  padding-top: 48px;
  min-height: 70vh;
}

.install-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.install-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.install-orb-blue {
  width: 320px;
  height: 320px;
  top: 10%;
  left: -8%;
  background: rgba(74, 163, 240, 0.35);
}

.install-orb-gold {
  width: 280px;
  height: 280px;
  bottom: 5%;
  right: -6%;
  background: rgba(232, 168, 74, 0.28);
}

.install-guide-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 860px) {
  .install-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.install-guide-card {
  padding: 22px 22px 20px;
  border-radius: 20px;
  overflow: hidden;
}

.install-guide-card.tone-android {
  background:
    linear-gradient(145deg, rgba(232, 168, 74, 0.12), transparent 45%),
    var(--glass-strong);
}

.install-guide-card.tone-ios {
  background:
    linear-gradient(145deg, rgba(74, 163, 240, 0.14), transparent 45%),
    var(--glass-strong);
}

.install-guide-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.install-guide-card-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.install-platform-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.install-visual {
  display: grid;
  gap: 16px;
  align-items: center;
}

@media (min-width: 520px) {
  .install-visual {
    grid-template-columns: minmax(130px, 150px) 1fr;
  }
}

.mkt-phone {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  aspect-ratio: 9 / 18;
  padding: 7px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.mkt-phone-ios {
  border-radius: 26px;
}

.mkt-phone-screen {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #0f1a2e 0%, #162840 45%, #1a3050 100%);
  display: flex;
  flex-direction: column;
}

.mkt-phone-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-size: 0.58rem;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

.mkt-phone-bar--ios {
  justify-content: space-between;
}

.mkt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange);
}

.mkt-share {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(74, 163, 240, 0.35);
}

.mkt-phone-preview {
  flex: 1;
  margin: 6px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 20%, rgba(74, 163, 240, 0.35), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(232, 168, 74, 0.22), transparent 50%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-phone-sheet {
  margin: 0 6px 6px;
  border-radius: 10px;
  background: rgba(8, 14, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mkt-sheet-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  font-size: 0.58rem;
}

.mkt-sheet-row--hi {
  background: rgba(74, 163, 240, 0.22);
}

.mkt-sheet-row.muted {
  opacity: 0.65;
}

.install-steps {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.install-steps li + li {
  margin-top: 6px;
}

.install-guide-foot {
  margin: 28px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.install-guide-foot a {
  color: rgba(190, 220, 255, 0.95);
}
