/* HeyAliki AI — landing system */
:root {
  --ink-0: #06070a;
  --ink-1: #0a0c12;
  --ink-2: #10131c;
  --ink-3: #181c28;
  --ink-4: #232838;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --fg: #f3f3f6;
  --fg-mute: #a4a8b6;
  --fg-dim: #6b7080;

  --violet: oklch(0.66 0.22 295);
  --violet-deep: oklch(0.45 0.22 290);
  --cyan: oklch(0.85 0.12 205);
  --cyan-deep: oklch(0.62 0.16 215);
  --gold: oklch(0.84 0.12 85);

  --glass: rgba(18, 21, 31, 0.55);
  --glass-strong: rgba(22, 26, 38, 0.78);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-glow: 0 0 80px -20px oklch(0.66 0.22 295 / 0.45);
  --shadow-card: 0 30px 80px -40px rgba(0,0,0,0.7), 0 1px 0 rgba(255,255,255,0.04) inset;

  --font-sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--ink-0);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

::selection { background: oklch(0.66 0.22 295 / 0.4); color: white; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Ambient page background */
.page-bg {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(800px 600px at 12% 8%, oklch(0.45 0.22 290 / 0.22), transparent 60%),
    radial-gradient(900px 700px at 88% 18%, oklch(0.62 0.16 215 / 0.18), transparent 65%),
    radial-gradient(1100px 800px at 50% 110%, oklch(0.45 0.22 290 / 0.18), transparent 60%),
    var(--ink-0);
}
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 700px at 50% 0%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(900px 700px at 50% 0%, black, transparent 80%);
}
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* Layout */
main { position: relative; z-index: 2; }
section { position: relative; padding: 120px 0; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

/* Type */
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-mute);
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse-soft 2s ease-in-out infinite; }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--font-mono); }

.h-display {
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.h-section {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--fg-mute);
  max-width: 56ch;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.3s ease;
}
.btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, oklch(0.7 0.22 295), oklch(0.5 0.22 290));
  border-color: oklch(0.75 0.18 295 / 0.7);
  color: white;
  box-shadow: 0 10px 40px -10px oklch(0.55 0.22 290 / 0.6), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  box-shadow: 0 14px 60px -10px oklch(0.6 0.22 290 / 0.8), inset 0 1px 0 rgba(255,255,255,0.35);
  transform: translateY(-1px);
}
.btn-ghost { background: transparent; border-color: var(--line); }

/* Nav */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 28px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(10,12,18,0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.7);
}
.nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 500; letter-spacing: -0.01em; }
.nav .brand-mark { width: 22px; height: 22px; border-radius: 6px; background: conic-gradient(from 200deg, var(--violet), var(--cyan), var(--violet)); position: relative; }
.nav .brand-mark::after { content: ""; position: absolute; inset: 4px; background: var(--ink-0); border-radius: 3px; }
.nav .brand-mark::before { content: ""; position: absolute; inset: 8px; background: white; border-radius: 1.5px; }
.nav-links { display: flex; gap: 22px; font-size: 14px; color: var(--fg-mute); }
.nav-links a:hover { color: var(--fg); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* Glass card */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

/* Animations */
@keyframes pulse-soft {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes ring-out {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -10px); }
  100% { transform: translate(0, 0); }
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fade-up 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

/* HERO */
.hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
}
.hero h1 .l1 { display: block; }
.hero h1 .l2 { display: block; color: var(--fg-mute); }
.hero h1 .accent {
  background: linear-gradient(120deg, oklch(0.95 0.04 290), oklch(0.78 0.18 295) 40%, oklch(0.86 0.13 205) 70%, oklch(0.95 0.04 290));
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 8s linear infinite;
}
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 20px; margin-top: 40px; color: var(--fg-mute); font-size: 13px; flex-wrap: wrap; }
.hero-meta .item { display: flex; align-items: center; gap: 8px; }
.hero-meta .swatch { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

/* Voice orb */
.orb-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 540px;
  justify-self: center;
}
.orb {
  position: absolute; inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, oklch(0.95 0.06 290 / 0.7), transparent 40%),
    radial-gradient(circle at 70% 70%, oklch(0.55 0.22 290 / 0.85), transparent 60%),
    conic-gradient(from 200deg, oklch(0.6 0.22 295), oklch(0.7 0.16 215), oklch(0.55 0.22 290), oklch(0.6 0.22 295));
  filter: blur(0.3px);
  box-shadow:
    0 0 100px 10px oklch(0.55 0.22 290 / 0.45),
    0 0 200px 30px oklch(0.45 0.18 280 / 0.25),
    inset 0 0 80px oklch(0.95 0.05 290 / 0.2);
  animation: float-y 8s ease-in-out infinite;
}
.orb::after {
  content: ""; position: absolute; inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7), transparent 35%);
  mix-blend-mode: screen; opacity: 0.45;
}
.orb-ring {
  position: absolute; inset: 12%;
  border-radius: 50%;
  border: 1px solid oklch(0.7 0.16 295 / 0.5);
  animation: ring-out 4s ease-out infinite;
}
.orb-ring.r2 { animation-delay: 1.3s; }
.orb-ring.r3 { animation-delay: 2.6s; }

.orb-waves {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 70%;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  pointer-events: none;
}
.orb-waves .bar {
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, white, oklch(0.85 0.13 210));
  box-shadow: 0 0 12px oklch(0.85 0.13 210 / 0.7);
  transition: height 80ms ease-out;
}

/* Floating cards near orb */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  font-size: 13px;
  border-radius: 14px;
  background: rgba(14,17,26,0.7);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  white-space: nowrap;
  animation: float-y 7s ease-in-out infinite;
}
.float-card .ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.float-card .ic-violet { background: oklch(0.45 0.22 290 / 0.4); color: oklch(0.85 0.18 295); }
.float-card .ic-cyan { background: oklch(0.45 0.18 215 / 0.4); color: oklch(0.85 0.13 210); }
.float-card .ic-gold { background: oklch(0.45 0.16 85 / 0.4); color: var(--gold); }
.float-card .ic-green { background: oklch(0.45 0.18 155 / 0.4); color: oklch(0.85 0.18 155); }

.float-card.fc-1 { top: 8%; left: -8%; animation-delay: 0s; }
.float-card.fc-2 { top: 28%; right: -14%; animation-delay: 1.2s; }
.float-card.fc-3 { bottom: 22%; left: -12%; animation-delay: 2.4s; }
.float-card.fc-4 { bottom: 6%; right: -6%; animation-delay: 3.0s; }

@media (max-width: 700px) {
  .float-card.fc-1 { left: -2%; }
  .float-card.fc-2 { right: -2%; }
  .float-card.fc-3 { left: -2%; }
  .float-card.fc-4 { right: -2%; }
  .float-card { font-size: 11px; padding: 9px 10px; }
}

/* Particles */
.particles { position: absolute; inset: 0; pointer-events: none; }
.particles span {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: white; opacity: 0.6;
  box-shadow: 0 0 6px white;
  animation: drift 9s ease-in-out infinite;
}

/* Section heads */
.section-head { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-bottom: 60px; max-width: 720px; }
.section-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }

/* CONVERSATION */
.convo-shell {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: var(--r-xl);
}
@media (max-width: 880px) {
  .convo-shell { grid-template-columns: 1fr; }
}
.call-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.call-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r-lg);
  background: radial-gradient(400px 200px at 50% 0%, oklch(0.55 0.22 290 / 0.35), transparent 60%);
  pointer-events: none;
}
.call-status { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); position: relative; }
.call-status .live-dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.7 0.2 30); box-shadow: 0 0 10px oklch(0.7 0.2 30); animation: pulse-soft 1.4s ease-in-out infinite; }
.caller { display: flex; align-items: center; gap: 14px; position: relative; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, oklch(0.6 0.18 30), oklch(0.4 0.15 320));
  display: grid; place-items: center;
  font-weight: 500; font-size: 18px; color: white;
  border: 2px solid rgba(255,255,255,0.15);
}
.caller-info .name { font-size: 17px; font-weight: 500; }
.caller-info .num { font-family: var(--font-mono); font-size: 12px; color: var(--fg-mute); margin-top: 2px; }
.call-timer { font-family: var(--font-mono); font-size: 28px; letter-spacing: 0.06em; color: var(--fg); position: relative; }
.call-controls { display: flex; gap: 10px; position: relative; }
.call-btn { flex: 1; height: 42px; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.04); color: var(--fg-mute); font-size: 12px; display: grid; place-items: center; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.call-btn.danger { background: oklch(0.45 0.2 25 / 0.3); border-color: oklch(0.55 0.18 25 / 0.5); color: oklch(0.85 0.15 30); }

.transcript {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.transcript-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.bubble { display: flex; gap: 12px; max-width: 85%; opacity: 0; animation: fade-up 0.5s ease both; }
.bubble.aliki { align-self: flex-start; }
.bubble.user { align-self: flex-end; flex-direction: row-reverse; }
.bubble .who {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 6px;
}
.bubble.user .who { text-align: right; }
.bubble .text {
  padding: 14px 18px; border-radius: 18px; line-height: 1.45; font-size: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}
.bubble.aliki .text {
  background: linear-gradient(180deg, oklch(0.45 0.22 290 / 0.25), oklch(0.35 0.18 290 / 0.15));
  border-color: oklch(0.55 0.22 290 / 0.45);
  border-bottom-left-radius: 6px;
  box-shadow: 0 0 30px -10px oklch(0.55 0.22 290 / 0.4);
}
.bubble.user .text {
  background: rgba(255,255,255,0.06);
  border-bottom-right-radius: 6px;
}
.bubble .ico { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; font-size: 11px; font-family: var(--font-mono); margin-top: 22px; }
.bubble.aliki .ico { background: oklch(0.5 0.22 290 / 0.3); color: oklch(0.85 0.18 295); border: 1px solid oklch(0.55 0.22 290 / 0.4); }
.bubble.user .ico { background: rgba(255,255,255,0.06); color: var(--fg-mute); border: 1px solid var(--line); }

.thinking { display: inline-flex; gap: 4px; }
.thinking span { width: 6px; height: 6px; border-radius: 50%; background: oklch(0.85 0.18 295); animation: pulse-soft 1.2s ease-in-out infinite; }
.thinking span:nth-child(2) { animation-delay: 0.2s; }
.thinking span:nth-child(3) { animation-delay: 0.4s; }

.confirm-card {
  margin-top: auto;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(90deg, oklch(0.45 0.18 155 / 0.15), oklch(0.45 0.18 155 / 0.04));
  border: 1px solid oklch(0.55 0.18 155 / 0.4);
  border-radius: 14px;
  font-size: 14px;
}
.confirm-card .check {
  width: 32px; height: 32px; border-radius: 50%;
  background: oklch(0.7 0.18 155);
  display: grid; place-items: center; color: var(--ink-0); font-weight: 700;
}

/* mini waveform in transcript */
.mini-wave { display: inline-flex; align-items: end; height: 14px; gap: 2px; margin-left: 8px; }
.mini-wave i { width: 2px; background: oklch(0.85 0.18 295); border-radius: 1px; animation: bar 1s ease-in-out infinite; }
.mini-wave i:nth-child(1) { animation-delay: 0.0s; }
.mini-wave i:nth-child(2) { animation-delay: 0.15s; }
.mini-wave i:nth-child(3) { animation-delay: 0.3s; }
.mini-wave i:nth-child(4) { animation-delay: 0.45s; }
.mini-wave i:nth-child(5) { animation-delay: 0.6s; }
@keyframes bar { 0%, 100% { height: 3px; } 50% { height: 14px; } }

/* TIMELINE / How it works */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.timeline::before {
  content: ""; position: absolute; left: 0; right: 0; top: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
  opacity: 0.5;
  z-index: 0;
}
.tl-step {
  position: relative; z-index: 1;
  padding: 22px 22px 24px;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.tl-step .num {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 18px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.tl-step:nth-child(1) .num { color: oklch(0.85 0.18 295); border-color: oklch(0.55 0.22 290 / 0.5); box-shadow: 0 0 30px -10px oklch(0.55 0.22 290 / 0.6); }
.tl-step:nth-child(2) .num { color: oklch(0.85 0.13 210); border-color: oklch(0.55 0.16 215 / 0.5); box-shadow: 0 0 30px -10px oklch(0.55 0.16 215 / 0.6); }
.tl-step:nth-child(3) .num { color: var(--gold); border-color: oklch(0.65 0.14 85 / 0.5); box-shadow: 0 0 30px -10px oklch(0.65 0.14 85 / 0.5); }
.tl-step:nth-child(4) .num { color: oklch(0.85 0.18 155); border-color: oklch(0.55 0.18 155 / 0.5); box-shadow: 0 0 30px -10px oklch(0.55 0.18 155 / 0.5); }
.tl-step h3 { font-size: 18px; font-weight: 500; }
.tl-step p { color: var(--fg-mute); font-size: 14px; line-height: 1.5; margin: 0; }

@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
}
@media (max-width: 520px) {
  .timeline { grid-template-columns: 1fr; }
}

/* INDUSTRIES */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.ind-card {
  position: relative;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 220px;
}
.ind-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r-lg);
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), oklch(0.55 0.22 290 / 0.25), transparent 60%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.ind-card:hover::before { opacity: 1; }
.ind-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.ind-card.span-6 { grid-column: span 6; }
.ind-card.span-4 { grid-column: span 4; }
.ind-card.span-3 { grid-column: span 3; }
@media (max-width: 980px) {
  .ind-card.span-6, .ind-card.span-4, .ind-card.span-3 { grid-column: span 6; }
}
@media (max-width: 600px) {
  .ind-card.span-6, .ind-card.span-4, .ind-card.span-3 { grid-column: span 12; }
}
.ind-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong);
  position: relative;
}
.ind-card .name { font-size: 22px; letter-spacing: -0.02em; }
.ind-card .stat { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--fg-mute); }
.ind-card .stat .num { color: var(--fg); font-size: 28px; letter-spacing: -0.02em; font-family: var(--font-sans); display: block; margin-bottom: 4px; }
.ind-card .mini-ui {
  margin-top: auto;
  padding: 10px 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex; align-items: center; gap: 8px;
  color: var(--fg-mute);
}
.ind-card .mini-ui .pulse { width: 6px; height: 6px; border-radius: 50%; background: oklch(0.7 0.18 155); box-shadow: 0 0 8px oklch(0.7 0.18 155); animation: pulse-soft 1.6s ease-in-out infinite; }

/* FEATURES */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.feat {
  grid-column: span 4;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.feat.lg { grid-column: span 8; min-height: 300px; }
.feat.md { grid-column: span 6; }
@media (max-width: 980px) {
  .feat, .feat.lg, .feat.md { grid-column: span 12; }
}
.feat .feat-title { font-size: 22px; letter-spacing: -0.02em; }
.feat .feat-sub { color: var(--fg-mute); font-size: 14px; line-height: 1.5; }
.feat .feat-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-dim); }

/* dashboard widget */
.widget-bars {
  display: flex; align-items: end; gap: 8px; height: 80px; margin-top: auto; padding-top: 14px;
}
.widget-bars .b {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, oklch(0.7 0.22 295), oklch(0.4 0.22 290));
  position: relative;
}
.widget-bars .b.cy { background: linear-gradient(180deg, oklch(0.85 0.13 210), oklch(0.4 0.16 215)); }
.widget-bars .b.gd { background: linear-gradient(180deg, var(--gold), oklch(0.55 0.14 80)); }

.live-wave { position: relative; height: 70px; margin-top: auto; display: flex; align-items: center; gap: 3px; }
.live-wave i { flex: 1; background: linear-gradient(180deg, oklch(0.85 0.18 295), oklch(0.55 0.22 290)); border-radius: 2px; }

/* big feature */
.feat-big {
  grid-column: span 12;
  padding: 0;
  border-radius: var(--r-xl);
  background: var(--glass);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 420px;
}
@media (max-width: 880px) { .feat-big { grid-template-columns: 1fr; } }
.feat-big .copy { padding: 36px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.feat-big h3 { font-size: 32px; line-height: 1.05; letter-spacing: -0.025em; }
.feat-big .visual {
  position: relative;
  background: radial-gradient(500px 300px at 50% 50%, oklch(0.45 0.22 290 / 0.35), transparent 70%), linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border-left: 1px solid var(--line);
  display: grid; place-items: center; padding: 30px;
}

/* dash mock for analytics */
.dash {
  width: 100%; padding: 18px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-mono); font-size: 11px;
}
.dash .row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.dash .row:last-child { border-bottom: 0; }
.dash .row .k { color: var(--fg-mute); }
.dash .row .v { color: var(--fg); }
.dash .v.good { color: oklch(0.85 0.18 155); }
.dash .v.violet { color: oklch(0.85 0.18 295); }
.dash .v.gold { color: var(--gold); }

/* VOICE DEMO */
.voice-demo {
  padding: 36px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) { .voice-demo { grid-template-columns: 1fr; } }

.voice-tabs { display: flex; flex-direction: column; gap: 8px; }
.voice-tab {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  color: var(--fg-mute);
  font-size: 14px; text-align: left; cursor: pointer;
  transition: all 0.2s ease;
}
.voice-tab:hover { background: rgba(255,255,255,0.05); color: var(--fg); }
.voice-tab.active {
  background: linear-gradient(180deg, oklch(0.45 0.22 290 / 0.25), oklch(0.35 0.18 290 / 0.1));
  border-color: oklch(0.55 0.22 290 / 0.5);
  color: var(--fg);
  box-shadow: 0 0 30px -10px oklch(0.55 0.22 290 / 0.5);
}
.voice-tab .ic { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.voice-tab .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--fg-dim); margin-top: 2px; text-transform: uppercase; }

.voice-stage {
  position: relative;
  padding: 32px;
  border-radius: var(--r-lg);
  background: radial-gradient(500px 300px at 50% 0%, oklch(0.45 0.22 290 / 0.35), transparent 70%), var(--ink-1);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 22px;
  min-height: 380px;
}
.voice-stage-head { display: flex; justify-content: space-between; align-items: center; }
.voice-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(180deg, oklch(0.7 0.22 295), oklch(0.45 0.22 290));
  border: 1px solid oklch(0.85 0.18 295 / 0.5);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 0 40px -8px oklch(0.55 0.22 290 / 0.7);
  flex-shrink: 0;
  color: white;
  transition: transform 0.2s ease;
}
.voice-play:hover { transform: scale(1.05); }
.voice-spectrum {
  display: flex; align-items: center; gap: 4px;
  height: 90px;
  flex: 1;
  margin-left: 22px;
}
.voice-spectrum .b {
  flex: 1; min-width: 3px;
  background: linear-gradient(180deg, white, oklch(0.85 0.13 210));
  border-radius: 2px;
  box-shadow: 0 0 10px oklch(0.85 0.13 210 / 0.4);
  transition: height 60ms ease-out;
}
.voice-transcript {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px; line-height: 1.5;
  color: var(--fg-mute);
  max-height: 130px;
  overflow: hidden;
}
.voice-transcript .role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-dim); margin-right: 8px; }
.voice-transcript p { margin: 0 0 8px; }
.voice-transcript p:last-child { margin: 0; }

/* TESTIMONIALS */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .test-grid { grid-template-columns: 1fr; } }
.test {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 22px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.test::before {
  content: ""; position: absolute; top: -1px; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.55 0.22 290 / 0.6), transparent);
}
.test .quote { font-size: 22px; line-height: 1.3; letter-spacing: -0.02em; }
.test .quote .ser { font-family: var(--font-serif); font-style: italic; color: oklch(0.85 0.18 295); }
.test .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.test .who .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, oklch(0.55 0.22 290), oklch(0.55 0.16 215)); display: grid; place-items: center; font-weight: 500; color: white; font-size: 14px; }
.test .who .meta .biz { font-size: 14px; }
.test .who .meta .loc { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.06em; }
.test .metric { display: flex; gap: 18px; }
.test .metric .m { display: flex; flex-direction: column; }
.test .metric .m .num { font-size: 24px; letter-spacing: -0.02em; }
.test .metric .m .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-dim); margin-top: 2px; }
.test .metric .m.up .num { color: oklch(0.85 0.18 155); }
.test .metric .m.violet .num { color: oklch(0.85 0.18 295); }

/* FUTURE / map */
.future-stage {
  position: relative;
  padding: 60px 36px;
  border-radius: var(--r-xl);
  background: radial-gradient(700px 400px at 50% 30%, oklch(0.35 0.2 290 / 0.4), transparent 70%), linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
  display: flex; flex-direction: column; gap: 32px; align-items: center;
}
.greece-map { position: relative; width: 100%; max-width: 720px; aspect-ratio: 16/10; margin: 0 auto; }
.greece-map svg { width: 100%; height: 100%; }
.future-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 720px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-size: 13px; color: var(--fg-mute);
}
.pill .d { width: 6px; height: 6px; border-radius: 50%; background: oklch(0.85 0.18 295); box-shadow: 0 0 8px oklch(0.85 0.18 295); }
.pill .d.cy { background: oklch(0.85 0.13 210); box-shadow: 0 0 8px oklch(0.85 0.13 210); }
.pill .d.gd { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

/* PRICING */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  overflow: hidden;
}
.price.featured {
  background:
    radial-gradient(500px 300px at 50% -20%, oklch(0.55 0.22 290 / 0.3), transparent 60%),
    linear-gradient(180deg, oklch(0.18 0.05 290 / 0.7), oklch(0.12 0.03 280 / 0.6));
  border-color: oklch(0.55 0.22 290 / 0.5);
  box-shadow: 0 30px 80px -30px oklch(0.55 0.22 290 / 0.6), inset 0 1px 0 oklch(0.85 0.18 295 / 0.2);
}
.price .tier { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-mute); }
.price.featured .tier { color: oklch(0.85 0.18 295); }
.price .badge {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: oklch(0.55 0.22 290 / 0.3); border: 1px solid oklch(0.65 0.22 290 / 0.5);
  color: white;
}
.price .amt { display: flex; align-items: baseline; gap: 6px; }
.price .amt .n { font-size: 60px; letter-spacing: -0.04em; line-height: 1; font-weight: 500; }
.price .amt .cy { font-size: 22px; color: var(--fg-mute); }
.price .amt .pe { font-size: 14px; color: var(--fg-mute); }
.price .desc { color: var(--fg-mute); font-size: 14px; line-height: 1.5; }
.price ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.price ul li { display: flex; align-items: center; gap: 10px; color: var(--fg-mute); }
.price ul li::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: oklch(0.85 0.18 155 / 0.15); border: 1px solid oklch(0.65 0.18 155 / 0.4);
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7L6 9.5L10.5 4.5' stroke='%2387f5b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center; background-repeat: no-repeat;
  flex-shrink: 0;
}
.price .cta { margin-top: auto; }

/* FINAL CTA */
.final {
  position: relative;
  padding: 160px 0 200px;
  text-align: center;
  overflow: hidden;
}
.final-waves {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.final h2 { font-size: clamp(48px, 7vw, 110px); line-height: 0.95; letter-spacing: -0.04em; font-weight: 500; }
.final h2 .ser { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: oklch(0.85 0.18 295); }
.final .sub { font-size: clamp(20px, 2vw, 24px); color: var(--fg-mute); margin-top: 18px; }
.final .massive-cta {
  display: inline-flex; align-items: center; gap: 12px;
  height: 72px; padding: 0 36px;
  border-radius: 999px;
  font-size: 19px; font-weight: 500; letter-spacing: -0.01em;
  color: white;
  background: linear-gradient(180deg, oklch(0.7 0.22 295), oklch(0.45 0.22 290));
  border: 1px solid oklch(0.85 0.18 295 / 0.6);
  box-shadow: 0 0 80px oklch(0.55 0.22 290 / 0.6), 0 30px 80px -20px oklch(0.45 0.22 290 / 0.7), inset 0 1px 0 rgba(255,255,255,0.3);
  margin-top: 50px;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.final .massive-cta:hover { transform: translateY(-2px); box-shadow: 0 0 120px oklch(0.55 0.22 290 / 0.8), 0 40px 100px -20px oklch(0.45 0.22 290 / 0.8), inset 0 1px 0 rgba(255,255,255,0.4); }
.final .massive-cta::after {
  content: ""; position: absolute; inset: -2px; border-radius: 999px;
  border: 1px solid oklch(0.85 0.18 295 / 0.4);
  animation: ring-out 2.4s ease-out infinite;
  pointer-events: none;
}

/* footer */
.footer {
  position: relative; z-index: 2;
  padding: 60px 0 60px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start;
}
.footer .col { display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--fg-mute); }
.footer .col h4 { font-size: 11px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; color: var(--fg-dim); margin-bottom: 6px; font-weight: 500; }
.footer .col a:hover { color: var(--fg); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }

/* Section divider */
.divider-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-dim);
  margin-bottom: 18px;
}
.divider-label .line { flex: 1; height: 1px; background: var(--line); max-width: 60px; }

/* ============================================================
   MOBILE ACCORDION — minimum scrolling on phones
   Pattern mirrored from MAESTRO drnikolaidis.com (deployed 2026-05-10).
   Sections start collapsed on ≤760px; tap to expand. Hero + final CTA + footer always visible.
   ============================================================ */

.mob-acc-toggle { display: none; }

@media (max-width: 760px) {
  /* Tighten hero + final on mobile so first paint = signal-dense */
  .hero { padding: 110px 0 40px; min-height: auto; }
  .hero-grid { gap: 36px; }
  .orb-stage { max-width: 320px; }
  .h-display { font-size: clamp(36px, 9.4vw, 48px); }
  .hero-cta { margin-top: 24px; }
  .hero-meta { margin-top: 22px; gap: 14px; }
  .final { padding: 80px 0 100px; }
  .final h2 { font-size: clamp(36px, 9vw, 56px); }
  .final .massive-cta { margin-top: 32px; height: 60px; padding: 0 26px; font-size: 16px; }

  /* Sections in accordion mode: zero outer padding, content padding only when open */
  section.mob-acc { padding: 0; border-top: 1px solid var(--line); position: relative; z-index: 2; }
  section.mob-acc:last-of-type { border-bottom: 1px solid var(--line); }

  /* Toggle button is the only visible thing when collapsed */
  section.mob-acc .mob-acc-toggle {
    display: flex;
    width: 100%;
    padding: 22px 22px 22px 22px;
    background: rgba(8,10,16,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 0;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    text-align: left;
    cursor: pointer;
    color: var(--fg);
    font-family: var(--font-sans);
    transition: background .25s ease;
  }
  section.mob-acc .mob-acc-toggle:hover { background: rgba(255,255,255,0.04); }
  section.mob-acc .mob-acc-toggle .num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-dim);
    flex: 0 0 auto;
  }
  section.mob-acc .mob-acc-toggle .ttl {
    flex: 1 1 auto;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  section.mob-acc .mob-acc-toggle .ttl .sub {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: var(--fg-mute);
    margin-top: 3px;
    letter-spacing: 0;
  }
  section.mob-acc .mob-acc-toggle .ic {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    display: grid; place-items: center;
    color: var(--fg-mute);
    font-size: 18px; font-weight: 300; line-height: 1;
    transition: transform .3s cubic-bezier(0.2,0.7,0.2,1), color .25s ease, border-color .25s ease, background .25s ease;
    flex: 0 0 auto;
  }

  /* Collapsed: hide everything except the toggle */
  section.mob-acc.mob-collapsed > *:not(.mob-acc-toggle) { display: none !important; }

  /* Expanded: rotate +, accent the chip, restore content padding */
  section.mob-acc:not(.mob-collapsed) .mob-acc-toggle {
    background: linear-gradient(180deg, oklch(0.45 0.22 290 / 0.18), rgba(255,255,255,0.02));
    border-bottom: 1px solid oklch(0.55 0.22 290 / 0.35);
  }
  section.mob-acc:not(.mob-collapsed) .mob-acc-toggle .ic {
    transform: rotate(45deg);
    color: oklch(0.85 0.18 295);
    border-color: oklch(0.55 0.22 290 / 0.6);
    background: oklch(0.55 0.22 290 / 0.18);
  }
  section.mob-acc:not(.mob-collapsed) > .wrap,
  section.mob-acc:not(.mob-collapsed) > .wrap-narrow {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  /* Tighten section heads inside accordions (the eyebrow is redundant once a toggle exists) */
  section.mob-acc .section-head { margin-bottom: 26px; gap: 10px; }
  section.mob-acc .section-head .eyebrow { display: none; }
  section.mob-acc .h-section { font-size: clamp(26px, 6.6vw, 34px); line-height: 1.1; }
  section.mob-acc .lede { font-size: 15px; }

  /* Tighter grids when expanded */
  .timeline { gap: 10px; grid-template-columns: 1fr !important; }
  .timeline::before { display: none; }
  .ind-grid { gap: 10px; }
  .feat-grid { gap: 10px; }
  .price-grid { gap: 12px; }
  .test-grid { gap: 12px; }
  .voice-demo { gap: 16px; padding: 22px; }
  .convo-shell { padding: 18px; gap: 16px; }
  .future-stage { padding: 36px 18px; gap: 24px; }
}

/* Even smaller phones */
@media (max-width: 380px) {
  .hero { padding: 100px 0 28px; }
  section.mob-acc .mob-acc-toggle { padding: 18px 16px; }
  section.mob-acc:not(.mob-collapsed) > .wrap,
  section.mob-acc:not(.mob-collapsed) > .wrap-narrow { padding-left: 16px; padding-right: 16px; }
}
