﻿:root {
  --bg: #090b12;
  --bg-soft: #0f1320;
  --card: rgba(18, 24, 40, 0.84);
  --card-strong: rgba(16, 21, 35, 0.95);
  --line: rgba(104, 122, 164, 0.2);
  --text: #eef3ff;
  --muted: #9ca8c7;
  --blue: #47b8ff;
  --purple: #8c63ff;
  --orange: #ff9854;
  --green: #4de1b6;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(71, 184, 255, 0.16), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(140, 99, 255, 0.14), transparent 24%),
    radial-gradient(circle at 22% 82%, rgba(255, 66, 66, 0.08), transparent 20%),
    radial-gradient(circle at 74% 70%, rgba(0, 210, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #080b12 30%, #05070c 100%);
  color: var(--text);
}
/* Base background layer */
.tech-lab-body {
  position: relative;
  background-attachment: fixed;
}

/* Visible tech grid overlay */
.tech-lab-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.18) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
  z-index: 0;
}

.tech-shell {
  position: relative;
}

/* UI layer above the grid */
.page-shell {
  position: relative;
  z-index: 2;
}

.tech-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(56, 189, 248, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 22%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-frame {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.ambient {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.24;
  pointer-events: none;
}
.ambient-a { top: -6rem; left: -4rem; background: var(--purple); }
.ambient-b { right: -6rem; top: 12rem; background: var(--blue); }

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 35%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
}
.grid-overlay::after {
  content: '';
  position: absolute;
  inset: -20% -30%;
  background: linear-gradient(115deg, transparent 35%, rgba(103, 232, 249, 0.08) 48%, transparent 60%);
  animation: lightSweep 16s linear infinite;
}

.topbar,
.section {
  width: 100%;
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-radius: 22px;
  border: 1px solid rgba(118, 190, 255, 0.16);
  background: rgba(8, 10, 18, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.topnav {
  display: flex;
  gap: 14px;
}
.topnav a,
.topnav a:visited {
  color: rgba(212, 224, 255, 0.92);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(122, 224, 255, 0.06);
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease, text-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.topnav a:hover {
  color: #f2fdff;
  text-shadow: 0 0 10px rgba(122, 224, 255, 0.34), 0 0 18px rgba(122, 224, 255, 0.18);
  border-color: rgba(122, 224, 255, 0.4);
  background: rgba(14, 20, 32, 0.65);
}

.section {
  position: relative;
  padding: 0;
  margin: 22px 0;
}
.section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.08), transparent);
}
.section::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -20px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.06), transparent 70%);
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 40px 0 70px;
  margin-bottom: 12px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 460px);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
}
.hero-text-block {
  max-width: 720px;
  min-width: 0;
}
.hero-side-preview {
  width: 100%;
  min-width: 0;
  justify-self: end;
}
.hero-side-preview h2 {
  margin: 4px 0 12px;
}
.hero-side-preview .panel-kicker {
  color: rgba(143, 220, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.preview-stack {
  display: grid;
  gap: 12px;
  margin: 16px 0 20px;
}
.preview-row {
  display: grid;
  gap: 6px;
  padding: 16px 16px 16px 20px;
  border-radius: 16px;
  background: rgba(9, 12, 22, 0.82);
  border: 1px solid rgba(139, 196, 255, 0.16);
  position: relative;
}
.preview-row::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(71, 184, 255, 0.8), rgba(200, 139, 255, 0.5));
}
.preview-row strong {
  color: #7ee3ff;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.preview-row span {
  color: #f5f7ff;
  line-height: 1.6;
}
.hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0,210,255,0.35), transparent 70%);
  filter: blur(140px);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 4% 8% auto 34%;
  height: 420px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.10), transparent 45%, rgba(167, 139, 250, 0.08));
  border: 1px solid rgba(103, 232, 249, 0.08);
  border-radius: 32px;
  transform: perspective(1000px) rotateX(70deg);
  z-index: -1;
  opacity: 0.7;
}

.eyebrow, .panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c5cff1;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(77, 225, 182, 0.8);
}

.hero h1,
.section-heading h2 {
  margin: 14px 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.hero p {
  max-width: 560px;
}
.hero-text {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: #c8d5f6;
}
.builder-panel {
  width: 100%;
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); }
.hero-text,
.section-heading p,
.breakdown-card p,
.principle-card p,
.workflow-node p,
.sales-copy-card p,
.module-card p,
.asset-card p,
.use-section p,
.mini-point,
.peek-header p,
.peek-list,
.purchase-dialog p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 16px;
}
.hero-actions .top-link-btn,
.hero-actions button {
  white-space: nowrap;
}
.cta-credibility {
  color: #b8c7ea;
  font-size: 0.96rem;
  margin-bottom: 6px;
  max-width: 560px;
}

button,
.top-link-btn {
  font: inherit;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
button:hover,
.top-link-btn:hover { transform: translateY(-1px); }

.primary-btn,
.secondary-btn,
.ghost-btn,
.top-link-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
}
.primary-btn {
  color: #071019;
  font-weight: 800;
  background: linear-gradient(135deg, #7ae0ff, #7fb1ff 42%, #d190ff 82%);
  box-shadow: 0 18px 48px rgba(88, 139, 255, 0.42), 0 0 18px rgba(122, 224, 255, 0.22);
}
.primary-btn:hover {
  box-shadow: 0 22px 56px rgba(88, 139, 255, 0.5), 0 0 28px rgba(122, 224, 255, 0.34), 0 0 38px rgba(209, 144, 255, 0.16);
}
.secondary-btn,
.ghost-btn {
  color: var(--text);
  border: 1px solid rgba(147, 171, 222, 0.28);
  background: rgba(17, 22, 35, 0.78);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.ghost-btn:hover,
.secondary-btn:hover {
  border-color: rgba(122, 224, 255, 0.58);
  color: #eefdff;
  text-shadow: 0 0 10px rgba(122, 224, 255, 0.42);
  box-shadow: 0 0 18px rgba(122, 224, 255, 0.12), inset 0 0 12px rgba(122, 224, 255, 0.05);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}
.panel {
  background: rgba(12,18,32,0.65);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  padding: 36px;
}
.hero-side-preview.panel {
  border-radius: 28px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.82), rgba(6, 8, 16, 0.94)),
    linear-gradient(135deg, rgba(71, 184, 255, 0.18), transparent 48%, rgba(200, 139, 255, 0.16));
  border: 1px solid rgba(118, 190, 255, 0.24);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58), 0 0 50px rgba(80, 200, 255, 0.12);
}
.builder-section {
  margin-top: 60px;
}
.builder-panel {
  padding: 42px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.comparison-panel {
  padding: 40px;
}
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}

.metric-card,
.lab-card {
  border: 1px solid rgba(142, 178, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 26, 42, 0.72), rgba(10, 14, 24, 0.80)),
    linear-gradient(135deg, rgba(56, 189, 248, 0.06), transparent 45%, rgba(167, 139, 250, 0.05));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(22px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.glass-panel {
  border: 1px solid rgba(103, 232, 249, 0.18);
  background:
    linear-gradient(180deg, rgba(15, 21, 35, 0.72), rgba(9, 12, 22, 0.84)),
    linear-gradient(135deg, rgba(56, 189, 248, 0.08), transparent 40%, rgba(167, 139, 250, 0.08));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46), 0 0 30px rgba(56, 189, 248, 0.06), inset 0 1px 0 rgba(255,255,255,0.05);
}
.feature-panel {
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.48), 0 0 48px rgba(56, 189, 248, 0.10), inset 0 1px 0 rgba(255,255,255,0.05);
}
.lab-card:hover {
  transform: translateY(-2px);
  border-color: rgba(103, 232, 249, 0.22);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 28px rgba(56, 189, 248, 0.08);
}
.metric-card {
  padding: 14px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.metric-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(71,184,255,0.08), transparent 55%, rgba(255,152,84,0.08));
  pointer-events: none;
}
.metric-value { display: block; font-size: 2rem; font-weight: 800; color: white; letter-spacing: -0.02em; }
.metric-label { display: block; margin-top: 6px; color: rgba(200, 208, 235, 0.9); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; }

.hero-panel {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.78), rgba(7, 10, 18, 0.88)),
    linear-gradient(135deg, rgba(56, 189, 248, 0.10), transparent 45%, rgba(167, 139, 250, 0.08));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46), 0 0 40px rgba(56, 189, 248, 0.08);
  overflow: visible;
  min-width: 0;
}
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(71,184,255,0.10), transparent 35%, rgba(140,99,255,0.10));
  pointer-events: none;
}
.hero-panel::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.builder-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(122, 155, 255, 0.12);
  pointer-events: none;
}
.orbit-a {
  width: 18rem; height: 18rem; right: -5rem; top: -4rem;
  box-shadow: 0 0 80px rgba(71,184,255,0.08);
}
.orbit-b {
  width: 10rem; height: 10rem; left: -3rem; bottom: -3rem;
  box-shadow: 0 0 50px rgba(140,99,255,0.1);
}

.panel-header,
.stage-head,
.split-heading,
.builder-controls { position: relative; z-index: 1; }
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.panel-header h2 { margin: 4px 0 0; font-size: 1.7rem; }
.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 211, 181, 0.24);
  color: #a9ffea;
  background: rgba(18, 58, 49, 0.35);
  font-size: 0.9rem;
}

.builder-controls {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.82fr) auto;
  gap: 14px;
  margin-bottom: 24px;
  align-items: end;
}
.builder-controls > * {
  min-width: 0;
}
.builder-controls label { display: grid; gap: 8px; }
.builder-controls span { font-size: 0.85rem; color: #b2c0e6; }
.builder-controls input,
.builder-controls select {
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(132, 153, 197, 0.18);
  background: rgba(10, 13, 22, 0.92);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}
.builder-controls input:focus,
.builder-controls select:focus {
  border-color: rgba(71, 184, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(71, 184, 255, 0.12);
}
.generate-btn {
  align-self: end;
  white-space: nowrap;
}

.pipeline-map,
.builder-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0 26px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  white-space: nowrap;
}
.builder-steps::-webkit-scrollbar,
.pipeline-map::-webkit-scrollbar {
  height: 6px;
}
.pipeline-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(71,184,255,0.2), rgba(140,99,255,0.35), rgba(255,152,84,0.25));
  box-shadow: 0 0 14px rgba(71,184,255,0.15);
}
.pipeline-step,
.builder-steps button {
  position: relative;
  z-index: 1;
  padding: 11px 14px;
  border-radius: 999px;
  color: #bfd0fb;
  background: rgba(13, 17, 28, 0.92);
  border: 1px solid rgba(126, 150, 204, 0.2);
  font-size: 0.92rem;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  flex: 0 0 auto;
}
.pipeline-step.active,
.pipeline-step.is-lit {
  color: white;
  border-color: rgba(71, 184, 255, 0.35);
  box-shadow: 0 0 22px rgba(71, 184, 255, 0.2);
  transform: translateY(-1px);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.stage-card {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  overflow: hidden;
}
.stage-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -2px 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(71,184,255,0), rgba(71,184,255,0.4), rgba(140,99,255,0));
  opacity: 0.7;
}
.active-stage { border-color: rgba(71, 184, 255, 0.26); }
.pulse-highlight {
  border-color: rgba(71, 184, 255, 0.5) !important;
  box-shadow: 0 0 0 1px rgba(71, 184, 255, 0.35), 0 0 34px rgba(71, 184, 255, 0.22), var(--shadow);
}
.stage-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.stage-index {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, rgba(71,184,255,0.2), rgba(140,99,255,0.24));
  border: 1px solid rgba(139, 169, 230, 0.15);
  font-weight: 700;
}
.stage-head h3 { margin: 0 0 4px; }
.stage-head p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.result-box,
.result-list {
  border-radius: 18px;
  border: 1px dashed rgba(141, 163, 205, 0.14);
  background: rgba(9, 12, 20, 0.72);
}
.report-summary {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(16, 22, 36, 0.86);
  border: 1px solid rgba(132, 155, 198, 0.12);
}
.report-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8fdcff;
}
.report-value {
  color: #edf3ff;
  font-size: 1rem;
  line-height: 1.5;
}
.result-box {
  min-height: 110px;
  padding: 16px;
  color: #d7e2ff;
  line-height: 1.6;
}
.opening-box { min-height: 132px; }
.result-list {
  min-height: 140px;
  padding: 10px;
  display: grid;
  gap: 10px;
}
.placeholder-item,
.result-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(16, 22, 36, 0.86);
  border: 1px solid rgba(132, 155, 198, 0.12);
}
.result-item { display: grid; gap: 7px; padding: 14px 16px; }
.result-item strong {
  font-size: 0.84rem;
  color: #96e0ff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.result-item span { color: #e7edff; line-height: 1.55; }

.section-heading {
  max-width: 820px;
  margin-bottom: 18px;
}
.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  max-width: 100%;
}
.split-heading > * { flex: 1; }

.output-preview-card,
.pain-card,
.system-grid,
.breakdown-grid {
  display: grid;
  gap: 16px;
}
.system-grid,
.breakdown-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.output-preview-card,
.pain-card {
  padding: 24px;
  border-radius: 24px;
}
.output-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.output-block {
  padding: 16px;
  border-radius: 18px;
  background: rgba(10, 14, 24, 0.72);
  border: 1px solid rgba(132, 155, 198, 0.12);
}
.output-block p { margin: 8px 0 0; color: #dce7ff; line-height: 1.7; }
.output-label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #96d7ff;
}
.full-span { grid-column: 1 / -1; }
.pain-list {
  margin: 0;
  padding-left: 18px;
  color: #dce7ff;
}
.pain-list li { margin: 12px 0; }
.pain-line {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(132, 155, 198, 0.12);
  color: #f3f7ff;
  font-weight: 700;
}
.principle-card,
.breakdown-card,
.hook-display {
  border-radius: 22px;
  padding: 20px;
}
.principle-card h3,
.breakdown-card h3 { margin-top: 0; }

.hook-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.hook-tab {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 17, 29, 0.78);
  border: 1px solid rgba(130, 151, 201, 0.14);
  color: var(--muted);
}
.hook-tab.active {
  color: white;
  border-color: rgba(71,184,255,0.42);
  box-shadow: 0 0 24px rgba(71,184,255,0.14), 0 0 18px rgba(122, 224, 255, 0.16);
  text-shadow: 0 0 10px rgba(122, 224, 255, 0.28);
}
.hook-display {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
}
.hook-display h3 { margin-top: 0; }
.hook-points, .toolkit-list { padding-left: 18px; color: var(--muted); }
.hook-points li, .toolkit-list li { margin: 10px 0; }
.sample-hook {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(11, 14, 24, 0.88);
  border: 1px solid rgba(133, 153, 197, 0.12);
  color: #e5ecff;
  margin-bottom: 10px;
}

.compare-label {
  display: inline-block;
  margin-bottom: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.compare-label.neutral { background: rgba(70, 79, 105, 0.44); color: #dbe5ff; }
.compare-label.bad { background: rgba(101, 57, 57, 0.44); color: #ffb3b3; }
.compare-label.good { background: rgba(34, 86, 77, 0.44); color: #aef8e7; }
.highlight-card { border-color: rgba(71,184,255,0.22); }
.packaging-compare { margin-bottom: 22px; }
.packaging-fast-line {
  margin-top: 6px;
  color: #f3f7ff;
  font-weight: 700;
}
.packaging-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.packaging-card {
  padding: 22px;
  border-radius: 24px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.packaging-card h3 {
  margin: 0;
  line-height: 1.35;
}
.idea-card {
  border-color: rgba(146, 162, 201, 0.14);
}
.packaging-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}
.weak-state { color: #ffb3b3; }
.strong-state { color: #aef8e7; }
.packaging-arrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #ff7a7a;
  font-size: 1.3rem;
  line-height: 1;
}
.weak-card { border-color: rgba(255, 123, 123, 0.18); }
.strong-card {
  border-color: rgba(77, 225, 182, 0.18);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
}
.transformation-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  margin-bottom: 18px;
  border-color: rgba(255, 117, 117, 0.16);
}
.transform-col h3 { margin: 10px 0 6px; }
.transform-col p { margin: 0; }
.transform-arrow {
  font-size: 2rem;
  color: #ff7a7a;
  text-shadow: 0 0 20px rgba(255, 90, 90, 0.22);
}

.workflow-graphic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
  margin-bottom: 22px;
  overflow-x: auto;
}
.workflow-method-graphic {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
}
.workflow-method-step {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0.46;
  transform: translateY(4px);
  transition: opacity 260ms ease, transform 260ms ease;
}
.workflow-method-arrow {
  color: #ff7a7a;
  font-size: 1.4rem;
  opacity: 0.6;
  transition: opacity 260ms ease, transform 260ms ease;
}
.workflow-method-caption {
  margin-bottom: 24px;
  color: #c7d6f7;
  font-size: 1rem;
}
.workflow-graphic-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(71,184,255,0.18), rgba(140,99,255,0.28), rgba(255,152,84,0.22));
}
.workflow-graphic-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0.46;
  transform: translateY(4px);
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}
.workflow-graphic-step span,
.workflow-method-step span,
.workflow-node span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(71,184,255,0.24), rgba(140,99,255,0.24));
  border: 1px solid rgba(132, 155, 198, 0.16);
  color: white;
  font-weight: 700;
}
.workflow-graphic-step h3,
.workflow-method-step h3 { margin: 0; font-size: 1.02rem; }
.workflow-graphic.is-visible .workflow-graphic-step,
.workflow-graphic.is-visible .workflow-method-step {
  opacity: 1;
  transform: translateY(0);
}
.workflow-graphic.is-visible .workflow-method-arrow {
  opacity: 1;
  transform: translateY(0);
}
.workflow-graphic.is-visible .workflow-graphic-step:nth-child(2),
.workflow-graphic.is-visible .workflow-method-step:nth-child(1) { transition-delay: 0ms; }
.workflow-graphic.is-visible .workflow-graphic-step:nth-child(3),
.workflow-graphic.is-visible .workflow-method-arrow:nth-child(2) { transition-delay: 60ms; }
.workflow-graphic.is-visible .workflow-graphic-step:nth-child(4),
.workflow-graphic.is-visible .workflow-method-step:nth-child(3) { transition-delay: 120ms; }
.workflow-graphic.is-visible .workflow-graphic-step:nth-child(5),
.workflow-graphic.is-visible .workflow-method-arrow:nth-child(4) { transition-delay: 180ms; }
.workflow-graphic.is-visible .workflow-graphic-step:nth-child(6),
.workflow-graphic.is-visible .workflow-method-step:nth-child(5) { transition-delay: 240ms; }
.workflow-graphic.is-visible .workflow-graphic-step:nth-child(7),
.workflow-graphic.is-visible .workflow-method-arrow:nth-child(6) { transition-delay: 300ms; }
.workflow-graphic.is-visible .workflow-graphic-step:nth-child(8),
.workflow-graphic.is-visible .workflow-method-step:nth-child(7) { transition-delay: 360ms; }

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.workflow-rail-seven { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.workflow-node {
  padding: 20px;
  border-radius: 22px;
  background: rgba(13, 17, 29, 0.76);
  border: 1px solid rgba(132, 152, 194, 0.12);
}
.workflow-node span { margin-bottom: 14px; }
.workflow-node h3 { margin: 0 0 8px; font-size: 1.06rem; }

.sales-section { display: grid; gap: 28px; }
.sales-heading { margin-bottom: 4px; }
.sales-intro-grid,
.fit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.sales-copy-card,
.offer-card,
.module-card,
.asset-card,
.fit-card,
.use-section,
.peek-card,
.purchase-dialog {
  border-radius: 24px;
  padding: 24px;
}
.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(71,184,255,0.08), transparent 35%, rgba(255,152,84,0.08));
  pointer-events: none;
}
.offer-price {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,152,84,0.16), rgba(140,99,255,0.2));
  color: #fff;
  font-weight: 800;
}
.offer-value-label { margin-top: 0; margin-bottom: 6px; font-size: 0.95rem; font-weight: 700; color: #edf4ff; }
.offer-checklist { display: grid; gap: 2px; }
.offer-checklist li { list-style: none; padding-left: 0; color: #dce8ff; }
.offer-asset-count { margin-top: 6px; color: #9fc0ff; font-size: 0.92rem; }
.strong-cta { margin-top: 18px; }

.mini-points { display: grid; gap: 12px; margin-top: 18px; }
.mini-point {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 14, 24, 0.72);
  border: 1px solid rgba(132, 155, 198, 0.1);
}
.narrow-heading { max-width: 780px; }
.toolkit-headline-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}
.preview-trigger { white-space: nowrap; }
.toolkit-preview-shell {
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(118, 146, 209, 0.12);
  background: linear-gradient(180deg, rgba(10, 14, 25, 0.8), rgba(8, 11, 20, 0.86));
}
.toolkit-preview-topline {
  margin-bottom: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ddfff;
}
.modules-grid,
.assets-grid,
.peek-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.toolkit-modules-grid .toolkit-module {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease, border-color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}
.toolkit-preview-shell.is-open .toolkit-module {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toolkit-module:hover {
  border-color: rgba(255, 116, 116, 0.22);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px) scale(1.01);
}
.module-detail {
  margin-top: 14px;
  display: none;
}
.toolkit-module.is-expanded .module-detail {
  display: block;
}
.toolkit-module.is-expanded {
  border-color: rgba(255, 116, 116, 0.22);
}
.toolkit-preview-shell.is-open .toolkit-module:nth-child(1) { transition-delay: 0ms; }
.toolkit-preview-shell.is-open .toolkit-module:nth-child(2) { transition-delay: 45ms; }
.toolkit-preview-shell.is-open .toolkit-module:nth-child(3) { transition-delay: 90ms; }
.toolkit-preview-shell.is-open .toolkit-module:nth-child(4) { transition-delay: 135ms; }
.toolkit-preview-shell.is-open .toolkit-module:nth-child(5) { transition-delay: 180ms; }
.toolkit-preview-shell.is-open .toolkit-module:nth-child(6) { transition-delay: 225ms; }

.peek-section {
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 15, 26, 0.82), rgba(8, 11, 20, 0.92));
  border: 1px solid rgba(124, 147, 204, 0.12);
}
.peek-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.peek-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #96d7ff;
}
.peek-card h3 { margin-top: 0; }
.peek-list {
  padding-left: 18px;
  margin: 0;
}
.peek-list li { margin: 8px 0; color: #dce7ff; }
.planner-card { position: relative; overflow: hidden; }
.planner-preview-lines {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.planner-preview-lines span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(12, 18, 31, 0.85);
  border: 1px solid rgba(132, 155, 198, 0.12);
  color: #dbe7ff;
}
.asset-card { min-height: 100%; }
.compact-list li { margin: 8px 0; }
.good-fit { border-color: rgba(77, 225, 182, 0.18); }
.bad-fit { border-color: rgba(255, 152, 84, 0.18); }
.use-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}
.use-steps { display: grid; gap: 12px; }
.use-step {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 14, 24, 0.78);
  border: 1px solid rgba(132, 155, 198, 0.12);
  color: #e5ecff;
}
.wide-btn { width: 100%; margin-top: 12px; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section.is-active .section-heading h2 {
  text-shadow: 0 0 22px rgba(255, 110, 110, 0.08);
}

.purchase-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}
.purchase-modal.is-open { display: flex; }
.purchase-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.72);
  backdrop-filter: blur(8px);
}
.purchase-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 32px));
}
.purchase-dialog h2 { margin-top: 6px; margin-bottom: 14px; }
.purchase-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}
.purchase-points div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(11, 14, 24, 0.82);
  border: 1px solid rgba(132, 155, 198, 0.12);
  color: #dbe7ff;
}
.purchase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(17, 22, 35, 0.85);
  color: white;
  border: 1px solid rgba(147,171,222,0.18);
}

@media (max-width: 1120px) {
  .hero,
  .hero-layout,
  .hook-display,
  .split-heading,
  .sales-intro-grid,
  .fit-grid,
  .use-section,
  .peek-header,
  .toolkit-headline-row {
    grid-template-columns: 1fr;
    display: grid;
  }
  .system-grid,
  .breakdown-grid,
  .workflow-rail,
  .workflow-rail-seven,
  .workflow-graphic,
  .modules-grid,
  .assets-grid,
  .peek-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .builder-controls { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@keyframes lightSweep {
  0% { transform: translateX(-18%) translateY(0); opacity: 0; }
  12% { opacity: 1; }
  50% { transform: translateX(18%) translateY(0); opacity: 0.75; }
  100% { transform: translateX(40%) translateY(0); opacity: 0; }
}

@media (max-width: 780px) {
  .topbar { position: static; flex-wrap: wrap; }
  .topnav { width: 100%; flex-wrap: wrap; gap: 10px; }
  .hero-metrics,
  .pipeline-grid,
  .system-grid,
  .breakdown-grid,
  .workflow-rail,
  .workflow-rail-seven,
  .builder-controls,
  .modules-grid,
  .assets-grid,
  .peek-grid,
  .output-preview-grid,
  .transformation-card,
  .packaging-compare-grid { grid-template-columns: 1fr; }
  .workflow-graphic {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 22px 18px;
  }
  .workflow-graphic-line { left: 18px; right: 18px; }
  .workflow-graphic-step {
    min-width: 108px;
    flex: 0 0 auto;
  }
  .pipeline-map { flex-wrap: nowrap; }
  .section { padding: 82px 0; }
  .hero h1 {
    font-size: 1.92rem;
    line-height: 1.08;
  }
  .hero-text { font-size: 1rem; }
  .hero-actions { gap: 14px; }
  .hero-actions button { width: 100%; }
  .hero-panel { padding: 20px; }
  .builder-controls { gap: 16px; }
  .purchase-actions { grid-template-columns: 1fr; display: grid; }
  .purchase-actions button { width: 100%; }
}






.improvement-section {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 50px);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(9, 14, 24, 0.85), rgba(6, 8, 16, 0.92)),
    linear-gradient(135deg, rgba(71, 184, 255, 0.16), transparent 45%, rgba(200, 139, 255, 0.14));
  border: 1px solid rgba(118, 190, 255, 0.2);
}
.improvement-intro h2 {
  margin: 8px 0 12px;
}
.improvement-intro p {
  color: rgba(200, 208, 235, 0.92);
  font-size: 1.05rem;
  line-height: 1.7;
}
.improvement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 24px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(118, 190, 255, 0.32);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(214, 231, 255, 0.92);
  background: rgba(13, 20, 32, 0.7);
}
.improvement-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.improvement-details h3 {
  margin-bottom: 10px;
}
.improvement-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(210, 219, 242, 0.92);
  line-height: 1.7;
}
.improvement-details li {
  position: relative;
  padding-left: 20px;
}
.improvement-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #71dbff;
  box-shadow: 0 0 8px rgba(113, 219, 255, 0.7);
}
@media (max-width: 900px) {
  .improvement-section {
    grid-template-columns: 1fr;
  }
}
.video-improvement-theme .brand-sub {
  color: rgba(116, 255, 196, 0.85);
}
.video-improvement-theme .eyebrow-dot {
  background: #74ffc4;
  box-shadow: 0 0 16px rgba(116, 255, 196, 0.8);
}
.video-improvement-theme .primary-btn {
  color: #03121a;
  background: linear-gradient(135deg, #65f8ff, #79ffb7 60%, #aaffd0 100%);
  box-shadow: 0 20px 50px rgba(86, 247, 210, 0.35);
}
.video-improvement-theme .ghost-btn {
  border-color: rgba(116, 255, 196, 0.24);
}
.vi-panel .preview-row::before {
  background: linear-gradient(180deg, rgba(103, 255, 210, 0.85), rgba(103, 232, 249, 0.6));
}
.vi-panel h2 {
  color: rgba(231, 255, 250, 0.95);
}
.vi-problem .pain-card {
  border-color: rgba(116, 255, 196, 0.2);
}
.vi-components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.vi-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.result-card {
  min-height: 180px;
}
.vi-fit .fit-card {
  border-color: rgba(116, 255, 196, 0.2);
}
.vi-pricing .vi-offer {
  border: 1px solid rgba(116, 255, 196, 0.25);
}
.vi-pricing .vi-guarantee {
  border: 1px dashed rgba(116, 255, 196, 0.4);
}
.vi-final .final-cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .vi-final .final-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.products-overview .product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card ul {
  margin: 0 0 18px;
}
.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.packaging-card {
  border: 1px solid rgba(122, 224, 255, 0.2);
}
.vi-card {
  border: 1px solid rgba(116, 255, 196, 0.2);
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.quote-card {
  min-height: 200px;
}
.quote-metric {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(122, 224, 255, 0.9);
}
.video-improvement-theme .quote-metric {
  color: rgba(116, 255, 196, 0.9);
}
.quote-author {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(226, 234, 255, 0.9);
}
.cross-link-card {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.cross-link-card p {
  max-width: 620px;
}
@media (max-width: 760px) {
  .cross-link-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
