/* ═══════════════════════════════════════════
   THEME TOKENS
═══════════════════════════════════════════ */
:root {
  --teal: #3aada8;
  --teal-h: #4dc8c2;
  --teal-dim: rgba(58, 173, 168, 0.12);
  --teal-glow: rgba(58, 173, 168, 0.3);
  --accent: #e8b84b;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="dark"] {
  --bg: #090b0e;
  --bg2: #0e1216;
  --bg3: #141a21;
  --bg4: #1b2330;
  --mid: #263040;
  --border: rgba(58, 173, 168, 0.16);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #dde4ec;
  --text-dim: #6e8499;
  --text-dimmer: #3d5268;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.5);
  --grid-color: rgba(58, 173, 168, 0.025);
  --noise-op: 0.35;
}

[data-theme="light"] {
  --bg: #f5f7fa;
  --bg2: #ffffff;
  --bg3: #eef1f5;
  --bg4: #e5eaf0;
  --mid: #d0d8e4;
  --border: rgba(58, 173, 168, 0.2);
  --border-soft: rgba(0, 0, 0, 0.07);
  --text: #1a2636;
  --text-dim: #4a6070;
  --text-dimmer: #8a9eb0;
  --white: #1a2636;
  --shadow: rgba(0, 0, 0, 0.1);
  --grid-color: rgba(58, 173, 168, 0.04);
  --noise-op: 0.15;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* grid */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-wordmark {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-wordmark em {
  color: var(--teal);
  font-style: normal;
}

.nav-pill {
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--teal);
}

/* theme toggle */
.theme-toggle {
  width: 40px;
  height: 22px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
  flex-shrink: 0;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  transition: transform var(--transition);
}

[data-theme="light"] .theme-toggle::after {
  transform: translateX(18px);
}

.theme-icon {
  position: absolute;
  font-size: 9px;
  top: 50%;
  transform: translateY(-50%);
}

.theme-icon-moon {
  right: 5px;
}

.theme-icon-sun {
  left: 5px;
}

.nav-cta {
  background: var(--teal);
  color: #0a0c0f !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--teal-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--teal-glow);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5vw 64px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(58, 173, 168, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

[data-theme="light"] .hero-glow {
  background: radial-gradient(ellipse, rgba(58, 173, 168, 0.06) 0%, transparent 65%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}

.hero-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .5s .08s ease both;
}

h1 .accent {
  color: var(--teal);
}

h1 .dim {
  color: var(--text-dim);
}

.hero-sub {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 44px;
  animation: fadeUp .5s .16s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .5s .24s ease both;
}

.btn-primary {
  background: var(--teal);
  color: #0a0c0f;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--teal-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--teal-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.hero-kpis {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  animation: fadeUp .5s .32s ease both;
}

.kpi {
  text-align: center;
}

.kpi-n {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--teal);
  display: block;
  letter-spacing: -1px;
}

.kpi-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-dimmer);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   APP SCREENSHOT FRAME
═══════════════════════════════════════════ */
.app-frame-wrap {
  position: relative;
  z-index: 1;
  padding: 0 4vw 80px;
  display: flex;
  justify-content: center;
}

.app-frame {
  width: 100%;
  max-width: 1000px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px var(--shadow), 0 0 0 1px var(--border-soft);
  transition: background var(--transition);
}

.app-titlebar {
  background: var(--bg4);
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-r {
  background: #ff5f57;
}

.dot-y {
  background: #ffbd2e;
}

.dot-g {
  background: #28c840;
}

.app-url {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  padding: 4px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-dimmer);
  margin: 0 10px;
}

/* actual layout: left sidebar + canvas + bottom timeline */
.app-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: 360px 80px;
}

.app-sidebar {
  grid-row: 1 / 3;
  border-right: 1px solid var(--border-soft);
  overflow-y: auto;
  padding: 14px;
}

.app-canvas {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* checkerboard like real app */
.app-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, #1a1a1a 25%, transparent 25%),
    linear-gradient(-45deg, #1a1a1a 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #1a1a1a 75%),
    linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
  opacity: .4;
}

.app-timeline {
  border-top: 1px solid var(--border-soft);
  background: var(--bg4);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* sidebar internals */
.sb-section {
  margin-bottom: 16px;
}

.sb-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 8px;
}

.sb-field {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 5px 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text);
  width: 100%;
  margin-bottom: 5px;
}

.sb-locale-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 9px;
  font-size: 10px;
  color: var(--teal);
  font-family: 'JetBrains Mono', monospace;
  margin-right: 4px;
}

.sb-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.sb-check {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}

.sb-check input {
  accent-color: var(--teal);
  width: 11px;
  height: 11px;
}

/* canvas stage */
.stage {
  width: 260px;
  height: 200px;
  background: linear-gradient(135deg, #0d1827 0%, #0a1520 100%);
  border-radius: 6px;
  border: 1px solid rgba(58, 173, 168, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.stage-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(58, 173, 168, 0.12) 0%, transparent 55%);
}

.stage-text {
  position: absolute;
  top: 36px;
  left: 22px;
  right: 22px;
}

.st-headline {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  animation: cycleText 5s ease-in-out infinite;
}

.st-sub {
  font-size: 10px;
  color: var(--teal);
  letter-spacing: .8px;
  font-family: 'JetBrains Mono', monospace;
}

.stage-cta {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--teal);
  color: #0a0c0f;
  font-size: 9px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 3px;
  font-family: 'Instrument Sans', sans-serif;
  animation: ctaPulse 5s ease-in-out infinite;
}

@keyframes cycleText {

  0%,
  38% {
    opacity: 1;
    transform: translateY(0);
  }

  45%,
  55% {
    opacity: 0;
    transform: translateY(-6px);
  }

  62%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

/* timeline */
.tl-play {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px;
  color: var(--text-dim);
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
}

.tl-bar {
  flex: 1;
  height: 36px;
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  padding: 6px 8px;
}

.tl-scene {
  height: 100%;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--teal);
  width: 40%;
}

.tl-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  animation: tlAnim 5s linear infinite;
}

@keyframes tlAnim {
  0% {
    width: 0
  }

  100% {
    width: 100%
  }
}

.tl-layers {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dimmer);
}

.tl-layer {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.tl-dot.yellow {
  background: var(--accent);
}

/* ═══════════════════════════════════════════
   SECTIONS SHARED
═══════════════════════════════════════════ */
section {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-h {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 14px;
}

.section-p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
}

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features {
  padding: 80px 5vw 90px;
}

.features-head {
  text-align: center;
  margin-bottom: 56px;
}

.features-head .section-p {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feat {
  background: var(--bg2);
  padding: 32px 28px;
  transition: background var(--transition);
}

.feat:hover {
  background: var(--bg3);
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.feat h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 9px;
}

.feat p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   FORMATS
═══════════════════════════════════════════ */
.formats {
  padding: 80px 5vw 90px;
  background: var(--bg2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.formats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.chip {
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  transition: all var(--transition);
  cursor: default;
}

.chip:hover,
.chip.on {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-dim);
}

.format-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fmt-tile {
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color var(--transition);
  cursor: default;
}

.fmt-tile:hover {
  border-color: var(--teal);
}

.fmt-tile span:first-child {
  font-size: 15px;
  color: var(--text-dim);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
}

.fmt-tile span:last-child {
  font-size: 9px;
  color: var(--text-dimmer);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.fmt-story {
  aspect-ratio: 9/16;
}

.fmt-square {
  aspect-ratio: 1/1;
}

.fmt-display {
  aspect-ratio: 1/1;
}

.fmt-wide {
  aspect-ratio: 16/9;
  grid-column: span 2;
  padding: 14px;
}

.fmt-lb {
  grid-column: span 3;
  height: 44px;
  flex-direction: row;
  gap: 12px;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing {
  padding: 80px 5vw 90px;
}

.pricing-head {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-head .section-p {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.plan {
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}

.plan:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 173, 168, 0.3);
}

.plan.pop {
  background: var(--bg3);
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 20px 50px rgba(58, 173, 168, 0.08);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #0a0c0f;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 5px;
}

.plan-tagline {
  font-size: 12px;
  color: var(--text-dimmer);
  margin-bottom: 24px;
  min-height: 32px;
}

.plan-price {
  margin-bottom: 24px;
}

.plan-amt {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--white);
  letter-spacing: -2px;
}

.plan-cur {
  font-size: 20px;
  color: var(--text-dim);
  vertical-align: super;
  font-weight: 400;
  margin-right: 1px;
}

.plan-per {
  font-size: 13px;
  color: var(--text-dimmer);
  margin-left: 3px;
}

.plan-early {
  display: inline-block;
  background: rgba(232, 184, 75, 0.12);
  border: 1px solid rgba(232, 184, 75, 0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 6px;
}

.plan-feats {
  list-style: none;
  margin-bottom: 28px;
}

.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-soft);
}

.plan-feats li:last-child {
  border: none;
}

.pf-check {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
}

.pf-x {
  color: var(--text-dimmer);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-feats .feat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--white);
  background: var(--bg4);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.plan-btn-primary {
  background: var(--teal);
  color: #0a0c0f;
}

.plan-btn-primary:hover {
  background: var(--teal-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--teal-glow);
}

.plan-btn-outline {
  border: 1px solid var(--border-soft);
  color: var(--text);
  background: transparent;
}

.plan-btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* video one-time */
.video-pack-banner {
  max-width: 1060px;
  margin: 24px auto 0;
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  transition: background var(--transition);
}

.vpb-text .vpb-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 3px;
}

.vpb-text .vpb-sub {
  font-size: 12px;
  color: var(--text-dimmer);
}

.vpb-cta {
  background: rgba(232, 184, 75, 0.1);
  border: 1px solid rgba(232, 184, 75, 0.35);
  color: var(--accent);
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.vpb-cta:hover {
  background: rgba(232, 184, 75, 0.18);
  transform: translateY(-1px);
}

/* enterprise */
.enterprise-row {
  max-width: 1060px;
  margin: 16px auto 0;
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ent-text .ent-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 3px;
}

.ent-text .ent-sub {
  font-size: 12px;
  color: var(--text-dimmer);
}

/* ═══════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════ */
.trust {
  padding: 44px 5vw;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: var(--text-dim);
}

.trust-icon {
  width: 34px;
  height: 34px;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 90px 5vw;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(58, 173, 168, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */


footer {
  position: relative;
  z-index: 1;
  padding: 32px 5vw;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-l {
  font-size: 12px;
  color: var(--text-dimmer);
}

.footer-l strong {
  color: var(--teal);
  font-family: 'Cabinet Grotesk', sans-serif;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  font-size: 11px;
  color: var(--text-dimmer);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .5px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-2 {
  font-size: 12px;
  color: var(--text-dimmer);
  text-align: center;
  margin-bottom: 15px;
}

 


 
/* ═══════════════════════════════════════════
   ANIMATIONS & SCROLL REVEAL
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-kpis {
    gap: 24px;
  }

  .app-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto 280px 64px;
  }

  .app-sidebar {
    grid-row: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    max-height: 180px;
  }

  .formats-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════
   COOKIE MODAL
══════════════════════════════════════ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}

.cookie-modal {
  width: 100%;
  max-width: 680px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px var(--shadow), 0 0 0 1px var(--border-s);
  padding: 28px 32px;
  pointer-events: all;
  animation: slideUp .35s cubic-bezier(.34, 1.56, .64, 1) both;
  transition: background var(--tr);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ck-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.ck-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ck-icon {
  width: 32px;
  height: 32px;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.ck-desc {
  font-size: 13px;
  color: var(--text-d);
  line-height: 1.65;
  margin-bottom: 20px;
}

.ck-desc a {
  color: var(--teal);
  text-decoration: none;
}

.ck-desc a:hover {
  text-decoration: underline;
}

/* toggle rows */
.ck-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.ck-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg4);
  border: 1px solid var(--border-s);
  border-radius: var(--r-sm);
  padding: 12px 16px;
}

.ck-row-info {
  flex: 1;
}

.ck-row-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 2px;
}

.ck-row-desc {
  font-size: 11px;
  color: var(--text-dd);
}

/* toggle switch */
.ck-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.ck-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.ck-slider {
  position: absolute;
  inset: 0;
  background: var(--bg2);
  border: 1px solid var(--border-s);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--tr);
}

.ck-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-dd);
  transition: transform var(--tr), background var(--tr);
}

.ck-switch input:checked+.ck-slider {
  background: var(--teal-dim);
  border-color: var(--border);
}

.ck-switch input:checked+.ck-slider::after {
  transform: translateX(20px);
  background: var(--teal);
}

.ck-switch input:disabled+.ck-slider {
  cursor: not-allowed;
  opacity: .7;
}

.ck-locked {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-dd);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* buttons */
.ck-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ck-btn {
  flex: 1;
  min-width: 120px;
  padding: 11px 16px;
  border-radius: var(--r-sm);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: all var(--tr);
  text-align: center;
}

.ck-btn-reject {
  background: transparent;
  border: 1px solid var(--border-s);
  color: var(--text-d);
}

.ck-btn-reject:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.ck-btn-save {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--teal);
}

.ck-btn-save:hover {
  background: var(--teal-dim);
}

.ck-btn-accept {
  background: var(--teal);
  color: #0a0c0f;
}

.ck-btn-accept:hover {
  background: var(--teal-h);
  box-shadow: 0 6px 20px var(--teal-glow);
  transform: translateY(-1px);
}

.cookie-overlay.hidden {
  display: none;
}