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

:root {
  --bg: #0D0F14;
  --surface: #13161E;
  --surface2: #181C27;
  --border: #232836;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.10);
  --accent-border: rgba(255, 107, 53, 0.30);
  --cyan: #22D3EE;
  --cyan-dim: rgba(34, 211, 238, 0.08);
  --cyan-border: rgba(34, 211, 238, 0.25);
  --text: #EDEEF0;
  --muted: #6B7280;
  --muted2: #9BA3AF;
  --max: 960px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
}

/* ── UTILS ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.divider {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 2px;
  margin-bottom: 2.8rem;
}
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 2rem;
  background: transparent;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: var(--cyan); color: #0D0F14 !important;
  padding: 0.45rem 1.1rem; border-radius: 6px;
  font-weight: 600; font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #1AB8D3 !important; color: #0D0F14 !important; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 60% at 50% 40%, #111520 0%, var(--bg) 70%);
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 42%, rgba(34,211,238,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 38% 35% at 80% 12%, rgba(255,107,53,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 15% 80%, rgba(34,211,238,0.05) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}
#hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  max-width: 720px;
  background: linear-gradient(135deg, #EDEEF0 0%, #EDEEF0 60%, rgba(255,150,80,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted2);
  max-width: 540px;
  margin-bottom: 2.8rem;
  line-height: 1.75;
}
.btn-group { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.78rem 1.5rem; border-radius: 8px;
  font-size: 0.92rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--cyan); color: #0D0F14; }
.btn-primary:hover { background: #1AB8D3; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--muted2);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* trusted */
.trusted-row {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
}
.trusted-label { font-size: 0.8rem; color: var(--muted2); font-weight: 500; }
.trusted-logos { display: flex; align-items: center; gap: 3.5rem; flex-wrap: wrap; }
.trusted-logos img {
  height: 36px; width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.2s, filter 0.2s;
}
.trusted-logos img:hover { opacity: 0.85; filter: grayscale(0); }
.trusted-logos img.logo-dark {
  filter: grayscale(1) invert(1);
  border-radius: 4px;
}
.trusted-logos img.logo-dark:hover { filter: grayscale(0) invert(0); }

/* ── SECTION WRAPPER ── */
.section-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 5.5rem 2rem;
}
.section-wrap + .section-wrap {
  border-top: 1px solid var(--border);
}

/* ── PAIN POINTS ── */
.pain-list { display: flex; flex-direction: column; }
.pain-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.8rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: border-color 0.2s;
}
.pain-item:last-child { border-bottom: none; }
.pain-item:hover { border-color: rgba(34,211,238,0.2); }
.pain-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.pain-item h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.35rem; color: var(--text);
  line-height: 1.35;
}
.pain-item p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ── BEFORE / AFTER ── */
.before-after-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ba-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.ba-row:last-child { border-bottom: none; }
.ba-cell {
  padding: 1.1rem 1.4rem;
  font-size: 0.88rem;
  line-height: 1.55;
}
.ba-header { background: var(--surface2); }
.ba-label-col { border-right: 1px solid var(--border); }
.ba-before-head {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); border-right: 1px solid var(--border);
}
.ba-after-head {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan);
}
.ba-label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--border);
  display: flex; align-items: center;
}
.ba-before {
  color: var(--muted2);
  border-right: 1px solid var(--border);
}
.ba-after {
  color: var(--text);
  font-weight: 500;
}
.ba-row:not(.ba-header):hover .ba-after {
  color: var(--cyan);
  transition: color 0.2s;
}
@media (max-width: 600px) {
  .ba-row { grid-template-columns: 1fr; }
  .ba-label { display: none; }
  .ba-before { border-right: none; border-bottom: 1px solid var(--border); color: var(--muted); }
  .ba-cell { padding: 0.9rem 1.1rem; }
  .ba-before-head, .ba-after-head { border-right: none; }
  .ba-before-head { border-bottom: 1px solid var(--border); }
}

/* ── FORCE AND FRICTION ── */
.ff-intro {
  max-width: 680px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.ff-intro p {
  font-size: 0.97rem;
  color: var(--muted2);
  line-height: 1.75;
}
.ff-intro p:first-child {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}
.flywheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.flywheel-svg {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
}
.flywheel-caption {
  font-size: 0.83rem;
  color: var(--muted);
  font-style: italic;
  max-width: 480px;
}

/* ── WORK ── */
.work-list { display: flex; flex-direction: column; gap: 0; }

.work-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.7rem;
  transition: border-color 0.2s;
}
.work-item:hover { border-color: var(--cyan-border); box-shadow: 0 0 20px rgba(34,211,238,0.05); }

.work-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.4rem 1.6rem;
  gap: 1rem;
}
.work-header[onclick] { cursor: pointer; }
.work-left { flex: 1; }
.work-category {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.35rem;
}
.work-header h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.work-header p { font-size: 0.87rem; color: var(--muted2); }

.work-metrics {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.7rem;
}
.metric-pill {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--muted2); font-size: 0.75rem;
  padding: 0.22rem 0.6rem; border-radius: 5px;
}
.work-chevron {
  color: var(--muted); font-size: 1.1rem;
  transition: transform 0.3s; flex-shrink: 0;
  margin-top: 0.2rem;
}
.work-item.open .work-chevron { transform: rotate(180deg); }

.work-body {
  display: none;
  padding: 0 1.6rem 1.5rem;
  border-top: 1px solid var(--border);
}
.work-item.open .work-body { display: block; }
.work-body p {
  font-size: 0.88rem; color: var(--muted2);
  margin-top: 1rem; margin-bottom: 1rem;
  line-height: 1.7;
}
.work-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.work-tag {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted2); font-size: 0.76rem;
  padding: 0.22rem 0.6rem; border-radius: 5px;
}

/* ── MODULES ── */
.modules-intro {
  color: var(--muted2);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.module-card:hover { border-color: var(--cyan-border); box-shadow: 0 0 24px rgba(34,211,238,0.07); }
.module-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.module-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}
.module-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.module-tagline {
  font-size: 0.85rem;
  color: var(--muted2);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.module-list li {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.modules-cta {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.modules-cta p {
  color: var(--muted2);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

/* ── WHO THIS IS FOR ── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.who-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.who-list li {
  font-size: 0.88rem;
  color: var(--muted2);
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}
.who-list--yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
}
.who-list--no li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: -0.05em;
  font-size: 1rem;
  line-height: 1;
  color: var(--muted);
}

/* ── TOOLS ── */
.tools-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tool-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted2);
  font-size: 0.85rem; font-weight: 500;
  padding: 0.45rem 1rem; border-radius: 7px;
  transition: border-color 0.2s, color 0.2s;
}
.tool-tag:hover { border-color: var(--accent-border); color: var(--text); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 1.2rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.quote-mark { font-size: 2.5rem; color: var(--accent); line-height: 1; }
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--muted2);
  line-height: 1.75; font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; }
.testimonial-author div { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-author strong { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.testimonial-pending {
  display: flex; align-items: center; justify-content: center;
  min-height: 140px;
}
.pending-note {
  font-size: 0.85rem; color: var(--muted);
  font-style: italic; text-align: center;
}

/* ── HOW IT WORKS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.4rem; padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--accent);
  flex-shrink: 0;
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-content p { font-size: 0.88rem; color: var(--muted2); margin-bottom: 0.6rem; }
.step-price {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.25rem 0.7rem; border-radius: 5px;
}

/* ── FINAL CTA ── */
#cta-section {
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
#cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
#cta-section p {
  color: var(--muted2); max-width: 420px;
  margin: 0 auto 2.4rem; font-size: 0.97rem;
}

/* ── FOOTER ── */
footer {
  max-width: var(--max); margin: 0 auto;
  padding: 2rem; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
footer p { font-size: 0.82rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* ── TABLET ── */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-wrap { padding: 4.5rem 1.5rem; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  #cta-section { padding: 5rem 1.5rem; }
}

/* ── MOBILE ── */
@media (max-width: 520px) {
  /* Nav */
  nav { padding: 1rem 1.2rem; }
  .nav-links li:not(:last-child) { display: none; }

  /* Hero */
  .hero-content { padding: 5.5rem 1.2rem 3rem; }
  #hero h1 { margin-bottom: 1.4rem; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 2rem; }
  .btn-group { flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
  .btn { width: 100%; justify-content: center; }
  /* Sections */
  .section-wrap { padding: 3.5rem 1.2rem; }

  /* Pain grid */
  .pain-grid { grid-template-columns: 1fr; }

  /* Work */
  .work-header { padding: 1.1rem 1.2rem; }
  .work-body { padding: 0 1.2rem 1.2rem; }
  .work-header h3 { font-size: 0.92rem; }
  .metric-pill { font-size: 0.7rem; padding: 0.18rem 0.5rem; }

  /* Modules */
  .modules-grid { grid-template-columns: 1fr; }
  .modules-cta { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  /* Who */
  .who-grid { grid-template-columns: 1fr; }

  /* Trusted by */
  .trusted-logos { gap: 1.8rem; }
  .trusted-logos img { height: 26px; }

  /* Steps */
  .step { grid-template-columns: 38px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .step-num { width: 38px; height: 38px; font-size: 0.8rem; }

  /* CTA */
  #cta-section { padding: 4rem 1.2rem; }
  #cta-section .btn-group { flex-direction: column; }
  #cta-section .btn { width: 100%; justify-content: center; }

  /* Footer */
  footer { padding: 1.5rem 1.2rem; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}
