:root {
  --ink: #121417;
  --muted: #5a626d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #dfe3e1;
  --teal: #0b7a75;
  --teal-dark: #075653;
  --coral: #e25f4f;
  --amber: #f4b84a;
  --mint: #dff4ed;
  --shadow: 0 24px 70px rgba(18, 20, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 10px 30px rgba(18, 20, 23, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  font-size: 0.78rem;
  color: currentColor;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta {
  padding: 11px 16px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
}

.site-header.is-scrolled .nav-cta,
.site-header.nav-active .nav-cta {
  color: #ffffff;
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 106px clamp(18px, 5vw, 72px) 46px;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.9) 0%, rgba(10, 12, 14, 0.74) 39%, rgba(10, 12, 14, 0.22) 72%),
    linear-gradient(0deg, rgba(10, 12, 14, 0.58), rgba(10, 12, 14, 0.08));
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd38a;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 12ch;
  font-size: clamp(2.85rem, 6.4vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 16px 36px rgba(11, 122, 117, 0.3);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

section:not(.hero):not(.proof-strip) {
  padding: clamp(72px, 10vw, 124px) 0;
}

.proof-strip {
  padding: 18px 0;
  background: var(--ink);
  color: #ffffff;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.proof-stats div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.proof-stats dt {
  font-size: 1.35rem;
  font-weight: 800;
}

.proof-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.section-band {
  background: #ffffff;
}

.problem-grid,
.preview-grid,
.demo-panel,
.agencies-grid,
.trust-grid,
.pricing-grid,
.faq-grid,
.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.problem-list,
.steps,
.case-grid,
.agency-feature-grid,
.trust-points {
  display: grid;
  gap: 18px;
}

.problem-list {
  grid-template-columns: repeat(3, 1fr);
}

.problem-list article,
.step,
.case-grid article,
.agency-feature-grid article,
.trust-points article,
.price-card,
.interface-shell,
.demo-card,
.agency-panel,
.compliance-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.problem-list article,
.step,
.case-grid article,
.agency-feature-grid article,
.trust-points article {
  padding: 24px;
}

.problem-list article {
  min-height: 220px;
}

.icon,
.step-number,
.badge,
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  background: var(--mint);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--mint);
}

.step:nth-child(2)::after {
  background: #ffe8b8;
}

.step:nth-child(3)::after {
  background: #fbd8d3;
}

.step-number {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  color: #ffffff;
  background: var(--ink);
}

.product-preview {
  background: var(--paper);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 5px #ffffff;
}

.interface-shell {
  padding: 22px;
  box-shadow: var(--shadow);
}

.interface-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.interface-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.call-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #f6f8f5;
}

.call-card small,
.outcome-row small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.status {
  min-width: 86px;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.78rem;
}

.meter {
  height: 12px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0ec;
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.script-lines {
  display: grid;
  gap: 12px;
}

.script-lines span {
  height: 14px;
  border-radius: 999px;
  background: #e8ece7;
}

.script-lines span:nth-child(2) {
  width: 78%;
}

.script-lines span:nth-child(3) {
  width: 56%;
}

.outcome-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.outcome-row div {
  padding: 18px;
  border-radius: 8px;
  background: #fff7e7;
}

.outcome-row div:nth-child(2) {
  background: #f8e5e2;
}

.outcome-row strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
}

.demo-section {
  background: #ffffff;
}

.demo-panel {
  align-items: center;
  padding: clamp(28px, 6vw, 58px);
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
}

.demo-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.demo-card {
  padding: clamp(24px, 5vw, 42px);
  background: #fbfaf6;
  color: var(--ink);
}

.demo-card-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.demo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.demo-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.demo-card p {
  color: var(--muted);
}

.demo-highlights {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.demo-highlights li {
  position: relative;
  padding: 14px 14px 14px 42px;
  color: var(--ink);
  background: #f2f7f4;
  border: 1px solid #d9e8df;
  border-radius: 8px;
  font-weight: 800;
}

.demo-highlights li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(11, 122, 117, 0.12);
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.case-grid article {
  min-height: 190px;
}

.agencies {
  background: var(--paper);
}

.agencies-grid {
  align-items: center;
  margin-bottom: 22px;
}

.agency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.agency-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 5vw, 42px);
  box-shadow: var(--shadow);
}

.agency-metric {
  padding: 18px;
  border-radius: 8px;
  background: #f7faf8;
}

.agency-metric span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.agency-metric strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.agency-feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.agency-feature-grid article {
  min-height: 270px;
}

.compliance-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--ink);
  color: #ffffff;
}

.compliance-note strong {
  flex: 0 0 auto;
}

.compliance-note span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.trust {
  background: #eef7f2;
}

.trust-points {
  grid-template-columns: 1fr;
}

.pricing-grid {
  align-items: center;
}

.price-card {
  padding: clamp(28px, 5vw, 48px);
}

.badge {
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.8rem;
}

.price-card h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

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

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

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
}

details p {
  padding: 0 20px 20px;
}

.waitlist {
  padding-top: 0;
}

.waitlist-panel {
  align-items: center;
  padding: clamp(32px, 6vw, 58px);
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
}

.waitlist-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.signup-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
}

label,
label span {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #f8f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.success {
  color: var(--teal-dark);
  font-weight: 800;
}

.form-note.error {
  color: var(--coral);
  font-weight: 800;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 15px;
  }

  .nav-cta {
    color: #ffffff;
    background: var(--teal);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .problem-grid,
  .preview-grid,
  .demo-panel,
  .agencies-grid,
  .trust-grid,
  .pricing-grid,
  .faq-grid,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .problem-list,
  .steps,
  .case-grid,
  .agency-feature-grid {
    grid-template-columns: 1fr;
  }

  .problem-list article,
  .step,
  .case-grid article,
  .agency-feature-grid article {
    min-height: auto;
  }

  .compliance-note {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 78vh;
    padding: 96px 18px 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 12, 14, 0.92), rgba(10, 12, 14, 0.64)),
      linear-gradient(0deg, rgba(10, 12, 14, 0.62), rgba(10, 12, 14, 0.22));
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 13vw, 3.85rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }

  .proof-stats div {
    padding-left: 0;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .outcome-row {
    grid-template-columns: 1fr;
  }

  .waitlist-panel {
    width: calc(100% - 24px);
    padding: 28px 18px;
  }

  .signup-form {
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
