/* KushLingo — Cinematic Landing */
:root {
  --bg: #010006;
  --bg-2: #0c0618;
  --surface: rgba(255, 255, 255, 0.045);
  --glass: rgba(8, 4, 20, 0.78);
  --line: rgba(167, 139, 250, 0.16);
  --ink: #fefcff;
  --muted: #a89ec4;
  --violet: #c084fc;
  --cyan: #22d3ee;
  --pink: #f472b6;
  --gold: #fcd34d;
  --emerald: #34d399;
  --coral: #fb7185;
  --grad-main: linear-gradient(120deg, #e879f9 0%, #818cf8 30%, #22d3ee 65%, #f472b6 100%);
  --grad-hero: linear-gradient(135deg, #c084fc 0%, #6366f1 40%, #22d3ee 100%);
  --grad-gold: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
  --glow-violet: 0 0 100px rgba(192, 132, 252, 0.5);
  --glow-cyan: 0 0 80px rgba(34, 211, 238, 0.4);
  --glow-pink: 0 0 70px rgba(244, 114, 182, 0.35);
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --space: clamp(5rem, 11vw, 8rem);
  --radius: 1.25rem;
  --film-grain: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Cairo, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

/* Film grain overlay */
.film-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.35;
  background-image: var(--film-grain);
  mix-blend-mode: overlay;
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  direction: ltr;
  z-index: 1;
}
.brand img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.4);
}
.brand span {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.25s, text-shadow 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  inset-inline: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--ink); text-shadow: 0 0 20px rgba(167, 139, 250, 0.5); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  color: var(--ink);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.35rem 0.55rem;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 4.5rem;
  z-index: 199;
  background: rgba(2, 0, 8, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.6rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}
.mobile-menu a:hover { color: var(--ink); border-color: rgba(167, 139, 250, 0.4); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.7rem 1.65rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, filter 0.2s;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.08); }
.btn-main {
  background: var(--grad-main);
  color: #fff;
  box-shadow: var(--glow-violet), 0 12px 32px rgba(99, 102, 241, 0.35);
}
.btn-gold {
  background: var(--grad-gold);
  color: #422006;
  box-shadow: 0 14px 40px rgba(251, 191, 36, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(167, 139, 250, 0.5); box-shadow: var(--glow-violet); }
.btn-block { width: 100%; }
.btn-lg { min-height: 3.35rem; padding-inline: 1.85rem; font-size: 1rem; }

/* ── Cinematic Hero ── */
.cinema-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 6rem;
  overflow: hidden;
  z-index: 1;
}

/* Hero ambient video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.25) brightness(0.45);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(1, 0, 6, 0.92) 0%, rgba(1, 0, 6, 0.55) 45%, rgba(1, 0, 6, 0.75) 100%),
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(124, 58, 237, 0.25), transparent 60%);
  pointer-events: none;
}

.mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    conic-gradient(from 220deg at 30% 40%, rgba(124, 58, 237, 0.12), transparent 40%),
    conic-gradient(from 120deg at 75% 60%, rgba(6, 182, 212, 0.1), transparent 45%),
    conic-gradient(from 340deg at 50% 80%, rgba(236, 72, 153, 0.08), transparent 50%);
  animation: meshRotate 25s linear infinite;
}
@keyframes meshRotate { to { transform: rotate(360deg); } }
.aurora {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(139, 92, 246, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 45% at 80% 60%, rgba(34, 211, 238, 0.2), transparent 50%),
    radial-gradient(ellipse 40% 35% at 55% 90%, rgba(244, 114, 182, 0.15), transparent 45%),
    radial-gradient(ellipse 30% 25% at 70% 15%, rgba(251, 191, 36, 0.1), transparent 40%);
  animation: auroraShift 18s ease-in-out infinite alternate;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.orb-1 { width: 420px; height: 420px; background: #7c3aed; top: 10%; inset-inline-start: -8%; }
.orb-2 { width: 320px; height: 320px; background: #06b6d4; bottom: 15%; inset-inline-end: -5%; }
.orb-3 { width: 200px; height: 200px; background: #ec4899; top: 45%; inset-inline-start: 40%; opacity: 0.3; }

/* Hero decorations */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.deco-ring {
  position: absolute;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  top: 50%;
  inset-inline-end: -8%;
  transform: translateY(-50%);
  animation: spin 60s linear infinite;
  opacity: 0.6;
}
.deco-star {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold));
  animation: twinkle 3s ease infinite;
}
.deco-star--1 { top: 18%; inset-inline-start: 12%; animation-delay: 0s; }
.deco-star--2 { top: 72%; inset-inline-start: 28%; width: 0.85rem; height: 0.85rem; color: var(--cyan); animation-delay: 1.2s; }
.deco-diamond {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--grad-main);
  transform: rotate(45deg);
  top: 30%;
  inset-inline-start: 8%;
  box-shadow: var(--glow-violet);
  animation: bob 4s ease infinite;
}
.deco-diamond--2 {
  width: 10px;
  height: 10px;
  top: 55%;
  inset-inline-end: 15%;
  background: var(--grad-gold);
  animation-delay: 1.5s;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
@keyframes twinkle { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem 0.4rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(167, 139, 250, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1.5rem;
  animation: heroIn 1s var(--ease) both;
}
.hero-kicker .pulse-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 16px var(--emerald);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

/* ── Master title — 3 clean lines, no overlap ── */
.master-title {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  margin-bottom: 1.5rem;
}
.title-row {
  display: block;
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(28px);
  animation: titleReveal 0.9s var(--ease) forwards;
  animation-delay: calc(0.15s + var(--delay, 0) * 0.12s);
}
.title-row[data-delay="0"] { --delay: 0; }
.title-row[data-delay="1"] { --delay: 1; }
.title-row[data-delay="2"] { --delay: 2; }
.title-row--finale {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.25;
}
.word-strike {
  position: relative;
  color: rgba(168, 158, 196, 0.55);
  text-decoration: none;
}
.word-strike::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  animation: strikeIn 0.7s var(--ease) 0.6s forwards;
}
.word-glow {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(167, 139, 250, 0.45));
}
.word-glow--gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
}
@keyframes titleReveal { to { opacity: 1; transform: none; } }
@keyframes strikeIn { to { transform: scaleX(1); } }

.hero-lead {
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 36rem;
  margin-bottom: 2rem;
  animation: heroIn 1s var(--ease) 0.16s both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  animation: heroIn 1s var(--ease) 0.24s both;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  animation: heroIn 1s var(--ease) 0.32s both;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: #d4cce8;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.chip:hover { transform: translateY(-3px); }
.chip svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.chip--violet { border-color: rgba(192, 132, 252, 0.35); }
.chip--violet:hover { box-shadow: 0 0 24px rgba(192, 132, 252, 0.3); }
.chip--violet svg { color: var(--violet); }
.chip--cyan { border-color: rgba(34, 211, 238, 0.3); }
.chip--cyan:hover { box-shadow: 0 0 24px rgba(34, 211, 238, 0.25); }
.chip--cyan svg { color: var(--cyan); }
.chip--pink { border-color: rgba(244, 114, 182, 0.3); }
.chip--pink:hover { box-shadow: var(--glow-pink); }
.chip--pink svg { color: var(--pink); }
.chip--gold { border-color: rgba(252, 211, 77, 0.35); }
.chip--gold:hover { box-shadow: 0 0 24px rgba(251, 191, 36, 0.3); }
.chip--gold svg { color: var(--gold); }

/* Phone stage */
.phone-stage {
  position: relative;
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 2rem 0;
}
.phone-glow-ring {
  position: absolute;
  inset: 5% 0;
  margin: auto;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #7c3aed, #06b6d4, #ec4899, #fbbf24, #7c3aed);
  filter: blur(40px);
  opacity: 0.35;
  animation: spin 12s linear infinite;
}
.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.85rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink);
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}
.float-card svg { width: 1.1rem; height: 1.1rem; color: var(--cyan); }
.float-card--1 { top: 8%; inset-inline-start: -5%; animation-delay: 0s; }
.float-card--1 svg { color: var(--pink); }
.float-card--2 { top: 42%; inset-inline-end: -8%; animation-delay: 1.2s; }
.float-card--2 svg { color: var(--violet); }
.float-card--3 { bottom: 12%; inset-inline-start: -2%; animation-delay: 2.4s; }
.float-card--3 svg { color: var(--gold); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-visual { animation: heroIn 1.1s var(--ease) 0.1s both; perspective: 900px; }
.phone-wrap { position: relative; width: min(100%, 300px); margin-inline: auto; z-index: 2; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  animation: heroIn 1.2s var(--ease) 0.5s both, bob 2.5s ease infinite 1.5s;
  z-index: 3;
}
.scroll-hint .chev {
  width: 1.25rem;
  height: 1.25rem;
  border-inline: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* Phone mockup */
.cinema-phone {
  aspect-ratio: 9/19;
  border-radius: 2.6rem;
  padding: 12px;
  background: linear-gradient(160deg, #1a1035 0%, #312e81 40%, #4c1d95 100%);
  box-shadow: var(--shadow), var(--glow-violet), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.15s ease-out;
  animation: phoneFloat 7s ease-in-out infinite;
  position: relative;
}
.cinema-phone::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-main);
  z-index: -1;
  opacity: 0.35;
  filter: blur(20px);
}
.phone-notch {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.phone-screen {
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background: #0c0618;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-screen--shots { padding: 0; }

/* Screenshot carousel inside phone */
.screenshot-carousel {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.screenshot-carousel .shot {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  pointer-events: none;
}
.screenshot-carousel .shot.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.screenshot-carousel .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.shot-cap {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 2.5rem 0.75rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  pointer-events: none;
}
.shot-nav {
  position: absolute;
  bottom: 0.55rem;
  inset-inline: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 3;
  padding: 0 0.5rem;
}
.shot-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s, background 0.25s, width 0.25s;
}
.shot-dot.active {
  width: 1.25rem;
  background: var(--grad-main);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.6);
}
.shot-dot:hover { transform: scale(1.15); }

/* Showcase gallery */
.showcase {
  position: relative;
  z-index: 1;
  padding: var(--space) 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.showcase-card {
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.showcase-card:hover { transform: translateY(-8px); }
.showcase-frame {
  position: relative;
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--glow-violet);
  margin-bottom: 1.15rem;
  aspect-ratio: 9/19;
  max-height: 420px;
  margin-inline: auto;
  max-width: 240px;
  background: var(--bg-2);
}
.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.showcase-card:hover .showcase-frame img { transform: scale(1.04); }
.showcase-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.12) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
}
.showcase-card:hover .showcase-shine { transform: translateX(120%); }
.showcase-card h3 {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.showcase-card p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  max-width: 28ch;
  margin-inline: auto;
  line-height: 1.65;
}

.phone-top {
  padding: 2.2rem 1rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-top strong { font-size: 0.95rem; font-weight: 800; }
.live-badge {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.live-badge::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 1.5s ease infinite;
}
.phone-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0 0.85rem 0.65rem;
  overflow-x: auto;
}
.phone-tab {
  flex-shrink: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.phone-tab.on { background: var(--grad-main); color: #fff; }
.phone-body {
  flex: 1;
  padding: 0.65rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.app-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.7rem 0.8rem;
  animation: cardPulse 4s ease infinite;
}
.app-card strong { display: block; font-size: 0.72rem; margin-bottom: 0.15rem; }
.app-card span { font-size: 0.62rem; color: var(--muted); font-weight: 600; }
.chat-bubble {
  background: rgba(139, 92, 246, 0.22);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 0.9rem 0.9rem 0.2rem 0.9rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  direction: ltr;
  text-align: left;
  max-width: 90%;
  animation: bubbleIn 0.6s var(--ease) both;
}
.chat-bubble:nth-child(3) { animation-delay: 0.3s; }
.chat-bubble:nth-child(4) { animation-delay: 0.6s; }
.chat-bubble:nth-child(5) { animation-delay: 0.9s; }
.chat-bubble.me {
  align-self: flex-end;
  background: rgba(52, 211, 153, 0.14);
  border-color: rgba(52, 211, 153, 0.3);
  border-radius: 0.9rem 0.9rem 0.9rem 0.2rem;
}
.chat-bubble--tip {
  font-size: 0.62rem !important;
  color: var(--muted);
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.2);
}
.phone-badge {
  position: absolute;
  inset-inline-start: -12%;
  bottom: 20%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 1.15rem;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow), var(--glow-violet);
  animation: phoneFloat 5s ease-in-out infinite reverse;
}
.phone-badge .badge-icon { font-size: 1.35rem; line-height: 1; }
.phone-badge strong { font-size: 0.78rem; display: block; }
.phone-badge span { font-size: 0.65rem; color: var(--emerald); font-weight: 800; }

/* Marquee */
.marquee-wrap {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.1rem 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-item em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.marquee-dot { width: 0.35rem; height: 0.35rem; border-radius: 50%; background: var(--violet); opacity: 0.6; }

/* Stats cinematic */
.stats-cinema {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: var(--glow-violet);
}
.stat-val {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat-label { font-size: 0.88rem; color: var(--muted); font-weight: 700; margin-top: 0.35rem; }

/* Sections */
section { padding: var(--space) 0; position: relative; z-index: 1; }
.sec-head { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.eyebrow::after { background: linear-gradient(90deg, var(--cyan), transparent); }
.sec-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.sec-head p { color: var(--muted); font-size: 1.08rem; font-weight: 500; }

/* Cinematic scenes (pillars) */
.scenes { display: flex; flex-direction: column; gap: 2rem; }
.scene {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  min-height: 420px;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--scene-bg, radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.2), transparent 60%));
  pointer-events: none;
}
.scene:nth-child(even) { direction: ltr; }
.scene:nth-child(even) > * { direction: rtl; }
.scene-content { position: relative; z-index: 1; }
.scene-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(251, 191, 36, 0.12);
  color: var(--gold);
  border: 1px solid rgba(251, 191, 36, 0.25);
  margin-bottom: 1rem;
}
.scene h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.scene > .scene-content > p { color: var(--muted); font-weight: 500; margin-bottom: 1.25rem; }
.scene-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.scene-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 700;
  color: #d4cce8;
}
.scene-list li svg { width: 1.1rem; height: 1.1rem; color: var(--cyan); flex-shrink: 0; margin-top: 0.15rem; }
.scene-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.scene-icon-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 4.5rem;
  background: var(--scene-ring, radial-gradient(circle, rgba(167,139,250,0.25), transparent 70%));
  border: 2px solid rgba(167, 139, 250, 0.25);
  box-shadow: var(--glow-violet);
  animation: ringPulse 4s ease infinite;
  position: relative;
}
.scene-icon-ring::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(167, 139, 250, 0.2);
  animation: spin 30s linear infinite;
}
.scene-num {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.25rem;
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

/* Bento features */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.bento-card {
  grid-column: span 4;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--card-accent, var(--grad-main));
  opacity: 0;
  transition: opacity 0.35s;
}
.bento-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: var(--glow-violet);
}
.bento-card:hover::before { opacity: 1; }
.bento-card.wide { grid-column: span 6; }
.bento-card.tall { grid-row: span 1; }
.bento-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.2);
}
.bento-card h3 { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.4rem; }
.bento-card p { color: var(--muted); font-size: 0.88rem; font-weight: 500; line-height: 1.65; }

/* Live demo */
.demo-cinema {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 0.5rem);
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(34,211,238,0.05));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.demo-cinema::after {
  content: "LIVE";
  position: absolute;
  top: 1.25rem;
  inset-inline-start: 1.25rem;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.demo-cinema::after {
  content: "";
}
.demo-live-tag {
  position: absolute;
  top: 1.25rem;
  inset-inline-start: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--pink);
}
.demo-live-tag::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.2s ease infinite;
}
.demo-frame {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 280px;
  backdrop-filter: blur(12px);
}
.demo-line {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.demo-line.visible { opacity: 1; transform: none; }
.demo-av {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--grad-main);
  flex-shrink: 0;
  box-shadow: var(--glow-violet);
}
.demo-txt {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.6;
  flex: 1;
}
.demo-txt[lang="en"] { direction: ltr; text-align: left; }
.demo-line.user { flex-direction: row-reverse; }
.demo-line.user .demo-av { background: linear-gradient(135deg, var(--emerald), var(--cyan)); }
.demo-line.user .demo-txt { background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.25); }
.demo-txt.typing::after { content: "|"; animation: blink 0.8s step-end infinite; color: var(--cyan); }

/* Steps timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  inset-inline: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--pink));
  opacity: 0.35;
}
.tl-step {
  text-align: center;
  padding: 0 1.25rem 1.5rem;
  position: relative;
}
.tl-num {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--glow-violet);
  position: relative;
  z-index: 1;
}
.tl-step h3 { font-weight: 800; font-size: 1.08rem; margin-bottom: 0.45rem; }
.tl-step p { color: var(--muted); font-size: 0.9rem; font-weight: 500; }

/* Audience */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.aud-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.aud-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(167,139,250,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.aud-card:hover { transform: translateY(-8px); box-shadow: var(--glow-violet); }
.aud-card:hover::before { opacity: 1; }
.aud-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid var(--line);
}
.aud-card h3 { font-weight: 800; margin-bottom: 0.45rem; position: relative; }
.aud-card p { color: var(--muted); font-size: 0.9rem; font-weight: 500; position: relative; }

/* Pricing */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.2rem);
  padding: 2rem 1.65rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: transform 0.35s var(--ease);
}
.plan:hover { transform: translateY(-4px); }
.plan.featured {
  border: 2px solid transparent;
  background: linear-gradient(rgba(12,8,28,0.95), rgba(12,8,28,0.95)) padding-box, var(--grad-main) border-box;
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--glow-violet), var(--shadow);
}
.plan .badge {
  position: absolute;
  top: -0.8rem;
  inset-inline-start: 1.25rem;
  background: var(--grad-gold);
  color: #422006;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}
.plan h3 { font-weight: 800; font-size: 1.3rem; }
.plan .desc { color: var(--muted); font-size: 0.92rem; min-height: 2.8em; font-weight: 500; }
.plan .price {
  font-size: 2.25rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.35rem 0;
}
.plan .price small { font-size: 0.85rem; color: var(--muted); font-weight: 700; }
.plan ul { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 0.55rem; margin: 0.65rem 0 1.35rem; }
.plan li {
  font-size: 0.9rem;
  font-weight: 650;
  color: #d0cae8;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.plan li::before { content: "✦"; color: var(--cyan); font-size: 0.7rem; margin-top: 0.2rem; }

/* FAQ */
.faq { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.qa[open] { border-color: rgba(167, 139, 250, 0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.qa summary {
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-weight: 800;
  list-style: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--violet);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa .ans {
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* Download */
.download-cinema {
  text-align: center;
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
}
.download-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(139,92,246,0.35), transparent),
    radial-gradient(ellipse 40% 50% at 20% 0%, rgba(34,211,238,0.15), transparent);
  pointer-events: none;
}
.download-cinema > * { position: relative; z-index: 1; }
.download-cinema h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  margin: 0.65rem 0;
}
.download-cinema > p { color: var(--muted); max-width: 38rem; margin-inline: auto; font-weight: 500; }
.download-cinema .hero-cta { justify-content: center; margin-top: 1.75rem; }
.download-cinema .note { color: var(--muted); font-size: 0.88rem; margin-top: 1.25rem; }

/* Finale */
.finale {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto var(--space);
  border-radius: calc(var(--radius) + 0.5rem);
  padding: clamp(3rem, 6vw, 4rem) 2rem;
  text-align: center;
  background: var(--grad-main);
  box-shadow: var(--glow-violet), 0 32px 80px rgba(99, 102, 241, 0.45);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.finale::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(255,255,255,0.22), transparent 50%);
  animation: auroraShift 12s ease infinite alternate;
}
.finale::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.finale > * { position: relative; z-index: 1; }
.finale h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); font-weight: 900; margin-bottom: 0.65rem; color: #fff; }
.finale p { opacity: 0.92; margin-bottom: 1.65rem; font-weight: 600; color: #fff; font-size: 1.08rem; }

/* Footer */
footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.foot-col { display: flex; flex-direction: column; gap: 0.55rem; }
.foot-col h4 {
  font-weight: 800;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.foot-col a { font-weight: 650; font-size: 0.92rem; color: #c4bddf; transition: color 0.2s; }
.foot-col a:hover { color: var(--ink); }
.foot-about { color: var(--muted); font-size: 0.92rem; font-weight: 500; max-width: 34ch; margin-top: 0.5rem; }
.foot-bottom {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 650;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }

@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes auroraShift { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.08) rotate(2deg); } }
@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ringPulse { 0%, 100% { box-shadow: var(--glow-violet); } 50% { box-shadow: var(--glow-cyan); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes cardPulse { 0%, 100% { border-color: var(--line); } 50% { border-color: rgba(167, 139, 250, 0.35); } }
@keyframes blink { 50% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-links, .nav .btn-main { display: none; }
  .nav-toggle { display: block; }
  .hero-grid, .scene, .demo-cinema, .timeline, .foot-grid, .stats-grid { grid-template-columns: 1fr; }
  .scene:nth-child(even) { direction: rtl; }
  .bento-card, .bento-card.wide { grid-column: span 12; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .float-card { display: none; }
  .phone-badge { display: none; }
  .deco-ring { inset-inline-end: -25%; opacity: 0.25; }
  .plan.featured { transform: none; }
  .timeline::before { display: none; }
  .scroll-hint { display: none; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-frame { max-width: 220px; max-height: 380px; }
}

@media (max-width: 560px) {
  .wrap, .finale { width: min(var(--max), calc(100% - 1.5rem)); }
  .bento { grid-template-columns: 1fr; }
  .bento-card { grid-column: span 1 !important; }
}
