/* ═══════════════════════════════════════════════════════════════════════════
   mdp/aigui — Landing Page (Dark)
   ═══════════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Cal Sans';
  src: url('fonts/CalSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg:          #080808;
  --bg-1:        #0E0E0E;
  --bg-2:        #141414;
  --bg-3:        #1A1A1A;
  --border:      rgba(255,255,255,0.08);
  --border-md:   rgba(255,255,255,0.14);
  --text-1:      #F4F4F5;
  --text-2:      #A1A1AA;
  --text-3:      #71717A;
  --accent:      #FFCD4A;

  --font-display: 'Cal Sans', 'DM Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Roboto Mono', 'Fira Code', monospace;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-pill: 9999px;

  --max-w:       1200px;
  --section-py:  120px;

  --shadow-glow: 0 0 80px rgba(255,205,74,0.06), 0 32px 80px rgba(0,0,0,0.55);

  /* ── Cal.com-inspired shadow system (dark adaptation) ── */
  /* ring = hairline border via shadow; contact = tight bottom grounding; soft = ambient depth; inset = top bevel */
  --shadow-card:
    0 0 0 1px rgba(255,255,255,0.07),
    0 1px 6px -2px rgba(0,0,0,0.85),
    0 8px 28px rgba(0,0,0,0.30);
  --shadow-card-hover:
    0 0 0 1px rgba(255,255,255,0.13),
    0 2px 10px -2px rgba(0,0,0,0.90),
    0 20px 44px rgba(0,0,0,0.42);
  --shadow-btn:
    0 0 0 1px rgba(255,255,255,0.11),
    0 1px 4px -1px rgba(0,0,0,0.72),
    inset 0 1px 0 rgba(255,255,255,0.08);
  --shadow-btn-hover:
    0 0 0 1px rgba(255,255,255,0.16),
    0 2px 8px -1px rgba(0,0,0,0.80),
    inset 0 1px 0 rgba(255,255,255,0.10);
  --shadow-btn-accent:
    0 0 0 1px rgba(255,205,74,0.50),
    0 1px 4px -1px rgba(0,0,0,0.72),
    inset 0 1px 0 rgba(255,255,255,0.24);
  --shadow-btn-accent-hover:
    0 0 0 1px rgba(255,205,74,0.70),
    0 2px 12px rgba(255,205,74,0.22),
    0 1px 4px -1px rgba(0,0,0,0.72),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

html { scroll-behavior: smooth; }

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

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.logo-accent { color: var(--accent); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--text-1);
  margin-bottom: 16px;
}

.section-body {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

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

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 0 20px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
  position: relative;
}

.btn:active        { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-accent {
  background: var(--accent);
  color: #111;
  font-weight: 600;
  box-shadow: var(--shadow-btn-accent);
}
.btn-accent:hover { box-shadow: var(--shadow-btn-accent-hover); }

.btn-outline {
  background: var(--bg-2);
  color: var(--text-1);
  box-shadow: var(--shadow-btn);
}
.btn-outline:hover { box-shadow: var(--shadow-btn-hover); background: var(--bg-3); }

.btn-lg {
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

.btn-xl {
  height: 60px;
  padding: 0 36px;
  font-size: 17px;
  font-weight: 600;
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: background 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}

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

.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }

.nav-cta { flex-shrink: 0; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  padding: 4px 8px;
  border-radius: calc(var(--radius-sm) - 2px);
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.03em;
}
.lang-btn:hover { color: var(--text-1); background: rgba(255,255,255,0.08); }
.lang-btn.active { color: var(--text-1); background: rgba(255,255,255,0.12); }

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

.nav-mobile-menu {
  display: block;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 20px;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  /* kapalı: sağ üst köşeden sıfır daire */
  clip-path: circle(0% at calc(100% - 28px) 0px);
  visibility: hidden;
  pointer-events: none;
  transition:
    clip-path 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility  0.42s;
}
.nav-mobile-menu.open {
  clip-path: circle(170% at calc(100% - 28px) 0px);
  visibility: visible;
  pointer-events: auto;
}
.nav-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.nav-mobile-menu ul a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  transition: color 0.15s, background 0.15s;
}
.nav-mobile-menu ul a:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }
.nav-mobile-menu .btn {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero .container { position: relative; z-index: 1; }

/* ── Hero animated background ─────────────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

/* Amber/yellow orb — top-left, brand colour glow */
.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,205,74,0.13) 0%, transparent 68%);
  top: -280px;
  left: -180px;
  animation: orb1 18s ease-in-out infinite alternate;
}

/* Violet orb — top-right, cool contrast */
.hero-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 68%);
  top: -200px;
  right: -200px;
  animation: orb2 22s ease-in-out infinite alternate;
}

/* Teal orb — lower-centre, depth */
.hero-orb-3 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(20,184,166,0.07) 0%, transparent 68%);
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  animation: orb3 26s ease-in-out infinite alternate;
}

/* Dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(0,0,0,0.65) 0%, transparent 80%);
  mask-image:         radial-gradient(ellipse 80% 70% at 50% 0%, rgba(0,0,0,0.65) 0%, transparent 80%);
}

@keyframes orb1 {
  0%   { transform: translate(0,   0)   scale(1);    }
  40%  { transform: translate(80px, 60px) scale(1.12); }
  100% { transform: translate(30px, 110px) scale(0.94); }
}

@keyframes orb2 {
  0%   { transform: translate(0,   0)    scale(1);    }
  40%  { transform: translate(-70px, 80px) scale(1.08); }
  100% { transform: translate(-20px, 40px) scale(1.15); }
}

@keyframes orb3 {
  0%   { transform: translateX(-50%) scale(1);    }
  50%  { transform: translateX(-47%) scale(1.10); }
  100% { transform: translateX(-53%) scale(0.92); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 40px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.09), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 28px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.hero-accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 400;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

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

.hero-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  color: var(--text-3);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Hero demo */
.hero-demo {
  max-width: 960px;
  margin: 0 auto;
}

.demo-frame {
  background: #0A0A0A;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 2px 12px -2px rgba(0,0,0,0.9), 0 40px 80px rgba(0,0,0,0.55), 0 0 80px rgba(255,205,74,0.05);
}

.demo-bar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  gap: 12px;
}

.demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 10px; height: 10px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: rgba(255,95,86,0.7); }
.demo-dots span:nth-child(2) { background: rgba(255,188,46,0.7); }
.demo-dots span:nth-child(3) { background: rgba(40,200,64,0.7); }

.demo-bar-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-3);
}

.hero-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Marquee Band ───────────────────────────────────────────────────────── */
.marquee-band {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee-band:hover .marquee-inner { animation-play-state: paused; }

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  padding: 0 24px;
  white-space: nowrap;
}

.mq-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Positioning Section ────────────────────────────────────────────────── */
.position-section {
  background: var(--bg-1);
  padding: var(--section-py) 0;
}

.position-inner {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.position-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.position-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 24px;
}

.position-body {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
}

.position-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pstat {
  background: var(--bg-1);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pstat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-1);
  line-height: 1;
  display: block;
}

.pstat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

/* ─── Features Section ───────────────────────────────────────────────────── */
.feat-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.feat-row-alt .feat-text        { order: 2; }
.feat-row-alt .feat-mockup-wrap { order: 1; }

.feat-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
}

.feat-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 16px;
}

.feat-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 20px;
}

.feat-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
}

.feat-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.feat-bullets li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(74,222,128,0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%234ADE80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── Screenshot Placeholders ────────────────────────────────────────────── */
.feat-mockup-wrap { width: 100%; }

.feat-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.feat-placeholder {
  width: 100%;
  aspect-ratio: 1040 / 660;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
}

.screenshot-placeholder {
  width: 100%;
  aspect-ratio: 1040 / 660;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.screenshot-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.012) 18px,
    rgba(255,255,255,0.012) 19px
  );
  pointer-events: none;
}

.sp-dims {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}

.sp-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
}

.sp-hint {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.14);
  margin-top: 4px;
}

/* ─── AI Models ──────────────────────────────────────────────────────────── */
.ai-section {
  background: var(--bg-2);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.ai-card {
  background: var(--bg-1);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.22s ease;
}
.ai-card:hover { box-shadow: var(--shadow-card-hover); }

.ai-card-featured {
  box-shadow: 0 0 0 1px rgba(255,205,74,0.25), 0 1px 6px -2px rgba(0,0,0,0.85), 0 8px 28px rgba(0,0,0,0.30);
}
.ai-card-featured:hover {
  box-shadow: 0 0 0 1px rgba(255,205,74,0.45), 0 2px 10px -2px rgba(0,0,0,0.90), 0 20px 44px rgba(0,0,0,0.42);
}

.ai-featured-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--accent);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.ai-card-glyph {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.09), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ai-provider {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}

.ai-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.ai-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.ai-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.ai-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  color: var(--text-3);
}

/* ─── Comparison Table ───────────────────────────────────────────────────── */
.comparison-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.cmp-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  background: var(--bg-1);
  box-shadow: var(--shadow-card);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}
.cmp-wrap::-webkit-scrollbar {
  height: 4px;
}
.cmp-wrap::-webkit-scrollbar-track {
  background: transparent;
  margin: 0 var(--radius-xl);
}
.cmp-wrap::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.14);
  border-radius: 9999px;
}
.cmp-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.26);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cmp-table th,
.cmp-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.cmp-table thead th {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-md);
  letter-spacing: 0.03em;
}
.cmp-table thead th:first-child { text-align: left; }

.cmp-table tbody td { color: var(--text-3); }
.cmp-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-1);
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

.cmp-highlight {
  background: rgba(255,205,74,0.04) !important;
  border-left: 1px solid rgba(255,205,74,0.14);
  border-right: 1px solid rgba(255,205,74,0.14);
}
.cmp-table thead .cmp-highlight { color: var(--text-1) !important; font-size: 13px; }

.ck { color: #4ADE80; font-size: 16px; font-weight: 700; }
.cx { color: var(--text-3); font-size: 16px; opacity: 0.5; }
.cp { color: var(--accent); font-size: 12px; font-weight: 600; }

/* ─── How It Works ───────────────────────────────────────────────────────── */
.steps-section {
  background: var(--bg-1);
  padding: var(--section-py) 0;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

.step-item {
  background: var(--bg-2);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.22s ease;
}
.step-item:hover { box-shadow: var(--shadow-card-hover); }

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 16px;
}

.step-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.09), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--text-3);
  flex-shrink: 0;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-1);
  box-shadow: var(--shadow-card);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover         { background: rgba(255,255,255,0.03); }
.faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-chevron {
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.faq-a {
  padding: 0 24px 20px;
  animation: faq-expand 0.22s ease;
}

.faq-a p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
}

@keyframes faq-expand {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Compatibility ──────────────────────────────────────────────────────── */
.compat-section {
  background: var(--bg-1);
  padding: var(--section-py) 0;
}

.compat-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.compat-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.compat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  min-width: 36px;
  padding-top: 7px;
}

.compat-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.compat-chip {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
  color: var(--text-2);
}

.compat-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 36px auto 0;
  max-width: 800px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), inset 0 1px 0 rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-3);
}

/* ─── CTA ────────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,205,74,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-eyebrow { margin-bottom: 20px; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-body {
  font-size: 18px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.cta-meta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.03em;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.cmp-logo-img {
  height: 22px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.footer-tagline { font-size: 13px; color: var(--text-3); line-height: 1.65; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text-1); }

.footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.15s;
  display: block;
}
.footer-email:hover { color: var(--text-1); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy  { font-size: 12px; color: var(--text-3); }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.15); max-width: 560px; text-align: right; line-height: 1.5; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.35); }

/* ─── Scroll Animations ──────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

.fade-left {
  opacity: 0;
  transform: translateX(-44px) translateY(10px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-left.visible  { opacity: 1; transform: none; }

.fade-right {
  opacity: 0;
  transform: translateX(44px) translateY(10px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-right.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none; }
  .fade-up, .fade-left, .fade-right { opacity: 1; transform: none; transition: none; }
  .faq-chevron { transition: none; }
  .marquee-inner { animation-play-state: paused; }
  @keyframes faq-expand { from { opacity: 1; transform: none; } }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 96px; }

  .feat-row { gap: 48px; padding: 64px 0; }

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

  .ai-grid { grid-template-columns: repeat(3, 1fr); }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }

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

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .container { padding: 0 20px; }
  .nav       { padding: 0 20px; }
  .nav-links, .nav-cta, .lang-switcher { display: none; }
  .lang-switcher-mobile { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { padding: 16px 20px 24px; }

  .hero         { padding: 120px 0 64px; }
  .hero-title   { font-size: 40px; }
  .hero-sub     { font-size: 16px; }
  .hero-ctas    { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  .feat-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }
  .feat-row-alt .feat-text        { order: unset; }
  .feat-row-alt .feat-mockup-wrap { order: unset; }
  .fade-left, .fade-right { transform: translateY(28px) !important; }

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

  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-legal { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cmp-wrap { border-radius: var(--radius-lg); }

  .compat-row { align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --section-py: 56px; }
  .footer-grid  { grid-template-columns: 1fr; }
  .position-stats { grid-template-columns: 1fr 1fr; }
  .hero-title   { font-size: 34px; }
  .compat-row   { flex-direction: column; gap: 10px; }
  .compat-label { padding-top: 0; }
}

/* ─── Trust Bar ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

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

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  padding: 4px 20px;
  white-space: nowrap;
}

.trust-icon {
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.85;
}

.trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border-md);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-item { padding: 4px 12px; }
  .trust-sep  { display: none; }
}
@media (max-width: 600px) {
  .trust-item { font-size: 11px; padding: 3px 8px; }
}

/* ─── Persona Section ────────────────────────────────────────────────────── */
.persona-section {
  background: var(--bg-2);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.persona-card {
  background: var(--bg-1);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.persona-card:hover { box-shadow: var(--shadow-card-hover); }

.persona-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,205,74,0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px rgba(255,205,74,0.20), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.persona-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}

.persona-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 12px;
  line-height: 1.25;
}

.persona-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.persona-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.persona-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  color: var(--text-3);
}

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

/* ─── Enterprise Section ─────────────────────────────────────────────────── */
.enterprise-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.enterprise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.enterprise-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--text-1);
  margin-bottom: 20px;
}

.enterprise-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.enterprise-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.enterprise-feature {
  background: var(--bg-1);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.22s ease;
}
.enterprise-feature:hover { box-shadow: var(--shadow-card-hover); }

.enterprise-feat-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.09), inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
}

.enterprise-feat-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
}

.enterprise-feat-body {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

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