:root {
  color-scheme: light dark;
  --ink: #05080c;
  --ink-soft: #0c1118;
  --paper: #ffffff;
  --paper-soft: #f6f8fb;
  --line: #d9e0ea;
  --line-dark: rgba(255, 255, 255, 0.14);
  --text: #10151d;
  --muted: #5c6572;
  --muted-dark: #b4bdc9;
  --blue: #2167f3;
  --blue-deep: #1554d8;
  --coral: #ff6758;
  --coral-deep: #f05344;
  --green: #41d77d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: start;
  justify-content: space-between;
  padding: 28px clamp(22px, 5vw, 64px);
  color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 23px;
  font-weight: 760;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 34px;
  gap: 4px;
}

.brand-mark span {
  display: block;
  height: 9px;
  border-radius: 8px;
  background: linear-gradient(90deg, #6ea4ff, var(--blue));
  box-shadow: 0 8px 22px rgba(33, 103, 243, 0.32);
  transform: skewY(-8deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.site-nav .nav-action {
  min-width: 86px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 11px 18px;
  background: var(--blue);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 12px 36px rgba(33, 103, 243, 0.32);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(22px, 5vw, 64px) 64px;
  background:
    radial-gradient(circle at 77% 46%, rgba(33, 103, 243, 0.2), transparent 26%),
    linear-gradient(135deg, #060a0f 0%, #0d141d 52%, #05080c 100%);
  color: #ffffff;
}

.hero-copy {
  max-width: 650px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.96;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 570px;
  margin-bottom: 36px;
  color: var(--muted-dark);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin: 0 0 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.hero-proof li {
  min-width: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 820;
}

.hero-proof span {
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 7px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(33, 103, 243, 0.36);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-deep);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.button.coral {
  background: var(--coral);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(255, 103, 88, 0.3);
}

.button.coral:hover,
.button.coral:focus-visible {
  background: var(--coral-deep);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid currentColor;
}

.buyer-bonus {
  max-width: 570px;
  margin: -4px 0 18px;
  border-left: 3px solid var(--coral);
  padding-left: 14px;
  color: #f3f7fb;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.honesty-line {
  display: flex;
  max-width: 520px;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.honesty-line span,
.check-list li::before {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    var(--green);
}

.hero-media {
  min-width: 0;
  transform: translateX(2vw);
}

.hero-media img {
  width: min(930px, 64vw);
  max-width: none;
  border-radius: 8px;
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.42));
}

.workflow {
  padding: 82px clamp(22px, 5vw, 64px) 88px;
  background: var(--paper);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.objections h2,
.demo h2,
.pricing h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.05;
  font-weight: 820;
  letter-spacing: 0;
}

.section-heading p,
.demo p,
.pricing-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  min-width: 0;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.step-title span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 17px;
  font-weight: 790;
}

.step-title h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
}

.mini-ui {
  position: relative;
  height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111820;
  box-shadow: 0 22px 50px rgba(16, 21, 29, 0.1);
}

.step-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.mini-toolbar,
.cue-row,
.export-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-toolbar {
  padding: 14px;
  color: #dce5f0;
  font-size: 12px;
}

.mini-toolbar span:last-child,
.cue-row span,
.export-field strong {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.06);
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 0 14px 14px;
}

.clip-grid span {
  display: block;
  aspect-ratio: 1.28;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(140deg, #1b2a39, #7a563e 48%, #111820);
}

.sync-ui,
.stack-ui,
.export-ui {
  padding: 18px;
}

.cue-row {
  margin-bottom: 26px;
  color: #dce5f0;
  font-size: 12px;
}

.wave-stack {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 34px 0;
}

.wave-stack span {
  display: block;
  height: 15px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 3px, transparent 3px 8px),
    var(--blue);
}

.wave-stack span:nth-child(2) {
  background-color: #1fb881;
}

.wave-stack span:nth-child(3) {
  background-color: #f0a329;
}

.wave-stack span:nth-child(4) {
  background-color: #8b63ff;
}

.wave-stack i {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 58%;
  width: 2px;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.stack-ui {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 14px;
}

.vertical-stack {
  display: grid;
  gap: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.vertical-stack span {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(150deg, #1c2633, #80604a 48%, #0d1117);
}

.layout-panel {
  display: grid;
  align-content: center;
  gap: 12px;
}

.layout-panel span,
.export-field {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #dce5f0;
  font-size: 12px;
}

.layout-panel span {
  padding: 9px;
}

.export-ui {
  display: grid;
  align-content: center;
  gap: 18px;
  background: #f8fafc;
}

.export-field {
  color: #263141;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 12px;
}

.export-button {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 760;
}

.buyers {
  padding: 84px clamp(22px, 5vw, 64px) 92px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.buyer-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(16, 21, 29, 0.08);
}

.buyer-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 790;
  text-transform: uppercase;
}

.buyer-item h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
}

.buyer-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.launch-paths {
  padding: 84px clamp(22px, 5vw, 64px) 92px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

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

.path-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 21, 29, 0.08);
}

.path-card.featured {
  border-color: rgba(255, 103, 88, 0.72);
  box-shadow: 0 22px 52px rgba(255, 103, 88, 0.16);
}

.path-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 790;
  text-transform: uppercase;
}

.path-card.featured span {
  color: var(--coral);
}

.path-price {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
  font-weight: 820;
}

.path-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.path-card p:not(.path-price) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
}

.path-card p.path-note {
  margin-top: -8px;
  color: var(--ink);
  font-weight: 720;
}

.path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: auto;
}

.path-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 15px;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(33, 103, 243, 0.34);
  text-underline-offset: 5px;
}

.path-link:hover,
.path-link:focus-visible {
  color: var(--blue-deep);
  text-decoration-color: var(--blue-deep);
}

.path-link.secondary-link {
  color: var(--muted);
  text-decoration-color: rgba(92, 101, 114, 0.36);
}

.recording-checklist {
  padding: 82px clamp(22px, 5vw, 64px) 88px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.recording-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.recording-item {
  min-width: 0;
  border-top: 3px solid var(--coral);
  padding-top: 22px;
}

.recording-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 790;
}

.recording-item h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
}

.recording-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.objections {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: start;
  padding: 86px clamp(22px, 5vw, 64px) 92px;
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 12% 18%, rgba(65, 215, 125, 0.14), transparent 30%),
    linear-gradient(135deg, #05080c, #101820 56%, #070b11);
  color: #ffffff;
}

.objections h2 {
  color: #ffffff;
}

.objections-copy {
  max-width: 610px;
}

.objections-copy > p {
  color: var(--muted-dark);
  font-size: 18px;
}

.objection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 42px;
}

.objection-item {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.objection-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 780;
}

.objection-item h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.08;
}

.objection-item p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
}

.demo {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  padding: 82px clamp(22px, 5vw, 64px);
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
}

.demo-copy {
  max-width: 600px;
}

.demo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.demo-strip span {
  display: grid;
  aspect-ratio: 0.72;
  align-items: end;
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76)),
    linear-gradient(150deg, #24384c, #8b6042 48%, #111820);
  color: #ffffff;
  font-size: 13px;
  font-weight: 720;
  box-shadow: 0 20px 45px rgba(16, 21, 29, 0.12);
}

.demo-strip span:nth-child(2) {
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76)),
    linear-gradient(150deg, #163d3b, #925b58 50%, #101821);
}

.demo-strip span:nth-child(3) {
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76)),
    linear-gradient(150deg, #242b44, #9b7436 52%, #101821);
}

.demo-strip span:nth-child(4) {
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76)),
    linear-gradient(150deg, #0e2437, var(--blue) 45%, #101821);
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: center;
  padding: 88px clamp(22px, 5vw, 64px);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 103, 88, 0.12), transparent 30%),
    linear-gradient(135deg, #060a0f, #0d141d 58%, #05080c);
  color: #ffffff;
}

.pricing h2 {
  color: #ffffff;
}

.pricing-copy {
  max-width: 620px;
}

.pricing-copy > p {
  color: var(--muted-dark);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.check-list li::before {
  display: inline-block;
  content: "";
}

.download-note {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.team-pack {
  max-width: 520px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.team-pack h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
}

.team-pack p {
  margin-bottom: 14px;
  color: var(--muted-dark);
  font-size: 15px;
}

.team-pack-link {
  display: inline-block;
  margin-right: 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 5px;
}

.team-pack-link:hover,
.team-pack-link:focus-visible {
  color: var(--coral);
  text-decoration-color: var(--coral);
}

.team-pack-link.secondary-link {
  color: var(--muted-dark);
}

.price-panel {
  border: 2px solid var(--coral);
  border-radius: 8px;
  padding: clamp(34px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.ticket-icon {
  width: 76px;
  height: 46px;
  margin-bottom: 28px;
  border: 4px solid var(--coral);
  border-radius: 7px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.price-panel h3 {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1.05;
}

.price {
  margin-bottom: 0;
  color: var(--coral);
  font-size: clamp(68px, 10vw, 96px);
  line-height: 0.96;
  font-weight: 820;
}

.limit {
  margin: 8px 0 28px;
  color: var(--coral);
  font-size: 26px;
  font-weight: 760;
}

.price-panel .check-list {
  margin-bottom: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  color: #dce5f0;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
  padding: 86px clamp(22px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-heading {
  max-width: 540px;
}

.faq h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.05;
  font-weight: 820;
  letter-spacing: 0;
}

.faq-heading p {
  color: var(--muted);
  font-size: 18px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.2;
}

.faq-list summary::marker {
  color: var(--blue);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: 30px clamp(22px, 5vw, 64px);
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  color: var(--muted-dark);
}

.guide-page {
  background: var(--paper);
}

.guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 64px);
  background: var(--ink);
  color: #ffffff;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: 72px clamp(22px, 5vw, 64px) 82px;
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 103, 88, 0.16), transparent 28%),
    linear-gradient(135deg, #060a0f, #0f1720 58%, #05080c);
  color: #ffffff;
}

.guide-hero-copy {
  max-width: 680px;
}

.guide-kicker {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 790;
  text-transform: uppercase;
}

.guide-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.98;
}

.guide-hero-copy > p {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted-dark);
  font-size: clamp(18px, 1.8vw, 22px);
}

.guide-hero-image {
  min-width: 0;
}

.guide-hero-image img {
  width: min(100%, 900px);
  max-width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 34px 66px rgba(0, 0, 0, 0.4));
}

.guide-content {
  padding: 82px clamp(22px, 5vw, 64px);
  background: var(--paper);
}

.guide-intro {
  max-width: 840px;
  margin-bottom: 48px;
}

.guide-intro h2,
.guide-tool h2,
.guide-cta h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
  font-weight: 820;
}

.guide-intro p,
.guide-tool p,
.guide-cta p {
  color: var(--muted);
  font-size: 18px;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.guide-steps li {
  counter-increment: guide-step;
  min-width: 0;
  border-top: 3px solid var(--blue);
  padding-top: 22px;
}

.guide-steps li::before {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 790;
  content: "0" counter(guide-step);
}

.guide-steps h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.guide-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.guide-tool {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
  padding: 82px clamp(22px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.guide-proof-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-proof-list li {
  border-left: 3px solid var(--coral);
  padding-left: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 690;
}

.guide-cta {
  padding: 82px clamp(22px, 5vw, 64px);
  background:
    radial-gradient(circle at 14% 10%, rgba(65, 215, 125, 0.15), transparent 30%),
    linear-gradient(135deg, #05080c, #101820 56%, #070b11);
  color: #ffffff;
}

.guide-cta h2 {
  color: #ffffff;
}

.guide-cta p {
  max-width: 760px;
  color: var(--muted-dark);
}

.team-page {
  background: var(--paper);
}

.team-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: 72px clamp(22px, 5vw, 64px) 82px;
  background:
    radial-gradient(circle at 82% 26%, rgba(33, 103, 243, 0.18), transparent 29%),
    linear-gradient(135deg, #05080c, #101820 56%, #060a0f);
  color: #ffffff;
}

.team-hero-copy {
  max-width: 700px;
}

.team-kicker {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 790;
  text-transform: uppercase;
}

.team-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.98;
}

.team-hero-copy > p {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted-dark);
  font-size: clamp(18px, 1.8vw, 22px);
}

.team-hero-image {
  min-width: 0;
}

.team-hero-image img {
  width: min(100%, 900px);
  max-width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 34px 66px rgba(0, 0, 0, 0.4));
}

.team-workflow {
  padding: 82px clamp(22px, 5vw, 64px) 88px;
  background: var(--paper);
}

.team-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: team-step;
}

.team-steps li {
  counter-increment: team-step;
  min-width: 0;
  border-top: 3px solid var(--green);
  padding-top: 22px;
}

.team-steps li::before {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 790;
  content: "0" counter(team-step);
}

.team-steps h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.team-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.team-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: center;
  padding: 88px clamp(22px, 5vw, 64px);
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 103, 88, 0.13), transparent 28%),
    linear-gradient(135deg, #05080c, #111821 58%, #070b11);
  color: #ffffff;
}

.team-offer h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.05;
  font-weight: 820;
}

.team-offer-copy {
  max-width: 660px;
}

.team-offer-copy > p {
  color: var(--muted-dark);
  font-size: 18px;
}

.team-offer-panel {
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: clamp(34px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.team-offer-panel h3 {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1.05;
}

.team-offer-panel .price,
.team-offer-panel .limit {
  color: var(--green);
}

.team-fit {
  padding: 84px clamp(22px, 5vw, 64px) 92px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.team-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.team-fit-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(16, 21, 29, 0.08);
}

.team-fit-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 790;
  text-transform: uppercase;
}

.team-fit-item h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
}

.team-fit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.team-cta {
  padding: 82px clamp(22px, 5vw, 64px);
  background:
    radial-gradient(circle at 14% 10%, rgba(65, 215, 125, 0.15), transparent 30%),
    linear-gradient(135deg, #05080c, #101820 56%, #070b11);
  color: #ffffff;
}

.team-cta h2 {
  max-width: 780px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.05;
  font-weight: 820;
}

.team-cta p {
  max-width: 760px;
  color: var(--muted-dark);
  font-size: 18px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .hero-media {
    transform: none;
  }

  .hero-media img {
    width: min(100%, 920px);
    max-width: 100%;
  }

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

  .objections,
  .demo,
  .pricing,
  .faq,
  .guide-hero,
  .guide-tool,
  .team-hero,
  .team-offer {
    grid-template-columns: 1fr;
  }

  .buyer-grid,
  .path-grid,
  .recording-grid,
  .guide-steps,
  .team-steps,
  .team-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyer-grid,
  .recording-grid,
  .guide-steps,
  .team-steps,
  .team-fit-grid {
    grid-template-columns: 1fr;
  }

  .guide-hero-image img,
  .team-hero-image img {
    width: min(100%, 900px);
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 18px;
    background: var(--ink);
  }

  .guide-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .brand {
    font-size: 20px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

  .site-nav .nav-action {
    min-width: 0;
    padding: 9px 12px;
  }

  .hero {
    min-height: auto;
    padding: 46px 18px 44px;
  }

  .hero-proof {
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 0;
  }

  .hero-media {
    overflow: hidden;
    border-radius: 8px;
  }

  .hero-media img {
    width: 150%;
    max-width: none;
    transform: translateX(-14%);
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .workflow,
  .buyers,
  .launch-paths,
  .recording-checklist,
  .objections,
  .demo,
  .pricing,
  .faq,
  .guide-hero,
  .guide-content,
  .guide-tool,
  .guide-cta,
  .team-hero,
  .team-workflow,
  .team-offer,
  .team-fit,
  .team-cta {
    padding: 56px 18px;
  }

  .workflow-steps,
  .hero-proof,
  .path-grid,
  .objection-list,
  .demo-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .mini-ui {
    height: 280px;
  }

  .guide-hero h1 {
    font-size: 42px;
  }

  .team-hero h1 {
    font-size: 42px;
  }
}
