/* ============================================
   ROOT — brand tokens (from brand kit v1)
   ============================================ */
:root {
  --lime:     #C8F03E;
  --ink:      #12140F;
  --charcoal: #2C2F26;
  --bone:     #F5F6EF;
  --stone:    #9A9C8F;
  --stone-dark: #5F6154;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --content-max: 1280px;
  --content-pad: 32px;
}

/* ============================================
   RESET / BASE
   ============================================ */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  background: rgba(200, 240, 62, 0.3);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 240, 62, 0.6);
}

body {
  font-family: var(--font-body);
  background: #000000;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
#pageContent {
  background: var(--bone);
}
html.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   NAV — clean & professional
   ============================================ */
nav {
  position: fixed;
  top: 10px;
  left: 50%;
  right: auto;
  width: 50%;
  margin-left: -25%;
  z-index: 9999;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  box-sizing: border-box;
  backdrop-filter: blur(0) saturate(100%);
  -webkit-backdrop-filter: blur(0) saturate(100%);
  box-shadow: none;
  will-change: background, backdrop-filter, box-shadow;
  transition:
    border-color 0.45s ease,
    background 0.45s ease,
    backdrop-filter 0.55s ease,
    -webkit-backdrop-filter 0.55s ease,
    box-shadow 0.55s ease;
}
nav.scrolled {
  border-color: rgba(245, 246, 239, 0.14);
  background: rgba(16, 20, 16, 0.58);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1080px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- logo ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 10001;
  flex-shrink: 0;
}
.nav-logo img {
  height: 22px;
  width: auto;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.nav-logo:hover img {
  transform: rotate(-8deg) scale(1.08);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--bone);
  letter-spacing: -0.4px;
}

/* ---- center links ---- */
.nav-center {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-center a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 246, 239, 0.55);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-center a:hover {
  color: var(--bone);
  background: rgba(245, 246, 239, 0.06);
}
.nav-center a.active {
  color: var(--bone);
}

/* ---- right CTA ---- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--lime);
  padding: 9px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.16,1,.3,1), box-shadow 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 240, 62, 0.3);
}
.nav-cta:active {
  transform: translateY(0) scale(0.97);
}

/* ---- hamburger (mobile only) ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--bone);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  transform-origin: center;
}
.nav-hamburger.on span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.on span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.on span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile-logo { display: none; }

/* hide mobile-only elements on desktop */
.nav-overlay,
.nav-mobile {
  display: none;
}

/* ============================================
   UTILITY
   ============================================ */
.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  padding: 16px 36px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  letter-spacing: -0.2px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary {
  background: var(--lime);
  color: var(--ink);
}
.btn--primary:hover {
  box-shadow: 0 12px 36px rgba(200, 240, 62, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(245, 246, 239, 0.3);
}
.btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(200, 240, 62, 0.2);
}

/* font-oswald utility */
.font-oswald { font-family: 'Oswald', sans-serif; }

/* ---- noodle / beam animations ---- */
@keyframes noodleFlow {
  0%   { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: -600; }
}
.animate-noodle {
  stroke-dasharray: 30 570;
  animation: noodleFlow 4s linear infinite;
}
.animate-noodle-delayed {
  stroke-dasharray: 30 570;
  animation: noodleFlow 4s linear infinite 1.5s;
}

@keyframes beamSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.animate-beam-spin {
  animation: beamSpin 8s linear infinite;
}

/* ---- entry animation ---- */
@keyframes animationIn {
  0%   { opacity: 0; transform: translateY(40px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-entry {
  opacity: 0;
}
.animate-entry.visible {
  animation: animationIn 0.8s ease-out both;
}

/* ---- section spacing ---- */
.pulse {
  display: block;
  width: 100%;
  height: 60px;
}
.pulse path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.pulse--light path {
  stroke: var(--charcoal);
  opacity: 0.10;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* ---- reveal on scroll ---- */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(50px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* stagger — children pop in one by one */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.00s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.60s; opacity: 1; transform: translateY(0); }

/* ---- pulse wave draw on scroll ---- */
.pulse-draw {
  display: block;
  width: 100%;
  height: 60px;
  background: #000000;
}
.pulse-draw path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0.10;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.pulse-draw.visible path {
  stroke-dashoffset: 0;
}

/* ---- hero entrance stagger on load ---- */
.hero .hero-badge,
.hero h1,
.hero .hero-subtitle,
.hero .hero-cta,
.hero .hero-trust,
.hero .editor-preview {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero .hero-badge { animation-delay: 0.1s; }
.hero h1            { animation-delay: 0.2s; }
.hero .hero-subtitle { animation-delay: 0.3s; }
.hero .hero-cta      { animation-delay: 0.4s; }
.hero .hero-trust    { animation-delay: 0.5s; }
.hero .editor-preview { animation-delay: 0.65s; }

@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *,
  .hero .hero-badge, .hero h1, .hero .hero-subtitle,
  .hero .hero-cta, .hero .hero-trust,
  .hero .editor-preview,
  .pulse-draw path {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* section spacing */
section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 700px;
}

.section-text {
  font-size: 17px;
  color: var(--charcoal);
  max-width: 540px;
  line-height: 1.75;
  letter-spacing: 0.1px;
}

/* ============================================
   1 — HERO
   ============================================ */
.hero {
  background: #000000;
  color: var(--bone);
  padding: 64px 0 0 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Hero button with floating points animation */
.everline-hero-btn {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
  background: radial-gradient(65.28% 65.28% at 50% 100%,
      rgba(200, 240, 62, 0.8) 0%,
      rgba(200, 240, 62, 0) 100%),
    linear-gradient(0deg, #C8F03E, #C8F03E);
  border-radius: 0.75rem;
  border: none;
  outline: none;
  padding: 12px 18px;
  min-height: 48px;
  min-width: 102px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

.everline-hero-btn::before,
.everline-hero-btn::after {
  content: "";
  position: absolute;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}

.everline-hero-btn::before {
  inset: 1px;
  background: linear-gradient(177.95deg,
      rgba(255, 255, 255, 0.19) 0%,
      rgba(255, 255, 255, 0) 100%);
  border-radius: calc(0.75rem - 1px);
}

.everline-hero-btn::after {
  inset: 2px;
  background: radial-gradient(65.28% 65.28% at 50% 100%,
      rgba(200, 240, 62, 0.8) 0%,
      rgba(200, 240, 62, 0) 100%),
    linear-gradient(0deg, #C8F03E, #C8F03E);
  border-radius: calc(0.75rem - 2px);
}

.everline-hero-btn:active {
  transform: scale(0.95);
}

.everline-hero-btn:hover {
  box-shadow: 0 12px 36px rgba(200, 240, 62, 0.35);
}

.everline-hero-btn .points_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.everline-hero-btn .points_wrapper .point {
  bottom: -10px;
  position: absolute;
  animation: floating-points infinite ease-in-out;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 9999px;
}

@keyframes floating-points {
  0% { transform: translateY(0); }
  85% { opacity: 0; }
  100% { transform: translateY(-55px); opacity: 0; }
}

.everline-hero-btn .points_wrapper .point:nth-child(1) { left: 10%; opacity: 1; animation-duration: 2.35s; animation-delay: 0.2s; }
.everline-hero-btn .points_wrapper .point:nth-child(2) { left: 30%; opacity: 0.7; animation-duration: 2.5s; animation-delay: 0.5s; }
.everline-hero-btn .points_wrapper .point:nth-child(3) { left: 25%; opacity: 0.8; animation-duration: 2.2s; animation-delay: 0.1s; }
.everline-hero-btn .points_wrapper .point:nth-child(4) { left: 44%; opacity: 0.6; animation-duration: 2.05s; }
.everline-hero-btn .points_wrapper .point:nth-child(5) { left: 50%; opacity: 1; animation-duration: 1.9s; }
.everline-hero-btn .points_wrapper .point:nth-child(6) { left: 75%; opacity: 0.5; animation-duration: 1.5s; animation-delay: 1.5s; }
.everline-hero-btn .points_wrapper .point:nth-child(7) { left: 88%; opacity: 0.9; animation-duration: 2.2s; animation-delay: 0.2s; }
.everline-hero-btn .points_wrapper .point:nth-child(8) { left: 58%; opacity: 0.8; animation-duration: 2.25s; animation-delay: 0.2s; }
.everline-hero-btn .points_wrapper .point:nth-child(9) { left: 98%; opacity: 0.6; animation-duration: 2.6s; animation-delay: 0.1s; }
.everline-hero-btn .points_wrapper .point:nth-child(10) { left: 65%; opacity: 1; animation-duration: 2.5s; animation-delay: 0.2s; }

.everline-hero-btn .inner {
  z-index: 2;
  gap: 6px;
  position: relative;
  width: 100%;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.2s ease-in-out;
}

.everline-hero-btn .inner svg.icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  stroke: var(--ink);
  fill: none;
}

.everline-hero-btn:hover svg.icon {
  transform: translateX(2px);
}

.everline-hero-btn:hover svg.icon path {
  animation: dash 0.8s linear forwards;
}

@keyframes dash {
  0% { stroke-dasharray: 0, 20; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 10, 10; stroke-dashoffset: -5; }
  100% { stroke-dasharray: 20, 0; stroke-dashoffset: -10; }
}

/* Secondary button (outline style) */
.everline-hero-btn-outline {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  border-radius: 0.75rem;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(245, 246, 239, 0.7);
  background: radial-gradient(ellipse at bottom, rgba(44, 47, 38, 1) 0%, rgba(18, 20, 15, 1) 100%);
  border: 1px solid rgba(245, 246, 239, 0.1);
  transition: all 0.5s cubic-bezier(0.15, 0.83, 0.66, 1);
  text-decoration: none;
}

.everline-hero-btn-outline:hover {
  transform: translateY(-3px);
  color: var(--bone);
  border-color: rgba(200, 240, 62, 0.4);
}

.everline-hero-btn-outline .underline-effect {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  width: 70%;
  transform: translateX(-50%);
  opacity: 0.2;
  transition: all 0.5s cubic-bezier(0.15, 0.83, 0.66, 1);
  background: linear-gradient(90deg, rgba(200, 240, 62, 0) 0%, rgba(200, 240, 62, 1) 50%, rgba(200, 240, 62, 0) 100%);
}

.everline-hero-btn-outline:hover .underline-effect {
  opacity: 0.8;
}

/* Editor preview section */
.editor-preview {
  background: linear-gradient(to bottom, rgba(245, 246, 239, 0.04), rgba(245, 246, 239, 0.02));
  border: 1px solid rgba(245, 246, 239, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.editor-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 246, 239, 0.1);
  padding: 8px 12px;
}

.editor-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.editor-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.editor-sidebar-left,
.editor-sidebar-right {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(245, 246, 239, 0.1);
  padding: 12px;
}

.editor-sidebar-right {
  border-right: none;
  border-left: 1px solid rgba(245, 246, 239, 0.1);
}

.editor-canvas {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
}

.editor-panel-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(245, 246, 239, 0.1);
  background: rgba(245, 246, 239, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 246, 239, 0.8);
}

.editor-tree-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: rgba(245, 246, 239, 0.7);
}

.editor-tree-item.active {
  background: rgba(200, 240, 62, 0.1);
  color: var(--bone);
}

.editor-tree-item:hover {
  background: rgba(245, 246, 239, 0.05);
}

.editor-property-box {
  background: rgba(245, 246, 239, 0.05);
  border-radius: 8px;
  padding: 12px;
}

.editor-property-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.editor-property-btn {
  border: 1px solid rgba(245, 246, 239, 0.1);
  background: rgba(245, 246, 239, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: rgba(245, 246, 239, 0.7);
  transition: background 0.2s;
}

.editor-property-btn:hover {
  background: rgba(245, 246, 239, 0.1);
}

.mobile-preview {
  position: absolute;
  bottom: -24px;
  right: 16px;
  width: 256px;
  border-radius: 12px;
  border: 1px solid rgba(245, 246, 239, 0.1);
  background: rgba(245, 246, 239, 0.05);
  padding: 8px;
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .editor-sidebar-left,
  .editor-sidebar-right {
    display: block;
  }
}

@media (min-width: 1024px) {
  .mobile-preview {
    display: block;
  }
}

@media (max-width: 1023px) {
  .mobile-preview {
    display: none;
  }
}

/* ============================================
   2 — PROBLEM
   ============================================ */
.problem {
  /* Dark theme now handled inline */
}

/* ============================================
   3 — HOW IT WORKS
   ============================================ */
.how {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 82px;
  background: #e3e4e2;
  color: #111;
}
.how::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .58;
  background-image:
    linear-gradient(rgba(30, 30, 30, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 30, 30, .09) 1px, transparent 1px);
  background-size: 54px 54px;
}
.how .wrap {
  position: relative;
  z-index: 1;
}
.how .section-label {
  display: none;
}
.how .section-title {
  max-width: 700px;
  margin: 0 auto 14px;
  color: #0b0b0b;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 54px);
  letter-spacing: -2.4px;
  line-height: 1.02;
  text-align: center;
}
.how .section-text {
  max-width: 480px;
  margin: 0 auto;
  color: #606060;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.how-demo {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin: 20px auto 0;
  padding: 9px 10px 9px 17px;
  border-radius: 999px;
  background: #242424;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.how-demo:hover {
  box-shadow: 0 8px 22px rgba(18, 20, 15, .2);
  transform: translateY(-2px);
}
.how-demo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  color: #242424;
  font-size: 13px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 112px);
  gap: 6px;
  width: min(980px, calc(100% - 150px));
  max-width: 980px;
  margin: 30px auto 0;
}
.channel-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 15, .12);
  border-radius: 11px;
  padding: 0;
  background: #d9dadd;
  box-shadow: 0 2px 0 rgba(18, 20, 15, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.channel-card--integrations {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  background: #e5e6e6;
  color: #111;
}
.channel-card--stat {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  background: #e5e6e6;
  color: #111;
}
.channel-card--instagram {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: #aeb0b1;
}
.channel-card--metric {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  background: #b9df80;
  color: #111;
}
.channel-card--website {
  grid-column: 4;
  grid-row: 1;
  background: #080a0c;
}
.channel-card--phone {
  grid-column: 3 / span 2;
  grid-row: 2;
  background: #b8e2ef;
}
.channel-stat-value,
.channel-metric-value {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 500;
  letter-spacing: -2.2px;
  line-height: .9;
}
.channel-stat-title {
  max-width: 145px;
  font-size: 8px;
  line-height: 1.35;
  color: #5e5e5e;
}
.channel-metric-title {
  max-width: 135px;
  font-size: 8px;
  line-height: 1.35;
  color: rgba(17, 17, 17, .68);
}
.channel-icon-row {
  display: flex;
  gap: 6px;
}
.channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(18, 20, 15, .1);
  border-radius: 7px;
  background: #fff;
  color: #4c4c4c;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: -.2px;
  box-shadow: 0 2px 4px rgba(18, 20, 15, .05);
}
.channel-icon svg {
  width: 13px;
  height: 13px;
}
.channel-icon--wa { color: #25d366; }
.channel-icon--ig { color: #d84c73; }
.channel-icon--web { color: #4d91d9; }
.channel-icon--tel { color: #7d67b4; }
.channel-description {
  max-width: 145px;
  margin-top: 6px;
  color: #626262;
  font-size: 8px;
  line-height: 1.35;
}
.channel-card .channel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}
.channel-card--integrations .channel-image {
  object-position: center;
  filter: saturate(.65) brightness(1.02);
}
.channel-card--instagram .channel-image {
  object-position: center;
  filter: grayscale(.55) contrast(1.18) brightness(.72);
}
.channel-card--website .channel-image {
  object-position: center;
  filter: grayscale(.8) brightness(.36) contrast(1.35);
}
.channel-card--phone .channel-image {
  object-position: center;
  opacity: .18;
  filter: saturate(.7) brightness(1.1);
}
.channel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, .72) 100%);
}
.channel-card--integrations::after,
.channel-card--stat::after,
.channel-card--metric::after {
  display: none;
}
.channel-card--phone::after {
  background: linear-gradient(112deg, rgba(186, 229, 241, .98) 0%, rgba(186, 226, 239, .9) 46%, rgba(244, 213, 214, .92) 100%);
}
.channel-card--instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .48;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(45deg, transparent 44%, rgba(248, 50, 50, .95) 46%, transparent 52%),
    linear-gradient(-45deg, transparent 44%, rgba(248, 50, 50, .95) 46%, transparent 52%);
  background-size: 22px 22px;
}
.channel-card--website::before {
  content: "";
  position: absolute;
  inset: 15px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 7px;
  opacity: .75;
  background-image: radial-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px);
  background-size: 13px 13px;
}
.project-mark {
  position: absolute;
  top: 43%;
  left: 50%;
  z-index: 2;
  width: 29px;
  height: 22px;
  border-radius: 2px;
  background: #48b8f1;
  box-shadow: 0 0 18px rgba(72, 184, 241, .35);
  transform: translate(-50%, -50%);
}
.project-mark::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-radius: 2px 2px 0 0;
  background: #48b8f1;
}
.project-label {
  position: absolute;
  top: 58%;
  left: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-body);
  font-size: 7px;
  letter-spacing: .2px;
  transform: translateX(-50%);
}
.channel-card--instagram::after {
  background: rgba(0, 0, 0, .12);
}
.channel-card--phone::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -25px;
  z-index: 1;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255, 255, 255, .08), 0 0 0 48px rgba(255, 255, 255, .06);
  pointer-events: none;
}
.support-orbits {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.support-avatar {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: radial-gradient(circle at 57% 33%, #f8e7d4 0 22%, #a9795c 23% 42%, #3d5568 43% 100%);
  box-shadow: 0 3px 9px rgba(18, 20, 15, .18);
}
.support-avatar--one { top: 18px; right: 17%; }
.support-avatar--two { top: 55px; right: 39%; }
.support-avatar--three { right: 21%; bottom: 18px; }
.support-avatar--four { right: 8%; bottom: 47px; }
.channel-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 14px 12px;
  color: #fff;
}
.channel-card--integrations .channel-content,
.channel-card--phone .channel-content {
  color: #111;
}
.channel-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .72;
}
.channel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200, 240, 62, .16);
}
.channel-card--integrations .channel-dot,
.channel-card--phone .channel-dot {
  background: #111;
  box-shadow: none;
}
.channel-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: -.7px;
  line-height: 1.02;
}
.channel-card--phone h3 {
  max-width: 128px;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: .98;
}

.how .step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  max-width: 1000px;
  margin: 68px auto 0;
  padding: 0;
  border-top: 0;
}
.step {
  position: relative;
  height: 184px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 15, .12);
  border-radius: 11px;
  background: #c7dce1;
  box-shadow: 0 2px 0 rgba(18, 20, 15, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.step-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(.7) brightness(.8);
  transition: transform .5s ease;
}
.step::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .78) 100%);
}
.step .num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f6f6f4;
  color: #111;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .16);
}
.step-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 17px 20px 18px;
  color: #fff;
}
.step h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}
.visual-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   3.5 — AGENT TEAMS
   ============================================ */
.teams {
  background: var(--bone);
}
.teams .section-label { color: var(--stone-dark); }

.teams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

/* tree visual */
.agent-tree {
  background: #fff;
  border: 1px solid rgba(18, 20, 15, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
}
.agent-tree .tree-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--stone-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.agent-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  transition: background .25s, box-shadow .25s;
  cursor: default;
}
.agent-node:hover {
  background: rgba(200, 240, 62, 0.08);
}
.agent-node .agent-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.agent-node .agent-icon.ceo {
  background: var(--ink);
}
.agent-node .agent-icon.team {
  background: rgba(200, 240, 62, 0.15);
}
.agent-node .agent-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.agent-node .agent-info p {
  font-size: 13px;
  color: var(--stone-dark);
}

/* connector lines */
.tree-connector {
  position: relative;
  margin-left: 38px;
  padding-left: 24px;
  border-left: 2px solid rgba(18, 20, 15, 0.08);
}
.tree-connector .agent-node {
  position: relative;
}
.tree-connector .agent-node::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: rgba(18, 20, 15, 0.08);
}
.tree-connector .agent-node + .agent-node {
  margin-top: 6px;
}

/* connection pulse animation */
.tree-connector .agent-node::after {
  content: '';
  position: absolute;
  left: -29px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  transform: translateY(-50%) scale(0);
  transition: transform .3s;
}
.tree-connector .agent-node:hover::after {
  transform: translateY(-50%) scale(1);
}

/* right side text */
.teams-text .section-title {
  font-size: clamp(32px, 4.5vw, 44px);
}
.teams-text .section-text {
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}
.feature-list li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-list li .check svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 820px) {
  .teams-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   3.6 — TEAM
   ============================================ */
.team-section {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.team-section .section-label { color: var(--lime); }
.team-section .section-title { color: var(--bone); }
.team-section .section-text { color: var(--stone); }

.team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.team-header .section-title {
  margin-left: auto;
  margin-right: auto;
}
.team-header .section-text {
  margin: 0 auto;
  text-align: center;
}

.team-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  perspective: 1200px;
}

.team-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.team-carousel-track:active {
  cursor: grabbing;
}

.team-card {
  position: absolute;
  width: 320px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(245, 246, 239, 0.12);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              filter 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s ease,
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.team-card:active {
  cursor: grabbing;
}

.team-card.active {
  border: 2px solid rgba(200, 240, 62, 0.4);
  box-shadow: 0 20px 60px rgba(163, 230, 53, 0.25),
              0 0 40px rgba(200, 240, 62, 0.15);
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  pointer-events: none;
}

.team-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.team-card-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bone);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.team-card-role svg {
  width: 14px;
  height: 14px;
  color: var(--lime);
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.team-card-desc {
  font-size: 14px;
  color: rgba(245, 246, 239, 0.7);
  line-height: 1.5;
}

.team-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(245, 246, 239, 0.1);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.team-nav-btn:hover {
  background: rgba(200, 240, 62, 0.15);
  border-color: rgba(200, 240, 62, 0.4);
}
.team-nav-btn svg {
  width: 20px;
  height: 20px;
}
.team-nav-btn.prev { left: 20px; }
.team-nav-btn.next { right: 20px; }

@media (max-width: 820px) {
  .team-carousel-wrap {
    height: 420px;
  }
  .team-card {
    width: 280px;
    height: 380px;
  }
  .team-nav-btn {
    width: 40px;
    height: 40px;
  }
  .team-nav-btn.prev { left: 10px; }
  .team-nav-btn.next { right: 10px; }
}

@media (max-width: 640px) {
  .team-carousel-wrap {
    height: 400px;
  }
  .team-card {
    width: 260px;
    height: 360px;
  }
  .team-nav-btn {
    display: none;
  }
}

/* ============================================
   4 — CTA
   ============================================ */
.cta-section {
  background: var(--bone);
  text-align: center;
}
.cta-section .section-title {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .section-text {
  margin: 0 auto 36px;
  font-size: 18px;
}
.cta-section .btn {
  font-size: 18px;
  padding: 18px 48px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item .value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}
.trust-item .label {
  font-size: 13px;
  color: var(--stone-dark);
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: var(--stone);
  padding: 48px 0;
  font-size: 13px;
}
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .foot-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
footer .foot-mark img {
  display: block;
  height: 22px;
  width: auto;
}
footer .foot-mark span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: -0.3px;
}
footer .foot-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
footer .foot-links a {
  color: var(--stone);
  transition: color .2s;
}
footer .foot-links a:hover { color: var(--lime); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-row {
    grid-template-columns: 1fr 1fr 80px 60px;
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  section { padding: 72px 0; }
  .hero { padding: 120px 0 80px; }

  nav .nav-center { gap: 0; }
  nav .nav-center a { font-size: 13px; padding: 7px 12px; }

  .channel-grid {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 150px);
  }
  .channel-card--integrations { grid-column: 1; grid-row: 1; }
  .channel-card--stat { grid-column: 1; grid-row: 2; }
  .channel-card--instagram { grid-column: 2; grid-row: 1 / span 2; }
  .channel-card--metric { grid-column: 2; grid-row: 3; }
  .channel-card--website { grid-column: 1; grid-row: 3; }
  .channel-card--phone { grid-column: 1 / span 2; grid-row: 4; }
  .how .step-list {
    grid-template-columns: 1fr;
  }
  .trust-row { gap: 28px; }
  .edge-grid {
    grid-template-columns: 1fr !important;
  }
  .edge-grid > div > div:last-child {
    flex-direction: row !important;
  }
}
@media (max-width: 640px) {
  .edge-grid > div > div:last-child > div:last-child {
    flex-direction: column !important;
  }
}

@media (max-width: 640px) {
  :root { --content-pad: 20px; }
  section { padding: 56px 0; }
  .hero { padding: 90px 0 50px; }

  nav {
    left: 50%;
    right: auto;
    width: calc(100% - 24px);
    margin-left: calc(-50% + 12px);
    top: 8px;
    height: 56px;
    padding-inline: 12px;
    border-radius: 999px;
  }

  /* hide desktop center links on mobile */
  .nav-center { display: none; }

  /* show hamburger */
  .nav-hamburger { display: flex; }

  /* overlay */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  /* mobile menu */
  .nav-mobile {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 10050;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s cubic-bezier(.16,1,.3,1),
                visibility 0.4s,
                transform 0.4s cubic-bezier(.16,1,.3,1);
  }
  .nav-mobile.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(.16,1,.3,1), transform 0.5s cubic-bezier(.16,1,.3,1);
  }
  .nav-mobile.open .nav-mobile-logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
  }
  .nav-mobile-logo img {
    height: 28px;
    width: auto;
  }
  .nav-mobile-logo span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--bone);
    letter-spacing: -0.5px;
  }

  .nav-mobile-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-mobile-links li {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s cubic-bezier(.16,1,.3,1),
                transform 0.45s cubic-bezier(.16,1,.3,1);
  }
  .nav-mobile.open .nav-mobile-links li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-mobile.open .nav-mobile-links li:nth-child(1) { transition-delay: 0.06s; }
  .nav-mobile.open .nav-mobile-links li:nth-child(2) { transition-delay: 0.10s; }
  .nav-mobile.open .nav-mobile-links li:nth-child(3) { transition-delay: 0.14s; }
  .nav-mobile.open .nav-mobile-links li:nth-child(4) { transition-delay: 0.18s; }
  .nav-mobile.open .nav-mobile-links li:nth-child(5) { transition-delay: 0.22s; }
  .nav-mobile.open .nav-mobile-links li:nth-child(6) { transition-delay: 0.26s; }

  .nav-mobile-links a {
    display: block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: rgba(245, 246, 239, 0.7);
    text-decoration: none;
    border-radius: 14px;
    transition: color 0.25s, background 0.25s;
  }

  /* close button */
  .nav-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(245, 246, 239, 0.06);
    border: 1px solid rgba(245, 246, 239, 0.08);
    color: var(--bone);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    z-index: 10;
  }
  .nav-mobile-close:hover {
    background: rgba(245, 246, 239, 0.1);
    border-color: rgba(245, 246, 239, 0.15);
  }
  .nav-mobile-links a:hover,
  .nav-mobile-links a:active {
    color: var(--bone);
    background: rgba(245, 246, 239, 0.05);
  }
  .nav-mobile-links a.active {
    color: var(--bone);
  }
  .nav-mobile-links a.active::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    margin-left: 8px;
    vertical-align: middle;
  }

  .nav-mobile-cta {
    margin-top: 16px;
    padding: 14px 40px !important;
    background: var(--lime) !important;
    color: var(--ink) !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
  }
  .nav-mobile-cta:hover {
    box-shadow: 0 4px 24px rgba(200, 240, 62, 0.35);
  }

  .hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .hero .cta-row { flex-direction: column; }
  .hero .cta-row .btn { width: 100%; justify-content: center; }

  .channel-grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }
  .channel-card--integrations,
  .channel-card--stat,
  .channel-card--instagram,
  .channel-card--metric,
  .channel-card--website,
  .channel-card--phone {
    grid-column: auto;
    grid-row: auto;
  }
  .stat-card .number { font-size: 34px; }

  footer .footer-inner { flex-direction: column; text-align: center; }
  footer .foot-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .btn { padding: 14px 28px; font-size: 15px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* keyboard focus */
:focus-visible {
  outline: 2.5px solid var(--lime);
  outline-offset: 3px;
}

/* ============================================
   WAITLIST MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 20, 15, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--bone);
  border-radius: 20px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 20, 15, 0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover {
  background: rgba(18, 20, 15, 0.1);
}
.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
}
.modal h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.modal p {
  font-size: 15px;
  color: var(--stone-dark);
  line-height: 1.6;
  margin-bottom: 28px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-form input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(18, 20, 15, 0.12);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-form input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 240, 62, 0.2);
}
.modal-form input::placeholder {
  color: var(--stone);
}
.modal-form button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bone);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.modal-form button:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}
.modal-form button:active {
  transform: translateY(0);
}
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal-success .check-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.modal-success .check-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--ink);
}
.modal-success h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.modal-success p {
  margin-bottom: 0;
  font-size: 14px;
}

/* ============================================
   OVERFLOW FIX
   ============================================ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  html,
  body { overflow-x: clip; }
}

/* ============================================
   AI VOICE BANNER
   ============================================ */
.ai-voice-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1520px, calc(100% - 24px));
  max-width: 1520px;
  min-height: 500px;
  margin: 88px auto;
  padding: 78px 48px;
  border: 1px solid rgba(200, 240, 62, 0.52);
  border-radius: 24px;
  background-color: #11130f;
  background-image: url("../assets/cta/cta-wave.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--bone);
  text-align: center;
}
.ai-voice-banner::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(200, 240, 62, 0.12);
  mix-blend-mode: screen;
  pointer-events: none;
}
.ai-voice-banner.is-scroll-ready {
  opacity: 0;
  transform: translateY(34px) scale(0.975);
  filter: blur(7px);
}
.ai-voice-banner.is-scroll-ready.is-revealed {
  animation: aiVoiceBannerReveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ai-voice-banner.is-scroll-ready h2,
.ai-voice-banner.is-scroll-ready .ai-voice-banner__speech,
.ai-voice-banner.is-scroll-ready .ai-voice-banner__button {
  opacity: 0;
}
.ai-voice-banner.is-scroll-ready.is-revealed h2 {
  animation: aiVoiceContentReveal 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}
.ai-voice-banner.is-scroll-ready.is-revealed .ai-voice-banner__speech {
  animation: aiVoiceContentReveal 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}
.ai-voice-banner.is-scroll-ready.is-revealed .ai-voice-banner__button {
  animation: aiVoiceContentReveal 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
}
@keyframes aiVoiceBannerReveal {
  from { opacity: 0; transform: translateY(34px) scale(0.975); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes aiVoiceContentReveal {
  from { opacity: 0; transform: translateY(18px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.ai-voice-banner__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; transform: translateY(-52px); }
.ai-voice-banner__button { position: relative; z-index: 1; }
.ai-voice-banner__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ai-voice-banner__status span { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(200, 240, 62, .45); animation: voicePulse 1.8s infinite; }
@keyframes voicePulse { 70% { box-shadow: 0 0 0 8px rgba(200, 240, 62, 0); } 100% { box-shadow: 0 0 0 0 rgba(200, 240, 62, 0); } }
.ai-voice-banner h2 { margin: 0; font-family: var(--font-display); font-size: clamp(35px, 5vw, 63px); font-weight: 700; line-height: .98; letter-spacing: -.06em; }
.ai-voice-banner__speech {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 760px);
  margin: 38px 0 22px;
  padding: 13px 16px 13px 13px;
  border: 1px solid rgba(245, 246, 239, .16);
  border-radius: 16px;
  background: rgba(18, 20, 15, .66);
  backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
}
.ai-voice-banner__avatar { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-family: var(--font-display); font-size: 14px; font-weight: 800; }
.ai-voice-banner__speech p { margin: 0; color: rgba(245, 246, 239, .86); font-size: 13px; line-height: 1.35; }
.ai-voice-banner__message { transition: opacity .25s ease, transform .25s ease; }
.ai-voice-banner__message.is-changing { opacity: 0; transform: translateY(4px); }
.ai-voice-banner__bars { display: flex; align-items: center; gap: 2.5px; height: 22px; }
.ai-voice-banner__bars i { display: block; width: 3px; height: 6px; border-radius: 99px; background: var(--lime); animation: voiceBars 1.2s ease-in-out infinite; }
.ai-voice-banner__bars i:nth-child(1) { animation-duration: 1.15s; animation-delay: -1.02s; }
.ai-voice-banner__bars i:nth-child(2) { animation-duration: 1.35s; animation-delay: -.78s; }
.ai-voice-banner__bars i:nth-child(3) { animation-duration: 1.05s; animation-delay: -1.2s; }
.ai-voice-banner__bars i:nth-child(4) { animation-duration: 1.4s; animation-delay: -.42s; }
.ai-voice-banner__bars i:nth-child(5) { animation-duration: 1.1s; animation-delay: -.9s; }
.ai-voice-banner__bars i:nth-child(6) { animation-duration: 1.3s; animation-delay: -.18s; }
.ai-voice-banner__bars i:nth-child(7) { animation-duration: 1.2s; animation-delay: -1.08s; }
.ai-voice-banner__bars i:nth-child(8) { animation-duration: 1.45s; animation-delay: -.6s; }
.ai-voice-banner__bars i:nth-child(9) { animation-duration: 1.15s; animation-delay: -.3s; }
@keyframes voiceBars {
  0%, 100% { height: 6px; }
  50% { height: 18px; }
}
.ai-voice-banner__button { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border: none; border-radius: 999px; background: var(--lime); color: var(--ink); font-family: var(--font-display); font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.ai-voice-banner__button:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(200, 240, 62, .25); }
.ai-voice-banner__button:focus-visible { outline: 2px solid var(--bone); outline-offset: 4px; }
@media (max-width: 700px) {
  .ai-voice-banner { min-height: 450px; margin: 56px 16px; padding: 56px 20px; border-radius: 18px; }
  .ai-voice-banner__speech { grid-template-columns: auto 1fr; }
  .ai-voice-banner__bars { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-voice-banner.is-scroll-ready,
  .ai-voice-banner.is-scroll-ready.is-revealed {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
  .ai-voice-banner.is-scroll-ready h2,
  .ai-voice-banner.is-scroll-ready .ai-voice-banner__speech,
  .ai-voice-banner.is-scroll-ready .ai-voice-banner__button {
    opacity: 1;
    animation: none;
  }
  .ai-voice-banner *, .ai-voice-banner *::before, .ai-voice-banner *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================
   CTA BUTTONS
   ============================================ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.cta-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--lime);
  background-image: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  background-size: 200% auto;
  color: #0a0a0a;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  padding: 13px 30px; border-radius: 12px; border: none; cursor: pointer;
  letter-spacing: 0.01em; text-decoration: none;
  transition: transform .2s, background-color .2s;
  animation: shimmer 3s linear infinite;
}
.cta-btn-primary:hover { transform: translateY(-2px); background-color: #d4f55a; }
.cta-btn-primary:active { transform: scale(0.97); }
.cta-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  padding: 12px 28px; border-radius: 12px; cursor: pointer;
  letter-spacing: 0.01em; text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
}
.cta-btn-ghost:hover { border-color: rgba(255,255,255,0.55); color: #fff; transform: translateY(-2px); }
.cta-btn-ghost:active { transform: scale(0.97); }

/* ============================================
   LOGIN / SIGNUP MODALS
   ============================================ */
.replit-dark-modal {
  background: rgba(18, 20, 15, 0.95) !important;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6) !important;
}
.replit-modal {
  text-align: center;
  padding: 10px 20px 20px;
}
.replit-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.replit-logo img {
  height: 32px;
  width: auto;
}
.replit-modal h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.replit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.replit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.replit-btn svg {
  width: 18px;
  height: 18px;
}
.replit-link {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.replit-link:hover {
  color: #fff;
}
.replit-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
}
.replit-footer-text {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 16px;
}
.replit-footer-text a {
  color: var(--lime);
  text-decoration: none;
}
.replit-footer-text a:hover {
  text-decoration: underline;
}
.replit-captcha {
  font-size: 11px;
  color: #777;
  line-height: 1.5;
}
.replit-captcha a {
  color: var(--lime);
  text-decoration: none;
}
.replit-captcha a:hover {
  text-decoration: underline;
}
#login-modal .modal-close {
  background: rgba(255, 255, 255, 0.1);
}
.email-submit-btn:hover {
  background: #eee;
}
.su-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.su-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.su-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.su-input option {
  background: #1a1d14;
  color: #fff;
}
.su-opt {
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.su-opt:hover {
  background: rgba(255,255,255,0.08);
}
#login-modal .modal-close svg,
#signup-modal .modal-close svg {
  stroke: #fff;
}
#login-modal.modal-overlay {
  background: rgba(0, 0, 0, 0.5);
}
.email-login-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.email-login-wrapper.active {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 12px;
}
.email-login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.email-login-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.email-login-form input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.email-login-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.email-submit-btn {
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

/* ============================================
   APPROACH SECTION
   ============================================ */
@media (max-width: 640px) {
  #mainNav {
    box-sizing: border-box;
    max-width: 100vw;
  }
  #mainNav .nav-inner { min-width: 0; }
  #mainNav .nav-right { margin-left: auto; gap: 8px; }
  #mainNav .nav-cta {
    padding: 7px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .approach-section {
    overflow: hidden;
  }
  .approach-section .wrap { max-width: 100%; }
  .approach-section > .wrap > div:nth-of-type(3) {
    min-height: auto !important;
    padding-top: 8px;
  }
  .approach-section > .wrap > div:nth-of-type(3) > svg {
    display: none;
  }
  .approach-section > .wrap > div:nth-of-type(3) > div {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }
  .approach-section > .wrap > div:nth-of-type(3) > div > div {
    min-width: 0;
    height: auto !important;
    padding-inline: 0 !important;
    gap: 24px !important;
  }
  .approach-section > .wrap > div:nth-of-type(3) > div > div:nth-child(2) {
    order: -1;
    padding-block: 12px 20px !important;
  }
  .approach-section [style*="translateX"] {
    transform: none !important;
  }
}
