/* ============================================================
   AI Minute Note — Landing Page Styles
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #FFFFFF;
  --bg-surface:   #F8FAFC;
  --bg-card:      rgba(0,0,0,0.025);
  --bg-card-h:    rgba(0,0,0,0.05);
  --border:       rgba(0,0,0,0.08);
  --border-h:     rgba(0,0,0,0.16);
  --text-1:       #0F172A;
  --text-2:       #475569;
  --text-3:       #94A3B8;
  --purple:       #7C3AED;
  --purple-light: #6D28D9;
  --cyan:         #0891B2;
  --teal:         #059669;
  --blue:         #2563EB;
  --amber:        #D97706;
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --shadow-card:  0 0 0 1px var(--border), 0 4px 24px rgba(0,0,0,0.06);
  --shadow-glow:  0 0 60px rgba(124,58,237,0.1);
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.18);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}

.btn-ghost {
  color: var(--text-2);
  background: transparent;
}
.btn-ghost:hover { color: var(--text-1); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #5B21B6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.28);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.38);
}
.btn-primary:active { transform: translateY(0); }

/* === APP STORE BUTTON === */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  cursor: pointer;
  transition: var(--transition);
  color: #fff;
}
.app-store-btn:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.apple-icon { flex-shrink: 0; }
.btn-text-block { display: flex; flex-direction: column; line-height: 1.2; }
.download-label { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 400; }
.store-label { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }

.app-store-lg .store-label { font-size: 22px; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay  { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  background: transparent;
  border: none;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-1); background: var(--bg-card); }

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  font-size: 15px;
  color: var(--text-2);
  padding: 10px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--text-1); background: var(--bg-card); }
.nav-mobile.open { display: flex; }

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

/* Background effects */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}
.orb-purple {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-blue {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  top: 0; right: 0;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-teal {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(8,145,178,0.1) 0%, transparent 70%);
  bottom: 0; right: 20%;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Hero grid layout */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Left copy */
.hero-copy { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 28px;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(139,92,246,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(139,92,246,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(139,92,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,92,246,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* QR code trigger + popup */
.qr-wrapper { position: relative; }

.qr-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  text-decoration: underline;
}
.qr-trigger:hover { color: var(--purple-light); }

.qr-popup {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scale(0.92) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}
.qr-trigger:hover + .qr-popup,
.qr-trigger:focus + .qr-popup,
.qr-popup:hover,
.qr-popup.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1) translateY(0);
}

.qr-popup-inner {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  min-width: 200px;
}
.qr-popup-inner::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.qr-title { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 12px; }
.qr-code-wrap {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 12px;
  display: inline-block;
  border: 1px solid var(--border);
}
.qr-code-wrap img {
  width: 120px;
  height: auto;
  display: block;
}
.qr-hint { font-size: 11px; color: var(--text-3); margin-top: 10px; }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-val {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
.stat-lbl { font-size: 12px; color: var(--text-3); font-weight: 500; }
.stat-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ============================================================
   IPHONE 16 PRO MOCKUP
   ============================================================ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-scene { position: relative; }

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
  filter: blur(20px);
}

.iphone-16pro {
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(1deg); }
}

.iphone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(160deg, #2A2A2E 0%, #1C1C1F 40%, #141416 100%);
  border-radius: 48px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 0 2px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 40px 120px rgba(0,0,0,0.8),
    0 0 80px rgba(139,92,246,0.2);
  overflow: visible;
}

/* Side buttons */
.btn-action {
  position: absolute;
  left: -3px; top: 110px;
  width: 3px; height: 32px;
  background: linear-gradient(180deg, #3a3a3e, #2a2a2e);
  border-radius: 2px 0 0 2px;
}
.btn-vol {
  position: absolute;
  left: -3px;
  width: 3px; height: 52px;
  background: linear-gradient(180deg, #3a3a3e, #2a2a2e);
  border-radius: 2px 0 0 2px;
}
.btn-vol-up { top: 164px; }
.btn-vol-dn { top: 228px; }
.btn-power {
  position: absolute;
  right: -3px; top: 180px;
  width: 3px; height: 70px;
  background: linear-gradient(180deg, #3a3a3e, #2a2a2e);
  border-radius: 0 2px 2px 0;
}
.iphone-bottom-bar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  z-index: 10;
}

.iphone-screen {
  position: absolute;
  inset: 8px;
  background: #09090B;
  border-radius: 41px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

/* Status bar */
.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 0;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  height: 50px;
}
.time { font-size: 13px; font-weight: 700; letter-spacing: -0.02em; }
.status-icons { display: flex; align-items: center; gap: 6px; }
.battery-icon {
  width: 22px; height: 12px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2px;
}
.battery-icon::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 0 2px 2px 0;
}
.battery-fill {
  width: 75%;
  height: 100%;
  background: #34C759;
  border-radius: 1px;
}

/* App content */
.app-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 16px 20px;
  overflow: hidden;
  gap: 10px;
}

.app-header { flex-shrink: 0; }
.app-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.app-title { font-size: 15px; font-weight: 700; }
.rec-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #FF453A;
  background: rgba(255,69,58,0.12);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.rec-dot {
  width: 6px; height: 6px;
  background: #FF453A;
  border-radius: 50%;
  animation: recBlink 1.2s ease-in-out infinite;
}
@keyframes recBlink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }
.app-subtitle { font-size: 11px; color: var(--text-3); }

/* Waveform */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  background: rgba(139,92,246,0.06);
  border-radius: 8px;
  padding: 6px 8px;
  flex-shrink: 0;
}
.wave-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--purple), var(--cyan));
  border-radius: 2px;
  opacity: 0.8;
  animation: waveAnim 0.8s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * 0.05s);
}
.wave-bar:nth-child(1)  { --i:1; } .wave-bar:nth-child(2)  { --i:3; }
.wave-bar:nth-child(3)  { --i:2; } .wave-bar:nth-child(4)  { --i:5; }
.wave-bar:nth-child(5)  { --i:4; } .wave-bar:nth-child(6)  { --i:7; }
.wave-bar:nth-child(7)  { --i:6; } .wave-bar:nth-child(8)  { --i:9; }
.wave-bar:nth-child(9)  { --i:8; } .wave-bar:nth-child(10) { --i:11; }
.wave-bar:nth-child(11) { --i:10; }.wave-bar:nth-child(12) { --i:13; }
.wave-bar:nth-child(13) { --i:12; }.wave-bar:nth-child(14) { --i:15; }
.wave-bar:nth-child(15) { --i:14; }.wave-bar:nth-child(16) { --i:17; }
.wave-bar:nth-child(17) { --i:16; }.wave-bar:nth-child(18) { --i:19; }
.wave-bar:nth-child(19) { --i:18; }.wave-bar:nth-child(20) { --i:20; }
@keyframes waveAnim {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1); }
}

/* Transcript */
.transcript-feed {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.transcript-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.speaker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.line-content { flex: 1; min-width: 0; }
.speaker-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 1px;
}
.line-text {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.5;
}
.active-line .line-text { color: var(--text-1); }

.cursor-blink {
  animation: cursorBlink 1s step-end infinite;
  color: var(--purple-light);
  font-weight: 300;
}
@keyframes cursorBlink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* AI card */
.ai-card {
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 10px;
  padding: 10px;
  flex-shrink: 0;
}
.ai-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--purple-light);
}
.ai-icon {
  width: 20px; height: 20px;
  background: rgba(139,92,246,0.15);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.ai-live {
  margin-left: auto;
  font-size: 9px;
  background: rgba(16,185,129,0.15);
  color: var(--teal);
  padding: 2px 6px;
  border-radius: 4px;
}
.ai-todos { display: flex; flex-direction: column; gap: 3px; }
.todo-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-2);
}
.todo-check {
  font-size: 9px;
  color: var(--teal);
  flex-shrink: 0;
}
.todo-pending { color: var(--text-3); }

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  white-space: nowrap;
}
.fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon-green { background: rgba(16,185,129,0.15); color: var(--teal); }
.fc-icon-purple { background: rgba(139,92,246,0.15); color: var(--purple-light); }
.fc-icon-blue { background: rgba(59,130,246,0.15); color: var(--blue); }
.fc-label { font-size: 10px; color: var(--text-3); font-weight: 500; }
.fc-value { font-size: 15px; font-weight: 800; color: var(--text-1); letter-spacing: -0.02em; }

.float-card-left {
  left: -90px;
  top: 20%;
  animation: floatLeft 7s ease-in-out infinite;
}
.float-card-right {
  right: -90px;
  top: 35%;
  animation: floatRight 8s ease-in-out infinite;
}
.float-card-bottom {
  bottom: 10%;
  right: -70px;
  animation: floatLeft 9s ease-in-out infinite reverse;
}
@keyframes floatLeft {
  0%,100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-10px) translateX(-5px); }
}
@keyframes floatRight {
  0%,100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(10px) translateX(5px); }
}

/* ============================================================
   USE CASES
   ============================================================ */
.use-cases {
  padding: 120px 0;
  position: relative;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.use-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.use-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(139,92,246,0.05) 100%);
  pointer-events: none;
}
.use-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.use-card-icon {
  width: 52px; height: 52px;
  background: var(--icon-bg);
  color: var(--icon-color);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.use-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.use-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 12px;
}

.use-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.use-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.use-feat {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* Use case visuals */
.use-card-visual {
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Globe animation */
.global-visual { perspective: 300px; }
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.2);
  animation: globeSpin linear infinite;
}
.ring-1 { width: 80px; height: 80px; animation-duration: 6s; }
.ring-2 { width: 110px; height: 110px; animation-duration: 10s; border-color: rgba(6,182,212,0.15); animation-direction: reverse; }
.ring-3 { width: 140px; height: 140px; animation-duration: 15s; border-color: rgba(59,130,246,0.1); }
@keyframes globeSpin {
  from { transform: rotate(0deg) rotateX(60deg); }
  to   { transform: rotate(360deg) rotateX(60deg); }
}

.city-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(139,92,246,0.2);
}
.city-dot span {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-3);
  white-space: nowrap;
  font-weight: 600;
}

/* Document visual */
.doc-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.doc-line {
  height: 6px;
  background: var(--border-h);
  border-radius: 3px;
}
.doc-heading { height: 9px; background: rgba(255,255,255,0.15); width: 90% !important; }
.doc-short  { width: 55%; }
.doc-full   { width: 95%; }
.doc-med    { width: 70%; }
.doc-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--teal);
}

/* Mic visual */
.mic-anim { position: relative; display: flex; align-items: center; justify-content: center; }
.mic-body { position: relative; z-index: 1; }
.mic-wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16,185,129,0.3);
  animation: micPulse 2s ease-out infinite;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.mw-1 { width: 60px; height: 60px; animation-delay: 0s; }
.mw-2 { width: 80px; height: 80px; animation-delay: 0.4s; }
.mw-3 { width: 100px; height: 100px; animation-delay: 0.8s; }
@keyframes micPulse {
  0%   { opacity: 0.8; transform: translate(-50%,-50%) scale(0.8); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(1.4); }
}

/* ============================================================
   FEATURES — BENTO GRID
   ============================================================ */
.features {
  padding: 120px 0;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.bento-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.bento-large { grid-column: span 2; }
.bento-medium { grid-column: span 1; }

/* Layout controlled via inline style on each card */

.bento-content { margin-bottom: 24px; }

.bento-icon {
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.04);
  color: var(--c);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 0 24px rgba(124,58,237,0.06);
}

.bento-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bento-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* Bento visuals */
.bento-visual {
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
}

/* Live transcript bars */
.live-transcript { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.lt-line { display: flex; align-items: center; }
.lt-bar {
  height: 8px;
  background: rgba(139,92,246,0.2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.lt-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
  animation: shimmer 2s infinite;
}
.lt-active {
  background: rgba(139,92,246,0.3);
}
.lt-cursor {
  width: 2px; height: 12px;
  background: var(--purple-light);
  margin-left: 6px;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes shimmer {
  from { left: -100%; }
  to   { left: 200%; }
}

/* AI Insight visual */
.insight-visual { align-items: flex-start; padding-top: 8px; }
.insight-cards { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.ic {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
}
.ic-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* Speaker visual */
.speaker-visual { align-items: flex-start; padding-top: 8px; }
.speaker-lines { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.sp-line { display: flex; align-items: center; gap: 8px; }
.sp-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.sp-text-bar {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
.sp-active {
  background: linear-gradient(90deg, rgba(16,185,129,0.4), rgba(16,185,129,0.1));
  position: relative;
  overflow: hidden;
}
.sp-active::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,0.5), transparent);
  animation: shimmer 1.5s infinite;
}

/* Cloud Sync visual */
.sync-visual { justify-content: center; }
.device-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dev-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 8px;
}
.sync-arrow {
  opacity: 0.6;
  animation: syncPulse 2s ease-in-out infinite;
}
@keyframes syncPulse { 0%,100% { opacity:0.3; } 50% { opacity:0.9; } }

/* ============================================================
   SECURITY & TRUST
   ============================================================ */
.security {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.sec-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sec-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.sec-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  top: -100px; left: -150px;
  animation: orbFloat 10s ease-in-out infinite;
}
.sec-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 70%);
  bottom: -80px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
.sec-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 100%);
}

/* ── Encryption Flow Animation ── */
.encrypt-visual {
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
}

.encrypt-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 24px;
  background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, rgba(8,145,178,0.03) 100%);
  border: 1px solid rgba(124,58,237,0.12);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.encrypt-flow::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
}

/* Left & Right data panels */
.encrypt-side {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.encrypt-side-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  padding-left: 4px;
}
.encrypt-input .encrypt-side-label { color: var(--text-3); }
.encrypt-output .encrypt-side-label { color: var(--teal); }

.encrypt-data-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.encrypt-data-line {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: var(--transition);
}
.encrypt-data-line:hover {
  border-color: var(--border-h);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.edl-icon {
  width: 28px; height: 28px;
  background: rgba(124,58,237,0.08);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.encrypted-icon {
  background: rgba(16,185,129,0.1);
  color: var(--teal);
}

.edl-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.edl-cipher {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.05em;
}

.encrypt-data-line.encrypted {
  background: rgba(16,185,129,0.04);
  border-color: rgba(16,185,129,0.15);
}

/* Animation delays for data lines */
.edl-1 { animation: edlFadeIn 0.6s ease both 0.2s; }
.edl-2 { animation: edlFadeIn 0.6s ease both 0.4s; }
.edl-3 { animation: edlFadeIn 0.6s ease both 0.6s; }
.edl-4 { animation: edlFadeIn 0.6s ease both 1.0s; }
.edl-5 { animation: edlFadeIn 0.6s ease both 1.2s; }
.edl-6 { animation: edlFadeIn 0.6s ease both 1.4s; }
@keyframes edlFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Data stream (connecting lines + particles) */
.encrypt-stream {
  position: relative;
  width: 80px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(124,58,237,0.15), rgba(8,145,178,0.15));
  transform: translateY(-50%);
}
.encrypt-stream-out .stream-line {
  background: linear-gradient(90deg, rgba(8,145,178,0.15), rgba(16,185,129,0.15));
}

.stream-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.encrypt-stream-in .stream-particle {
  background: var(--purple);
  box-shadow: 0 0 8px rgba(124,58,237,0.5);
  animation: particleFlowIn 2s linear infinite;
}
.encrypt-stream-out .stream-particle {
  background: var(--teal);
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
  animation: particleFlowOut 2s linear infinite;
}

.sp-1 { animation-delay: 0s; }
.sp-2 { animation-delay: 0.65s; }
.sp-3 { animation-delay: 1.3s; }
.sp-4 { animation-delay: 0.3s; }
.sp-5 { animation-delay: 0.95s; }
.sp-6 { animation-delay: 1.6s; }

@keyframes particleFlowIn {
  0%   { left: 0%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes particleFlowOut {
  0%   { left: 0%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Center encryption core */
.encrypt-core {
  position: relative;
  width: 120px; height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.encrypt-shield {
  position: relative;
  z-index: 2;
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 4px rgba(124,58,237,0.06),
    0 8px 32px rgba(124,58,237,0.15),
    0 0 60px rgba(124,58,237,0.08);
}

.encrypt-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  top: 50%; left: 50%;
}
.encrypt-ring-1 {
  width: 96px; height: 96px;
  transform: translate(-50%, -50%);
  border-color: rgba(124,58,237,0.15);
  animation: encryptRingSpin 8s linear infinite;
}
.encrypt-ring-2 {
  width: 112px; height: 112px;
  transform: translate(-50%, -50%);
  border-color: rgba(8,145,178,0.1);
  border-style: dashed;
  animation: encryptRingSpin 12s linear infinite reverse;
}
.encrypt-ring-3 {
  width: 128px; height: 128px;
  transform: translate(-50%, -50%);
  border-color: rgba(124,58,237,0.06);
  animation: encryptRingSpin 16s linear infinite;
}

@keyframes encryptRingSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.encrypt-label {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--purple);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 3;
}

/* ── Certification Badges ── */
.sec-certifications {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.sec-cert-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.sec-cert-card:hover {
  background: var(--bg-surface);
}

.sec-cert-divider {
  width: 1px;
  align-self: stretch;
  margin: 24px 0;
  background: var(--border);
  flex-shrink: 0;
}

.sec-cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.sec-cert-icon img {
  max-width: 100%;
  height: auto;
}
.sec-cert-card:hover .sec-cert-icon {
  transform: scale(1.05);
}

.sec-cert-gdpr, .sec-cert-e2ee, .sec-cert-iso {
  /* No background, border, or shadow */
}

.sec-cert-name {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 6px;
}

.sec-cert-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 220px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
}

/* Modern card-based layout */
.about-modern {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-header {
  margin-bottom: 40px;
}

.about-modern .about-title {
  text-align: center !important;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-modern .about-lead {
  font-size: 20px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 64px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.about-modern .about-lead .highlight {
  color: var(--purple);
  font-weight: 600;
}

/* Feature cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.about-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-h);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card-1 { --card-accent: #8B5CF6; }
.about-card-2 { --card-accent: #06B6D4; }
.about-card-3 { --card-accent: #10B981; }

.card-icon {
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--card-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--card-accent) 20%, transparent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-accent);
  margin-bottom: 20px;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 42px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  font-family: var(--font);
}

.about-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-family: var(--font);
}

.about-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Stats bar */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  font-family: var(--font);
}

.stat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

@media (max-width: 768px) {
  .about-modern .about-title { font-size: 32px; }
  .about-modern .about-lead { font-size: 16px; }
  .about-cards { grid-template-columns: 1fr; gap: 20px; }
  .about-stats { flex-wrap: wrap; gap: 24px; padding: 28px; }
  .stat-divider { display: none; }
  .card-number { font-size: 36px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(8,145,178,0.08), transparent 70%);
  bottom: -100px; right: -50px;
}

.cta-inner { position: relative; z-index: 1; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(217,119,6,0.08);
  border: 1px solid rgba(217,119,6,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}
.cta-note svg { color: var(--teal); }

.cta-reviews {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.review-stars { font-size: 22px; color: var(--amber); letter-spacing: 2px; }
.review-text { font-size: 13px; color: var(--text-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding: 64px 24px;
}

.footer-logo { margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--text-3); margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 8px;
}
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-3);
  transition: var(--transition);
}
.social-link:hover {
  color: var(--text-1);
  border-color: var(--border-h);
  background: var(--bg-card-h);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-3);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--text-1); }

.footer-bottom {
  border-top: 1px solid var(--border);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 13px;
  color: var(--text-3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text-3);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--text-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .float-card-left  { left: -50px; }
  .float-card-right { right: -50px; }
  .float-card-bottom { right: -40px; }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-copy { max-width: 100%; margin: 0 auto; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .use-cases-grid { grid-template-columns: 1fr; }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid .bento-card:nth-child(n) { grid-column: span 1; }

  .encrypt-flow {
    flex-direction: column;
    gap: 16px;
    padding: 32px 20px;
  }
  .encrypt-side { flex: none; width: 100%; }
  .encrypt-stream {
    width: 100%; height: 48px;
    transform: rotate(90deg);
  }
  .encrypt-core { width: 100px; height: 100px; }
  .sec-certifications {
    flex-direction: column;
    gap: 0;
  }
  .sec-cert-divider {
    width: auto; height: 1px;
    margin: 0 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-copy .section-title { text-align: center; }
  .about-values { align-items: center; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 40px; }

  .use-cases { padding: 80px 0; }
  .features  { padding: 80px 0; }
  .security  { padding: 80px 0; }
  .about     { padding: 80px 0; }
  .final-cta { padding: 100px 0; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .team-numbers { grid-template-columns: 1fr 1fr; }
  .encrypt-flow { padding: 24px 16px; }
  .encrypt-side { flex: none; width: 100%; }
  .encrypt-stream { width: 100%; height: 40px; }
  .sec-cert-card { padding: 28px 16px; }
  .sec-cert-name { font-size: 18px; }
}

/* ============================================================
   BENTO ICON — CSS color-mix fallback
   ============================================================ */
.bento-icon[style*="--c:#8B5CF6"] {
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 0 20px rgba(139,92,246,0.1);
}
.bento-icon[style*="--c:#06B6D4"] {
  background: rgba(6,182,212,0.12);
  border-color: rgba(6,182,212,0.2);
  box-shadow: 0 0 20px rgba(6,182,212,0.1);
}
.bento-icon[style*="--c:#10B981"] {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.2);
  box-shadow: 0 0 20px rgba(16,185,129,0.1);
}
.bento-icon[style*="--c:#F59E0B"] {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.2);
  box-shadow: 0 0 20px rgba(245,158,11,0.1);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 120px 0;
  position: relative;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-icon-wrap {
  width: 56px; height: 56px;
  background: var(--sc-bg);
  color: var(--sc);
  border: 1px solid var(--sc-border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 24px var(--sc-bg);
}

/* Fallback colors */
.step-icon-wrap[style*="--sc:#8B5CF6"] { color: #8B5CF6; }
.step-icon-wrap[style*="--sc:#06B6D4"] { color: #06B6D4; }
.step-icon-wrap[style*="--sc:#10B981"] { color: #10B981; }

.step-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 80px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(37,99,235,0.03) 50%, transparent);
  position: relative;
  overflow: hidden;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 64px;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testi-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

/* Featured card spans 1 col but with special accent */
.testi-featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.05) 0%, rgba(8,145,178,0.03) 100%);
  border-color: rgba(124,58,237,0.15);
}
.testi-featured:hover {
  border-color: rgba(124,58,237,0.28);
}

.testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(217,119,6,0.08);
  border: 1px solid rgba(217,119,6,0.18);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.testi-stars {
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.av-purple { background: linear-gradient(135deg, #7C3AED, #6D28D9); box-shadow: 0 0 12px rgba(124,58,237,0.3); }
.av-cyan   { background: linear-gradient(135deg, #0891B2, #0E7490); box-shadow: 0 0 12px rgba(8,145,178,0.3); }
.av-teal   { background: linear-gradient(135deg, #059669, #047857); box-shadow: 0 0 12px rgba(5,150,105,0.3); }
.av-amber  { background: linear-gradient(135deg, #D97706, #B45309); box-shadow: 0 0 12px rgba(217,119,6,0.3); }
.av-blue   { background: linear-gradient(135deg, #2563EB, #1D4ED8); box-shadow: 0 0 12px rgba(37,99,235,0.3); }

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
}
.testi-role {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 1px;
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 960px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .step-card { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); margin: 0; padding: 8px 0; }

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

@media (max-width: 640px) {
  .testimonials  { padding: 80px 0; }
  .testi-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (min-width: 961px) and (max-width: 1200px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-featured { grid-column: span 2; }
}

/* ============================================================
   VIDEO DEMO
   ============================================================ */
.video-demo {
  padding: 120px 0;
  position: relative;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.video-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(124,58,237,0.1) 0%,
    rgba(8,145,178,0.06) 50%,
    transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.video-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 32px 80px rgba(0,0,0,0.15),
    0 0 60px rgba(124,58,237,0.06);
  aspect-ratio: 16/9;
  cursor: pointer;
}

.demo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

/* Play overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 10;
}
.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
}

.play-ring {
  position: relative;
}
.play-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(139,92,246,0.15);
  animation: playRingPulse 2.5s ease-in-out infinite;
}
@keyframes playRingPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 0.2; }
}

.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #5B21B6);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(124,58,237,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(124,58,237,0.6);
}
.play-btn svg { margin-left: 4px; }

.play-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

/* Custom video controls */
.video-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 10;
}
.video-frame:hover .video-controls,
.video-frame.playing .video-controls {
  opacity: 1;
}

.vc-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 4px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.vc-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }

.vc-progress-wrap {
  flex: 1;
  cursor: pointer;
  padding: 8px 0;
}
.vc-progress-bg {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.vc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.vc-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  left: 0%;
  transition: left 0.1s linear, transform 0.15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.vc-progress-wrap:hover .vc-progress-thumb { transform: translate(-50%,-50%) scale(1); }
.vc-progress-wrap:hover .vc-progress-bg { height: 5px; }

.vc-time {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Feature chips */
.video-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.vchip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  transition: var(--transition);
}
.vchip:hover { border-color: var(--border-h); color: var(--text-1); }
.vchip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .video-demo { padding: 80px 0; }
  .play-btn { width: 56px; height: 56px; }
  .video-chips { gap: 8px; }
  .vchip { font-size: 12px; padding: 6px 12px; }
}

/* ============================================================
   FEATURES — REDESIGNED LAYOUT
   ============================================================ */

/* Horizontal inner layout for Card 1 & 3 */
.bento-inner-h {
  display: flex;
  gap: 32px;
  align-items: center;
  height: 100%;
}

/* Text column (left side of horizontal cards) */
.bento-text-col {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bento-text-col-sm { flex: 0 0 260px; }

/* Card 1: Stats row */
.bento-stat-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.bento-stat { display: flex; flex-direction: column; gap: 2px; }
.bs-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bs-lbl { font-size: 11px; color: var(--text-3); font-weight: 500; }

/* Card 1: Right side waveform + transcript */
.bento-wave-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.big-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 80px;
  background: rgba(124,58,237,0.04);
  border: 1px solid rgba(124,58,237,0.1);
  border-radius: 12px;
  padding: 12px 16px;
}
.bw-bar {
  flex: 1;
  height: var(--bh);
  background: linear-gradient(180deg, var(--purple), var(--cyan));
  border-radius: 3px;
  opacity: 0.75;
  animation: waveAnim 0.8s ease-in-out infinite alternate;
}
.bw-bar:nth-child(odd)  { animation-delay: 0.1s; }
.bw-bar:nth-child(3n)   { animation-delay: 0.2s; }
.bw-bar:nth-child(5n)   { animation-delay: 0.35s; }
.bw-bar:nth-child(7n)   { animation-delay: 0.5s; }

.bento-transcript-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.btp-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.btp-active .btp-text { color: var(--text-1); }
.btp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.btp-text { flex: 1; }

/* Card 2: AI Output stack */
.ai-output-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  flex: 1;
}
.ao-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.ao-icon {
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ac);
  flex-shrink: 0;
}
.ao-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.ao-bars { display: flex; flex-direction: column; gap: 4px; }
.ao-bars div {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.ao-bars div::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cyan), rgba(6,182,212,0.3));
  animation: shimmer 2.5s infinite;
  width: 100%;
}
.ao-todos { display: flex; flex-direction: column; gap: 3px; }
.ao-todo {
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ao-todo::before {
  content: '○';
  color: var(--text-3);
  font-size: 10px;
}
.ao-todo.done { color: var(--teal); }
.ao-todo.done::before { content: '✓'; color: var(--teal); }

.ao-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 4px;
}
.ao-tl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ao-tl-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(16,185,129,0.4), rgba(6,182,212,0.4));
}

/* Card 3: Speaker Diarization full-width */
.bento-diar { align-items: flex-start; }

.diar-visual-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diar-script {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
}

.ds-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ds-line-active .ds-bubble { color: var(--text-1); }

.ds-speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  width: 36px;
}
.ds-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.ds-name {
  font-size: 9px;
  color: var(--text-3);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.ds-bubble {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  background: rgba(0,0,0,0.02);
  border-radius: 0 10px 10px 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
}
.ds-bubble-purple { border-left: 2px solid #8B5CF6; }
.ds-bubble-cyan   { border-left: 2px solid #06B6D4; }
.ds-bubble-teal   { border-left: 2px solid #10B981; }

.diar-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dl-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.dl-dot { width: 8px; height: 8px; border-radius: 50%; }
.dl-accuracy {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  margin-left: auto;
}

/* Responsive: stack horizontal cards on mobile */
@media (max-width: 960px) {
  .bento-grid {
    grid-template-columns: 1fr !important;
  }
  .bento-grid .bento-card[style*="grid-column"] {
    grid-column: span 1 !important;
  }
  .bento-inner-h {
    flex-direction: column;
  }
  .bento-text-col,
  .bento-text-col-sm {
    flex: none;
    width: 100%;
  }
  .bento-wave-col,
  .diar-visual-col {
    width: 100%;
  }
  .bento-stat-row { gap: 16px; }
}

/* ============================================================
   IPHONE — CUSTOM APP UI (3-screen animation)
   ============================================================ */

/* Base screen container */
.app-ui-screen {
  background: #F2F5FF;
  padding: 0;
  overflow: hidden;
}

/* Individual screens stacked */
.ui-screen {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  border-radius: 41px;
  display: flex;
  flex-direction: column;
  padding: 52px 18px 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  overflow: hidden;
}
.ui-screen.ui-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Nav bar */
.ui-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.ui-nav-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: -0.01em;
}

/* Home bar */
.ui-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 4px;
  background: rgba(0,0,0,0.18);
  border-radius: 2px;
}

/* ── Video screen inside iPhone ── */
.ui-screen-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 41px;
  z-index: 1;
  background: #000;
}

.ui-screen-label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  white-space: nowrap;
  pointer-events: none;
}

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

/* ── SCREEN 1: RECORDING ── */
.ui-record-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  flex-shrink: 0;
  margin: 8px 0 4px;
}
.ui-rec-ring {
  position: absolute;
  border-radius: 50%;
  background: #EEF0FF;
}
.ui-ring-outer { width: 116px; height: 116px; background: #E6E9FF; }
.ui-ring-inner { width: 96px; height: 96px; background: #D4D9FF; }
.ui-rec-btn {
  position: relative;
  z-index: 2;
  width: 76px; height: 76px;
  background: linear-gradient(135deg, #5B6DEC, #4055D8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(91,109,236,0.45);
  animation: recPulse 2s ease-in-out infinite;
}
@keyframes recPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(91,109,236,0.45), 0 0 0 0 rgba(91,109,236,0.25); }
  50%      { box-shadow: 0 8px 24px rgba(91,109,236,0.45), 0 0 0 14px rgba(91,109,236,0); }
}

.ui-timer {
  font-size: 28px;
  font-weight: 800;
  color: #1A1A2E;
  text-align: center;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.ui-rec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #8A8FA8;
  margin: 2px 0 8px;
  flex-shrink: 0;
}
.ui-rec-dot-live {
  width: 7px; height: 7px;
  background: #EF4444;
  border-radius: 50%;
  animation: recBlink 1.2s step-end infinite;
}

.ui-waveform-row {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 52px;
  padding: 6px 4px;
  background: #F5F7FF;
  border-radius: 12px;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.ui-wv {
  flex: 1;
  height: var(--wh);
  background: linear-gradient(180deg, #5B6DEC, #8B9EFF);
  border-radius: 3px;
  opacity: 0.8;
  animation: waveAnim 0.7s ease-in-out infinite alternate;
}
.ui-wv:nth-child(odd)  { animation-delay: 0.1s; }
.ui-wv:nth-child(3n)   { animation-delay: 0.2s; }
.ui-wv:nth-child(5n)   { animation-delay: 0.35s; }

.ui-lang-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  color: #5B6DEC;
  font-weight: 600;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.ui-cta-btn {
  background: linear-gradient(135deg, #5B6DEC, #4055D8);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  margin-top: auto;
  box-shadow: 0 4px 16px rgba(91,109,236,0.35);
  flex-shrink: 0;
}

/* ── SCREEN 2: PROCESSING ── */
.ui-progress-card {
  background: #fff;
  border: 1px solid #EBF0FF;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(91,109,236,0.08);
  flex-shrink: 0;
}

.ui-pstep {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #1A1A2E;
  font-weight: 500;
}
.ui-pending { color: #C0C8D8; }
.ui-active-step { color: #5B6DEC; font-weight: 700; }

.ui-picon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ui-picon-done    { background: #5B6DEC; }
.ui-picon-spin    { background: #EEF0FF; animation: spinIcon 1s linear infinite; }
.ui-picon-pending { background: #F0F4FF; }

@keyframes spinIcon {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ui-pct {
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  color: #5B6DEC;
}

.ui-transcript-snippet {
  font-size: 11px;
  color: #6B7280;
  background: #F5F7FF;
  border-radius: 8px;
  padding: 8px 10px;
  line-height: 1.5;
  margin-left: 32px;
}

.ui-hint {
  font-size: 11px;
  color: #B0B8CC;
  text-align: center;
  line-height: 1.6;
  padding: 0 8px;
  margin-top: 12px;
}

/* ── SCREEN 3: SUMMARY ── */
.ui-meeting-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F5F7FF;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.ui-meeting-icon {
  width: 32px; height: 32px;
  background: #EEF0FF;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ui-meeting-title {
  font-size: 12px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 2px;
}
.ui-meeting-date { font-size: 10px; color: #8A8FA8; }

.ui-tabs {
  display: flex;
  gap: 0;
  background: #F0F4FF;
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.ui-tab {
  flex: 1;
  font-size: 10px;
  font-weight: 600;
  color: #8A8FA8;
  text-align: center;
  padding: 5px 2px;
  border-radius: 6px;
  cursor: pointer;
}
.ui-tab-active {
  background: #fff;
  color: #5B6DEC;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.ui-summary-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ui-sum-heading {
  font-size: 12px;
  font-weight: 800;
  color: #1A1A2E;
  margin-top: 4px;
}
.ui-sum-text {
  font-size: 11px;
  color: #6B7280;
  line-height: 1.55;
}
.ui-action-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #374151;
}
.ui-ai-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ui-ai-fab {
  position: absolute;
  bottom: 28px;
  right: 16px;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #5B6DEC, #4055D8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(91,109,236,0.4);
}

/* Floating card icon colors */
.fc-icon-red {
  background: rgba(239,68,68,0.12);
  color: #EF4444;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.025) 50%, transparent);
}

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

.blog-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1), 0 0 0 1px var(--border-h);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Blog cover */
.blog-cover {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-cover-img {
  background: #0f172a;
}

.blog-cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-cover-photo {
  transform: scale(1.06);
}

.bc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

.blog-cover-1 {
  background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 40%, #D97706 100%);
}
.blog-cover-2 {
  background: linear-gradient(135deg, #0E7490 0%, #0891B2 40%, #2563EB 100%);
}
.blog-cover-3 {
  background: linear-gradient(135deg, #047857 0%, #059669 40%, #0891B2 100%);
}

.bc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 30%, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.bc-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bc-icon {
  position: relative;
  z-index: 1;
  width: 88px; height: 88px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.25);
}

.bc-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Blog card body */
.blog-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-tag-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.blog-tag-purple {
  background: rgba(124,58,237,0.09);
  color: #7C3AED;
  border: 1px solid rgba(124,58,237,0.18);
}
.blog-tag-cyan {
  background: rgba(8,145,178,0.09);
  color: #0891B2;
  border: 1px solid rgba(8,145,178,0.18);
}
.blog-tag-teal {
  background: rgba(5,150,105,0.09);
  color: #059669;
  border: 1px solid rgba(5,150,105,0.18);
}

.blog-date {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-1);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-top: 4px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 10px; }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 80px 0; }
}
@media (min-width: 640px) and (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card:last-child { grid-column: span 2; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   BLOG ARTICLE DETAIL PAGE
   ============================================================ */
.blog-page {
  padding-top: 68px;
}

.blog-article-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.blog-article-hero-bg {
  position: absolute;
  inset: 0;
}

.blog-article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
}
.blog-article-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}

.blog-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.blog-article-back:hover { color: #fff; }

.blog-article-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.blog-article-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
  max-width: 780px;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}
.blog-article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Article body */
.blog-article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

.blog-article-body .lead {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}

.blog-article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin: 48px 0 16px;
  line-height: 1.2;
}

.blog-article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}

.blog-article-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 20px;
}

.blog-article-body ul,
.blog-article-body ol {
  padding-left: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-article-body ul li,
.blog-article-body ol li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
  padding-left: 28px;
  position: relative;
  list-style: none;
}
.blog-article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
}
.blog-article-body ol {
  counter-reset: ol-counter;
}
.blog-article-body ol li {
  counter-increment: ol-counter;
}
.blog-article-body ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  width: 20px;
  height: 20px;
  background: rgba(124,58,237,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  text-align: center;
}

.blog-article-body strong {
  font-weight: 700;
  color: var(--text-1);
}

.blog-callout {
  background: rgba(124,58,237,0.05);
  border: 1px solid rgba(124,58,237,0.15);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-1);
  font-style: italic;
}

.blog-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.blog-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.blog-stat-card .val {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}
.blog-stat-card .lbl {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.blog-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.blog-app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 32px 0;
  transition: var(--transition);
}
.blog-app-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
}
.blog-app-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.blog-app-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blog-app-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
}
.blog-app-pos {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 1px;
}
.blog-app-verdict {
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.7;
}
.blog-app-verdict::before {
  content: '"';
  font-size: 20px;
  color: var(--teal);
  font-style: normal;
  font-weight: 700;
  margin-right: 4px;
  line-height: 1;
}

.blog-cta-box {
  background: linear-gradient(135deg, rgba(124,58,237,0.07) 0%, rgba(8,145,178,0.05) 100%);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-top: 64px;
}
.blog-cta-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 12px;
}
.blog-cta-box p {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .blog-article-hero { height: 340px; }
  .blog-stat-row { grid-template-columns: 1fr; }
  .blog-article-body { padding: 48px 20px 80px; }
  .blog-cta-box { padding: 32px 24px; }
}

/* ============================================================
   FEEDBACK CTA (Homepage inline section)
   ============================================================ */
.feedback-cta {
  padding: 80px 0;
  position: relative;
}

.feedback-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(8,145,178,0.04) 100%);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}
.feedback-cta-inner::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
}

.feedback-cta-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.feedback-cta-icon {
  width: 64px; height: 64px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(124,58,237,0.08);
}

.feedback-cta-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 8px;
  line-height: 1.2;
}

.feedback-cta-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 440px;
}

.feedback-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.feedback-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #5B21B6);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(124,58,237,0.28);
  transition: var(--transition);
  white-space: nowrap;
}
.feedback-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.4);
}

.feedback-cta-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.fb-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  white-space: nowrap;
}
.fb-tag svg { color: var(--text-3); }

@media (max-width: 960px) {
  .feedback-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    gap: 28px;
  }
  .feedback-cta-content {
    flex-direction: column;
    align-items: center;
  }
  .feedback-cta-desc { max-width: 100%; }
  .feedback-cta-actions {
    align-items: center;
  }
  .feedback-cta-tags { justify-content: center; }
}

@media (max-width: 640px) {
  .feedback-cta { padding: 60px 0; }
  .feedback-cta-inner { padding: 32px 24px; }
  .feedback-cta-title { font-size: 20px; }
}

/* ============================================================
   FEEDBACK PAGE
   ============================================================ */
.feedback-page {
  background: var(--bg);
}

.feedback-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
}

.feedback-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.feedback-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.feedback-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 16px;
}

.feedback-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 40px;
}

.feedback-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feedback-channel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}
.feedback-channel:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
}

.fc-ch-icon {
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.04);
  color: var(--c);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.06);
}
.fc-ch-icon[style*="--c:#8B5CF6"] { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.18); }
.fc-ch-icon[style*="--c:#EF4444"] { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.18); }
.fc-ch-icon[style*="--c:#10B981"] { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.18); }

.feedback-channel h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 3px;
}
.feedback-channel p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Form card */
.feedback-form-wrap {
  position: relative;
}

.feedback-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02);
}

.form-header {
  margin-bottom: 28px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.form-subtitle {
  font-size: 13px;
  color: var(--text-3);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-3);
  pointer-events: none;
  flex-shrink: 0;
}

.form-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-1);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
  background: #fff;
}

.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-1);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-textarea::placeholder { color: var(--text-3); }
.form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
  background: #fff;
}

/* Form row (side by side) */
.form-row {
  display: flex;
  gap: 16px;
}
.form-half { flex: 1; }

/* Radio type selector */
.form-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.form-type-option input { position: absolute; opacity: 0; pointer-events: none; }

.form-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.form-type-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
}

.form-type-option input:checked + .form-type-card {
  border-color: var(--purple);
  background: rgba(124,58,237,0.06);
  color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

/* Submit button */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #5B21B6);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(124,58,237,0.28);
  margin-top: 4px;
}
.form-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.38);
}
.form-submit-btn:active { transform: translateY(0); }
.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Sending state animation */
.form-submit-btn.sending {
  pointer-events: none;
}
.form-submit-btn .btn-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinIcon 0.6s linear infinite;
  display: none;
}
.form-submit-btn.sending .btn-spinner { display: block; }
.form-submit-btn.sending .btn-icon { display: none; }

.form-privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 14px;
}
.form-privacy-note svg { flex-shrink: 0; color: var(--text-3); }

/* Success state */
.feedback-success {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.success-icon {
  margin-bottom: 20px;
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 10px;
}
.success-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

/* Validation error */
.form-input.error,
.form-textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-error-msg {
  font-size: 11px;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}
.form-error-msg.show { display: block; }

/* Responsive */
@media (max-width: 960px) {
  .feedback-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feedback-info { text-align: center; }
  .feedback-channels { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .feedback-section { padding: 100px 0 60px; }
  .feedback-form { padding: 28px 20px; }
  .form-type-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { flex-direction: column; gap: 0; }
  .feedback-channels { gap: 10px; }
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 68px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  z-index: 99;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(124,58,237,0.3);
}

/* Blog article share bar */
.blog-share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.blog-share-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-share-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-3);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.blog-share-btn:hover {
  color: var(--text-1);
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-1px);
}

/* Blog related articles responsive override */
.blog-section .blog-grid {
  gap: 20px;
}
@media (max-width: 640px) {
  .blog-section .blog-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}

/* Smooth scroll-to-top button */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #5B21B6);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 90;
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  box-shadow: 0 8px 24px rgba(124,58,237,0.5);
  transform: translateY(-2px);
}

/* ============================================================
   PREMIUM INTERACTION EFFECTS
   ============================================================ */

/* Global cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, rgba(8,145,178,0.03) 30%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  mix-blend-mode: normal;
  transition: opacity 0.3s ease;
}
body:has(.cursor-glow):not(:hover) .cursor-glow { opacity: 0; }

/* Scroll progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), #06B6D4);
  z-index: 101;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
  will-change: transform;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(124,58,237,0.4);
}

/* Button click ripple */
.btn-ripple {
  position: absolute;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: translate(-50%, -50%);
  animation: rippleExpand 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 10;
}
@keyframes rippleExpand {
  0%   { width: 0;    height: 0;    opacity: 1; }
  100% { width: 300px; height: 300px; opacity: 0; }
}

/* Section mouse-following subtle background */
.features::after,
.security::after,
.testimonials::after,
.use-cases::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124,58,237,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.features:hover::after,
.security:hover::after,
.testimonials:hover::after,
.use-cases:hover::after {
  opacity: 1;
}

/* Phone scene perspective for mouse tracking */
.phone-scene {
  perspective: 1000px;
  transition: transform 0.1s ease-out;
}

/* Smooth will-change hints for animated elements */
.bento-card,
.use-card,
.testi-card,
.blog-card,
.sec-cert-card {
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Disable heavy effects on mobile */
@media (max-width: 960px) {
  .cursor-glow { display: none; }
  .features::after,
  .security::after,
  .testimonials::after,
  .use-cases::after { display: none; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
  .scroll-progress-bar { display: none; }
  .btn-ripple { display: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

