/* =============================================
   TAVRA — STYLE.CSS
   Premium AI overlay landing page
   ============================================= */

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

:root {
  --bg: #ffffff;
  --bg-2: #f7f8fa;
  --bg-3: #eef0f4;
  --surface: rgba(0,0,0,0.03);
  --surface-hover: rgba(0,0,0,0.055);
  --border: rgba(0,0,0,0.08);
  --border-bright: rgba(0,0,0,0.15);

  --blue: #000000;
  --blue-light: #333333;
  --blue-dim: rgba(0,0,0,0.06);

  --text-primary: #0f1117;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;

  --gradient-main: linear-gradient(135deg, #0a0f1e, #1e3a5f);
  --gradient-glow: radial-gradient(ellipse at center, rgba(10,15,30,0.04) 0%, transparent 70%);

  --radius-sm: 100px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font: 'Geist', -apple-system, system-ui, sans-serif;
  --font-serif: 'EB Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

/* =================== NAVBAR =================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.logo-icon {
  color: var(--text-primary);
  flex-shrink: 0;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--surface);
}

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

.btn-ghost {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--surface);
}
.btn-nav-discord {
  color: #8a8d94;
}
.btn-nav-discord svg {
  color: #5865f2;
}

.btn-primary {
  text-decoration: none;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #222222;
}

.price-checkout-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 16px;
}
.price-checkout-group a {
  text-align: center;
  justify-content: center;
}
.btn-crypto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-crypto:hover {
  background: var(--bg-2);
  border-color: rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* =================== HERO =================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(10,15,30,0.04) 0%, transparent 70%);
  opacity: 1;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
}
.hero-glow-2 {
  display: none;
}

@keyframes floatGlow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-20px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: #2dd4bf;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(46px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
  max-width: 760px;
}

.gradient-text {
  color: var(--blue);
}

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.br-desktop { display: none; }
@media (min-width: 700px) { .br-desktop { display: block; } }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}



.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #000000;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-hero-primary:hover {
  background: #222222;
  transform: translateY(-2px);
}

.btn-hero-crypto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-hero-crypto:hover {
  background: var(--surface-hover);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 100px;
  transition: all 0.25s;
}
.btn-hero-ghost:hover {
  color: var(--text-primary);
}

/* ---- HERO MOCKUP ---- */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto 20px;
}

@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mockup-window {
  background: #111111;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 100px rgba(0,0,0,0.7);
  overflow: hidden;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.mockup-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 auto;
}

.mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

.mockup-question {
  background: rgba(207,96,56,0.06);
  border: 1px solid rgba(207,96,56,0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.q-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.q-text { font-size: 15px; font-weight: 500; }

.mockup-answer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.answer-typing { display: flex; gap: 10px; align-items: flex-start; }

.ai-badge {
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 100px;
  margin-top: 2px;
}

.answer-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.typed-text {
  border-right: 2px solid var(--blue);
  animation: blink-cursor 0.8s step-end infinite;
  font-size: 13.5px;
}
@keyframes blink-cursor {
  0%, 100% { border-color: var(--blue); }
  50% { border-color: transparent; }
}

.confidence-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.confidence-label { font-size: 11px; color: var(--text-muted); width: 65px; }
.confidence-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.confidence-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 2px;
  animation: fillBar 2s 0.5s ease forwards;
}
@keyframes fillBar {
  to { width: 98%; }
}
.confidence-pct { font-size: 12px; color: var(--blue-light); font-weight: 600; }

.mockup-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface);
}

/* ---- SOCIAL PROOF ---- */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-secondary);
}
.sp-avatars { display: flex; }
.sp-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  object-fit: cover;
}
.sp-avatar:first-child { margin-left: 0; }
.sp-stars { color: #ffd700; margin-right: 4px; font-size: 12px; }

/* =================== HERO STAT PILLS =================== */
.hero-social-proof { margin-top: 8px; }
.sp-text { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.sp-pill {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* =================== PLATFORMS SECTION =================== */
.platforms-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 40px;
  text-align: center;
  background: var(--bg-2);
}
.strip-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.platforms-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  min-width: 140px;
}
.platform-card:hover {
  border-color: rgba(207,96,56,0.3);
  background: rgba(207,96,56,0.04);
  transform: translateY(-3px);
}
.platform-icon { font-size: 20px; }
.platform-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.platform-status {
  font-size: 11px;
  font-weight: 700;
  color: #3da862;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.platform-card-more {
  border-style: dashed !important;
  opacity: 0.6;
}
.platform-card-more .platform-status {
  color: var(--text-muted);
}

/* =================== COMMUNITY SECTION =================== */
.community-section {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.community-left { display: flex; flex-direction: column; gap: 20px; }
.community-left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}
.community-left > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.discord-stats {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dstat { display: flex; flex-direction: column; gap: 4px; }
.dstat-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-primary);
}
.dstat-label { font-size: 13px; color: var(--text-muted); }

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #5865f2;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 100px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(88,101,242,0.3);
  align-self: flex-start;
}
.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(88,101,242,0.4);
  background: #4752c4;
}
.btn-discord-sm { font-size: 14px; padding: 12px 22px; }

/* Discord mockup */
.discord-mockup {
  background: #313338;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}
.dm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #2b2d31;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dm-server-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.dm-server-name { font-size: 14px; font-weight: 700; color: #fff; }
.dm-channel { font-size: 12px; color: #949ba4; }
.dm-messages { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.dm-msg { display: flex; gap: 12px; align-items: flex-start; }
.dm-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.dm-content { display: flex; flex-direction: column; gap: 3px; }
.dm-user { font-size: 13px; font-weight: 700; color: #fff; }
.dm-time { font-size: 11px; color: #949ba4; margin-left: 6px; }
.dm-text { font-size: 14px; color: #dbdee1; line-height: 1.5; }
.dm-input {
  margin: 8px 16px 16px;
  background: #383a40;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  color: #6d6f78;
  border: none;
}

@media (max-width: 900px) {
  .community-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =================== STEALTH SPLIT SECTION =================== */
.stealth-section {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.stealth-header {
  text-align: center;
  margin-bottom: 64px;
}
.stealth-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.08;
}
.stealth-header p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.stealth-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 64px;
}

.split-pane { display: flex; flex-direction: column; gap: 12px; }

.split-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  width: fit-content;
}
.split-label-bad { color: #f87171; border-color: rgba(248,113,113,0.25); background: rgba(248,113,113,0.05); }
.split-label-good { color: #4ade80; border-color: rgba(74,222,128,0.25); background: rgba(74,222,128,0.05); }

.label-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-red-sm { background: #f87171; }
.dot-green-sm { background: #4ade80; }

.split-screen {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.fake-browser {}
.fake-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #2a2a2a;
  border-bottom: 1px solid #333;
}
.fake-tabs {
  background: #fff;
  color: #333;
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 4px 4px 0 0;
  font-weight: 600;
  margin-bottom: -9px;
}
.fake-browser-controls {
  display: flex;
  gap: 14px;
  color: #999;
  font-size: 13px;
}
.ctrl-btn { cursor: default; }

.fake-browser-body.exam-viewer {
  background: #fff;
  color: #333;
  padding: 0;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.exam-top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.exam-title { font-size: 13px; font-weight: 600; color: #333; }
.exam-timer { font-size: 13px; color: #333; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.exam-timer::before {
  content: "";
  width: 14px; height: 14px;
  border: 2px solid #3b82f6;
  border-top-color: transparent;
  border-radius: 50%;
  animation: rotate 2s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.exam-main-layout {
  display: flex;
  flex: 1;
  background: #fff;
}

.exam-sidebar {
  width: 130px;
  background: #fff;
  border-right: 1px solid #eee;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-group { margin-bottom: 8px; }
.group-label { font-size: 11px; font-weight: 700; color: #333; margin-bottom: 10px; }
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.page-num {
  font-size: 11px;
  padding: 6px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 2px;
  color: #333;
  background: #fff;
}
.page-active { border-color: #3b82f6; background: #f0f7ff; font-weight: 700; position: relative; }
.page-active::after {
  content: " ✓";
  color: #3b82f6;
}

.exam-content-area {
  flex: 1;
  padding: 32px 48px;
  background: #fff;
  text-align: left;
}
.question-block { max-width: 600px; }
.q-header { font-size: 13.5px; font-weight: 700; color: #333; margin-bottom: 16px; }
.q-body { font-size: 13.5px; color: #333; line-height: 1.6; margin-bottom: 30px; }
.math-expr {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  text-align: center;
  margin: 25px 0;
  color: #000;
  font-weight: 500;
}
.q-audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f0f0;
  padding: 4px 12px;
  font-size: 11px;
  border-radius: 3px;
  border: 1px solid #ccc;
  cursor: default;
  font-weight: 600;
}

.q-options { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.q-opt {
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
  border: 1px solid #eee;
  border-radius: 4px;
}
.q-opt-correct {
  border-color: #3b82f6;
  background: #f0f7ff;
}
.opt-radio {
  width: 14px; height: 14px;
  border: 1px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
}
.opt-radio-selected {
  border-color: #3b82f6;
  background: radial-gradient(#3b82f6 3px, #fff 4px);
}

.proctor-clean-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  font-size: 11px;
  color: #bbb;
  font-weight: 600;
}

/* HERO OVERLAY */
.tavra-main-overlay {
  background: rgba(15,15,18,0.96);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 24px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  text-align: left;
}
.ew-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
.ew-logo-group { display: flex; align-items: center; gap: 8px; }
.ew-logo-hex { color: var(--blue); font-size: 18px; font-weight: 900; }
.ew-logo-text { color: var(--text-primary); font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }
.ew-status-pill { background: rgba(15,191,168,0.12); color: var(--blue); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }

.ew-content { display: flex; flex-direction: column; gap: 20px; }
.ew-thought-process { display: flex; flex-direction: column; gap: 8px; }
.thought-line { font-size: 12px; color: #666; display: flex; align-items: center; gap: 10px; }
.thought-line span { width: 4px; height: 4px; background: var(--blue); border-radius: 50%; }

.ew-result { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 15px; border: 1px solid var(--border); }
.ew-res-label { font-size: 10px; color: #555; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 700; }
.ew-res-text { font-size: 13.5px; color: #ccc; line-height: 1.6; }
.ew-res-text strong { color: #fff; }

.ew-footer { margin-top: 15px; }
.ew-key-hint { font-size: 11px; color: #555; font-style: italic; }

/* STEALTH OVERLAY (REFINED) */
.tavra-floating-overlay-full {
  position: absolute;
  top: 10px; right: 10px;
  width: 200px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.ew-f-status-bar {
  background: #151515;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ew-f-tag { font-size: 9px; font-weight: 800; color: var(--blue); letter-spacing: 0.5px; }
.ew-f-timer { font-size: 9px; color: #666; }

.ew-f-answer-box { padding: 12px; }
.ew-f-ans { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ew-f-reasoning { font-size: 10px; color: #777; line-height: 1.4; }

/* Remove old styles */
.mockup-window { display: none; }

/* =================== VIDEO DEMO SIMULATION =================== */
.demo-playback {
  width: 100%;
  height: 100%;
  background: var(--bg-3);
  position: relative;
  display: flex;
  flex-direction: column;
}

.demo-screen {
  flex: 1;
  background: #fff;
  margin: 20px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.demo-browser-bar {
  height: 32px;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: flex-end;
  padding-left: 20px;
}
.d-tabs {
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 4px 4px 0 0;
  color: #333;
}

.canvas-theme-body {
  height: calc(100% - 32px);
  background: #f5f5f5;
  padding: 30px;
  overflow: hidden;
  text-align: left;
}
.canvas-question-card {
  background: #fff;
  border: 1px solid #c7cdd1;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.canvas-q-header {
  background: #f5f5f5;
  padding: 12px 20px;
  border-bottom: 1px solid #c7cdd1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-q-title { font-size: 14px; font-weight: 700; color: #2d3b45; }
.c-q-points { font-size: 13px; font-weight: 600; color: #556572; }
.canvas-q-body {
  padding: 20px;
  font-size: 13px;
  color: #2d3b45;
  line-height: 1.6;
}
.canvas-q-body p { margin-bottom: 14px; }
.canvas-input-box {
  width: 140px;
  height: 36px;
  border: 1px solid #c7cdd1;
  border-radius: 3px;
  margin-top: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.canvas-input-box.typing::after {
  content: '|';
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* The Cursor */
.demo-cursor {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
  top: 50%; left: 50%;
  transition: all 1.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* The Overlay */
.demo-overlay {
  position: absolute;
  top: 20px; right: 20px;
  width: 220px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s ease;
  z-index: 500;
  text-align: left;
}
.demo-overlay.active { opacity: 1; transform: translateY(0); }
.d-o-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; border-bottom: 1px solid #222; padding-bottom: 8px; }
.d-o-logo { color: var(--blue); font-size: 14px; font-weight: 900; }
.d-o-status { font-size: 10px; color: #555; text-transform: uppercase; letter-spacing: 0.5px; }
.d-o-content { font-size: 12px; color: #ddd; line-height: 1.5; min-height: 40px; white-space: pre-wrap; font-family: monospace, sans-serif; }

.demo-controls {
  padding: 10px 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.demo-play-toggle {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.demo-play-toggle:hover { opacity: 1; }
.demo-live-tag {
  font-size: 10px;
  font-weight: 800;
  color: #f87171;
  letter-spacing: 1px;
}

/* Divider */
.split-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 48px;
}
.split-divider-line {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.split-divider-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Stealth facts row */
.stealth-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sfact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
  background: var(--bg-2);
  transition: background 0.2s;
}
.sfact:hover { background: var(--surface); }
.sfact-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.sfact-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.sfact-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

@media (max-width: 900px) {
  .stealth-split { grid-template-columns: 1fr; }
  .split-divider { flex-direction: row; padding-top: 0; }
  .split-divider-line { width: 40px; height: 1px; }
  .stealth-facts { grid-template-columns: 1fr 1fr; }
}

/* =================== VIDEO DEMO SECTION =================== */
.demo-section {
  padding: 80px 40px 120px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.demo-inner h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 16px 0 8px;
}
.demo-inner p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.video-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  aspect-ratio: 16/9;
  position: relative;
}
.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: absolute;
  inset: 0;
}
.video-play-btn {
  width: 64px; height: 64px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  padding-left: 4px;
}
.video-play-btn:hover {
  transform: scale(1.08);
  background: #2563eb;
}
.video-label { font-size: 13px; color: var(--text-muted); }

/* =================== SECTIONS SHARED =================== */
.how-section,
.features-section,
.testimonials-section,
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--border-bright);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  background: var(--surface);
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* =================== HOW IT WORKS =================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.step-card:hover {
  border-color: var(--border-bright);
  background: var(--surface-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.step-number {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

.step-icon {
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =================== FEATURES / BENTO =================== */
.features-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.features-bento-2 {
  grid-template-columns: 1fr 1fr;
}

.bento-col { display: flex; flex-direction: column; gap: 20px; }

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: var(--border-bright);
  background: var(--surface-hover);
  transform: translateY(-3px);
}

.bento-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.bento-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.bento-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Stealth visual */
.bento-visual { margin-top: 24px; }
.stealth-visual {
  display: flex;
  align-items: center;
  gap: 16px;
}

.screen-sim {
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.screen-label {
  font-size: 10px;
  text-align: center;
  padding: 5px;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.screen-content {
  height: 80px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-content.clean {}
.mini-overlay {
  background: rgba(207,96,56,0.12);
  border: 1px solid rgba(207,96,56,0.3);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--blue);
  font-weight: 600;
}
.vs-divider {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Speed meter */
.speed-meter { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.speed-bar-wrap { display: flex; align-items: center; gap: 10px; }
.speed-label { font-size: 12px; color: var(--text-muted); width: 80px; }
.speed-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.speed-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1.5s ease;
}
.speed-fill.fast { background: var(--gradient-main); }
.speed-fill.slow { background: rgba(255,255,255,0.2); }
.speed-time { font-size: 12px; color: var(--text-secondary); width: 32px; }

/* Subject pills */
.subject-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(207,96,56,0.08);
  border: 1px solid rgba(207,96,56,0.18);
  font-size: 12px;
  color: var(--blue);
}

/* Highlight stat card */
.highlight-card {
  background: var(--gradient-main) !important;
  border: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff !important;
}

.big-stat {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
}

/* =================== TESTIMONIALS =================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.testi-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.testi-featured {
  background: rgba(207,96,56,0.06);
  border-color: rgba(207,96,56,0.3);
}

.testi-stars { color: #ffd700; font-size: 14px; margin-bottom: 14px; }

.testi-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name { font-size: 14px; font-weight: 600; }
.author-role { font-size: 12px; color: var(--text-muted); }

/* =================== PRICING =================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}
.pricing-single {
  display: flex;
  justify-content: center;
}
.price-solo {
  max-width: 520px;
  width: 100%;
}
.price-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.price-featured {
  background: #ffffff;
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.price-featured:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.price-badge-top {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.price-amount span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-primary);
}
.price-features li.disabled { color: var(--text-muted); }

.btn-price-primary {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  color: #0a0f1e;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 100px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-price-primary:hover {
  transform: translateY(-2px);
  background: #e8eef8;
  box-shadow: 0 6px 30px rgba(255,255,255,0.2);
}

.btn-price-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-bright);
}

.price-stock-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffb700;
  background: rgba(255,183,0,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid rgba(255,183,0,0.2);
  animation: pulse-gold 2s infinite;
}

.price-disclaimer {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ef4444;
  background: rgba(239,68,68,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid rgba(239,68,68,0.2);
}

@keyframes pulse-gold {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}



/* =================== CTA SECTION =================== */
.cta-section {
  position: relative;
  text-align: center;
  padding: 140px 40px;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(207,96,56,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== FOOTER =================== */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.footer-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { color: var(--text-primary) !important; }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-primary); }
.footer-copy { color: var(--text-muted); }
.footer-discord {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5865f2;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.footer-discord:hover { opacity: 0.75; }

/* =================== SCROLL ANIMATIONS =================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .features-bento,
  .features-bento-2,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; }
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* =================== FEATURE THREE-CARD GRID =================== */
.feat-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.feat-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.feat-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.feat-visual-split {
  padding: 0;
  gap: 0;
  align-items: stretch;
  justify-content: stretch;
}

.feat-desc {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.feat-desc strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* -- Recording UI (card 1) -- */
.rec-ui {
  width: 100%;
  max-width: 210px;
  background: #111318;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.rec-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: #0e1016;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rec-dot {
  width: 7px; height: 7px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-rec 1.5s ease-in-out infinite;
}
@keyframes pulse-rec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.rec-label {
  font-size: 9px;
  font-weight: 800;
  color: #ef4444;
  letter-spacing: 1.5px;
}
.rec-title {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-left: auto;
}
.rec-screen {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rec-screen-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rec-line {
  height: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  width: 100%;
}
.rec-line-short { width: 60%; }
.rec-clean-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  padding-top: 4px;
}

/* -- Visible/Invisible split (card 2) -- */
.vis-half {
  flex: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.vis-you {
  background: rgba(255,255,255,0.04);
  border-right: 1px solid var(--border);
}
.vis-others {
  background: rgba(0,0,0,0.2);
  justify-content: space-between;
}
.vis-half-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.tavra-mini-panel {
  background: #080c14;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}
.tmp-bar {
  background: #0d1120;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tmp-answer {
  padding: 8px 10px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.tmp-models {
  padding: 0 10px 8px;
  font-size: 8.5px;
  color: rgba(255,255,255,0.25);
}
.vis-nothing {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.vis-nothing-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.15;
}

/* -- Hotkey UI (card 3) -- */
.hotkey-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hk-hint {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.hk-hint-sm {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: -6px;
}
.hk-keys {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hk-key {
  background: #ffffff;
  border: 1px solid var(--border-bright);
  border-bottom: 3px solid var(--border-bright);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  min-width: 54px;
  text-align: center;
  font-family: var(--font);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.hk-plus {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
}

/* -- Hotkey intercept rows -- */
.hk-intercept {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 200px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
}
.hk-intercept-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
}
.hk-intercept-label { color: var(--text-secondary); }
.hk-intercept-check { color: #16a34a; font-weight: 600; }
.hk-intercept-x { color: var(--text-muted); font-weight: 500; }

/* -- Sources UI (card 2) -- */
.sources-ui {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 200px;
}
.source-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
}
.source-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.source-label {
  flex: 1;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.source-check {
  font-size: 11px;
  color: #16a34a;
  font-weight: 700;
}

/* -- Capture scan animation (card 2) -- */
.capture-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: scanDown 2.5s ease-in-out infinite;
}
@keyframes scanDown {
  0%   { top: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* -- Focus UI (card 2) -- */
.focus-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 220px;
}
.focus-app {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.03);
}
.focus-app-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.04);
}
.focus-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.focus-app-title {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}
.focus-app-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.focus-input {
  background: rgba(255,255,255,0.6);
  border: 1.5px solid #3b82f6;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-primary);
}
.focus-cursor {
  animation: blink 1s step-end infinite;
  color: #3b82f6;
  font-weight: 300;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.focus-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

@media (max-width: 900px) {
  .feat-three-grid { grid-template-columns: 1fr; }
}

/* =================== CHECKOUT PAGE =================== */
#navbar.checkout-nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.checkout-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background: #ffffff;
}

.checkout-box {
  background: transparent;
  border: none;
  width: 100%;
  max-width: 400px;
  padding: 0;
  box-shadow: none;
  position: relative;
}

.checkout-back {
  display: inline-block;
  color: rgba(0,0,0,0.45);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.checkout-back:hover {
  color: #000000;
}

.checkout-header h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  color: #000000;
}
.checkout-header p {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 32px;
}

.checkout-summary {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 16px 0;
  margin-bottom: 28px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}
.summary-amount {
  color: #000000;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ---- Form ---- */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-field input[type="email"] {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: #000000;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  border-radius: 0;
  padding: 8px 0 10px;
  transition: border-color 0.2s;
  outline: none;
}
.form-field input[type="email"]::placeholder {
  color: rgba(0,0,0,0.25);
}
.form-field input[type="email"]:focus {
  border-bottom-color: #000000;
}
.form-hint {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
}

/* ---- TOS checkbox ---- */
.tos-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: opacity 0.2s;
}
.tos-checkbox:hover {
  opacity: 0.8;
}
.tos-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 4px;
  background: transparent;
  position: relative;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.tos-checkbox:hover .custom-checkbox {
  border-color: #000000;
}
.tos-checkbox input:checked + .custom-checkbox {
  background: #000000;
  border-color: #000000;
}
.tos-checkbox input:checked + .custom-checkbox::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tos-checkbox span {
  flex: 1;
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  line-height: 1.5;
}
.tos-checkbox a {
  color: #000000;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.25);
  text-underline-offset: 2px;
}

/* ---- Pay button ---- */
.btn-pay {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-pay:hover:not(:disabled) {
  background: #1a1a1a;
  transform: translateY(-1px);
}
.btn-pay:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---- Pay meta row ---- */
.pay-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.pay-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
}
.pay-secure svg { color: rgba(0,0,0,0.4); }
.pay-delivery {
  font-size: 12px;
  color: rgba(0,0,0,0.35);
  text-align: center;
}

.shake {
  animation: horizontal-shake 0.4s;
  border-color: #ef4444 !important;
}
@keyframes horizontal-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

/* ---- Referral code ---- */
.referral-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.referral-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  color: rgba(0,0,0,0.38);
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.18);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.referral-toggle:hover { color: #000; }
.referral-toggle.hidden { display: none; }

.referral-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s;
  opacity: 0;
}
.referral-field-wrap.open {
  max-height: 90px;
  opacity: 1;
  margin-top: 10px;
}

.form-field input[type="text"] {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: #000000;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  border-radius: 0;
  padding: 8px 0 10px;
  transition: border-color 0.2s;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form-field input[type="text"]::placeholder {
  color: rgba(0,0,0,0.25);
  text-transform: none;
  letter-spacing: 0;
}
.form-field input[type="text"]:focus {
  border-bottom-color: #000000;
}

.referral-hint {
  font-size: 11px;
  color: rgba(0,0,0,0.35);
}

/* ---- Discount row in summary ---- */
.discount-row {
  display: none;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.discount-row.visible { display: flex; }
.discount-row span:first-child {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
}
.discount-value {
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
}

/* Original price strikethrough when discount applied */
.summary-amount s {
  color: rgba(0,0,0,0.28);
  font-weight: 400;
  text-decoration-color: rgba(0,0,0,0.28);
}


/* =================== OS PREVIEW SECTION =================== */
.osp-section {
  width: 100%;
  background: var(--bg);
  padding: 8px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.osp-wrap {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.osp-screen {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.10), 0 24px 60px -20px rgba(0,0,0,0.22);
}
/* Windows 11 default "bloom" wallpaper, recreated with gradients */
.osp-wallpaper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 50% 48%, rgba(120,180,255,0.55), transparent 60%),
    radial-gradient(40% 38% at 50% 45%, rgba(180,150,255,0.45), transparent 65%),
    radial-gradient(120% 120% at 50% 50%, rgba(40,90,200,0.5), transparent 70%),
    linear-gradient(160deg, #0a1f4d 0%, #103a86 40%, #0a2566 75%, #061334 100%);
}
.osp-wallpaper-mac {
  background:
    radial-gradient(80% 70% at 30% 20%, rgba(255,120,90,0.5), transparent 60%),
    radial-gradient(70% 80% at 80% 90%, rgba(150,80,220,0.5), transparent 60%),
    linear-gradient(150deg, #2a1a3e 0%, #3d2456 50%, #1a1030 100%);
}
.osp-window {
  position: absolute;
  top: 20px; left: 24px;
  width: 58%;
  height: calc(100% - 20px - 38px - 16px);
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,0,0,0.1);
}
.osp-win-bar {
  height: 30px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 14px;
  flex-shrink: 0;
}
.osp-win-title {
  font-size: 10px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}
.osp-win-icon {
  width: 10px; height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg,#7C7AFB,#5B59E8);
  flex-shrink: 0;
}
.osp-win-controls { display: flex; }
.owc {
  width: 28px; height: 26px;
  display: grid; place-items: center;
  font-size: 10px; color: #6b7280;
  border-radius: 3px;
}
.owc-min::before { content: '\2013'; }
.owc-max::before { content: '\25A1'; font-size: 9px; }
.owc-close { background: #ef4444; color: white; width: 34px; }
.owc-close::before { content: '\00D7'; font-size: 14px; font-weight: 700; }
.osp-win-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.osp-line {
  height: 7px;
  background: #d1d5db;
  border-radius: 999px;
}
.osp-line.dim { background: #e5e7eb; }
.osp-line.lw-50 { width: 50%; }
.osp-line.lw-55 { width: 55%; }
.osp-line.lw-60 { width: 60%; }
.osp-line.lw-70 { width: 70%; }
.osp-line.lw-75 { width: 75%; }
.osp-line.lw-80 { width: 80%; }
.osp-line.lw-85 { width: 85%; }
.osp-line.lw-90 { width: 90%; }
.osp-opts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 6px;
}
.osp-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px;
  border-radius: 4px;
}
.osp-opt-sel { background: rgba(124,122,251,0.10); }
.osp-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid #9ca3af;
  flex-shrink: 0;
}
.osp-opt-sel .osp-dot {
  border-color: #7c7afb;
  background: radial-gradient(circle, #7c7afb 38%, white 40%);
}
/* Tavra floating overlay — white text top-right, matching real app */
.osp-overlay {
  position: absolute;
  top: 26px;
  right: 22px;
  max-width: 30%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  transition: opacity 0.42s cubic-bezier(.2,.7,.2,1),
              transform 0.42s cubic-bezier(.2,.7,.2,1);
}
.osp-overlay.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.osp-overlay-text {
  display: block;
  font-family: 'Inter','Segoe UI',system-ui,sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.95);
}
/* blinking caret while typing */
.osp-overlay-text.typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  background: #fff;
  vertical-align: text-bottom;
  animation: osp-caret 0.7s steps(1) infinite;
}
@keyframes osp-caret { 50% { opacity: 0; } }

/* Hotkey hint chip — flashes just before the overlay summons */
.osp-hotkey {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: rgba(18,20,28,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 36px -10px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.osp-hotkey.flash {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.osp-hotkey kbd {
  font-family: 'Inter','Segoe UI',system-ui,sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 4px 9px;
}
.osp-plus { color: rgba(255,255,255,0.5); font-size: 11px; }
.osp-mouse { width: 15px; height: 15px; color: #fff; }
.osp-gesture {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
/* Win11 taskbar */
.osp-taskbar {
  position: absolute;
  inset: auto 0 0 0;
  height: 38px;
  background: rgba(20,22,32,0.82);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.osp-tb-icons { display: flex; align-items: center; gap: 7px; }
.otb {
  width: 24px; height: 24px;
  border-radius: 5px;
  background: rgba(255,255,255,0.09);
  position: relative;
}
.otb-start {
  background: transparent;
  display: grid;
  place-items: center;
}
.otb.search { background: linear-gradient(135deg,#5B5FC7,#7B7EE0); }
.otb.edge   { background: linear-gradient(135deg,#00B7FF,#0078D4); }
.otb.doc    { background: linear-gradient(135deg,#F3F4F6,#D1D5DB); }
.otb.files  { background: linear-gradient(135deg,#FFB100,#F59E0B); }
/* running-app underline (Win11 style) */
.otb-active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.85);
}
.osp-tb-tray {
  position: absolute;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.82);
}
.otray-ico { width: 15px; height: 13px; color: rgba(255,255,255,0.82); }
.otray-clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

/* ---- OS tabs ---- */
.osp-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(0,0,0,0.04);
  border-radius: 12px;
  margin-bottom: 18px;
  align-self: center;
}
.osp-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  background: transparent;
  border: none;
  border-radius: 9px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.osp-tab:hover:not(:disabled):not(.active) { color: #000; }
.osp-tab.active {
  background: #ffffff;
  color: #000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
}
.osp-tab:disabled { cursor: not-allowed; color: rgba(0,0,0,0.32); }
.osp-tab svg { flex-shrink: 0; }
.osp-tab-soon {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  background: rgba(0,0,0,0.07);
  border-radius: 100px;
  padding: 2px 7px;
}

/* ---- Mac placeholder ---- */
.osp-screen.hidden { display: none; }
.osp-mac {
  display: grid;
  place-items: center;
}
.osp-mac-soon {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-align: center;
}
.osp-mac-soon svg { margin-bottom: 6px; }
.osp-mac-soon-title { font-size: 16px; font-weight: 600; }
.osp-mac-soon-sub { font-size: 12px; color: rgba(255,255,255,0.7); }
.osp-caption {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  align-self: center;
  margin-top: 18px;
  text-align: center;
}
.osp-caption svg { flex-shrink: 0; color: rgba(0,0,0,0.4); }

.osp-pretitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 4px;
}

/* =================== PARTNER (co-branded) =================== */
.partner-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #4f46e5, #0ea5e9);
  text-align: center;
  padding: 0 16px;
}
.partner-bar strong { font-weight: 700; }
.partner-bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.9);
}
/* push the fixed navbar down below the partner bar (ID-level specificity) */
#navbar.navbar-offset { top: 36px; }

/* Co-brand row in hero */
.cobrand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
}
.cobrand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}
.cobrand-x {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Pricing — partner badge + struck price */
.price-partner-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
  background: linear-gradient(90deg, #4f46e5, #0ea5e9);
  border-radius: 100px;
  padding: 3px 10px;
  vertical-align: middle;
}
.price-was {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
}
