:root {
  --bg: #ffffff;
  --ink: #161616;
  --muted: #626262;
  --line: #dddddd;
  --soft: #f6f3ee;
  --accent: #e85d24;
  --accent-dark: #b84217;
  --green: #2b6f4f;
  --shadow: 0 18px 44px rgba(22, 22, 22, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 221, 221, 0.8);
  backdrop-filter: blur(12px);
}

.brand,
.header-cta,
.nav {
  font-size: 14px;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.nav a:hover,
.header-cta:hover {
  color: var(--accent-dark);
}

.header-cta {
  justify-self: end;
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 142px);
  padding: clamp(34px, 5.5vw, 70px) clamp(18px, 4vw, 56px) clamp(30px, 4.5vw, 52px);
}

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

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

h1 {
  max-width: 13ch;
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  font-size: clamp(31px, 4.2vw, 56px);
  line-height: 1;
  font-weight: 800;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-lede {
  max-width: 680px;
  margin-top: 26px;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 18px rgba(232, 93, 36, 0.24);
}

.button-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  background: white;
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.quick-proof {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
}

.quick-proof li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quick-proof li::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-height: min(650px, 72vh);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.band,
.split,
.package,
.examples,
.closing {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
}

.band {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-copy,
.package-heading {
  max-width: 660px;
}

.section-copy p,
.split > div:first-child p,
.package-heading p,
.examples > div:first-child p,
.price-panel p {
  margin-top: 20px;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.signal-list div,
.timeline-row,
.example-card,
.price-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.signal-list div {
  display: grid;
  gap: 7px;
  padding: 22px;
}

.signal-list strong,
.timeline-row strong,
.example-card strong {
  font-size: 18px;
}

.signal-list span,
.timeline-row p,
.example-card p,
.deliverables p,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px;
}

.timeline-row span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.timeline-row p {
  margin-top: 7px;
  font-size: 16px;
}

.package {
  background: #161616;
  color: white;
}

.package p {
  color: rgba(255, 255, 255, 0.72);
}

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

.deliverables article {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.deliverables svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.deliverables p {
  font-size: 15px;
}

.examples {
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 1fr);
}

.example-grid {
  display: grid;
  gap: 14px;
}

.example-stack {
  display: grid;
  gap: 18px;
}

.campaign-preview {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.example-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.example-card span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.example-card p {
  font-size: 16px;
}

.closing {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.78fr);
  align-items: start;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.price-panel,
.lead-form {
  padding: clamp(24px, 4vw, 38px);
}

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

.price-panel li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 750;
}

.price-panel li::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.payment-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.payment-actions .button {
  width: fit-content;
}

.payment-actions p {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.lead-form h2 {
  font-size: clamp(27px, 3vw, 38px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
}

input:focus,
select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(232, 93, 36, 0.18);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
  font: inherit;
  font-size: 15px;
}

.form-note {
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.simple-page {
  min-height: 100vh;
  background: var(--soft);
}

.thank-you {
  display: grid;
  gap: clamp(46px, 8vw, 90px);
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 70px) 0;
}

.thank-you section {
  padding: clamp(26px, 5vw, 48px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thank-you h1 {
  max-width: 11ch;
}

.thank-you p {
  max-width: 660px;
  margin-top: 24px;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .band,
  .split,
  .examples,
  .closing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    max-height: none;
  }

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

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

  .brand span:last-child {
    max-width: 105px;
    line-height: 1.05;
  }

  .header-cta {
    font-size: 13px;
  }

  h1 {
    max-width: 11ch;
    font-size: 43px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .payment-actions .button {
    width: 100%;
  }

  .deliverables {
    grid-template-columns: 1fr;
  }
}
