/* Zyren — match reference mockup (#05070A / two-column hero) */
:root {
  --bg0: #05070a;
  --bg1: #0a0b1e;
  --card: #161b22;
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #94a3b8;
  --orange: #f59e0b;
  --orange2: #ff8c00;
  --blue-nav: #3b82f6;
  --grad: linear-gradient(to right, #6366f1, #a855f7);
  --grad-wide: linear-gradient(105deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --shell: min(1240px, 92vw);
  --nav-h: 78px;
  --r: 16px;
  --r-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 35%, var(--bg0) 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.hl { color: var(--orange); }

.shell { width: var(--shell); margin-inline: auto; }

/* Ambient + bokeh */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(99, 102, 241, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 40%, rgba(245, 158, 11, 0.08), transparent 45%);
}
.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}
.b1 { width: 200px; height: 200px; background: #6366f1; bottom: 8%; left: 15%; }
.b2 { width: 140px; height: 140px; background: #a855f7; bottom: 5%; right: 25%; }
.b3 { width: 100px; height: 100px; background: #3b82f6; bottom: 12%; right: 45%; }

main, .topbar, .foot { position: relative; z-index: 1; }

/* Buttons */
.btn-grad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.45rem;
  border-radius: 999px;
  background: var(--grad-wide);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
}
.btn-grad--lg { padding: 0.95rem 1.85rem; font-size: 1rem; }

.badge-gp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.8rem;
  background: #0d0d12;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  transition: box-shadow 0.2s;
}
.badge-gp:hover { box-shadow: 0 0 20px rgba(99, 102, 241, 0.25); }
.badge-gp span { display: flex; flex-direction: column; line-height: 1.1; }
.badge-gp small { font-size: 0.5rem; letter-spacing: 0.08em; opacity: 0.7; }
.badge-gp strong { font-size: 0.95rem; font-weight: 700; }
.badge-gp--xl { padding: 0.7rem 1.35rem; border-radius: 12px; }
.badge-gp--xl strong { font-size: 1.15rem; }

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 300;
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.35rem;
}
.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.3));
}
.topnav {
  display: flex;
  justify-content: center;
  gap: 2.75rem;
}
.topnav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.topnav a:hover { color: var(--text); }
.topnav a.is-active {
  color: var(--text);
}
.topnav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue-nav);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}
.mob-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mob-btn i {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

/* ========== HERO (two columns) ========== */
.hero {
  padding: calc(var(--nav-h) + 2rem) 0 2.5rem;
  position: relative;
  min-height: 92vh;
}
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.d-lock, .d-chat {
  position: absolute;
  width: 26px;
  height: 26px;
  opacity: 0.08;
  color: var(--orange);
  animation: deco-float 10s ease-in-out infinite;
}
.d-lock { top: 22%; left: 8%; }
.d-chat { top: 35%; right: 12%; color: #6366f1; animation-delay: 1.5s; width: 30px; height: 30px; }
@keyframes deco-float {
  0%, 100% { transform: translateY(0); opacity: 0.06; }
  50% { transform: translateY(-16px); opacity: 0.12; }
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: center;
  min-height: 480px;
}

/* LEFT: phone + lock */
.hero-left { display: flex; justify-content: center; }
.phone-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  min-height: 460px;
}
.phone { position: relative; z-index: 2; }
.phone-bezel {
  width: 268px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(160deg, #2d2d3a, #111118);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.phone-notch {
  width: 86px;
  height: 22px;
  margin: 0 auto 6px;
  background: #08080e;
  border-radius: 0 0 12px 12px;
}
.phone-screen {
  background: #0e0e16;
  border-radius: 28px;
  overflow: hidden;
  min-height: 430px;
}
.phone--xs .phone-bezel { width: 175px; padding: 7px; border-radius: 26px; }
.phone--xs .phone-notch { width: 58px; height: 16px; }
.phone--xs .phone-screen { min-height: 280px; border-radius: 20px; }

.chat-hd {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 700;
  font-size: 0.88rem;
}
.chat-hd b { color: #8b5cf6; font-size: 1.4rem; font-weight: 400; }
.chat-hd .on {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 6px #22c55e;
}
.chat-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 300px;
}
.chat-body p {
  max-width: 80%;
  padding: 0.45rem 0.75rem;
  border-radius: 14px;
  font-size: 0.7rem;
  font-weight: 500;
}
.b-in { align-self: flex-start; background: rgba(255,255,255,0.08); }
.b-g1 { align-self: flex-end; background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.b-g2 { align-self: flex-end; background: linear-gradient(135deg, #22c55e, #10b981); }
.b-g3 { align-self: flex-end; background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.chat-ft {
  margin: 0.4rem 0.75rem 0.85rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  font-size: 0.65rem;
  color: var(--muted);
}

.float-ui {
  position: absolute;
  top: 8%;
  right: 0;
  z-index: 4;
}
.float-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  background: rgba(22, 27, 34, 0.9);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  font-size: 0.6rem;
  backdrop-filter: blur(8px);
}
.float-toggle span { color: var(--muted); }
.float-toggle i {
  display: block;
  width: 32px;
  height: 18px;
  background: rgba(245, 158, 11, 0.35);
  border-radius: 9px;
  position: relative;
  border: 1px solid rgba(245, 158, 11, 0.5);
}
.float-toggle i::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

.float-lock {
  position: absolute;
  right: -8px;
  top: 38%;
  z-index: 5;
  text-align: center;
}
.lock-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.55) 0%, transparent 65%);
  animation: glow-p 2.5s ease-in-out infinite;
}
@keyframes glow-p {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.lock-3d {
  position: relative;
  font-size: 4.5rem;
  filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.8)) drop-shadow(0 8px 16px rgba(0,0,0,0.5));
  animation: lock-bob 3s ease-in-out infinite;
}
@keyframes lock-bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

/* RIGHT: copy */
.hero-right {
  text-align: left;
  padding-left: 0.5rem;
}
.hero-right h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.hero-hi {
  font-family: "Noto Sans Devanagari", Inter, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Feature bar — screenshot style + top violet glow */
.feat-zone {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
.feat-zone__glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(ellipse at center top, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.feat-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feat-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem 1rem;
  background: rgba(12, 14, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-item:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
}
.fi {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fi svg { width: 18px; height: 18px; color: #fff; }
.fi-o { background: #8b4513; }
.fi-g { background: #0d5c2e; }
.fi-r { background: #7f1d1d; }
.fi-p { background: #9d174d; }
.feat-item div { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.feat-item strong { font-size: 0.82rem; font-weight: 700; line-height: 1.3; color: #fff; }
.feat-item span { font-size: 0.7rem; color: #94a3b8; line-height: 1.4; }

/* Sections */
.sec {
  padding: 6.25rem 0;
}
.sec-h {
  text-align: center;
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

/* Privacy cards — image + text overlay (screenshot) */
.tri-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.tri-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 5;
  min-height: 320px;
}
.tri-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.6), rgba(168, 85, 247, 0.5), transparent);
  z-index: 3;
}
.tri-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tri-card__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.5rem 1.35rem 1.35rem;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 10, 0.5) 35%, rgba(5, 7, 10, 0.92) 100%);
}
.tri-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.tri-card p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); }

/* Demo section — rebuilt */
.sec--demo { position: relative; overflow: hidden; }
.demo-ambient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 25% 50%, rgba(99, 102, 241, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 75% 60%, rgba(168, 85, 247, 0.1), transparent 50%);
}
.demo-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2rem 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.demo-layout__video { min-width: 0; }

.cinema {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.12);
  background: #0a0a12;
}
.cinema__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cinema__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.58) 0%, rgba(139,92,246,0.42) 42%, rgba(5,7,10,0.94) 100%);
}
.cinema__dur {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.6rem;
  background: rgba(0,0,0,0.6); border-radius: 6px; border: 1px solid rgba(255,255,255,0.12);
}
.cinema__play {
  position: relative; z-index: 2; width: 84px; height: 84px;
  border: none; border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cinema__play:hover { transform: scale(1.06); box-shadow: 0 0 30px rgba(139, 92, 246, 0.45); }
.cinema__play svg { width: 34px; height: 34px; margin-left: 4px; position: relative; z-index: 2; }
.cinema__ring {
  position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35); animation: ring-pulse 2s ease-out infinite;
}
@keyframes ring-pulse { 0% { transform: scale(1); opacity: 0.85; } 100% { transform: scale(1.4); opacity: 0; } }
.cinema__lbl {
  position: relative; z-index: 2; margin-top: 1rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; color: rgba(255,255,255,0.55);
}
.cinema__controls {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1rem;
  background: rgba(0,0,0,0.7); border-top: 1px solid rgba(255,255,255,0.08);
}
.cinema__prog { flex: 1; height: 4px; background: rgba(255,255,255,0.14); border-radius: 2px; overflow: hidden; }
.cinema__prog i { display: block; height: 100%; background: var(--grad-wide); border-radius: 2px; }
.cinema__time { font-size: 0.68rem; color: var(--muted); white-space: nowrap; }
.cinema__btn { font-size: 0.75rem; opacity: 0.8; }

.demo-checklist {
  list-style: none; margin-top: 1.35rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.demo-checklist li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.75);
}
.demo-checklist span {
  width: 24px; height: 24px; border-radius: 7px;
  background: rgba(34, 197, 94, 0.18); color: #4ade80;
  font-size: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.demo-layout__phones { display: flex; flex-direction: column; align-items: center; }
.demo-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; justify-content: center;
}
.demo-tab {
  padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 14, 22, 0.85); color: var(--muted);
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s; font-family: inherit;
}
.demo-tab.is-on {
  background: var(--grad-wide); border-color: transparent; color: #fff;
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

.demo-phone-zone {
  position: relative;
  width: 100%;
  max-width: 280px;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
.demo-glow {
  position: absolute;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 68%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glow-breathe 3s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.demo-device { position: relative; z-index: 2; width: 230px; }
.demo-device__frame {
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(155deg, #32324a 0%, #14141f 50%, #0a0a10 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.demo-device__notch {
  width: 82px; height: 22px; margin: 0 auto 7px;
  background: #08080e; border-radius: 0 0 13px 13px;
}
.demo-device__display {
  position: relative;
  height: 400px;
  border-radius: 26px;
  overflow: hidden;
  background: #0e0e18;
}

.demo-view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.demo-view.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dv-hd {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.dv-back { color: #a78bfa; font-size: 1.35rem; line-height: 1; font-weight: 400; }
.dv-dot {
  width: 8px; height: 8px; margin-left: auto;
  background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
}

.dv-list { flex: 1; padding: 0.35rem 0; overflow: hidden; }
.dv-row {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
}
.dv-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #6366f1, #f59e0b);
}
.dv-av--2 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.dv-av--3 { background: linear-gradient(135deg, #10b981, #34d399); }
.dv-row div { flex: 1; min-width: 0; }
.dv-row b { display: block; font-size: 0.8rem; margin-bottom: 0.1rem; }
.dv-row small { color: var(--muted); font-size: 0.68rem; }
.dv-row em { color: var(--muted); font-style: normal; font-size: 0.65rem; }

.dv-input {
  margin: 0.5rem 0.75rem 0.85rem;
  padding: 0.6rem 0.95rem;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  font-size: 0.68rem; color: var(--muted);
  flex-shrink: 0;
}

.dv-settings { flex: 1; padding: 0.5rem 1rem; }
.dv-set {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
}
.dv-set b { color: var(--orange); font-weight: 600; }
.dv-sw {
  width: 38px; height: 22px; border-radius: 11px;
  background: rgba(255,255,255,0.12); position: relative; display: block;
}
.dv-sw.on { background: rgba(139, 92, 246, 0.5); }
.dv-sw.on::after {
  content: ""; position: absolute; right: 3px; top: 3px;
  width: 16px; height: 16px; background: #a78bfa; border-radius: 50%;
}

.dv-chat {
  flex: 1; padding: 1rem 0.85rem;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.dv-bubble {
  max-width: 78%; padding: 0.5rem 0.8rem;
  border-radius: 14px; font-size: 0.72rem; font-weight: 500;
}
.dv-bubble--in { align-self: flex-start; background: rgba(255,255,255,0.08); }
.dv-bubble--out {
  align-self: flex-end;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}
.dv-wave {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; height: 44px; margin-top: 0.5rem;
}
.dv-wave span {
  width: 4px; background: var(--orange); border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}
.dv-wave span:nth-child(1) { height: 14px; animation-delay: 0s; }
.dv-wave span:nth-child(2) { height: 26px; animation-delay: 0.1s; }
.dv-wave span:nth-child(3) { height: 38px; animation-delay: 0.2s; }
.dv-wave span:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.dv-wave span:nth-child(5) { height: 42px; animation-delay: 0.4s; }
.dv-wave span:nth-child(6) { height: 24px; animation-delay: 0.5s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.55); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.demo-steps {
  display: flex; gap: 0.6rem; margin-top: 1.25rem;
  width: 100%; max-width: 280px;
}
.demo-step {
  flex: 1; text-align: center; padding: 0.65rem 0.4rem;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12, 14, 22, 0.75);
  font-size: 0.68rem; color: var(--muted);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.demo-step.is-on {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(99, 102, 241, 0.14);
  color: var(--text);
}
.demo-step i {
  display: block; width: 22px; height: 22px; margin: 0 auto 0.35rem;
  border-radius: 50%; background: var(--grad-wide);
  font-style: normal; font-size: 0.68rem; font-weight: 800; line-height: 22px;
}

/* Testimonials — updated */
.sec--reviews {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.1), transparent 55%);
}
.sec-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin: -2rem auto 2.5rem;
  max-width: 420px;
}
.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.trust-stat {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(12, 14, 22, 0.8);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
}
.trust-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}
.trust-stars {
  display: block;
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin: 0.25rem 0;
}
.trust-stat small {
  font-size: 0.75rem;
  color: var(--muted);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-bottom: 3rem;
}
.review {
  position: relative;
  padding: 1.5rem 1.4rem 2.25rem;
  background: linear-gradient(145deg, rgba(22, 27, 34, 0.95), rgba(12, 14, 22, 0.9));
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.review:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}
.review__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.review__avatar--2 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.review__avatar--3 { background: linear-gradient(135deg, #3b82f6, #10b981); }
.review__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.review__stars {
  font-size: 0.7rem;
  color: #fbbf24;
  letter-spacing: 1px;
}
.review__badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.review__q {
  font-size: 2.8rem;
  line-height: 0.6;
  color: var(--orange);
  opacity: 0.45;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 0.35rem;
}
.review p {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  padding-right: 1.5rem;
}
.review__ic {
  position: absolute;
  bottom: 1.15rem;
  right: 1.15rem;
  font-size: 1.25rem;
  opacity: 0.4;
}
.press {
  text-align: center;
}
.press__lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.press__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 3.5rem;
}
.press__logos span {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.03em;
}
.press .tc { color: rgba(255, 255, 255, 0.32); }
.press .tc::first-letter { color: #22c55e; }

/* Legal — Terms page */
.legal {
  padding: calc(var(--nav-h) + 2.5rem) 0 4rem;
  min-height: 80vh;
}
.legal__wrap { max-width: 780px; }
.legal__back {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.legal__back:hover { color: var(--text); }
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.legal__meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.legal__card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 2rem 2rem 2.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  line-height: 1.7;
}
.legal__card > p:first-child { margin-bottom: 1.5rem; color: var(--muted); }
.legal__card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.75rem 0 0.65rem;
  color: var(--text);
}
.legal__card h2:first-of-type { margin-top: 0.5rem; }
.legal__card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.75rem; }
.legal__card ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.legal__card li { margin-bottom: 0.4rem; }
.legal__card a { color: var(--orange); text-decoration: underline; }
.legal__card strong { color: var(--text); }
.legal__wrap--wide { max-width: 960px; }

.about-hero {
  text-align: center; padding: 2rem; margin-bottom: 2rem;
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--r-lg);
}
.about-hero__logo { width: 120px; margin: 0 auto 1.25rem; opacity: 0.95; }
.about-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem;
}
.about-card {
  padding: 1.5rem; background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--r-lg); text-align: center;
}
.about-card__ico { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.about-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.about-card p { font-size: 0.85rem; color: var(--muted); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  padding: 1.25rem; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--r);
}
.contact-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.contact-card p { font-size: 0.9rem; }
.contact-card a { color: var(--orange); }
.contact-card small { display: block; margin-top: 0.25rem; color: var(--muted); font-size: 0.78rem; }
.contact-form h2 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.contact-form label {
  display: block; margin-bottom: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; margin-top: 0.35rem; padding: 0.65rem 0.85rem;
  background: rgba(5, 7, 10, 0.6); border: 1px solid var(--card-border); border-radius: 10px;
  color: var(--text); font-family: inherit; font-size: 0.9rem;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-grad { width: 100%; margin-top: 0.5rem; border: none; cursor: pointer; }
.form-note { margin-top: 1rem; font-size: 0.85rem; color: #4ade80; }

.soon-hero { text-align: center; margin-bottom: 2.5rem; }
.soon-badge {
  display: inline-block; padding: 0.35rem 0.85rem; margin-bottom: 1rem;
  background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
}
.soon-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 0.75rem; }
.soon-hero p { color: var(--muted); max-width: 480px; margin: 0 auto; }
.soon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem;
}
.soon-card {
  text-align: center; padding: 2rem 1.25rem; background: var(--card);
  border: 1px solid var(--card-border); border-radius: var(--r-lg); opacity: 0.85;
}
.soon-card__ico { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.soon-card h3 { margin-bottom: 0.25rem; }
.soon-card p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }
.soon-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.25rem 0.6rem; border-radius: 6px;
  background: rgba(99, 102, 241, 0.15); color: #a5b4fc; border: 1px solid rgba(99, 102, 241, 0.3);
}
.soon-cta { text-align: center; color: var(--muted); }
.soon-cta a { color: var(--orange); text-decoration: underline; }

/* Download */
.dl-sec {
  position: relative;
  padding: 7rem 0 8rem;
  text-align: center;
  overflow: hidden;
}
.dl-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(99, 102, 241, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 30% 100%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 95%, rgba(168, 85, 247, 0.25) 0%, transparent 45%);
  pointer-events: none;
}
.dl-sec__in { position: relative; z-index: 1; }
.dl-sec h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.dl-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Footer */
.foot {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--card-border);
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05));
}
.foot__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.foot nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.foot nav a { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.foot nav a:hover { color: var(--text); }
.soc { display: flex; gap: 0.75rem; }
.soc a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: box-shadow 0.2s, color 0.2s;
}
.soc a:hover {
  color: #fff;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.35);
}
.soc svg { width: 17px; height: 17px; }
.copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.55);
  padding-bottom: 1rem;
}
.copy p { margin: 0; }
.copy__by {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { text-align: center; padding: 0; }
  .hero-btns { justify-content: center; }
  .feat-bar,
  .feat-zone .feat-bar { grid-template-columns: repeat(2, 1fr); }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-layout__phones { margin-top: 0.5rem; }
  .about-grid, .soon-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topnav, .topbar .btn-grad { display: none; }
  .mob-btn { display: flex; }
  .topnav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(5,7,10,0.98);
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid var(--card-border);
    z-index: 299;
  }
  .topnav.open a { padding: 0.75rem 0; }
  .tri-cards, .reviews { grid-template-columns: 1fr; }
  .trust-stats { flex-direction: column; align-items: center; }
  .trust-stat { max-width: 100%; width: 100%; }
  .review__badge { display: none; }
  .feat-bar,
  .feat-zone .feat-bar { grid-template-columns: 1fr; }
  .foot__row { flex-direction: column; text-align: center; }
  .foot nav { justify-content: center; }
}

@media (max-width: 520px) {
  .phone-bezel { width: 230px; }
  .phone-screen { min-height: 380px; }
  .float-lock { right: 0; }
  .lock-3d { font-size: 3.5rem; }
}
