:root {
  --ink: #18232f;
  --muted: #657282;
  --line: #dce3e7;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #087f8c;
  --teal-dark: #075c66;
  --blue: #2456d6;
  --lime: #badb55;
  --coral: #ef6f6c;
  --shadow: 0 18px 45px rgba(24, 35, 47, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 249, 0.94);
  border-bottom: 1px solid rgba(220, 227, 231, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-links a:hover,
.footer-links a:hover {
  color: var(--teal-dark);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
  white-space: nowrap;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 70px) 48px;
  background:
    radial-gradient(circle at 12% 20%, rgba(186, 219, 85, 0.28), transparent 28%),
    linear-gradient(130deg, #f8fbfa 0%, #eef6f6 58%, #f9fbf2 100%);
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  min-width: 0;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

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

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #405062;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(8, 127, 140, 0.2);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  border-color: #aebbc4;
  background: rgba(255, 255, 255, 0.52);
}

.button.full {
  width: 100%;
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 34px 0 0;
}

.quick-proof div {
  padding-top: 14px;
  border-top: 2px solid var(--ink);
}

.quick-proof dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.quick-proof dd {
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-weight: 850;
}

.readiness-form {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid #cbd8de;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 18px;
}

.form-heading h2 {
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
}

label,
legend {
  display: grid;
  gap: 7px;
  color: #2d3a46;
  font-size: 0.92rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid #b9c7cf;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 520;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(36, 86, 214, 0.18);
  border-color: var(--blue);
}

.readiness-form > label,
.readiness-form fieldset {
  margin-top: 14px;
}

fieldset {
  padding: 0;
  border: 0;
}

.check-row {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.request-output {
  display: block;
  margin-top: 16px;
  padding: 18px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #eef8f8;
  color: #21404a;
  font-size: 0.95rem;
}

.request-output h3 {
  margin-top: 4px;
}

.result-kicker {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.result-list div {
  display: grid;
  gap: 2px;
}

.result-list dt {
  color: #526674;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.result-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.result-note {
  margin: 12px 0 0;
  color: #526674;
  white-space: pre-wrap;
}

.evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.metric {
  min-height: 150px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
}

.metric span {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.metric p {
  max-width: 260px;
  margin: 12px 0 0;
  color: var(--muted);
}

.service-band,
.steps,
.pricing,
.trust,
.faq {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 70px);
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  background: #ffffff;
}

.section-copy {
  max-width: 760px;
}

.section-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy.narrow {
  max-width: 700px;
}

.workflow-visual {
  width: 100%;
  max-width: 620px;
  justify-self: center;
  border: 1px solid #d8e2e7;
  border-radius: 8px;
  background: #f8fbfa;
  box-shadow: var(--shadow);
}

.steps {
  background: #f1f6f7;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  padding: 1px;
  list-style: none;
  background: #cfdce2;
}

.step-list li {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
}

.step-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.step-list p,
.price-card p,
.trust-grid p,
.faq p {
  color: var(--muted);
}

.pricing {
  background: var(--white);
}

.price-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.price-card,
.trust-grid article {
  position: relative;
  padding: 26px;
  border: 1px solid #d5e0e5;
  border-radius: 8px;
  background: #fbfdfc;
}

.price-card.featured {
  border-color: var(--teal);
  background: #f0fbfb;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 0 0 14px;
  padding: 0 10px;
  border-radius: 999px;
  color: #4b280e;
  background: #ffd9a8;
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  margin: 16px 0 12px;
  color: var(--ink) !important;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #374757;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.trust {
  background: #eaf2f0;
}

.trust-grid article {
  background: #ffffff;
}

.faq {
  background: #ffffff;
}

details {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.1rem;
  font-weight: 850;
}

details p {
  max-width: 760px;
  margin: -8px 0 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: #dbe8eb;
  background: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
  color: #aebdc7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  color: #e9f7f8;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  align-content: start;
  gap: 34px;
  padding: clamp(24px, 6vw, 70px);
  background:
    radial-gradient(circle at 16% 18%, rgba(186, 219, 85, 0.24), transparent 30%),
    linear-gradient(130deg, #f8fbfa 0%, #eef6f6 58%, #f9fbf2 100%);
}

.simple-panel {
  width: min(860px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid #d5e0e5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.simple-panel h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.simple-panel p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.simple-panel .button {
  margin-top: 16px;
}

.legal-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.legal-copy a:not(.button) {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .intro,
  .service-band {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .step-list,
  .price-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .intro {
    display: block;
    padding-top: 34px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .intro-copy,
  .lead {
    max-width: 100%;
  }

  .lead {
    max-width: 31ch;
  }

  .readiness-form {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    margin-top: 32px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 13vw, 3.4rem);
    line-height: 0.98;
  }

  .quick-proof,
  .evidence,
  .step-list,
  .price-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 118px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    display: none;
  }

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