/* ==================================================
   ZENIQLE OFM LANDING PAGE
   Dark theme with electric teal/green accents
   ================================================== */

:root {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --bg-card: #111111;
  --bg-card-2: #171717;
  --bg-sunk: #080808;
  --bg-highlight: #0d1f1a;
  --accent: #00f5c4;
  --accent-dim: rgba(0, 245, 196, 0.12);
  --accent-border: rgba(0, 245, 196, 0.32);
  --accent-glow: rgba(0, 245, 196, 0.25);
  --accent-2: #39ff14;
  --text: #f5f5f5;
  --text-dim: #a3a3a3;
  --text-muted: #737373;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --good: #22c55e;
  --warn: #f59e0b;
  --bad: #ef4444;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(0, 245, 196, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.035 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-feature-settings: "tnum" 1, "zero" 1;
}

::selection {
  background: var(--accent);
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 860px;
  margin-bottom: 18px;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.65;
}

/* ==================================================
   BUTTONS
   ================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-xl { padding: 20px 36px; font-size: 17px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 245, 196, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 245, 196, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

.btn-glow {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 245, 196, 0.35), 0 8px 24px rgba(0, 245, 196, 0.2);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(0, 245, 196, 0.45), 0 12px 32px rgba(0, 245, 196, 0.25);
}

/* ==================================================
   UBER BAR
   ================================================== */

.uber-bar {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, rgba(13, 31, 26, 0.7) 0%, rgba(13, 31, 26, 0.95) 50%, rgba(13, 31, 26, 0.7) 100%);
  border-bottom: 1px solid var(--accent-border);
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text);
}

.uber-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.uber-bar strong {
  color: var(--accent);
  font-weight: 700;
}

.uber-sep {
  color: var(--text-muted);
  font-weight: 300;
  opacity: 0.6;
}

.uber-highlight {
  color: var(--accent);
}

/* ==================================================
   MASTHEAD
   ================================================== */

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brandmark {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  letter-spacing: -1.2px;
  font-weight: 800;
  font-size: 22px;
}

.brand-zen { color: var(--text); }
.brand-iqle { color: var(--accent); }
.brand-labs {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-left: 4px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu.open {
  display: flex;
}

/* ==================================================
   HERO
   ================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0, 245, 196, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 245, 196, 0.03) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding-top: 0;
  padding-left: 0;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 auto 20px;
  max-width: 860px;
}

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

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 32px;
}

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

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

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.8);
  backdrop-filter: blur(4px);
}

.trust-pill .mono {
  color: var(--accent);
  font-weight: 600;
}

/* ==================================================
   STATS STRIP
   ================================================== */

.stats-strip {
  padding: 48px 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

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

.stat-card {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card.highlight .stat-num,
.stat-card.highlight .stat-suffix {
  color: var(--accent);
}

.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  display: inline;
}

.stat-suffix {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--text-dim);
}

.stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ==================================================
   PROBLEM / SOLUTION
   ================================================== */

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.problem-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

.solution-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.solution-lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 28px;
}

.solution-list {
  list-style: none;
  margin-bottom: 32px;
}

.solution-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.55;
}

.solution-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}

.solution-list li strong {
  color: var(--text);
  font-weight: 600;
}

.code-window {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #febc2e; }
.code-dot.green { background: #28c840; }

.code-title {
  margin-left: 6px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'IBM Plex Mono', monospace;
}

.code-body {
  padding: 22px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-dim);
}

.code-line {
  opacity: 0;
  animation: code-line-in 0.4s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }
.code-line:nth-child(7) { animation-delay: 0.7s; }
.code-line:nth-child(8) { animation-delay: 0.8s; }

@keyframes code-line-in {
  to { opacity: 1; }
}

.code-k { color: #7dd3fc; }
.code-v { color: #86efac; }
.code-n { color: #fbbf24; font-weight: 600; }

.code-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 4px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ==================================================
   ACTION GROUPS
   ================================================== */

.solution-actions,
.proof-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.solution-actions {
  margin-top: 8px;
}

.proof-actions {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.cta-actions {
  justify-content: center;
}

/* ==================================================
   HOW IT WORKS
   ================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 18px;
  display: inline-block;
  padding: 6px 10px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
}

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

.step-card p {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ==================================================
   PROOF
   ================================================== */

.proof-card-large {
  background: linear-gradient(160deg, var(--bg-highlight) 0%, var(--bg-card) 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  margin-bottom: 48px;
  box-shadow: 0 0 50px rgba(0, 245, 196, 0.06);
}

.proof-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.proof-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
}

.proof-title h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.proof-sub {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.proof-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  padding: 6px 12px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.proof-metric {
  text-align: center;
}

.proof-metric.highlight .proof-value {
  color: var(--accent);
}

.proof-value {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
}

.proof-value span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
}

.proof-label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 4px;
}

.proof-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 22px;
}

.trust-logos {
  text-align: center;
}

.trust-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}

/* ==================================================
   FAQ
   ================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item.active {
  border-color: var(--accent-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 26px 22px;
}

.faq-answer p {
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 0.96rem;
}

.faq-answer strong {
  color: var(--text);
  font-weight: 600;
}

/* ==================================================
   FINAL CTA
   ================================================== */

.cta-section {
  background: var(--bg-elevated);
}

.cta-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 70px rgba(0, 245, 196, 0.08);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(ellipse at top, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: normal;
  color: var(--accent);
}

.cta-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 32px;
}

.cta-fine {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.6px;
}

.cal-embed {
  position: relative;
  width: 100%;
  min-height: 620px;
  margin: 0 auto 32px;
  background: var(--bg-sunk);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.cal-embed iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  background: transparent;
}

.cal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.5px;
}

/* ==================================================
   FOOTER
   ================================================== */

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 360px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 48px;
  justify-content: flex-end;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

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

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-disclaimer {
  max-width: 520px;
  text-align: right;
}

/* ==================================================
   RESPONSIVE
   ================================================== */

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-card:nth-child(3) { border-right: none; }
  .stat-card:nth-child(4),
  .stat-card:nth-child(5) {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .stat-card:nth-child(5) { border-right: none; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-block { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-metrics { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop, .nav-cta { display: none; }
  .menu-toggle { display: block; }

  .hero {
    min-height: auto;
    padding: 120px 0 72px;
    justify-content: center;
    align-items: center;
  }
  .hero-content {
    text-align: center;
    padding-top: 0;
    padding-left: 0;
    max-width: 92vw;
  }
  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
    line-height: 1.1;
    max-width: 92vw;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub {
    font-size: 1rem;
    max-width: 88vw;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    gap: 8px;
  }
  .trust-pill {
    font-size: 11px;
    padding: 6px 10px;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .stat-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-card:nth-child(5) { border-bottom: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .proof-metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
  .proof-card-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .section { padding: 72px 0; }
  .cta-card { padding: 40px 24px; }
  .cal-embed,
  .cal-embed iframe { min-height: 540px; }
}

@media (max-width: 480px) {
  .uber-bar { font-size: 9px; gap: 8px; padding: 8px 12px; }
  .brandmark { font-size: 18px; }
  .hero {
    padding: 100px 0 56px;
  }
  .hero-content {
    padding-top: 0;
  }
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .trust-pill { font-size: 10px; }
  .proof-metrics { grid-template-columns: 1fr; }
  .cal-embed,
  .cal-embed iframe { min-height: 500px; }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.6rem;
  }
}
