/* ═══════════════════════════════════════════════════════════════
   THE SUPPORT SPECIALIST — SALES FUNNEL
   Aesthetic: Editorial / Industrial B2B
   Typefaces: Fraunces (display) + DM Sans (body) + DM Mono (code/accent)
   Colors: Near-black canvas, #2ea66a green, warm offwhite
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #2ea66a;
  --green-d: #1e7a4e;
  --green-l: #4dc488;
  --green-bg:#0f2b1c;
  --canvas:  #0d0f0e;
  --surface: #13160f;
  --surface2:#1a1f17;
  --border:  #232820;
  --border-l:#2e3429;
  --text:    #e8ede6;
  --text-2:  #9aaa94;
  --text-3:  #5e6b59;
  --white:   #f4f8f3;
  --mono:    'DM Mono', 'Courier New', monospace;
  --sans:    'DM Sans', system-ui, sans-serif;
  --display: 'Fraunces', Georgia, serif;
  --radius:  8px;
  --radius-l:16px;
  --max-w:   1200px;
  --section-pad: 120px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--canvas);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
select, input { font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border: 1.5px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-l);
  border-color: var(--green-l);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(46,166,106,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-l);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-l);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--green);
  color: #fff;
  border: 1.5px solid var(--green);
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--green-l); border-color: var(--green-l); }

.btn-lg { padding: 15px 30px; font-size: 1rem; font-weight: 500; }

.btn-sub {
  font-size: 0.75em;
  opacity: 0.8;
  font-weight: 400;
}

.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  height: 64px;
  background: rgba(13,15,14,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.4); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-mark { width: 28px; height: 28px; }
.nav-name {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.nav-live { color: var(--green-l); }
.nav-links a.nav-live { font-weight: 500; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--canvas);
  z-index: 99;
  padding: 32px 24px;
}
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-menu nav a {
  font-size: 1.2rem;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2), transform 0.65s cubic-bezier(.22,.68,0,1.2);
}
.reveal.in-view { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal-right.in-view { opacity: 1; transform: none; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 32px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,166,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,166,106,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2.4s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--green-l);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-3);
}
.proof-link {
  color: var(--green-l);
  font-weight: 400;
  transition: color 0.15s;
}
.proof-link:hover { color: var(--green); }

/* Hero card mockup */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(46,166,106,0.08);
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.hero-card:hover { transform: perspective(800px) rotateY(-1deg) rotateX(1deg); }

.hero-card-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.hcb-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.hcb-red { background: #ff5f57; }
.hcb-yellow { background: #ffc12b; }
.hcb-green { background: #28c840; }
.hcb-title {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.hero-card-body {
  display: flex;
  height: 340px;
}
.hc-sidebar {
  width: 160px;
  background: var(--canvas);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  flex-shrink: 0;
}
.hc-logo-block { margin-bottom: 20px; }
.hc-logo-pill {
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  opacity: 0.9;
}
.hc-nav-list { display: flex; flex-direction: column; gap: 2px; }
.hc-nav-item {
  display: block;
  font-size: 0.68rem;
  color: var(--text-3);
  padding: 5px 8px;
  border-radius: 4px;
  cursor: default;
  transition: all 0.15s;
}
.hc-nav-active {
  color: var(--green-l);
  background: rgba(46,166,106,0.1);
  font-weight: 500;
}
.hc-content { flex: 1; padding: 16px; overflow: hidden; }
.hc-breadcrumb {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--text-3);
  margin-bottom: 12px;
}
.hc-title-block {
  height: 18px;
  background: var(--white);
  border-radius: 4px;
  width: 75%;
  margin-bottom: 14px;
  opacity: 0.9;
}
.hc-body-lines { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.hc-line { height: 8px; background: var(--border-l); border-radius: 3px; }
.hc-line-full { width: 100%; }
.hc-line-80 { width: 80%; }
.hc-line-60 { width: 60%; }
.hc-video-thumb {
  height: 80px;
  background: var(--surface2);
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.hc-video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,166,106,0.15) 0%, transparent 60%);
}
.hc-play {
  font-size: 1.2rem;
  color: var(--green-l);
  z-index: 1;
}
.hc-video-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
}
.hc-video-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 35%;
  background: var(--green);
  border-radius: 2px;
}

/* ── PROBLEM BAND ───────────────────────────────────────────── */
.problem-band {
  background: var(--green-bg);
  border-top: 1px solid rgba(46,166,106,0.2);
  border-bottom: 1px solid rgba(46,166,106,0.2);
  padding: 80px 32px;
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1px 1fr;
  gap: 60px;
  align-items: center;
}
.problem-stat {
  display: flex; flex-direction: column; gap: 12px;
}
.stat-num {
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green-l);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.problem-divider { background: rgba(46,166,106,0.2); }
.problem-copy p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.problem-copy p:last-child { margin-bottom: 0; }
.problem-copy strong { color: var(--text); font-weight: 500; }

/* ── ASPECTS ────────────────────────────────────────────────── */
.aspects {
  padding: var(--section-pad) 0;
}

.aspect-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.aspect-row:first-of-type { border-top: 1px solid var(--border); }
.aspect-row-flip { direction: rtl; }
.aspect-row-flip > * { direction: ltr; }

.aspect-number {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 12px;
}
.aspect-text h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.aspect-tagline {
  font-size: 1rem;
  color: var(--green-l);
  font-style: italic;
  font-family: var(--display);
  font-weight: 300;
  margin-bottom: 16px;
}
.aspect-text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.aspect-bullets { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.aspect-bullets li {
  font-size: 0.9rem;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.aspect-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.8rem;
}
.aspect-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-l);
  border-bottom: 1px solid rgba(77,196,136,0.3);
  padding-bottom: 2px;
  transition: all 0.15s;
}
.aspect-cta:hover {
  color: var(--green);
  border-color: var(--green);
}

/* Visual cards — shared base */
.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* Aspect 1 — Help Center */
.visual-helpcenter {
  padding: 0;
}
.vc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.vc-logo-area { display: flex; align-items: center; gap: 8px; }
.vc-logo-mark { width: 20px; height: 20px; border-radius: 4px; }
.vc-logo-text { width: 80px; height: 12px; background: var(--border-l); border-radius: 3px; }
.vc-accent-1 { background: var(--green); }
.vc-accent-2 { background: #e8642a; }
.vc-accent-3 { background: #2563eb; }
.vc-accent-4 { background: #e6b800; }
.vc-search { display: flex; align-items: center; gap: 6px; margin-left: auto; padding: 6px 10px; background: var(--canvas); border-radius: 6px; border: 1px solid var(--border); }
.vc-search-icon { font-size: 0.7rem; color: var(--text-3); }
.vc-search-bar { width: 100px; height: 8px; background: var(--border); border-radius: 3px; }
.vc-hero-band { padding: 20px 16px; }
.vc-accent-bg-1 { background: linear-gradient(135deg, rgba(46,166,106,0.12) 0%, rgba(46,166,106,0.04) 100%); border-bottom: 1px solid rgba(46,166,106,0.15); }
.vc-hero-h { height: 16px; background: var(--white); border-radius: 4px; width: 60%; margin-bottom: 8px; opacity: 0.9; }
.vc-hero-sub { height: 10px; background: var(--border-l); border-radius: 3px; width: 80%; }
.vc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.vc-card { background: var(--surface); padding: 14px; display: flex; gap: 10px; align-items: flex-start; }
.vc-card-icon { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; opacity: 0.8; }
.vc-card-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; margin-top: 4px; }
.vc-card-lines div { height: 8px; background: var(--border-l); border-radius: 3px; }
.vc-card-lines div:first-child { width: 80%; }
.vc-card-lines div:last-child { width: 55%; }

/* Aspect 2 — Videos */
.visual-videos { padding: 16px; }
.vv-featured { display: flex; gap: 12px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.vv-thumb {
  width: 100px; height: 64px;
  background: var(--surface2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.vv-thumb::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(46,166,106,0.2) 0%, transparent 60%); }
.vv-play { font-size: 1.2rem; color: var(--green-l); z-index: 1; }
.vv-play-sm { font-size: 0.75rem; }
.vv-meta { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.vv-title { height: 12px; background: var(--white); border-radius: 3px; width: 120px; opacity: 0.85; }
.vv-sub { height: 8px; background: var(--border-l); border-radius: 3px; width: 90px; }
.vv-tag { font-family: var(--mono); font-size: 0.6rem; color: var(--green); background: rgba(46,166,106,0.1); padding: 2px 6px; border-radius: 3px; width: fit-content; }
.vv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.vv-mini { display: flex; gap: 8px; align-items: center; }
.vv-mini-thumb { width: 48px; height: 32px; background: var(--surface2); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--border); }
.vv-mini-text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.vv-mini-text div { height: 7px; background: var(--border-l); border-radius: 3px; }
.vv-mini-text div:first-child { width: 90%; }
.vv-mini-text div:last-child { width: 60%; }
.vv-count { font-family: var(--mono); font-size: 0.7rem; color: var(--text-3); text-align: center; }
.vv-count-num { color: var(--green-l); font-weight: 400; }

/* Aspect 3 — Widget */
.visual-widget { padding: 0; position: relative; min-height: 260px; }
.vw-app-bar { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--surface2); border-bottom: 1px solid var(--border); }
.vw-app-logo { width: 80px; height: 16px; background: var(--border-l); border-radius: 4px; }
.vw-app-nav { display: flex; gap: 12px; margin-left: auto; }
.vw-nav-dot { width: 40px; height: 6px; background: var(--border-l); border-radius: 3px; }
.vw-active { background: var(--green); opacity: 0.6; }
.vw-app-content { padding: 14px; }
.vw-content-lines { display: flex; flex-direction: column; gap: 6px; }
.vwcl { height: 8px; background: var(--border); border-radius: 3px; width: 100%; }
.vwcl-60 { width: 60%; }
.vw-bubble {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 220px;
  background: var(--surface);
  border: 1px solid var(--border-l);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(46,166,106,0.1);
  overflow: hidden;
  animation: bubble-in 0.5s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: 0.4s;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}
.vw-bubble-inner { }
.vw-bubble-header { display: flex; align-items: center; gap: 6px; padding: 8px 10px; background: var(--green); font-size: 0.72rem; color: #fff; font-weight: 500; }
.vw-bubble-logo { width: 16px; height: 16px; border-radius: 3px; background: rgba(255,255,255,0.25); }
.vw-bubble-x { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 0.85rem; cursor: pointer; }
.vw-bubble-search { display: flex; align-items: center; gap: 6px; margin: 8px; padding: 5px 8px; background: var(--canvas); border-radius: 5px; border: 1px solid var(--border); font-size: 0.7rem; color: var(--text-3); }
.vw-bubble-bar { flex: 1; height: 7px; background: var(--border); border-radius: 3px; }
.vw-bubble-results { padding: 0 8px 8px; display: flex; flex-direction: column; gap: 4px; }
.vw-result { display: flex; align-items: center; gap: 6px; padding: 5px; border-radius: 5px; }
.vw-result:hover { background: rgba(46,166,106,0.08); }
.vw-result-icon { font-size: 0.75rem; }
.vw-result-text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.vw-result-text div { height: 6px; background: var(--border-l); border-radius: 2px; }
.vw-result-text div:first-child { width: 90%; }
.vw-result-text div:last-child { width: 65%; }

/* Aspect 4 — Changelog */
.visual-changelog { padding: 16px; }
.vcl-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vcl-new-badge { font-family: var(--mono); font-size: 0.72rem; font-weight: 400; color: var(--white); background: var(--green); padding: 3px 10px; border-radius: 4px; }
.vcl-updated { font-family: var(--mono); font-size: 0.65rem; color: var(--text-3); margin-left: auto; }
.vcl-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); position: relative; }
.vcl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-l); margin-top: 4px; flex-shrink: 0; }
.vcl-dot-green { background: var(--green); box-shadow: 0 0 6px rgba(46,166,106,0.6); }
.vcl-item-body { flex: 1; }
.vcl-item-badge { display: inline-block; font-family: var(--mono); font-size: 0.6rem; color: var(--green); background: rgba(46,166,106,0.1); padding: 2px 6px; border-radius: 3px; margin-bottom: 5px; }
.vcl-item-title { height: 10px; background: var(--white); border-radius: 3px; width: 80%; margin-bottom: 6px; opacity: 0.85; }
.vcl-item-sub { height: 7px; background: var(--border-l); border-radius: 3px; width: 60%; }
.vcl-footer { padding-top: 10px; }
.vcl-footer-line { height: 7px; background: var(--border); border-radius: 3px; width: 50%; }

/* Aspect 5 — White-label */
.visual-whitelabel { padding: 20px; }
.vwl-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.vwl-brand-pill { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--surface2); border-radius: 6px; border: 1px solid var(--border); flex: 1; }
.vwl-b-logo-1 { width: 24px; height: 24px; border-radius: 4px; background: var(--green); }
.vwl-b-logo-2 { width: 24px; height: 24px; border-radius: 4px; background: #2563eb; }
.vwl-b-name-1, .vwl-b-name-2 { font-size: 0.75rem; font-weight: 500; color: var(--text); }
.vwl-arrow { color: var(--text-3); font-size: 1.2rem; flex-shrink: 0; }
.vwl-layers { display: flex; flex-direction: column; gap: 8px; }
.vwl-layer { display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: var(--surface2); border-radius: 6px; }
.vwl-layer-icon { font-size: 0.9rem; }
.vwl-layer-text { flex: 1; font-size: 0.78rem; color: var(--text-2); }
.vwl-check { font-size: 0.7rem; color: var(--green); font-family: var(--mono); font-weight: 400; }
.vwl-check-addon { color: var(--text-3); background: var(--border-l); padding: 2px 6px; border-radius: 3px; font-size: 0.65rem; }

/* ── PROOF ──────────────────────────────────────────────────── */
.proof {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.proof-card {
  position: relative;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  display: block;
}
.proof-card:hover {
  border-color: var(--border-l);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.pc-accent {
  height: 4px;
  background: var(--accent);
}
.pc-body { padding: 20px; }
.pc-logo {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 15%, var(--surface2));
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.pc-logo svg { width: 20px; height: 20px; }
.pc-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pc-url {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-3);
  margin-bottom: 10px;
}
.pc-tag {
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.4;
}
.pc-arrow {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 1rem;
  color: var(--text-3);
  transition: color 0.15s, transform 0.15s;
}
.proof-card:hover .pc-arrow { color: var(--green-l); transform: translate(2px, -2px); }

/* ── ORIGIN STORY ───────────────────────────────────────────── */
.origin {
  padding: var(--section-pad) 0;
  background: var(--canvas);
}
.origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.origin-copy .section-label { margin-bottom: 18px; }
.origin-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.origin-lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
}
.origin-copy p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.origin-copy strong { color: var(--text); font-weight: 600; }
.origin-copy em { color: var(--green-l); font-style: italic; }
.origin-ventures {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.ov-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.ov-links { display: flex; flex-wrap: wrap; gap: 12px; }
.ov-link {
  font-size: 0.85rem;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.ov-link:hover { color: var(--green-l); border-color: var(--green); }

/* the original community post, restyled (anonymized) */
.origin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.oc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.oc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.oc-author { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.oc-meta { font-size: 0.72rem; color: var(--text-3); }
.oc-body {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 20px;
  border: 0;
  padding: 0;
}
.oc-body strong { color: var(--green-l); font-weight: 700; }
.oc-reactions {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.oc-react { font-size: 0.95rem; }
.oc-react-count { font-size: 0.78rem; color: var(--text-3); }
.oc-comments { display: flex; flex-direction: column; gap: 12px; }
.oc-comment { display: flex; align-items: flex-start; gap: 10px; }
.occ-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border-l);
  flex-shrink: 0;
  margin-top: 2px;
}
.occ-text {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
  background: var(--surface2);
  border-radius: 12px;
  padding: 8px 12px;
}
.oc-foot {
  margin-top: 16px;
  font-size: 0.68rem;
  color: var(--text-3);
  font-style: italic;
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing { padding: var(--section-pad) 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

/* Plan cards rendered by JS */
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.plan-card:hover { border-color: var(--border-l); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.plan-card.plan-featured {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(46,166,106,0.08) 0%, var(--surface) 60%);
}
.plan-card.plan-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0; right: 0;
  background: var(--green);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-bottom-left-radius: 6px;
}
.plan-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.plan-tagline {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 20px;
  min-height: 36px;
}
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.plan-price {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.plan-price-period {
  font-size: 0.85rem;
  color: var(--text-3);
  font-family: var(--sans);
  font-weight: 400;
}
.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
}
.pf-check {
  color: var(--green);
  font-size: 0.75rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.plan-cta { margin-top: auto; }

/* Add-on box */
.addon-box {
  background: var(--surface);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-l);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.addon-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.addon-box h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}
.addon-box p { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.addon-price { display: flex; align-items: baseline; gap: 8px; }
.addon-setup {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-l);
}
.addon-sep { color: var(--text-3); font-size: 1rem; }
.addon-monthly {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.price-period { font-size: 0.9rem; font-weight: 400; color: var(--text-3); font-family: var(--sans); }
.addon-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.addon-feat { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-2); }
.af-check { color: var(--green); font-size: 0.8rem; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { padding: var(--section-pad) 0; background: var(--surface); border-top: 1px solid var(--border); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--green-l); }
.faq-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); color: #fff; transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--green-l); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--green); }

/* ── LEAD FORM ──────────────────────────────────────────────── */
.lead-section { padding: var(--section-pad) 0; }
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.lead-copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.lead-copy p { font-size: 1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 32px; }
.lead-social-proof { display: flex; align-items: center; gap: 12px; }
.lsp-avatars { display: flex; }
.lsp-av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--canvas);
  margin-left: -8px;
}
.lsp-av:first-child { margin-left: 0; }
.lsp-av1 { background: linear-gradient(135deg, #2ea66a, #1e7a4e); }
.lsp-av2 { background: linear-gradient(135deg, #e8642a, #c04a18); }
.lsp-av3 { background: linear-gradient(135deg, #2563eb, #1a4eb8); }
.lead-social-proof p { font-size: 0.82rem; color: var(--text-3); margin: 0; }

.lead-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 36px;
}
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.01em;
}
.req { color: var(--green); }
input[type="text"],
input[type="email"],
select {
  background: var(--canvas);
  border: 1px solid var(--border-l);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder { color: var(--text-3); }
input:focus, select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,166,106,0.15);
}
input.error, select.error { border-color: #e55; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%235e6b59' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
select option { background: var(--surface); }

.form-status {
  font-size: 0.85rem;
  color: #e55;
  min-height: 20px;
}
.form-status.success { color: var(--green-l); }
.form-privacy { font-size: 0.75rem; color: var(--text-3); text-align: center; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.form-success[hidden] { display: none; }
.fs-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(46,166,106,0.15);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--green-l);
}
.form-success h3 { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--white); }
.form-success p { font-size: 0.95rem; color: var(--text-2); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-mark { width: 36px; height: 36px; }
.footer-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.footer-by { font-size: 0.78rem; color: var(--text-3); display: flex; align-items: center; gap: 7px; margin-top: 4px; }
/* Go HowLevel maker mark — dark wordmark sits on a light chip so it stays legible on the dark footer */
.gohowlevel-by { display: inline-flex; align-items: center; background: #fff; border-radius: 7px; padding: 4px 8px; transition: transform 0.15s, box-shadow 0.15s; }
.gohowlevel-by:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.35); }
.gohowlevel-logo { height: 22px; width: auto; display: block; }
.footer-links { display: flex; gap: 28px; align-items: center; }
.footer-links a { font-size: 0.85rem; color: var(--text-3); transition: color 0.15s; }
.footer-links a:hover { color: var(--green-l); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy, .footer-hl { font-family: var(--mono); font-size: 0.72rem; color: var(--text-3); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; max-width: 560px; margin: 0 auto; }
  .hero-card { transform: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .aspect-row { grid-template-columns: 1fr; gap: 40px; }
  .aspect-row-flip { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .hero { padding: 120px 24px 80px; }
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .problem-inner { grid-template-columns: 1fr; }
  .problem-divider { display: none; }
  .lead-inner { grid-template-columns: 1fr; gap: 48px; }
  .origin-inner { grid-template-columns: 1fr; gap: 48px; }
  .addon-box { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { flex-direction: column; gap: 32px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-h1 { font-size: 3rem; }
}
