/* ============================================================
   KODA — Main Stylesheet
   All styles scoped to prevent conflicts when embedded in
   third-party builders. Global resets and CSS variables first.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root tokens ────────────────────────────────────────────── */
:root {
  --bg:          #09090F;
  --bg2:         #0D0E1A;
  --bg3:         #0B0C17;
  --card:        #131524;
  --card-bright: #181A2E;
  --border:      rgba(120, 130, 200, 0.11);
  --border2:     rgba(120, 130, 200, 0.2);
  --violet:      #7B68EE;
  --violet-lt:   #9A8DF5;
  --violet-glow: rgba(123, 104, 238, 0.16);
  --mint:        #5BEAD4;
  --mint-dim:    rgba(91, 234, 212, 0.1);
  --gold:        #FFCA28;
  --gold-dim:    rgba(255, 202, 40, 0.1);
  --red:         #FF5370;
  --t1:          #ECEEF8;
  --t2:          #9BA5C8;
  --t3:          #575F80;
  --display:     'Space Grotesk', sans-serif;
  --body:        'Inter', sans-serif;
  --mono:        'JetBrains Mono', monospace;
  --r:           12px;
  --r-sm:        7px;
  --r-lg:        20px;
  --nav-h:       62px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.12;
  font-weight: 700;
  color: var(--t1);
}

p { color: var(--t2); }

a {
  color: var(--violet);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover { color: var(--mint); }

img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap  { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.s     { padding: 96px 0; }
.s-sm  { padding: 64px 0; }

/* ── Gradient text ──────────────────────────────────────────── */
.grad {
  background: linear-gradient(135deg, var(--violet-lt) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Pill / eyebrow labels ──────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid;
  margin-bottom: 20px;
}

.pill-v { color: var(--violet); background: var(--violet-glow); border-color: rgba(123,104,238,0.28); }
.pill-m { color: var(--mint);   background: var(--mint-dim);    border-color: rgba(91,234,212,0.22); }
.pill-g { color: var(--gold);   background: var(--gold-dim);    border-color: rgba(255,202,40,0.22); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--violet);
  color: #fff;
}
.btn-primary:hover {
  background: #9284f0;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(123, 104, 238, 0.32);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  color: var(--t1);
}

.btn-mint {
  background: var(--mint);
  color: var(--bg);
}
.btn-mint:hover {
  background: #78f0e0;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(91, 234, 212, 0.28);
  color: var(--bg);
}

.btn-lg {
  font-size: 1rem;
  padding: 15px 32px;
}

/* ── Scroll fade-in ─────────────────────────────────────────── */
.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade.on {
  opacity: 1;
  transform: none;
}

/* ── Section header ─────────────────────────────────────────── */
.s-head { text-align: center; margin-bottom: 56px; }
.s-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.025em; margin-bottom: 14px; }
.s-head p  { font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ================================================================
   NAVIGATION
   ================================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(9, 9, 15, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--violet), var(--mint));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--t2);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all 0.15s ease;
  display: block;
}

.nav-links a:hover {
  color: var(--t1);
  background: rgba(255,255,255,0.05);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--t2);
  margin-left: auto;
}

.ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(9, 9, 15, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 26px;
  z-index: 99;
}

.mobile-menu.open { display: block; }

.mob-links {
  list-style: none;
  margin-bottom: 18px;
}

.mob-links a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--t2);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.15s;
}

.mob-links a:hover { color: var(--t1); }
.mob-links li:last-child a { border-bottom: none; }

.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mob-ctas .btn {
  justify-content: center;
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 116px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse,
    rgba(123, 104, 238, 0.13) 0%,
    rgba(91, 234, 212, 0.05) 45%,
    transparent 70%);
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(123, 104, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 104, 238, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Alpha badge */
.alpha-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(255, 202, 40, 0.25);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.alpha-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: glow-pulse 0.8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { box-shadow: 0 0 2px var(--gold); }
  to   { box-shadow: 0 0 8px var(--gold); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--t2);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Chat preview card */
.chat-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 22px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.chat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--mint));
}

.chat-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.chat-dot-label {
  font-family: var(--mono);
  font-size: 0.67rem;
  color: var(--mint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-layers {
  position: relative;
  height: 72px;
}

.chat-locked, .chat-open {
  position: absolute;
  top: 0; left: 0; right: 0;
  font-size: 0.85rem;
  line-height: 1.65;
}

.chat-locked {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--t3);
  letter-spacing: 0.03em;
  animation: show-locked 7s ease-in-out infinite;
}

.chat-open {
  color: var(--t1);
  animation: show-open 7s ease-in-out infinite;
}

@keyframes show-locked {
  0%, 38%  { opacity: 1; transform: none; }
  48%, 93% { opacity: 0; transform: translateY(-8px); }
  100%     { opacity: 1; transform: none; }
}

@keyframes show-open {
  0%, 38%  { opacity: 0; transform: translateY(8px); }
  48%, 93% { opacity: 1; transform: none; }
  100%     { opacity: 0; transform: translateY(8px); }
}

.msg-name {
  color: var(--violet);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.msg-channel { color: var(--t3); font-size: 0.75rem; }

.chat-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  color: var(--t3);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ================================================================
   TRUST BAR
   ================================================================ */

.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.012);
  padding: 26px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-icon { font-size: 1rem; flex-shrink: 0; }
.trust-text { font-size: 0.8rem; color: var(--t3); white-space: nowrap; }

/* ================================================================
   FEATURE CARDS
   ================================================================ */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feat-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.feat-card.hi {
  border-color: rgba(123, 104, 238, 0.35);
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.08) 0%, var(--card) 55%);
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.fi-v { background: rgba(123, 104, 238, 0.14); }
.fi-m { background: rgba(91, 234, 212, 0.1); }
.fi-g { background: rgba(255, 202, 40, 0.1); }
.fi-r { background: rgba(255, 83, 112, 0.1); }

.feat-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feat-card p  { font-size: 0.875rem; line-height: 1.65; }

/* ================================================================
   PRIVACY SECTION
   ================================================================ */

.priv-s {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.priv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.priv-text h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); letter-spacing: -0.025em; margin-bottom: 20px; }
.priv-text p  { font-size: 0.97rem; line-height: 1.75; margin-bottom: 18px; }

.checks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.checks li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.9rem; color: var(--t2); }

.chk {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--mint-dim);
  border: 1px solid rgba(91, 234, 212, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--mint);
}

.panels { display: flex; flex-direction: column; gap: 13px; }

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
}

.panel-label {
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pl-bad  { color: var(--red); }
.pl-good { color: var(--mint); }

.panel-content { font-size: 0.85rem; line-height: 1.7; }

.panel-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ================================================================
   VOICE SECTION
   ================================================================ */

.voice-s {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg3) 100%);
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.voice-demo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.voice-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.voice-hdr {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}

.voice-live {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 7px var(--mint);
  animation: blink 2s ease-in-out infinite;
}

.voice-title { font-size: 0.85rem; font-weight: 600; color: var(--t1); }

.participants { display: flex; flex-direction: column; gap: 9px; }

.p-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 11px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.028);
  border: 1px solid transparent;
}

.p-row.talking {
  background: rgba(91, 234, 212, 0.07);
  border-color: rgba(91, 234, 212, 0.18);
}

.p-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.p-info { flex: 1; }
.p-name  { font-size: 0.84rem; font-weight: 600; color: var(--t1); }
.p-state { font-size: 0.7rem; color: var(--t3); }
.p-end   { margin-left: auto; }

.bars { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.bars span {
  width: 3px;
  border-radius: 2px;
  background: var(--mint);
  animation: bar 0.75s ease-in-out infinite;
}
.bars span:nth-child(1) { height: 5px;  animation-delay: 0s; }
.bars span:nth-child(2) { height: 11px; animation-delay: 0.14s; }
.bars span:nth-child(3) { height: 7px;  animation-delay: 0.28s; }
.bars span:nth-child(4) { height: 13px; animation-delay: 0.07s; }
.bars span:nth-child(5) { height: 5px;  animation-delay: 0.21s; }

@keyframes bar {
  0%, 100% { transform: scaleY(0.35); }
  50%       { transform: scaleY(1); }
}

.voice-badge {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--mint);
  padding: 8px 11px;
  background: var(--mint-dim);
  border-radius: var(--r-sm);
  border: 1px solid rgba(91, 234, 212, 0.18);
}

.voice-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -0.025em; margin-bottom: 18px; }
.voice-text p  { font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }

.voice-pts { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.voice-pts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--t2);
}
.voice-pts li::before {
  content: '→';
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ================================================================
   STATS BAR
   ================================================================ */

.stats-s {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 38px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-n {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--violet-lt), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 7px;
}

.stat-l { font-size: 0.8rem; color: var(--t3); line-height: 1.5; }

/* ================================================================
   CREATOR SECTION
   ================================================================ */

.creator-s { background: var(--bg); }

.creator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.creator-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); letter-spacing: -0.025em; margin-bottom: 18px; }
.creator-text p  { font-size: 0.97rem; line-height: 1.75; margin-bottom: 18px; }

.bank {
  background: var(--card);
  border: 1px solid rgba(255, 202, 40, 0.22);
  border-radius: var(--r);
  padding: 22px;
  margin-top: 20px;
}

.bank-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.bank-ico {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.bank-name { font-size: 0.88rem; font-weight: 600; color: var(--gold); }
.bank-sub  { font-size: 0.72rem; color: var(--t3); }
.bank-num  { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--gold); letter-spacing: -0.025em; margin-bottom: 4px; }
.bank-lbl  { font-size: 0.73rem; color: var(--t3); margin-bottom: 14px; }
.bank-uses { display: flex; flex-direction: column; gap: 7px; }
.bank-use  {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.81rem; color: var(--t2);
  padding: 7px 9px;
  background: rgba(255,255,255,0.028);
  border-radius: var(--r-sm);
}

.fee-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(123, 104, 238, 0.07);
  border: 1px solid rgba(123, 104, 238, 0.18);
  border-radius: var(--r-sm);
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--t2);
}

.fee-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--violet);
  flex-shrink: 0;
}

.creator-cards { display: flex; flex-direction: column; gap: 12px; }

.c-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.c-card:hover {
  border-color: var(--border2);
  transform: translateX(3px);
}

.c-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-card h3 { font-size: 0.93rem; font-weight: 600; margin-bottom: 5px; }
.c-card p  { font-size: 0.82rem; line-height: 1.6; }

/* ================================================================
   COMPARISON TABLE
   ================================================================ */

.why-s {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compare-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.compare-tbl th {
  background: var(--card);
  padding: 15px 18px;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--t1);
}

.compare-tbl th.koda-col { color: var(--violet); background: rgba(123, 104, 238, 0.07); }

.compare-tbl td {
  padding: 13px 18px;
  font-size: 0.86rem;
  color: var(--t2);
  border-bottom: 1px solid var(--border);
}

.compare-tbl tr:last-child td { border-bottom: none; }
.compare-tbl td.koda-col { background: rgba(123, 104, 238, 0.035); color: var(--t1); }
.compare-tbl tr:hover td { background: rgba(255,255,255,0.018); }
.compare-tbl tr:hover td.koda-col { background: rgba(123, 104, 238, 0.06); }

.yes { color: var(--mint); font-weight: 500; }
.no  { color: var(--t3); }
.par { color: var(--gold); }

/* ================================================================
   DOWNLOAD CTA
   ================================================================ */

.dl-s {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.dl-inner { max-width: 660px; margin: 0 auto; }
.dl-inner h2 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.03em; margin-bottom: 18px; }
.dl-inner > p { font-size: 1rem; margin-bottom: 36px; }

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 28px;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dl-btn:hover {
  border-color: var(--violet);
  background: rgba(123, 104, 238, 0.08);
  transform: translateY(-2px);
}

.dl-btn.primary {
  border-color: rgba(123, 104, 238, 0.5);
  background: rgba(123, 104, 238, 0.1);
}

.dl-icon { font-size: 1.5rem; flex-shrink: 0; }
.dl-info { text-align: left; }
.dl-lbl  { font-size: 0.7rem; color: var(--t3); display: block; }
.dl-name { font-family: var(--display); font-size: 0.92rem; font-weight: 600; color: var(--t1); }

.mobile-row {
  display: flex;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.dl-btn-mobile {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  opacity: 0.55;
  cursor: default;
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--t3);
}

.soon {
  font-family: var(--mono);
  font-size: 0.6rem;
  padding: 2px 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  color: var(--t3);
}

.dl-note { font-size: 0.79rem; color: var(--t3); }
.dl-note a { color: var(--t3); }
.dl-note a:hover { color: var(--t2); }

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 0 30px;
}

.foot-inner {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.foot-brand p {
  font-size: 0.8rem;
  color: var(--t3);
  line-height: 1.7;
  margin-top: 11px;
}

.foot-col h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 13px;
}

.foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: 0.83rem; color: var(--t3); text-decoration: none; transition: color 0.15s ease; }
.foot-links a:hover { color: var(--t1); }

.foot-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 11px;
}

.foot-bottom p { font-size: 0.77rem; color: var(--t3); }

.foot-legal { display: flex; gap: 18px; }
.foot-legal a { font-size: 0.77rem; color: var(--t3); text-decoration: none; transition: color 0.15s; }
.foot-legal a:hover { color: var(--t1); }

/* ================================================================
   LEGAL / INTERIOR PAGES (terms.html, privacy.html)
   ================================================================ */

.interior-hero {
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.interior-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.interior-hero p { font-size: 0.9rem; color: var(--t3); }

.doc-body { padding: 64px 0 80px; }

.doc-content {
  max-width: 760px;
}

.doc-content h2 {
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  color: var(--t1);
}

.doc-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.doc-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--t1);
}

.doc-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--t2);
  margin-bottom: 14px;
}

.doc-content ul, .doc-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.doc-content li {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--t2);
  margin-bottom: 6px;
}

.doc-content strong { color: var(--t1); font-weight: 600; }

.doc-content a { color: var(--violet); }
.doc-content a:hover { color: var(--mint); }

.doc-content .highlight-box {
  background: rgba(123, 104, 238, 0.07);
  border: 1px solid rgba(123, 104, 238, 0.2);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 24px 0;
}

.doc-content .highlight-box p {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}

.contact-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}

.contact-item .label {
  font-size: 0.7rem;
  color: var(--t3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-item a {
  font-size: 0.88rem;
  color: var(--violet);
}

/* ================================================================
   404 PAGE
   ================================================================ */

.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.not-found-inner { max-width: 480px; }

.not-found .code {
  font-family: var(--mono);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet-lt), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.not-found h1 { font-size: 1.6rem; margin-bottom: 12px; }
.not-found p  { font-size: 1rem; margin-bottom: 32px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 880px) {
  .priv-grid,
  .voice-grid,
  .creator-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat:nth-child(2) { border-right: none; }

  .foot-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; }

  .dl-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .s { padding: 60px 0; }

  .nav-links,
  .nav-ctas { display: none; }

  .nav-toggle { display: block; }

  .hero { min-height: 90vh; padding: 100px 0 60px; }

  .trust-inner { flex-direction: column; padding: 0 24px; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    padding: 11px 0;
  }
  .trust-item:last-child { border-bottom: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 16px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid var(--border); }
  .stat:nth-child(4) { border-right: none; }

  .foot-inner { grid-template-columns: 1fr; }

  .compare-tbl { display: block; overflow-x: auto; white-space: nowrap; }

  .mobile-row { flex-direction: column; align-items: center; }

  .interior-hero { padding: 100px 0 40px; }

  .doc-content h2 { margin-top: 36px; padding-top: 36px; font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-locked, .chat-open { animation: none; }
  .chat-open   { opacity: 1; }
  .chat-locked { opacity: 0; }
  .fade        { opacity: 1; transform: none; }
  .bars span, .chat-dot, .voice-live, .alpha-dot { animation: none; }
}
