/* ═══════════════════════════════════════════════════════════
   TradingMonitor.Pro — Landing v30
   Design System + All Sections
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg: #f1f4f9;
  --bg-deep: #e5eaf1;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --panel-soft: rgba(236, 240, 246, 0.84);
  --line: rgba(207, 215, 226, 0.92);
  --line-strong: rgba(186, 196, 211, 0.95);

  --text: #10172a;
  --text-soft: #384457;
  --text-muted: #5a6677;

  --accent: #066fe0;
  --accent-soft: rgba(6, 111, 224, 0.1);
  --accent-strong: #1ab1ff;
  --accent-glow: rgba(26, 177, 255, 0.22);

  --green: #24a86c;
  --red: #df2a2a;
  --amber: #f59a0a;

  --shadow-lg: 0 28px 80px rgba(16, 23, 42, 0.12);
  --shadow-md: 0 16px 42px rgba(16, 23, 42, 0.1);
  --shadow-sm: 0 8px 24px rgba(16, 23, 42, 0.08);

  --radius-xl: 4px;
  --radius-lg: 4px;
  --radius-md: 4px;
  --radius-sm: 4px;
  --radius-xs: 4px;

  --container: min(1180px, calc(100vw - 40px));

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --ease: 280ms cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(26, 177, 255, 0.18), transparent 34%),
    radial-gradient(circle at 100% 90%, rgba(6, 111, 224, 0.12), transparent 30%),
    linear-gradient(180deg, #fafcfe 0%, #f1f4f9 52%, #eaf0f6 100%);
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grid overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(6, 111, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 111, 224, 0.035) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 95%);
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ── Background Glow ─────────────────────────────────────── */
.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 6% 2%, rgba(213, 234, 255, 0.9), transparent 34%),
    radial-gradient(circle at 96% 96%, rgba(26, 177, 255, 0.14), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 42px 0 96px;
  z-index: 1;
}

.section[id] {
  scroll-margin-top: 112px;
}

/* ── Typography ───────────────────────────────────────────── */
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 600;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.0;
  max-width: 16ch;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.06;
  max-width: 18ch;
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.6rem);
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 1rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background-color var(--ease),
    box-shadow var(--ease),
    color var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.faq-question:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #066fe0 0%, #1ab1ff 100%);
  box-shadow: 0 14px 36px rgba(6, 111, 224, 0.24);
}

.button--primary:hover {
  box-shadow: 0 18px 44px rgba(6, 111, 224, 0.3);
}

.button--secondary,
.button--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.button--secondary:hover,
.button--ghost:hover {
  border-color: rgba(6, 111, 224, 0.26);
  background: rgba(255, 255, 255, 0.95);
}

.button--full { width: 100%; }

.button--sm {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.88rem;
}

/* ── Beta Banner ──────────────────────────────────────────── */
.beta-banner {
  position: relative;
  z-index: 40;
  padding: 12px 20px;
  background: linear-gradient(90deg, rgba(6, 111, 224, 0.1), rgba(26, 177, 255, 0.06));
  border-bottom: 1px solid rgba(6, 111, 224, 0.16);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
}

.beta-banner a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.beta-banner a:hover {
  color: var(--accent);
}

.beta-banner__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  padding: 6px;
  line-height: 1;
  transition: color var(--ease);
}

.beta-banner__close:hover {
  color: var(--text);
}

.beta-banner.is-hidden { display: none; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0 0;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(207, 215, 226, 0.94);
  box-shadow: var(--shadow-md);
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(20px);
  transition:
    background-color var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  flex-shrink: 0;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.brand-name {
  color: var(--text);
}

.brand-pro {
  color: var(--accent);
}

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

.header-nav-mobile {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.94rem;
  transition: color var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--accent); }

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.88);
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  position: relative;
  z-index: 60;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero { padding-top: 56px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 48px;
  align-items: center;
}

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

.hero-text {
  max-width: 580px;
  margin-top: 24px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(6, 111, 224, 0.14);
  background: rgba(6, 111, 224, 0.06);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-badge__icon {
  font-size: 1rem;
}

/* ── Hero Visual (Signal Flow Diagram) ────────────────────── */
.hero-visual {
  position: relative;
  min-height: 500px;
}

.flow-diagram {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 240, 246, 0.98)),
    radial-gradient(circle at top right, rgba(26, 177, 255, 0.1), transparent 28%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.flow-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.62) 50%, transparent 100%);
  pointer-events: none;
}

.flow-source {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(207, 215, 226, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 244, 249, 0.96));
  margin-bottom: 20px;
}

.flow-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.flow-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(36, 168, 108, 0.24);
  background: rgba(36, 168, 108, 0.08);
  color: var(--green);
  font-size: 0.78rem;
}

.flow-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.flow-chart-mock {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 48px;
  margin-top: 10px;
}

.flow-chart-mock span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(6, 111, 224, 0.75), rgba(26, 177, 255, 0.18));
  animation: chart-bar 3s ease-in-out infinite;
}

.flow-chart-mock span:nth-child(odd) {
  animation-delay: -0.5s;
}

@keyframes chart-bar {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Signal pulse connector */
.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 0;
  position: relative;
}

.flow-connector__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 111, 224, 0.35), transparent);
  position: relative;
}

.flow-connector__line::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
  animation: signal-pulse 2.5s ease-in-out infinite;
}

@keyframes signal-pulse {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 24px); opacity: 0; }
}

.flow-connector__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(6, 111, 224, 0.22);
  background: rgba(6, 111, 224, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}

.flow-targets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.flow-target {
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(207, 215, 226, 0.92);
  background: rgba(255, 255, 255, 0.78);
  transition: border-color var(--ease), background var(--ease);
}

.flow-target:hover {
  border-color: rgba(6, 111, 224, 0.24);
  background: rgba(255, 255, 255, 0.96);
}

.flow-target__app {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.flow-target__icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 23, 42, 0.08);
}

.flow-target__icon--discord {
  padding: 4px;
  background: #5865f2;
  object-fit: contain;
}

.flow-target__name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.flow-target__type {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Trust Band ───────────────────────────────────────────── */
.trust-band { padding: 0 0 64px; }

.trust-band__shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 240, 246, 0.92));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.trust-item {
  padding: 18px 16px;
  text-align: center;
  border-radius: 4px;
  transition: background var(--ease);
}

.trust-item:hover {
  background: rgba(6, 111, 224, 0.04);
}

.trust-item__icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.trust-item__icon-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trust-item__app-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(16, 23, 42, 0.1);
}

.trust-item__app-icon--discord {
  padding: 5px;
  background: #5865f2;
  object-fit: contain;
}

.trust-item__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ── How It Works ─────────────────────────────────────────── */
.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 240, 246, 0.94));
  box-shadow: var(--shadow-md);
  counter-increment: step;
  transition: border-color var(--ease), transform var(--ease);
}

.step-card:hover {
  border-color: rgba(6, 111, 224, 0.22);
  transform: translateY(-4px);
}

.step-card::before {
  content: "0" counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 4px;
  background: rgba(6, 111, 224, 0.08);
  border: 1px solid rgba(6, 111, 224, 0.18);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Connector lines between steps */
.step-card::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -9px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(6, 111, 224, 0.32), transparent);
}

.step-card:last-child::after { display: none; }

.step-card h3 { margin-bottom: 10px; }

.step-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

/* ── Capabilities (Features) ──────────────────────────────── */
.capabilities-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: start;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  position: relative;
  min-height: 200px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 240, 246, 0.94));
  box-shadow: var(--shadow-md);
  transition: border-color var(--ease), transform var(--ease);
  overflow: hidden;
}

.capability-card:hover {
  border-color: rgba(6, 111, 224, 0.22);
  transform: translateY(-3px);
}

.capability-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -40% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(26, 177, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.capability-card--wide {
  grid-column: span 2;
  min-height: 180px;
}

.capability-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 4px;
  background: rgba(6, 111, 224, 0.06);
  border: 1px solid rgba(6, 111, 224, 0.14);
  font-size: 1.3rem;
}

.capability-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 4px;
}

.capability-card__icon-image--discord {
  padding: 4px;
  border-radius: 4px;
  background: #5865f2;
  object-fit: contain;
}

.capability-card h3 { margin-bottom: 10px; }

/* ── Video Section ────────────────────────────────────────── */
.video-section { text-align: center; }

.video-carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.video-carousel__viewport {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 240, 246, 0.94));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.video-carousel__track {
  position: relative;
}

.video-slide {
  display: none;
  padding: 22px;
}

.video-slide.is-active {
  display: block;
}

.video-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  text-align: left;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 244, 249, 0.98)),
    radial-gradient(circle at top right, rgba(26, 177, 255, 0.1), transparent 34%);
  overflow: hidden;
}

.video-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(26, 177, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #dfe9f6 0%, #f9fbfe 46%, #e9f0f8 100%);
}

.video-card__media::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 4px;
  border: 1px solid rgba(6, 111, 224, 0.12);
  background:
    linear-gradient(rgba(6, 111, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 111, 224, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.video-card__play,
.video-card__meta {
  position: relative;
  z-index: 1;
}

.video-card__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #066fe0, #1ab1ff);
  box-shadow: 0 18px 42px rgba(6, 111, 224, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.video-card__meta {
  margin-left: 18px;
  display: grid;
  gap: 6px;
}

.video-card__meta strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}

.video-card__meta span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.video-card__body {
  display: grid;
  gap: 12px;
  padding: 24px 28px 28px;
}

.video-card__body h3 { margin: 0; }

.video-card__body p { max-width: 56ch; }

.video-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.video-carousel__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease);
}

.video-carousel__nav:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 111, 224, 0.24);
  background: #ffffff;
}

.video-carousel__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(90, 102, 119, 0.24);
  transition: width var(--ease), background-color var(--ease), transform var(--ease);
}

.video-carousel__dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, #066fe0, #1ab1ff);
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 240, 246, 0.96));
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: rgba(6, 111, 224, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(229, 234, 241, 0.98)),
    radial-gradient(circle at top center, rgba(26, 177, 255, 0.14), transparent 50%);
  transform: scale(1.04);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(135deg, #066fe0, #1ab1ff);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-header {
  padding: 32px 24px 0;
}

.pricing-tier {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(6, 111, 224, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-header h3 {
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: 0.92rem;
}

.price-mark {
  padding: 24px 24px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-mark strong {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-mark span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-list {
  padding: 20px 24px;
  flex: 1;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(207, 215, 226, 0.72);
  font-size: 0.92rem;
  color: var(--text-soft);
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(36, 168, 108, 0.1);
  color: var(--green);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-list li.is-disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-list li.is-disabled::before {
  content: "—";
  background: rgba(207, 215, 226, 0.72);
  color: var(--text-muted);
}

.pricing-cta {
  padding: 0 24px 28px;
}

.pricing-note {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 32px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 240, 246, 0.94));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item.is-open {
  border-color: rgba(6, 111, 224, 0.22);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
  transition: color var(--ease);
}

.faq-question:hover { color: var(--accent); }

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(6, 111, 224, 0.06);
  border: 1px solid rgba(6, 111, 224, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform var(--ease), background var(--ease);
}

.faq-item.is-open .faq-question::after {
  content: "−";
  background: rgba(6, 111, 224, 0.12);
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease-slow);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
}

.faq-answer__inner p {
  padding: 0 22px 20px;
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.contact-method__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(6, 111, 224, 0.06);
  border: 1px solid rgba(6, 111, 224, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-method strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-method p {
  font-size: 0.86rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 240, 246, 0.96));
  box-shadow: var(--shadow-md);
}

.form-group { display: grid; gap: 6px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color var(--ease);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(6, 111, 224, 0.36);
  box-shadow: 0 0 0 4px rgba(6, 111, 224, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  padding: 16px;
  border-radius: var(--radius-xs);
  background: rgba(36, 168, 108, 0.08);
  border: 1px solid rgba(36, 168, 108, 0.2);
  color: var(--green);
  font-size: 0.92rem;
  text-align: center;
}

.form-success.is-visible { display: block; }

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta__shell {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 240, 246, 0.98)),
    radial-gradient(circle at top right, rgba(26, 177, 255, 0.14), transparent 35%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.final-cta__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 48px 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.brand--footer .brand-icon {
  width: 38px;
  height: 38px;
}

.brand--footer .brand-wordmark {
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.footer-group h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin: 0 0 16px;
}

.footer-group a {
  display: block;
  padding: 5px 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: color var(--ease);
}

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

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

.footer-disclaimer {
  max-width: 640px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Cookie Consent ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(207, 215, 226, 0.96);
  box-shadow: 0 -10px 40px rgba(16, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(0);
  transition: transform var(--ease-slow), opacity var(--ease-slow);
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-soft);
  max-width: 520px;
}

.cookie-banner p a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { min-height: auto; }

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

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

  .step-card::after { display: none; }

  .capabilities-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .final-cta__shell {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .final-cta__shell h2 { max-width: 100%; }

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

  .video-card {
    min-height: 420px;
  }

  .video-card__media {
    min-height: 280px;
  }
}

/* Mobile breakpoint */
@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .section {
    padding: 28px 0 64px;
  }

  .menu-toggle { display: flex; }

  .header-nav-desktop { display: none; }

  body.nav-open { overflow: hidden; }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) translate(2.5px, 2.5px);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
  }

  .header-nav-mobile {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 28px;
    background:
      radial-gradient(circle at 10% 0%, rgba(213, 234, 255, 0.92), transparent 36%),
      linear-gradient(180deg, rgba(250, 252, 254, 0.98), rgba(241, 244, 249, 0.98));
    backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform var(--ease-slow);
    pointer-events: none;
  }

  .header-nav-mobile.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .header-nav-mobile .site-nav {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .header-nav-mobile .site-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
  }

  .header-nav-mobile .header-cta {
    font-size: 1.1rem;
    padding: 16px 40px;
  }

  .brand-mark { gap: 10px; }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .brand-wordmark {
    font-size: 0.96rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; max-width: 100%; }

  .hero-badges { gap: 8px; }

  .trust-band__shell {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    border-radius: 4px;
  }

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

  .capability-grid { grid-template-columns: 1fr; }
  .capability-card--wide { grid-column: span 1; }

  .flow-targets { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .video-slide {
    padding: 14px;
  }

  .video-card {
    min-height: 380px;
  }

  .video-card__media {
    min-height: 220px;
    padding: 18px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
  }

  .video-card__media::before {
    inset: 14px;
  }

  .video-card__meta {
    margin-left: 0;
    text-align: center;
  }

  .video-card__body {
    padding: 20px 18px 22px;
    text-align: center;
  }

  .video-carousel__controls {
    gap: 12px;
    margin-top: 14px;
  }

  .video-carousel__nav {
    width: 42px;
    height: 42px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 14px 16px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }

  .cookie-banner p {
    max-width: 100%;
    font-size: 0.82rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .final-cta__shell {
    padding: 28px 20px;
    gap: 20px;
  }

  .final-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta__actions .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
