/* =========================================================
   MASTERY METER — LANDING STYLES
   Palette aligned with product: teal primary, blue accent
   ========================================================= */

:root {
  --primary: #0fb79a;
  --primary-dark: #0c9a82;
  --primary-light: #d6f5ed;
  --secondary: #336aeb;
  --secondary-dark: #2952c4;
  --accent: #faad42;
  --success: #05d69e;
  --danger: #e62864;
  --purple: #8168b1;
  --dark: #0b1020;
  --dark-2: #14192e;
  --text: #1a1f36;
  --text-muted: #5a6478;
  --text-soft: #8a92a6;
  --border: #e5e8ef;
  --border-soft: #eef0f5;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-soft-2: #f0f3f9;
  --grad: linear-gradient(135deg, #0fb79a 0%, #336aeb 100%);
  --grad-soft: linear-gradient(135deg, #d6f5ed 0%, #e0e9fd 100%);
  --shadow-sm: 0 2px 6px rgba(15,24,40,.06);
  --shadow-md: 0 8px 24px rgba(15,24,40,.08);
  --shadow-lg: 0 24px 64px rgba(15,24,40,.12);
  --shadow-xl: 0 40px 96px rgba(15,24,40,.16);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
code { font-family: 'JetBrains Mono', monospace; background: var(--bg-soft); padding: 2px 6px; border-radius: 4px; font-size: .9em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 12px;
  font-weight: 600; font-size: 15px;
  transition: all .25s var(--ease);
  border: none; cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--grad); color: white;
  box-shadow: 0 6px 20px rgba(15,183,154,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(15,183,154,.5); }
.btn-outline {
  background: white; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-soft); }
.arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled { border-color: var(--border-soft); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -.02em;
}
.brand b { color: var(--primary); font-weight: 800; }
.brand-logo { width: 34px; height: 34px; border-radius: 10px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 13px;
  padding: 8px 12px; border-radius: 999px; cursor: pointer;
  transition: background .2s, border-color .2s, transform .1s;
}
.lang-switch:hover { background: white; border-color: var(--primary); color: var(--primary); }
.lang-switch:active { transform: scale(.96); }
.lang-icon { font-size: 14px; line-height: 1; }
.lang-label { letter-spacing: .04em; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: .3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .45;
  animation: float 20s infinite ease-in-out;
}
.blob-1 { width: 500px; height: 500px; background: #0fb79a; top: -150px; left: -100px; }
.blob-2 { width: 420px; height: 420px; background: #336aeb; top: 100px; right: -120px; animation-delay: -5s; }
.blob-3 { width: 300px; height: 300px; background: #faad42; bottom: -100px; left: 40%; animation-delay: -10s; opacity: .25; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 30px) scale(.95); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,24,40,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,24,40,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: center;
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(15,183,154,.1);
  color: var(--primary-dark);
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow-light {
  background: white; box-shadow: var(--shadow-sm);
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15,183,154,.6); }
  50% { box-shadow: 0 0 0 8px rgba(15,183,154,0); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 800;
  margin-bottom: 20px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 18px; line-height: 1.65;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--border-soft);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 22px; font-weight: 800; color: var(--text); }
.trust-item span { font-size: 13px; color: var(--text-muted); }
.trust-sep { width: 1px; height: 32px; background: var(--border); }

/* ============ HERO MOCK ============ */
.hero-mock {
  position: relative;
  animation: mockIn 1s var(--ease) both;
}
@keyframes mockIn {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.mock-window {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transform: perspective(1600px) rotateY(-6deg) rotateX(3deg);
  transform-origin: center;
}
.mock-head {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.mock-head span:nth-of-type(-n+3) {
  width: 11px; height: 11px; border-radius: 50%;
}
.dot-r { background: #ff5f56; } .dot-y { background: #ffbd2e; } .dot-g { background: #27c93f; }
.mock-addr {
  flex: 1; text-align: center;
  padding: 4px 12px;
  background: white; border-radius: 6px;
  font-size: 11px; color: var(--text-soft);
  font-family: 'JetBrains Mono', monospace;
  max-width: 260px; margin: 0 auto;
}
.mock-body { display: grid; grid-template-columns: 56px 1fr; min-height: 380px; }
.mock-side {
  background: var(--dark);
  padding: 16px 10px;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.mock-logo { width: 32px; height: 32px; border-radius: 8px; background: var(--grad); }
.mock-item { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.08); }
.mock-item.active { background: var(--primary); }
.mock-main { padding: 20px; background: var(--bg-soft); }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.stat-card {
  background: white; border-radius: 12px; padding: 12px;
  border-left: 3px solid var(--primary);
}
.stat-card.s2 { border-left-color: var(--secondary); }
.stat-card.s3 { border-left-color: var(--accent); }
.stat-label { font-size: 10px; color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; }
.stat-value { font-size: 24px; font-weight: 800; margin: 4px 0; }
.stat-trend { font-size: 11px; font-weight: 600; }
.stat-trend.up { color: var(--success); }
.mock-chart {
  background: white; border-radius: 12px; padding: 14px; margin-bottom: 12px;
}
.chart-title { font-size: 12px; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.chart-svg { width: 100%; height: 100px; }
.chart-legend {
  font-size: 11px; color: var(--text-muted);
  display: flex; gap: 16px; margin-top: 4px;
}
.chart-legend span {
  display: inline-block; width: 14px; height: 3px; border-radius: 2px; margin-right: 4px; vertical-align: middle;
}
.lg-d1 { background: var(--primary); }
.lg-d2 { background: var(--secondary); }
.mock-rows { background: white; border-radius: 12px; padding: 12px; }
.row-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 4px; font-size: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.row-item:last-child { border: 0; }
.row-dot { width: 8px; height: 8px; border-radius: 50%; }
.row-dot.g { background: var(--success); }
.row-dot.y { background: var(--accent); }
.row-dot.r { background: var(--danger); }
.row-score { margin-left: auto; font-weight: 700; font-family: 'JetBrains Mono', monospace; }

.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  animation: floatCard 4s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 13px; font-weight: 700; }
.float-card span { font-size: 11px; color: var(--text-soft); }
.fc-icon { font-size: 24px; }
.fc-1 { top: 20%; left: -30px; animation-delay: 0s; }
.fc-2 { bottom: 15%; right: -30px; animation-delay: -2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ LOGOS STRIP ============ */
.logos { padding: 60px 0 20px; }
.logos-label {
  text-align: center; font-size: 13px; color: var(--text-soft);
  margin-bottom: 24px; letter-spacing: .1em; text-transform: uppercase;
}
.logos-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  opacity: .6;
  transition: opacity .3s;
}
.logos-row:hover { opacity: 1; }
.logo-item {
  font-weight: 700; font-size: 16px; color: var(--text-muted);
  letter-spacing: -.01em;
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center; max-width: 760px; margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15; letter-spacing: -.02em;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-sub { font-size: 17px; color: var(--text-muted); }

/* ============ PROBLEM / SOLUTION ============ */
.problem { padding: 100px 0; background: var(--bg-soft); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 24px; align-items: center;
  max-width: 1000px; margin: 0 auto;
}
.p-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.p-card.pain { border-top: 4px solid var(--danger); }
.p-card.gain { border-top: 4px solid var(--primary); background: linear-gradient(180deg, #fff, #f9fcfb); }
.p-card h3 { font-size: 20px; margin-bottom: 18px; }
.p-icon { font-size: 36px; margin-bottom: 8px; }
.p-card ul { display: flex; flex-direction: column; gap: 12px; }
.p-card li { font-size: 15px; color: var(--text); }
.p-card.pain li { color: var(--text-soft); }
.p-arrow { text-align: center; font-size: 32px; color: var(--primary); font-weight: 700; }

/* ============ FEATURES ============ */
.features { padding: 100px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  position: relative;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.feat-lg {
  grid-column: span 2;
  background: linear-gradient(135deg, #f4fbf9, #f0f5fd);
  border-color: transparent;
}
.feat-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--grad); color: white;
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
}
.feat-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-ico svg { width: 28px; height: 28px; }
.ico-ai { background: linear-gradient(135deg, #fff3d6, #fcd9a2); color: #b17509; }
.ico-video { background: linear-gradient(135deg, #ffe0e8, #ffc0d2); color: #c41e4e; }
.ico-exam { background: linear-gradient(135deg, #d6f5ed, #a8ebd9); color: var(--primary-dark); }
.ico-map { background: linear-gradient(135deg, #e0e9fd, #c0d2fb); color: var(--secondary-dark); }
.ico-doc { background: linear-gradient(135deg, #ede4f7, #d7c3ed); color: #6b4aa0; }
.ico-chart { background: linear-gradient(135deg, #d6f5ed, #a8ebd9); color: var(--primary-dark); }
.ico-group { background: linear-gradient(135deg, #fff3d6, #fcd9a2); color: #b17509; }
.ico-cal { background: linear-gradient(135deg, #e0e9fd, #c0d2fb); color: var(--secondary-dark); }
.ico-shield { background: linear-gradient(135deg, #ffe0e8, #ffc0d2); color: #c41e4e; }

.feat-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.feat-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

.feat-demo {
  margin-top: 20px; padding: 16px;
  background: white; border-radius: 14px;
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 10px;
}
.chat-bubble {
  padding: 10px 14px; border-radius: 14px;
  font-size: 13.5px; max-width: 85%;
}
.chat-bubble.usr { background: var(--bg-soft); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-bubble.ai { background: var(--primary-light); color: var(--primary-dark); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-bubble b { font-weight: 700; }
.typing { display: inline-flex; gap: 3px; margin-right: 6px; vertical-align: middle; }
.typing span {
  width: 5px; height: 5px; background: var(--primary); border-radius: 50%;
  animation: typing 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

/* ============ AUDIENCE ============ */
.audience { padding: 100px 0; background: var(--bg-soft); }
.aud-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.aud-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .3s var(--ease);
}
.aud-card:hover { transform: translateY(-4px); }
.aud-illo svg { width: 100%; height: auto; max-height: 160px; border-radius: 16px; }
.aud-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
  width: fit-content;
}
.aud-tag.t1 { background: var(--primary-light); color: var(--primary-dark); }
.aud-tag.t2 { background: #e0e9fd; color: var(--secondary-dark); }
.aud-card h3 { font-size: 22px; letter-spacing: -.015em; font-weight: 700; }
.aud-desc { color: var(--text-muted); font-size: 15px; }
.aud-list { display: flex; flex-direction: column; gap: 12px; }
.aud-list li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.55; }
.check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.aud-card-alt .check { background: #e0e9fd; color: var(--secondary-dark); }
.aud-persona {
  display: grid; grid-template-columns: auto 1fr; gap: 12px 16px;
  padding: 18px; margin-top: 8px;
  background: var(--bg-soft); border-radius: 16px;
  align-items: center;
}
.persona-ava {
  width: 46px; height: 46px; border-radius: 50%;
  background: white; display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: var(--shadow-sm);
}
.aud-persona > div:nth-child(2) b { display: block; font-size: 14px; }
.aud-persona > div:nth-child(2) span { font-size: 12px; color: var(--text-soft); }
.aud-persona blockquote {
  grid-column: span 2;
  font-size: 14px; color: var(--text-muted); font-style: italic;
  line-height: 1.55; border-left: 3px solid var(--primary); padding-left: 12px;
}
.aud-card-alt .aud-persona blockquote { border-color: var(--secondary); }

/* ============ HOW IT WORKS ============ */
.how { padding: 100px 0; }
.steps { display: flex; flex-direction: column; gap: 20px; max-width: 960px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: auto 1fr 200px;
  gap: 28px; align-items: center;
  padding: 32px; background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: all .3s var(--ease);
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.step-num {
  font-size: 48px; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; font-family: 'JetBrains Mono', monospace;
}
.step-body h3 { font-size: 20px; margin-bottom: 6px; }
.step-body p { color: var(--text-muted); font-size: 14.5px; }
.step-visual svg { width: 100%; max-height: 90px; }

/* ============ CAPABILITY ============ */
.capability {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: white;
  position: relative; overflow: hidden;
}
.capability::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(15,183,154,.2), transparent 50%),
              radial-gradient(circle at 80% 100%, rgba(51,106,235,.2), transparent 50%);
}
.capability .section-head { position: relative; }
.capability .section-head h2 { color: white; }
.capability .section-sub { color: rgba(255,255,255,.7); }
.capability .eyebrow-light { background: rgba(255,255,255,.1); color: white; backdrop-filter: blur(10px); }
.cap-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cap-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
}
.cap-block:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(15,183,154,.4);
  transform: translateY(-4px);
}
.cap-ico { font-size: 32px; margin-bottom: 14px; }
.cap-block h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.cap-block p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; }
.cap-block code { background: rgba(255,255,255,.1); color: #6ee7c5; }
.cap-block b { color: white; }

/* ============ USE CASES ============ */
.usecases { padding: 100px 0; background: var(--bg-soft); }
.uc-scroll {
  display: flex; gap: 20px;
  overflow-x: auto;
  padding: 10px 20px 30px;
  margin: 0 -20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.uc-scroll::-webkit-scrollbar { height: 8px; }
.uc-scroll::-webkit-scrollbar-track { background: transparent; }
.uc-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.uc-card {
  flex: 0 0 340px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  scroll-snap-align: start;
  transition: all .3s var(--ease);
}
.uc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-light); }
.uc-tag {
  display: inline-block;
  padding: 5px 12px; border-radius: 100px;
  background: var(--grad-soft);
  color: var(--primary-dark);
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em; margin-bottom: 14px;
}
.uc-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.uc-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.uc-meta {
  padding-top: 12px; border-top: 1px solid var(--border-soft);
  font-size: 13px; font-weight: 600; color: var(--primary);
}

/* ============ PRICING ============ */
.pricing { padding: 100px 0; }
.price-toggle {
  display: flex; justify-content: center; gap: 4px;
  background: var(--bg-soft);
  padding: 5px; border-radius: 100px;
  width: fit-content; margin: 0 auto 40px;
}
.pt-btn {
  padding: 10px 22px; border-radius: 100px;
  background: transparent; border: none; cursor: pointer;
  font-weight: 600; font-size: 14px; color: var(--text-muted);
  transition: all .25s var(--ease);
  position: relative;
  font-family: inherit;
}
.pt-btn.active { background: white; color: var(--text); box-shadow: var(--shadow-sm); }
.save {
  display: inline-block; margin-left: 6px;
  padding: 2px 8px; border-radius: 100px;
  background: var(--primary-light); color: var(--primary-dark);
  font-size: 10px; font-weight: 700;
}
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.price-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all .3s var(--ease);
}
.price-card:hover { border-color: var(--primary-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured {
  background: linear-gradient(180deg, #fff, #f4fbf9);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(15,183,154,.2);
  transform: scale(1.03);
  position: relative;
}
.price-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: white;
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
}
.price-name { font-size: 14px; font-weight: 700; color: var(--primary); letter-spacing: .04em; text-transform: uppercase; }
.price-for { font-size: 13px; color: var(--text-muted); }
.price-amount { display: flex; align-items: baseline; gap: 4px; }
.currency { font-size: 22px; font-weight: 700; color: var(--text-muted); }
.value { font-size: 48px; font-weight: 800; letter-spacing: -.03em; }
.period { font-size: 14px; color: var(--text-muted); }
.price-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin: 8px 0 16px; }
.price-features li { font-size: 14px; line-height: 1.5; color: var(--text); }
.price-features li b { color: var(--primary-dark); }
.price-note {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--text-soft);
}

/* ============ TESTIMONIALS ============ */
.testi { padding: 100px 0; background: var(--bg-soft); }
.testi-grid {
  columns: 3; column-gap: 20px;
}
.t-card {
  break-inside: avoid;
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.t-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.t-card p { font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; color: var(--text); }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-ava {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
}
.t-person b { display: block; font-size: 14px; }
.t-person span { font-size: 12px; color: var(--text-soft); }

/* ============ FAQ ============ */
.faq { padding: 100px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 2px 4px;
  transition: all .25s var(--ease);
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600; font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px; color: var(--primary); font-weight: 400;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px; color: var(--text-muted);
  line-height: 1.65; font-size: 15px;
}
.faq-item a { color: var(--primary); font-weight: 600; }

/* ============ CTA ============ */
.cta {
  padding: 80px 0 100px;
  position: relative;
}
.cta-inner {
  background: linear-gradient(135deg, #0c9a82 0%, #336aeb 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  color: white;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 40px; align-items: center;
  overflow: hidden; position: relative;
  box-shadow: 0 40px 80px rgba(51,106,235,.3);
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.15), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,.1), transparent 50%);
}
.cta-copy { position: relative; }
.cta-copy h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; font-weight: 800; margin-bottom: 12px; }
.cta-copy .grad-text { background: linear-gradient(135deg, #ffe8a8, #ffd770); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-copy p { font-size: 17px; opacity: .9; margin-bottom: 28px; max-width: 480px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.cta .btn-primary { background: white; color: var(--primary-dark); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.cta .btn-primary:hover { background: #f0fdf9; }
.cta .btn-ghost { color: white; border: 1.5px solid rgba(255,255,255,.4); }
.cta .btn-ghost:hover { background: rgba(255,255,255,.1); }
.cta-mini { display: flex; gap: 20px; font-size: 13px; opacity: .9; flex-wrap: wrap; }

/* Orbit visual */
.cta-visual { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; }
.orbit {
  position: relative; width: 280px; height: 280px;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: white; color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
  animation: spin 30s linear infinite reverse;
}
.orbit-ring {
  position: absolute; inset: 0;
  border: 1.5px dashed rgba(255,255,255,.3);
  border-radius: 50%;
}
.orbit-ring span {
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: white; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
  animation: spin 30s linear infinite reverse;
}
.r1 { inset: 20px; }
.r2 { inset: 40px; transform: rotate(90deg); }
.r2 span { animation-delay: -7.5s; }
.r3 { inset: 60px; transform: rotate(180deg); }
.r4 { inset: 80px; transform: rotate(270deg); }

/* ============ FOOTER ============ */
.footer { padding: 80px 0 32px; background: var(--dark); color: rgba(255,255,255,.7); }
.foot-grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px; margin-bottom: 48px;
}
.foot-brand .brand { margin-bottom: 16px; color: white; }
.foot-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; max-width: 320px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; transition: all .25s;
}
.foot-social a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.foot-col h4 { color: white; font-size: 14px; margin-bottom: 16px; letter-spacing: .02em; }
.foot-col a { display: block; padding: 5px 0; font-size: 14px; transition: color .2s; }
.foot-col a:hover { color: var(--primary); }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mock { max-width: 600px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-lg { grid-column: span 2; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
  .testi-grid { columns: 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-copy p { margin-left: auto; margin-right: auto; }
  .cta-buttons, .cta-mini { justify-content: center; }
  .cta-visual { height: 240px; }
  .aud-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .p-arrow { transform: rotate(90deg); }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 40px 0 20px; }
  .hero-trust { gap: 12px; flex-wrap: wrap; }
  .trust-sep { display: none; }
  .problem, .features, .audience, .how, .capability, .usecases, .pricing, .testi, .faq { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feat-lg { grid-column: span 1; }
  .cap-grid { grid-template-columns: 1fr; }
  .testi-grid { columns: 1; }
  .step { grid-template-columns: auto 1fr; }
  .step-visual { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { padding: 40px 28px; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .logos-row { justify-content: center; gap: 20px; }
  .mock-window { transform: none; }
  .fc-1, .fc-2 { display: none; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
