:root {
  --ink: #10243d;
  --muted: #52667b;
  --line: #d7e1eb;
  --panel: #f5f8fb;
  --navy: #08213d;
  --blue: #0878e8;
  --blue-dark: #075fb4;
  --cyan: #20a5c4;
  --green: #147a57;
  --gold: #d79a2b;
  --white: #fff;
  --shadow: 0 24px 70px rgba(8, 33, 61, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.brand { color: var(--navy); font-weight: 800; text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: 19px; font-size: .95rem; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue-dark); }
.site-nav .nav-cta { padding: 9px 14px; color: var(--white); background: var(--navy); border-radius: 7px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px);
  background: linear-gradient(120deg, #f8fbff 0%, #edf5fb 57%, #f4f8f2 100%);
}
.hero-copy { max-width: 760px; }
.eyebrow, .section-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  line-height: .99;
  letter-spacing: -.045em;
}
.hero-lede { max-width: 680px; margin: 26px 0 0; color: #2d4359; font-size: 1.18rem; }
.hero-actions, .action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.button:hover:not(:disabled), .button:focus-visible:not(:disabled) { transform: translateY(-1px); }
.button.primary { color: var(--white); background: var(--blue); }
.button.primary:hover, .button.primary:focus-visible { background: var(--blue-dark); }
.button.secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.button.dark { color: var(--white); background: var(--navy); }
.button:disabled, .button[aria-disabled="true"] { cursor: not-allowed; opacity: .72; }
.button.purchase-ready { box-shadow: 0 0 0 4px rgba(8, 120, 232, .17), 0 14px 32px rgba(8, 120, 232, .22); opacity: 1; }

.hero-media img { display: block; width: 100%; height: auto; border: 1px solid rgba(8, 33, 61, .12); border-radius: 14px; box-shadow: var(--shadow); }
.page-hero { padding: clamp(60px, 8vw, 96px) clamp(18px, 5vw, 76px); background: linear-gradient(120deg, #eef6fd, #f7faf5); }
.page-hero .inner, .section-inner { width: min(1120px, 100%); margin: 0 auto; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.45rem, 5vw, 4.7rem); }
.page-hero p { max-width: 720px; margin: 22px 0 0; color: #30485f; font-size: 1.14rem; }

section { padding: clamp(54px, 7vw, 88px) clamp(18px, 5vw, 76px); }
section > h2, .section-inner > h2 { max-width: 930px; margin: 0; color: var(--navy); font-size: clamp(1.9rem, 3.5vw, 3.1rem); line-height: 1.12; letter-spacing: -.025em; }
.section-intro { max-width: 780px; margin: 18px 0 0; color: var(--muted); font-size: 1.06rem; }
.band { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; max-width: 1060px; margin-top: 30px; color: var(--muted); font-size: 1.05rem; }
.feature-grid, .steps, .offer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.card, .feature-grid article, .steps article, .offer-grid article { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.card h3, article h3 { margin: 0 0 9px; color: var(--navy); font-size: 1.08rem; }
.card p, article p { margin: 0; color: var(--muted); }
.step-number { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 16px; color: var(--white); background: var(--blue); border-radius: 50%; font-weight: 800; }
.fit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 30px; max-width: 980px; margin: 30px 0 0; padding-left: 22px; }
.fit-list li { padding-left: 5px; }
.quote-band { color: var(--white); background: var(--navy); text-align: center; }
.quote-band h2, .quote-band p { max-width: 820px; margin-left: auto; margin-right: auto; color: var(--white); }
.quote-band p { color: #d8e7f5; }
.faq { max-width: 900px; margin-top: 30px; }
.faq details { padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.faq details p { margin: 12px 0 0; color: var(--muted); }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 28px; align-items: start; margin-top: 34px; }
.form-card, .info-card { padding: clamp(24px, 4vw, 38px); background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 14px 42px rgba(8, 33, 61, .07); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { display: block; margin-bottom: 7px; color: var(--navy); font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9c8d7;
  border-radius: 6px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(8, 120, 232, .16); border-color: var(--blue); }
.field textarea { min-height: 150px; resize: vertical; }
.clean-fieldset { border: 0; padding: 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-choice { display: flex; align-items: center; gap: 9px; min-width: 150px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 7px; }
.radio-choice input { width: auto; margin: 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note, .microcopy { color: var(--muted); font-size: .91rem; }
.decision { display: none; margin-top: 24px; padding: 22px; border: 1px solid var(--line); border-radius: 10px; }
.decision.is-visible { display: block; }
.decision.is-standard { background: #eff9f4; border-color: #a8d8c1; }
.decision.is-consult { background: #fff8e9; border-color: #e3c580; }
.decision h3 { margin: 0 0 8px; color: var(--navy); }
.decision p { margin: 0; color: #344b60; }
.decision .action-row { margin-top: 18px; }
.status-page { min-height: 62vh; display: grid; place-items: center; padding: 60px 20px; background: var(--panel); }
.status-card { width: min(700px, 100%); padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; text-align: center; box-shadow: var(--shadow); }
.status-card h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.purchase-registration { align-items: start; }
.registration-card { width: min(760px, 100%); text-align: left; }
.registration-card h1 { font-size: clamp(2rem, 5vw, 3.65rem); }
.registration-card .stack-form { display: grid; gap: 18px; margin-top: 28px; }
.registration-card .stack-form > label:not(.confirmation-check) { display: grid; gap: 7px; color: var(--navy); font-weight: 800; }
.registration-card .stack-form input:not([type="checkbox"]) { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid #b9c8d7; border-radius: 6px; }
.registration-card .stack-form input:focus { outline: 3px solid rgba(8, 120, 232, .16); border-color: var(--blue); }
.registration-card .field { margin: 0; }
.registration-card .centered { justify-content: center; }
.fulfillment-confirmation { padding: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; }
.confirmation-check { display: flex; align-items: flex-start; gap: 11px; color: var(--ink); font-weight: 700; cursor: pointer; }
.confirmation-check input[type="checkbox"] { flex: 0 0 auto; width: 18px; height: 18px; margin: 4px 0 0; accent-color: var(--blue); }
.fulfillment-wait { display: flex; align-items: center; gap: 18px; margin: 26px 0; padding: 22px; background: #eff9f4; border: 1px solid #a8d8c1; border-radius: 10px; }
.fulfillment-wait[hidden] { display: none; }
.fulfillment-wait p { margin: 4px 0 0; color: var(--muted); }
.fulfillment-spinner { flex: 0 0 auto; width: 34px; height: 34px; border: 4px solid #b9ddce; border-top-color: var(--green); border-radius: 50%; animation: fulfillment-spin .8s linear infinite; }
.form-error { margin: 20px 0; padding: 15px 17px; color: #7b1717; background: #fff0f0; border: 1px solid #e4aaaa; border-radius: 8px; font-weight: 700; }
.license-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.license-summary div { min-width: 0; padding: 17px; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; }
.license-summary dt { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.license-summary dd { margin: 5px 0 0; color: var(--navy); font-weight: 800; overflow-wrap: anywhere; }
@keyframes fulfillment-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .fulfillment-spinner { animation: none; border-top-color: #b9ddce; background: var(--green); } }
.purchase-summary h2 { margin: 0; color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.15; }
.purchase-summary .price { margin: 22px 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; line-height: 1; }
.purchase-summary .price span { display: block; margin-top: 8px; color: var(--muted); font-size: .95rem; font-weight: 700; }
.purchase-summary ul, .confirmation-list ol { padding-left: 22px; }
.purchase-summary li, .confirmation-list li { margin: 9px 0; }
.confirmation-list { margin: 26px 0; padding: 18px 22px; background: #eff9f4; border: 1px solid #a8d8c1; border-radius: 9px; }
.confirmation-list p { margin-top: 0; }
.warning-text { color: #a05a00; }
.eligibility-notice { margin-bottom: 28px; padding: 20px 22px; background: #fff8e9; border: 1px solid #e3c580; border-radius: 9px; }
.page-eligibility { max-width: 900px; margin: 26px 0 0; }
.eligibility-notice h2 { margin: 0 0 8px; color: var(--navy); font-size: 1.18rem; }
.eligibility-notice p { margin: 7px 0 0; }
.eligibility-notice a, .eligibility-decision a, .checker-result a { color: var(--blue-dark); font-weight: 800; }
.eligibility-decision { margin-top: 14px; padding: 15px 17px; border-radius: 8px; }
.eligibility-decision.is-eligible { color: #0a5a3f; background: #eff9f4; border: 1px solid #a8d8c1; }
.eligibility-decision.is-blocked { color: #704500; background: #fff8e9; border: 1px solid #e3c580; }
.domain-checker { display: grid; gap: 18px; margin-top: 28px; }
.domain-checker .field { margin: 0; }
.checker-result { padding: 18px 20px; border: 1px solid var(--line); border-radius: 9px; }
.checker-result.is-wordpress { background: #eff9f4; border-color: #a8d8c1; }
.checker-result.is-not-wordpress, .checker-result.is-inconclusive { background: #fff8e9; border-color: #e3c580; }
.checker-dialog { width: min(680px, calc(100% - 32px)); padding: 30px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.checker-dialog::backdrop { background: rgba(8, 33, 61, .58); }
.checker-dialog h2 { margin: 0; color: var(--navy); font-size: clamp(1.65rem, 4vw, 2.4rem); line-height: 1.15; }
.checker-dialog-close { display: flex; justify-content: flex-end; }
.checker-dialog-close button { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; color: var(--navy); background: var(--panel); border: 1px solid var(--line); border-radius: 7px; cursor: pointer; font-size: 1.7rem; line-height: 1; }
.checker-use-result { display: flex; margin-top: 14px; }

footer { padding: 28px 20px; color: #dbe7f4; background: #061526; text-align: center; }
footer p { margin: 5px 0; }
footer a { color: var(--white); }

@media (max-width: 980px) {
  .hero, .split, .form-layout { grid-template-columns: 1fr; }
  .feature-grid, .steps, .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .site-nav { width: 100%; flex-wrap: wrap; gap: 12px 16px; }
  .hero { padding-top: 52px; }
  .feature-grid, .steps, .offer-grid, .fit-list, .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .button { width: 100%; }
  .license-summary { grid-template-columns: 1fr; }
}
