:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5d6b7c;
  --line: #d9e2ee;
  --paper: #ffffff;
  --wash: #f6f8fb;
  --blue: #0064d8;
  --blue-dark: #064991;
  --green: #168354;
  --red: #b42318;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #eef4fb;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(246, 248, 251, 0.98) 0%, rgba(246, 248, 251, 0.95) 46%, rgba(246, 248, 251, 0.46) 74%, rgba(246, 248, 251, 0.10) 100%),
    url("assets/hero-preview.png");
  background-position: 62% center;
  background-size: cover;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(0, 100, 216, 0.22);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 100, 216, 0.24);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(0, 100, 216, 0.95), rgba(22, 131, 84, 0.9));
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 100, 216, 0.22);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
}

.nav-links {
  gap: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(217, 226, 238, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links .nav-cta {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
}

.nav-links .nav-cta:hover {
  color: #ffffff;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 120px;
}

.landing-hero {
  min-height: 720px;
}

.landing-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.52fr);
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 96px;
}

.hero-copy {
  min-width: 0;
}

.landing-hero h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 5.2vw, 5rem);
}

.landing-hero .lede {
  max-width: 640px;
}

.landing-actions {
  margin-bottom: 14px;
}

.button-large {
  min-height: 60px;
  padding: 0 24px;
  font-size: 1.04rem;
}

.under-cta {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 750;
}

.signal-panel {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(0, 100, 216, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: blur(18px);
}

.signal-panel-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.signal-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.signal-steps div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.signal-steps span {
  display: inline-grid;
  grid-row: span 2;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 950;
}

.signal-steps strong {
  font-size: 1rem;
}

.signal-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 6.6vw, 5.75rem);
  line-height: 0.94;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 100, 216, 0.26);
}

.button.primary.copied {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(22, 131, 84, 0.22);
}

.inline-copy.copied {
  border-color: rgba(22, 131, 84, 0.42);
  color: var(--green);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 100, 216, 0.28);
  outline-offset: 3px;
}

.copy-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(0, 100, 216, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-strip,
.split-section,
.benefits,
.app-copy,
.keywords-section,
.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  transform: translateY(-44px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.landing-proof {
  transform: translateY(-32px);
}

.anchor-alias {
  position: relative;
  top: -90px;
  display: block;
  height: 0;
}

.proof-strip div {
  min-height: 118px;
  padding: 24px 28px 24px 0;
}

.proof-strip div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.38rem;
}

.proof-strip span {
  color: var(--muted);
}

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

.punch-section {
  padding: 36px 0 54px;
}

.section-header.center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.punch-grid article {
  min-height: 150px;
  padding: 20px 24px 0 0;
  border-top: 2px solid var(--line);
}

.punch-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 950;
}

.punch-grid h3 {
  font-size: 1.22rem;
}

.punch-grid p {
  margin: 0;
  color: var(--muted);
}

.output-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 54px 0 64px;
  border-top: 1px solid var(--line);
}

.output-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.output-list li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 850;
}

.output-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.focused-cta {
  display: grid;
  justify-items: center;
  text-align: center;
}

.focused-cta h2 {
  max-width: 780px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 38px 0 74px;
}

.section-copy p,
.section-header p,
.final-cta p,
.copy-panel p {
  color: var(--muted);
}

.inline-copy {
  margin-top: 8px;
  border-color: rgba(0, 100, 216, 0.28);
  color: var(--blue-dark);
}

.preview-card {
  overflow: hidden;
  border: 1px solid #cfd9e7;
  border-radius: 8px;
  background: #101827;
  box-shadow: var(--shadow);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-toolbar div {
  display: flex;
  gap: 8px;
}

.preview-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #7e8ca3;
}

.preview-toolbar button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(234, 242, 255, 0.18);
  border-radius: 8px;
  background: rgba(234, 242, 255, 0.08);
  color: #eaf2ff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
}

.preview-toolbar button.copied {
  border-color: rgba(80, 219, 155, 0.5);
  color: #9df0c8;
}

pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #eaf2ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95rem;
  line-height: 1.62;
}

.benefits {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-grid article,
.copy-panel,
.keywords-section,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
}

.benefit-grid article {
  padding: 22px;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.algorithm-section {
  padding: 16px 0 74px;
}

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

.algorithm-grid article,
.algorithm-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
}

.algorithm-grid article {
  padding: 22px;
}

.algorithm-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 100, 216, 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.algorithm-grid p,
.algorithm-note p,
.algorithm-footnote {
  margin-bottom: 0;
  color: var(--muted);
}

.algorithm-footnote {
  margin-top: 16px;
  font-size: 0.93rem;
}

.app-copy {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 46px 0 70px;
}

.copy-panel {
  padding: 28px;
}

.copy-panel p:last-child {
  margin-bottom: 0;
}

.keywords-section {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
}

.section-header.compact {
  margin-bottom: 0;
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keywords li {
  padding: 9px 12px;
  border: 1px solid #cbd9e9;
  border-radius: 999px;
  background: #f7fbff;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 850;
}

.final-cta {
  margin-top: 26px;
  margin-bottom: 60px;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
    url("assets/hero-preview.png");
  background-position: center;
  background-size: cover;
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 24px;
}

.page-shell {
  min-height: 100vh;
  padding-bottom: 64px;
}

.compact-nav {
  padding-top: 24px;
}

.page-alert {
  position: fixed;
  z-index: 1000;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  margin: 0;
  border: 4px solid #b42318;
  border-left-width: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff7f7 0%, #ffe0e0 100%);
  color: #5f1717;
  box-shadow: 0 28px 70px rgba(180, 35, 24, 0.32);
}

.page-alert[hidden] {
  display: none !important;
}

.page-alert:focus {
  outline: 4px solid rgba(207, 46, 46, 0.24);
  outline-offset: 3px;
}

.page-alert > div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
}

.page-alert span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #b42318;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 950;
}

.page-alert strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.18;
}

.page-alert p {
  max-width: 920px;
  margin: 0;
  color: #6d1b1b;
  font-weight: 850;
  font-size: 1rem;
  line-height: 1.38;
}

.form-hero,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 44px;
}

.method-hero,
.method-detail,
.method-caveat {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.method-hero {
  padding: 82px 0 36px;
}

.method-detail {
  display: grid;
  gap: 14px;
  padding: 8px 0 36px;
}

.method-detail article,
.method-caveat {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
}

.method-detail article {
  display: grid;
  grid-template-columns: 54px 0.42fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
}

.method-detail span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 950;
}

.method-detail h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.method-detail p,
.method-caveat p {
  margin: 0;
  color: var(--muted);
}

.method-caveat {
  display: grid;
  gap: 14px;
  margin-bottom: 64px;
  padding: 28px;
  border-color: rgba(0, 100, 216, 0.24);
}

.method-caveat h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.method-caveat .button {
  justify-self: start;
}

.form-hero {
  position: relative;
}

.form-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 18px;
  right: -80px;
  width: min(620px, 58vw);
  height: 620px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 100, 216, 0.12), rgba(22, 131, 84, 0.06) 45%, rgba(246, 248, 251, 0) 70%);
  pointer-events: none;
}

.form-hero h1,
.checkout-layout h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-assurance li {
  padding: 9px 12px;
  border: 1px solid rgba(0, 100, 216, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.signup-card,
.order-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.signup-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-card-header {
  padding-bottom: 4px;
}

.form-card-header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.form-card-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd9e9;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 100, 216, 0.18);
}

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

.form-note.is-loading,
.form-note.is-success,
.form-note.is-error {
  border-radius: 8px;
  padding: 12px 13px;
}

.form-note.is-loading {
  border: 1px solid rgba(0, 100, 216, 0.22);
  background: #f3f8ff;
  color: var(--blue-dark);
  font-weight: 800;
}

.form-note.is-success {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin-top: 10px;
  border: 2px solid #168354;
  border-left-width: 12px;
  background: linear-gradient(135deg, #f3fff8 0%, #e5f7ed 100%);
  color: #0f5f3c;
  box-shadow: 0 18px 44px rgba(22, 131, 84, 0.16);
  font-size: 1rem;
  line-height: 1.38;
}

.form-note.is-success .status-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #168354;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
}

.form-note.is-success .status-copy {
  display: grid;
  gap: 5px;
}

.form-note.is-success strong {
  color: #0b5334;
  font-size: 1.12rem;
  line-height: 1.15;
}

.form-note.is-success .status-copy > span {
  color: #0f5f3c;
  font-weight: 820;
}

.form-note.is-error {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 10px;
  min-height: 92px;
  padding: 18px 20px 18px 18px;
  border: 4px solid #b42318;
  border-left-width: 20px;
  background:
    linear-gradient(135deg, #fffafa 0%, #ffe7e7 100%);
  color: #6d1b1b;
  box-shadow: 0 24px 58px rgba(180, 35, 24, 0.26);
  font-size: 1rem;
  line-height: 1.4;
}

.form-note.is-error:focus {
  outline: 4px solid rgba(180, 35, 24, 0.28);
  outline-offset: 4px;
}

.form-note.is-error .status-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #b42318;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(180, 35, 24, 0.24);
}

.form-note.is-error .status-copy {
  display: grid;
  gap: 7px;
}

.form-note.is-error strong {
  color: #5f1717;
  font-size: 1rem;
  line-height: 1.15;
}

.form-note.is-error .status-copy > span {
  color: #6d1b1b;
  font-size: 1rem;
  font-weight: 850;
}

.signup-benefits {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.signup-benefits article {
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.algorithm-note {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 24px;
}

.algorithm-note h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.method-list {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
}

.method-list li {
  padding-left: 4px;
}

.method-list li::marker {
  color: var(--blue-dark);
  font-weight: 900;
}

.method-punch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-punch span {
  display: block;
  min-height: 0;
  padding: 13px 14px;
  color: var(--blue-dark);
  font-size: 0.94rem;
  font-weight: 900;
}

.method-punch span + span {
  border-left: 1px solid var(--line);
}

.method-disclaimer {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.crawl-results {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  padding: 26px 0 42px;
}

.crawl-results.is-refreshing {
  opacity: 0.72;
}

.crawl-results.is-failed .section-header h2 {
  color: #5f1717;
}

.crawl-history {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.crawl-history-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.crawl-history-header h3 {
  margin: 0;
  font-size: 1.08rem;
}

.crawl-history-header p:last-child {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.crawl-history-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.crawl-history-item {
  display: grid;
  gap: 4px;
  min-height: 132px;
  padding: 14px;
  border: 1px solid #cbd9e9;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.crawl-history-item:hover,
.crawl-history-item.is-active {
  border-color: rgba(0, 100, 216, 0.45);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.crawl-history-item.is-active {
  background: #f7fbff;
}

.crawl-history-item span {
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crawl-history-item strong {
  font-size: 1rem;
  line-height: 1.18;
}

.crawl-history-item small,
.crawl-history-item em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.crawl-history-item em {
  overflow: hidden;
  text-overflow: ellipsis;
}

.idea-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.07);
}

.input-summary-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.input-summary-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.input-summary-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.input-summary-card dl div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
}

.input-summary-card dt {
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.input-summary-card dd {
  margin: 0;
  color: var(--muted);
}

.idea-card {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
  padding: 26px;
  border-color: rgba(0, 100, 216, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
}

.idea-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.generated-app-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.generated-app-card p {
  max-width: 780px;
}

.idea-elevator {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 84, 180, 0.18);
  color: var(--ink);
  font-weight: 850;
}

.idea-elevator strong {
  color: var(--blue-dark);
}

.idea-pending-card {
  grid-template-columns: minmax(0, 1fr);
}

.crawl-failure-card {
  grid-template-columns: minmax(0, 1fr);
  border: 4px solid #b42318;
  border-left-width: 18px;
  background: linear-gradient(135deg, #fffafa, #ffe8e8);
  box-shadow: 0 24px 58px rgba(180, 35, 24, 0.2);
}

.crawl-failure-card .eyebrow {
  color: #b42318;
}

.crawl-failure-card h3 {
  color: #5f1717;
}

.crawl-failure-card p {
  max-width: 820px;
  color: #6d1b1b;
  font-weight: 800;
}

.bridge-id {
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--blue-dark);
  overflow-wrap: anywhere;
}

.generated-app-card .button {
  justify-self: end;
  white-space: nowrap;
}

.idea-card p,
.review-card p,
.review-card dd {
  color: var(--muted);
}

.idea-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.idea-columns strong {
  display: block;
  margin-bottom: 9px;
}

.idea-columns ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.idea-columns li,
.search-plan li {
  padding: 7px 10px;
  border: 1px solid rgba(0, 100, 216, 0.14);
  border-radius: 999px;
  background: #f7fbff;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.search-plan {
  display: grid;
  gap: 10px;
}

.search-plan ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-grid {
  display: grid;
  gap: 26px;
}

.app-review-pair {
  display: grid;
  gap: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.app-review-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.app-review-header span {
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.app-review-header h3 {
  margin: 4px 0 3px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.app-review-header a {
  color: var(--ink);
  text-decoration: none;
}

.app-review-header a:hover {
  text-decoration: underline;
}

.app-review-header p {
  margin: 0;
  color: var(--muted);
}

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

.review-carousel {
  position: relative;
  display: grid;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
}

.review-carousel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--line);
}

.review-carousel.critical {
  border-color: rgba(196, 61, 61, 0.26);
}

.review-carousel.critical::before {
  background: rgba(196, 61, 61, 0.72);
}

.review-carousel.favorable {
  border-color: rgba(22, 131, 84, 0.24);
}

.review-carousel.favorable::before {
  background: rgba(22, 131, 84, 0.7);
}

.carousel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.carousel-heading h4 {
  margin: 0;
  font-size: 1rem;
}

.carousel-heading span {
  white-space: nowrap;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.carousel-track {
  display: grid;
}

.review-card {
  display: none;
  gap: 10px;
  min-height: 318px;
}

.review-card.is-active {
  display: grid;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.review-label {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.review-content {
  margin-bottom: 0;
  max-height: clamp(10rem, 28vh, 22rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 10px;
  line-height: 1.58;
  scrollbar-gutter: stable;
  white-space: pre-wrap;
  -webkit-overflow-scrolling: touch;
}

.review-content::-webkit-scrollbar {
  width: 8px;
}

.review-content::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
}

.review-content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 84, 180, 0.28);
}

.review-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.review-card dl div {
  display: grid;
  gap: 2px;
}

.review-card dt {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card dd {
  margin: 0;
  min-width: 0;
}

.review-card a {
  color: var(--blue-dark);
  font-weight: 850;
}

.source-link {
  justify-self: start;
  font-size: 0.92rem;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.carousel-controls button {
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0;
}

.carousel-controls button:hover {
  text-decoration: underline;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

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

.order-summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 20px;
  padding: 20px;
}

.order-summary span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.checkout-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.checkout-legal-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 100, 216, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
}

.checkout-legal-note a,
.agreement-check a,
.legal-document a {
  color: var(--blue-dark);
  font-weight: 900;
}

.agreement-check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(0, 100, 216, 0.18);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.agreement-check input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.agreement-check span {
  min-width: 0;
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
}

.refund-warning {
  border-color: rgba(180, 35, 24, 0.34);
  background: #fff5f5;
  color: #5c1a16;
}

.refund-warning input {
  accent-color: var(--red);
}

.refund-warning-strong {
  border-width: 2px;
  background: #fff0f0;
  color: #3f1210;
  font-weight: 860;
}

.checkout-card.is-complete {
  border-color: rgba(22, 131, 84, 0.42);
}

.developer-prompt-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px dashed rgba(0, 95, 199, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.developer-prompt-card h2 {
  margin: 0;
  font-size: 1.28rem;
}

.developer-prompt-card p {
  margin: 0;
  color: var(--muted);
}

.developer-prompt-card .button {
  justify-self: start;
}

.legal-page .legal-hero {
  padding-bottom: 18px;
}

.legal-document {
  display: grid;
  gap: 14px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 72px;
}

.legal-document article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
}

.legal-document h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.08;
}

.legal-document p {
  color: var(--muted);
}

.legal-document p:last-child,
.legal-document ul:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-emphasis {
  border-color: rgba(0, 100, 216, 0.32) !important;
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%) !important;
}

.delivery-form {
  display: grid;
  gap: 12px;
}

.developer-prompt-output {
  min-height: 220px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.45;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(246, 248, 251, 0.98) 0%, rgba(246, 248, 251, 0.88) 54%, rgba(246, 248, 251, 0.42) 100%),
      url("assets/hero-preview.png");
    background-position: 58% bottom;
  }

  .nav {
    align-items: flex-start;
    gap: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .hero-content {
    padding-top: 86px;
  }

  .landing-hero {
    min-height: auto;
  }

  .form-hero::before {
    display: none;
  }

  .proof-strip,
  .split-section,
  .benefit-grid,
  .algorithm-grid,
  .app-copy,
  .keywords-section,
  .form-hero,
  .checkout-layout,
  .landing-hero-content,
  .algorithm-note,
  .idea-columns,
  .input-summary-card,
  .review-grid,
  .pair-reviews,
  .sentiment-review-columns,
  .punch-grid,
  .output-section,
  .output-list,
  .method-punch {
    grid-template-columns: 1fr;
  }

  .generated-app-card .button {
    justify-self: start;
  }

  .app-review-header {
    align-items: start;
    display: grid;
  }

  .crawl-history-header {
    display: grid;
    align-items: start;
  }

  .input-summary-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .proof-strip {
    transform: translateY(-24px);
  }
}

@media (max-width: 560px) {
  .nav,
  .hero-content,
  .proof-strip,
  .split-section,
  .benefits,
  .app-copy,
  .keywords-section,
  .punch-section,
  .output-section,
  .method-hero,
  .method-detail,
  .method-caveat,
  .legal-document,
  .final-cta,
  .form-hero,
  .checkout-layout,
  .signup-benefits,
  .algorithm-note,
  .crawl-results {
    width: min(100% - 24px, 480px);
  }

  .nav {
    display: block;
  }

  .nav-links {
    margin-top: 16px;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .landing-hero h1 {
    font-size: clamp(3rem, 14.2vw, 4.1rem);
  }

  .landing-hero-content {
    gap: 28px;
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .method-detail article {
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof-strip div,
  .signal-panel,
  .punch-grid article,
  .method-detail article,
  .method-caveat,
  .copy-panel,
  .keywords-section,
  .output-list li,
  .final-cta,
  .signup-card,
  .order-summary {
    padding: 22px;
  }

  .landing-proof {
    transform: translateY(-14px);
  }

  .form-hero,
  .checkout-layout {
    padding-top: 56px;
  }

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

  .review-carousel {
    padding: 18px;
  }

  .review-card dl {
    grid-template-columns: 1fr;
  }

  pre {
    font-size: 0.84rem;
  }
}

/* MarcusKim.com Review Radar surface */
:root {
  color-scheme: light;
  --ink: #0e211c;
  --deep-ink: #14352d;
  --muted: #52615b;
  --line: rgba(14, 33, 28, .18);
  --paper: #fff8e8;
  --wash: #f6efe2;
  --blue: #3158f5;
  --blue-dark: #2344c7;
  --green: #327c6c;
  --yellow: #ffd166;
  --shadow: 0 20px 52px rgba(14, 33, 28, .13);
}

html {
  background: var(--wash);
}

body {
  background:
    radial-gradient(circle at 7% 8%, rgba(255, 209, 102, .24), transparent 28rem),
    radial-gradient(circle at 91% 19%, rgba(158, 234, 216, .27), transparent 25rem),
    radial-gradient(circle at 84% 80%, rgba(205, 183, 255, .18), transparent 30rem),
    var(--wash);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body a,
body a:visited {
  color: #9a6500;
  text-decoration-color: rgba(255, 209, 102, .9);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

body a:hover,
body a:focus {
  color: #6f4900;
  text-decoration-color: var(--yellow);
}

.hero,
.landing-hero {
  background: transparent;
  min-height: 0;
  overflow: visible;
}

.hero-bg {
  display: none;
}

.nav,
.hero-content,
.proof-strip,
.punch-section,
.output-section,
.final-cta,
.form-hero,
.checkout-layout,
.method-hero,
.method-detail,
.method-caveat,
.legal-document,
.algorithm-note,
.crawl-results,
.signup-benefits {
  width: min(1480px, calc(100% - 64px));
}

.nav {
  align-items: center;
  padding: clamp(26px, 4vw, 48px) 0 20px;
}

.brand {
  color: var(--ink) !important;
  font-size: 1rem;
  gap: 11px;
}

.brand-mark {
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--yellow);
  color: var(--paper);
}

.nav-links {
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.nav-links a {
  color: var(--ink) !important;
  font-size: .92rem;
  text-decoration: none;
}

.nav-links .nav-cta,
.button.primary {
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 8px 8px 0 var(--yellow);
  color: var(--paper) !important;
  text-decoration: none;
  transform: translate(0, 0);
  transition: box-shadow .08s ease, transform .08s ease;
}

.nav-links .nav-cta {
  padding: 10px 14px;
}

.button {
  min-height: 52px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--yellow);
  color: var(--ink) !important;
  font-weight: 900;
  text-decoration: none;
  transform: translate(0, 0);
  transition: box-shadow .08s ease, transform .08s ease;
}

.button.secondary {
  background: var(--paper);
  backdrop-filter: none;
}

.nav-links .nav-cta:active,
.button:active {
  box-shadow: none;
  transform: translate(8px, 8px);
  transition: none;
}

.button:focus-visible,
.nav-links .nav-cta:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(49, 88, 245, .42);
  outline-offset: 4px;
}

.landing-hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
  padding: clamp(38px, 5vw, 86px) 0 74px;
}

.eyebrow {
  color: #2f7d70;
  font-size: .76rem;
  letter-spacing: .12em;
}

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1,
.landing-hero h1,
.form-hero h1,
.checkout-layout h1 {
  max-width: 790px;
  font-size: clamp(3rem, 5.7vw, 6.35rem);
  line-height: .94;
}

h2 {
  line-height: .98;
}

.lede,
.under-cta,
.section-copy p,
.section-header p,
.final-cta p,
.copy-panel p,
.form-card-header p:last-child,
.method-detail p,
.method-caveat p,
.benefit-grid p {
  color: var(--muted);
}

.signal-panel {
  align-content: start;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--deep-ink);
  box-shadow: 12px 12px 0 var(--yellow);
  color: var(--paper);
  padding: clamp(28px, 3vw, 42px);
}

.signal-panel .eyebrow,
.signal-panel h2,
.signal-panel strong,
.signal-panel p {
  color: var(--paper);
}

.signal-panel .eyebrow {
  color: var(--yellow);
}

.signal-steps {
  border-color: rgba(255, 248, 232, .24);
}

.signal-steps div {
  border-color: rgba(255, 248, 232, .18);
}

.signal-steps span {
  color: var(--yellow);
}

.signal-panel .button.primary {
  align-self: start;
}

.proof-strip,
.landing-proof {
  transform: none;
  margin-bottom: 0;
  border-color: var(--line);
  background: transparent;
}

.proof-strip div,
.proof-strip div + div {
  min-height: 0;
  padding: 28px 28px 30px 0;
  border-color: var(--line);
}

.proof-strip div + div {
  padding-left: 28px;
}

.proof-strip strong,
.proof-strip span {
  color: var(--ink);
}

.punch-section,
.output-section,
.benefits,
.signup-benefits,
.crawl-results,
.method-detail,
.legal-document {
  padding-top: clamp(48px, 6vw, 88px);
}

.punch-grid article,
.benefit-grid article,
.method-detail article,
.method-caveat,
.algorithm-note,
.final-cta,
.signup-card,
.order-summary,
.idea-card,
.input-summary-card,
.review-carousel,
.review-card,
.app-review,
.legal-document article {
  border-color: var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 232, .82);
  box-shadow: none;
}

.punch-grid article,
.benefit-grid article,
.method-detail article,
.legal-document article {
  border-top: 3px solid var(--yellow);
}

.punch-grid span,
.method-detail span,
.output-list li::before {
  color: #2f7d70;
  background: var(--yellow);
}

.output-section {
  gap: clamp(28px, 5vw, 74px);
  border-color: var(--line);
}

.output-list li {
  border-color: var(--line);
  color: var(--ink);
}

.final-cta {
  justify-items: start;
  margin-top: 38px;
  margin-bottom: 72px;
  border: 2px solid var(--ink);
  background: var(--deep-ink);
  box-shadow: 12px 12px 0 var(--yellow);
  text-align: left;
}

.final-cta h2,
.final-cta p {
  color: var(--paper);
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.form-hero,
.checkout-layout {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr);
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(46px, 6vw, 92px) 0 72px;
}

.form-hero::before {
  display: none;
}

.hero-assurance,
.method-punch {
  gap: 9px;
}

.hero-assurance li,
.method-punch span {
  border-color: var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  padding: 8px 0;
}

.hero-assurance li + li,
.method-punch span + span {
  border-left: 2px solid var(--yellow);
  padding-left: 12px;
}

.signup-card,
.order-summary {
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--yellow);
  padding: clamp(24px, 3vw, 38px);
}

input,
select,
textarea {
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fffdf5;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(49, 88, 245, .18);
}

.algorithm-note,
.method-caveat,
.legal-document article {
  background: rgba(255, 248, 232, .8);
}

.crawl-results {
  padding-bottom: 20px;
}

.generated-app-card {
  border: 2px solid var(--ink);
  background: var(--deep-ink);
  box-shadow: 10px 10px 0 var(--yellow);
}

.generated-app-card h3,
.generated-app-card p,
.generated-app-card .eyebrow {
  color: var(--paper);
}

.generated-app-card .eyebrow {
  color: var(--yellow);
}

.generated-app-card .button {
  max-width: 360px;
}

.blueprint-next-step .checkout-copy {
  align-self: center;
}

.blueprint-cta-card {
  align-self: center;
}

.blueprint-cta-card p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 900px) {
  .landing-hero-content,
  .form-hero,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero-content,
  .proof-strip,
  .punch-section,
  .output-section,
  .final-cta,
  .form-hero,
  .checkout-layout,
  .method-hero,
  .method-detail,
  .method-caveat,
  .legal-document,
  .algorithm-note,
  .crawl-results,
  .signup-benefits {
    width: min(100% - 36px, 680px);
  }

  .nav {
    display: grid;
    gap: 18px;
    align-items: start;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 13px;
  }

  .nav-links a:not(.nav-cta) {
    font-size: .84rem;
  }

  h1,
  .landing-hero h1,
  .form-hero h1,
  .checkout-layout h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.35rem);
  }

  .proof-strip div,
  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0;
  }

  .proof-strip div:first-child {
    border-top: 0;
  }

  .hero-assurance li + li,
  .method-punch span + span {
    border-left: 0;
    border-top: 2px solid var(--yellow);
    padding-left: 0;
    padding-top: 10px;
  }

  .signal-panel,
  .signup-card,
  .order-summary,
  .generated-app-card,
  .final-cta {
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .button,
  .generated-app-card .button {
    max-width: none;
    width: 100%;
  }
}

/* Keep informational content editorial; reserve raised surfaces for actions and tools. */
.hero-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
  padding: 0;
}

.hero-assurance li,
.hero-assurance li + li {
  border: 0;
  border-left: 3px solid var(--yellow);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 4px 0 4px 14px;
}

.punch-grid,
.benefit-grid {
  gap: clamp(24px, 3vw, 42px);
}

.punch-grid article,
.benefit-grid article {
  min-height: 0;
  border: 0;
  border-left: 3px solid var(--yellow);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 5px 0 5px 18px;
}

.punch-grid span {
  width: auto;
  height: auto;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #2f7d70;
  font-size: .76rem;
  letter-spacing: .12em;
}

.signup-benefits {
  gap: 0 clamp(28px, 4vw, 54px);
  border-top: 0;
  padding-bottom: 72px;
}

.signup-benefits article {
  border-left: 3px solid var(--yellow);
  border-bottom: 1px solid var(--line);
  padding: 18px 0 18px 18px;
}

.method-hero {
  padding-bottom: 42px;
}

.method-detail {
  gap: 0;
  padding-top: 12px;
}

.method-detail article {
  grid-template-columns: 52px minmax(220px, .42fr) minmax(0, 1fr);
  gap: 20px;
  border: 0;
  border-left: 3px solid var(--yellow);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 24px 0 24px 18px;
}

.method-detail span {
  display: block;
  width: auto;
  height: auto;
  padding: 2px 0 0;
  border-radius: 0;
  background: transparent;
  color: #2f7d70;
  font-size: .8rem;
  letter-spacing: .1em;
}

.algorithm-note,
.method-caveat {
  border: 0;
  border-top: 4px solid var(--yellow);
  border-radius: 0;
  background: var(--deep-ink);
  box-shadow: none;
  color: var(--paper);
  padding: clamp(28px, 4vw, 46px);
}

.algorithm-note h2,
.algorithm-note p,
.method-caveat h2,
.method-caveat p {
  color: var(--paper);
}

.algorithm-note .eyebrow,
.method-caveat .eyebrow {
  color: var(--yellow);
}

.algorithm-note .source-link,
.algorithm-note .source-link:visited {
  color: var(--yellow);
}

.algorithm-note .method-punch {
  border-color: rgba(255, 248, 232, .22);
}

.algorithm-note .method-punch span,
.algorithm-note .method-punch span + span {
  border-color: rgba(255, 248, 232, .18);
  color: var(--paper);
}

.blueprint-next-step .order-summary {
  border: 0;
  border-left: 3px solid var(--yellow);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 12px 0 12px 18px;
}

.blueprint-cta-card {
  background: var(--deep-ink);
  color: var(--paper);
}

.blueprint-cta-card h2,
.blueprint-cta-card strong {
  color: var(--paper);
}

.blueprint-cta-card .eyebrow {
  color: var(--yellow);
}

.blueprint-cta-card p:not(.eyebrow) {
  color: rgba(255, 248, 232, .76);
}

.final-cta {
  border: 0;
  border-top: 4px solid var(--yellow);
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .hero-assurance {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-detail article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .method-detail article p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .hero-assurance li,
  .hero-assurance li + li {
    border-top: 0;
    border-left: 3px solid var(--yellow);
    padding: 4px 0 4px 12px;
  }

  .punch-grid,
  .benefit-grid {
    gap: 0;
  }

  .punch-grid article,
  .benefit-grid article {
    border-left: 3px solid var(--yellow);
    border-bottom: 1px solid var(--line);
    padding: 20px 0 20px 16px;
  }

  .method-detail article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0 22px 16px;
  }

  .method-detail article p {
    grid-column: auto;
  }

  .algorithm-note,
  .method-caveat {
    padding: 28px 22px;
  }

  .blueprint-next-step .order-summary {
    align-items: start;
    padding-left: 14px;
  }
}

.output-section .section-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.landing-form-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(58px, 7vw, 96px);
}

.landing-form-section > div {
  align-self: start;
}

.landing-form-section > div > h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: .96;
}

@media (max-width: 640px) {
  .landing-form-section > div > h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
}
