:root {
  --ink: #000000;
  --muted: rgba(0, 0, 0, 0.58);
  --paper: #f9f9f9;
  --paper-strong: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #6bf70e;
  --accent-hover: #5fe000;
  --accent-dark: #58da00;
  --yellow: #f9f047;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  --grotesk: "Manrope", sans-serif;
  --heading-weight: 600;
  --heading-tracking: -0.038em;
  --heading-leading: 1.08;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--grotesk);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1028px, calc(100% - 32px));
  margin: 32px auto 0;
  padding: 6px 6px 6px 24px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  backdrop-filter: blur(18px);
  position: sticky;
  top: 16px;
  z-index: 20;
}

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

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

.nav {
  display: flex;
  gap: 18px;
  color: #000;
  font-size: 14px;
}

.header-cta,
.primary-button,
.secondary-button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header-cta {
  padding: 0 23px;
  min-height: 42px;
  color: #fff;
  background: #000;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-cta:hover {
  color: #000;
  background: var(--accent-hover);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: 560px;
  margin: 38px auto 72px;
  padding: clamp(52px, 7vw, 92px) 28px 44px;
  border-radius: 36px;
  background:
    radial-gradient(ellipse at 50% 112%, rgba(107, 247, 14, 0.72), rgba(107, 247, 14, 0.18) 24%, transparent 46%),
    radial-gradient(circle at 88% 14%, rgba(107, 247, 14, 0.12), transparent 18rem),
    #000;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: radial-gradient(circle, #1f252d 1.2px, transparent 1.4px);
  background-size: 18px 18px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 0;
  margin: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.62;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
  color: #fff;
}

h1 span {
  display: block;
  color: #fff;
}

.hero-text {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.42;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 34px;
}

.primary-button,
.secondary-button {
  min-height: 58px;
  padding: 0 25px;
}

.primary-button {
  background: var(--accent);
  color: #000;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.primary-button:hover {
  color: #000;
  background: #fff;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  gap: 0;
  text-align: center;
}

.metric-strip div {
  padding: 8px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip strong {
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 0.9;
}

.metric-strip span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}

.signal-band p {
  max-width: 940px;
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
}

.official-ad-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 12%, rgba(107, 247, 14, 0.34), transparent 28%),
    #ffffff;
}

.official-ad-copy {
  padding: 12px 4px 12px 10px;
}

.official-ad-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.official-ad-copy p {
  max-width: 470px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.source-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.chatgpt-ad-preview {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0)),
    #f6f6f4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.chatgpt-ad-preview::before {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 28px;
  pointer-events: none;
}

.chat-window {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.12);
}

.chat-window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 16px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
}

.chat-window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e7e7e7;
}

.chat-window-top strong {
  margin-left: auto;
  color: #000;
  font-size: 13px;
  font-weight: 800;
}

.chat-message {
  border-radius: 22px;
  font-size: 14px;
  line-height: 1.45;
}

.chat-message p {
  margin: 0;
}

.user-message {
  width: 78%;
  margin-left: auto;
  padding: 16px 18px;
  background: #f1f1ef;
}

.assistant-message {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 0 10px;
}

.assistant-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 18px;
}

.assistant-message ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.68);
}

.assistant-message li + li {
  margin-top: 6px;
}

.sponsored-label {
  display: inline-flex;
  margin: 18px 0 9px 46px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f1ef;
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.openai-ad-card {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 16px;
  margin-left: 46px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  background: #fff;
}

.ad-creative {
  display: grid;
  align-content: end;
  min-height: 154px;
  padding: 14px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 20%, rgba(107, 247, 14, 0.98), transparent 34%),
    linear-gradient(150deg, #111 0%, #2d2d2d 62%, #f9f047 160%);
  color: #fff;
}

.ad-creative span,
.ad-creative small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ad-creative strong {
  margin: 8px 0;
  font-size: 22px;
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
}

.ad-content {
  min-width: 0;
}

.advertiser-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.favicon-dot {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 900;
}

.openai-ad-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
}

.openai-ad-card p {
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  line-height: 1.42;
}

.landing-url {
  color: #0d6f00;
  font-size: 12px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 76px;
}

.two-column {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 64px;
}

.section-kicker {
  color: rgba(0, 0, 0, 0.46);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h2 {
  max-width: 940px;
  margin-bottom: 28px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: none;
}

.method-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.method-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  color: var(--accent-dark);
  font-size: 36px;
  font-weight: 700;
}

.method-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
}

.method-grid p,
.proof-copy p,
.offer-panel p,
.section-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.problem-section {
  align-items: start;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.pain-grid article {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  color: #344354;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.03em;
  box-shadow: none;
}

.deliverables {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: #fff;
  box-shadow: none;
}

.deliverables h2,
.examples h2,
.process-section h2 {
  margin-bottom: 28px;
}

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

.deliverable-grid article {
  min-height: 158px;
  padding: 24px;
  border-radius: 28px;
  background: #f9f9f9;
}

.deliverable-grid strong {
  display: block;
  margin-bottom: 28px;
  color: #000;
  font-size: 28px;
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
}

.deliverable-grid span {
  color: #344354;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.examples {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 0%, rgba(107, 247, 14, 0.18), transparent 20rem),
    #000;
  color: #fff;
}

.examples .section-kicker {
  color: var(--accent);
}

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

.example-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.example-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(107, 247, 14, 0.16);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.example-grid h3 {
  min-height: 58px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
}

.example-grid p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.48;
}

.example-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

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

.process-line article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.process-line span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 15px;
  background: var(--accent);
  color: #000;
  font-weight: 900;
}

.process-line p {
  margin: 0;
  color: #344354;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.proof {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.proof-copy {
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(107, 247, 14, 0.22), transparent 18rem),
    #000;
  color: #fff;
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.proof-tile {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.proof-tile.tall {
  grid-row: span 2;
  background: var(--accent);
}

.proof-tile span {
  display: block;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-tile strong {
  display: block;
  max-width: 320px;
  font-size: 25px;
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
  font-weight: var(--heading-weight);
}

.offer-panel {
  display: grid;
  grid-template-columns: 0.9fr minmax(360px, 0.72fr);
  gap: 42px;
  padding: clamp(26px, 5vw, 58px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 20%, rgba(107, 247, 14, 0.2), transparent 22rem),
    #000;
  color: #fff;
}

.offer-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  background: #fffdf7;
  color: var(--ink);
  font: 700 16px var(--grotesk);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(107, 247, 14, 0.2);
}

.lead-form button {
  min-height: 58px;
  margin-top: 4px;
  border: 0;
  background: var(--accent);
  color: #000;
  cursor: pointer;
  font: 900 16px var(--grotesk);
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.form-status {
  min-height: 18px;
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: #0d6f00;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.form-status[data-state="loading"] {
  color: rgba(0, 0, 0, 0.62);
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 48px;
  align-items: end;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding: 8px 0 28px;
  color: var(--muted);
}

.footer-brand {
  max-width: 520px;
}

.footer-logo {
  display: block;
  width: 96px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.footer-note {
  text-align: right;
}

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

  .hero,
  .two-column,
  .proof,
  .offer-panel,
  .official-ad-section {
    grid-template-columns: 1fr;
  }

  .deliverable-grid,
  .example-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 20px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 88px;
  }

  .hero {
    width: calc(100% - 20px);
    margin: 14px auto 44px;
    padding: 46px 18px 26px;
    border-radius: 26px;
    background:
      radial-gradient(ellipse at 50% 100%, rgba(107, 247, 14, 0.64), rgba(107, 247, 14, 0.14) 30%, transparent 58%),
      #000;
  }

  h1 {
    max-width: 340px;
    margin-bottom: 18px;
    font-size: clamp(34px, 10.8vw, 42px);
    line-height: 1.02;
  }

  h1 span {
    font-size: inherit;
  }

  .hero-text {
    width: min(330px, 100%);
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    width: min(330px, 100%);
    gap: 10px;
    margin: 26px 0 32px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
  }

  .method-grid,
  .proof-grid,
  .pain-grid,
  .deliverable-grid,
  .example-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .metric-strip div {
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .metric-strip div:last-child {
    border-right: 0;
  }

  .metric-strip strong {
    font-size: 28px;
  }

  .metric-strip span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .signal-band {
    width: calc(100% - 24px);
    margin-bottom: 46px;
    padding: 22px;
    border-radius: 22px;
  }

  .signal-band p {
    font-size: 23px;
  }

  .official-ad-section {
    width: calc(100% - 24px);
    margin-bottom: 46px;
    padding: 18px;
    border-radius: 24px;
    gap: 22px;
  }

  .official-ad-copy {
    padding: 4px 2px;
  }

  .official-ad-copy h2 {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .official-ad-copy p {
    font-size: 15px;
    line-height: 1.48;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 4px 0 24px;
  }

  .footer-note {
    text-align: left;
  }

  .chatgpt-ad-preview {
    min-height: auto;
    padding: 14px;
    border-radius: 22px;
  }

  .chatgpt-ad-preview::before {
    display: none;
  }

  .chat-window {
    width: 100%;
    padding: 14px;
    border-radius: 22px;
  }

  .user-message {
    width: 100%;
    padding: 14px;
  }

  .assistant-message {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    font-size: 13px;
  }

  .assistant-avatar {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .openai-ad-card {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding: 12px;
    border-radius: 18px;
  }

  .ad-creative {
    min-height: 112px;
  }

  .openai-ad-card h3 {
    font-size: 18px;
  }

  .sponsored-label {
    margin-left: 0;
  }

  .section {
    width: calc(100% - 24px);
    margin-bottom: 48px;
  }

  .two-column {
    gap: 14px;
  }

  .problem-section {
    padding: 0 22px;
  }

  .problem-section .pain-grid {
    margin-left: -22px;
    margin-right: -22px;
  }

  .process-section {
    padding: 0 22px;
  }

  .process-section .process-line {
    margin-left: -22px;
    margin-right: -22px;
  }

  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .process-line article {
    min-height: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .process-line span {
    width: 42px;
    height: 42px;
    margin-bottom: 38px;
    border-radius: 14px;
  }

  .process-line p {
    font-size: 13px;
    line-height: 1.32;
    font-weight: 700;
  }

  .section-kicker {
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  h2 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .section-lead,
  .method-grid p,
  .proof-copy p,
  .offer-panel p {
    font-size: 15px;
    line-height: 1.5;
  }

  .method-grid,
  .deliverables,
  .examples,
  .offer-panel {
    border-radius: 24px;
  }

  .deliverables {
    padding: 22px;
  }

  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .deliverable-grid article {
    padding: 16px;
    border-radius: 18px;
  }

  .deliverable-grid strong {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .deliverable-grid span {
    font-size: 13px;
    line-height: 1.28;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }

  .method-grid article {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .method-grid span {
    margin-bottom: 26px;
    font-size: 34px;
  }

  .method-grid h3 {
    font-size: 17px;
  }

  .method-grid p {
    font-size: 13px;
    line-height: 1.38;
  }

  .pain-grid article,
  .example-grid article,
  .proof-copy,
  .proof-tile {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .example-grid span,
  .proof-tile span {
    margin-bottom: 18px;
  }

  .pain-grid article {
    font-size: 16px;
  }

  .examples {
    padding: 22px;
  }

  .example-grid h3 {
    min-height: auto;
    font-size: 19px;
  }

  .proof {
    gap: 12px;
  }

  .proof-copy h2 {
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 500;
  }

  .proof-copy p {
    font-size: 15px;
    line-height: 1.5;
  }

  .proof-tile.tall {
    grid-row: auto;
    background: rgba(107, 247, 14, 0.86);
  }

  .proof-tile strong {
    max-width: none;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-weight: 500;
  }

  .proof-tile span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .offer-panel {
    gap: 22px;
    padding: 22px;
  }

  .lead-form {
    padding: 14px;
    border-radius: 20px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 50px;
  }
}
