:root {
  color-scheme: light;
  --bg: #f7f3ea;
  --bg-soft: #fffaf0;
  --ink: #17212b;
  --muted: #5d6874;
  --brand: #f97316;
  --brand-dark: #c2410c;
  --navy: #10243f;
  --blue: #2563eb;
  --line: rgba(23, 33, 43, 0.12);
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(16, 36, 63, 0.12);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 32rem), var(--bg);
  line-height: 1.6;
}

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  transition: top 160ms ease;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 234, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand {
  gap: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-links {
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

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

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  font-weight: 700;
}

.section { padding: 88px 0; }

.hero { padding-top: 72px; }

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 52px;
}

.align-center { align-items: center; }
.align-start { align-items: start; }

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

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 5.9rem);
  letter-spacing: -0.065em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.24rem;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.lead {
  max-width: 740px;
  color: #384554;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(16, 36, 63, 0.16);
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.button.disabled,
.button:disabled {
  color: #7b8794;
  background: #e7e1d6;
  cursor: not-allowed;
}

.button.full { width: 100%; }

.approval-note,
.scope-note,
.privacy-note,
.policy-note,
.footnote,
.caption,
.deployment-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.disclosure-card,
.hero-panel,
.summary-card,
.lead-form,
.offer-card,
.mini-card,
.step-card,
.value-grid div,
.faq-grid details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.disclosure-card {
  max-width: 780px;
  margin: 24px 0;
  padding: 18px;
  border-left: 5px solid var(--brand);
}

.hero-panel {
  align-self: start;
  padding: 28px;
  background: linear-gradient(155deg, #10243f 0%, #173d69 58%, #f97316 130%);
  color: #e8f0ff;
}

.hero-panel h2 { color: #fff; }

.panel-kicker {
  margin-bottom: 12px;
  color: #fed7aa;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-list,
.scenario-list {
  padding: 0;
  list-style: none;
}

.check-list li,
.scenario-list li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
}

.check-list li::before,
.scenario-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
}

.problem,
.sample-section,
.cta-section { background: rgba(255, 255, 255, 0.34); }

.scenario-list {
  align-self: start;
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.steps,
.value-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.step-card { padding: 24px; }

.step-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.summary-card { margin: 0; overflow: hidden; }
.summary-card figcaption {
  padding: 14px 18px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.summary-card pre,
.payload-preview {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #eaf2ff;
  background: #0b1628;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.9rem;
}

.value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.value-grid div { padding: 22px; font-weight: 700; }
.policy-note { margin-top: 18px; }

.offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
}

.offer-box {
  padding: 18px;
  border-radius: 16px;
  background: #ffedd5;
  color: #7c2d12;
  font-weight: 700;
}

.mini-card,
.lead-form { padding: 22px; }
.mini-card + .mini-card { margin-top: 16px; }
.hold-card { border-style: dashed; }

.lead-form {
  display: grid;
  gap: 14px;
  background: #fff;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 36, 63, 0.22);
  border-radius: 13px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(249, 115, 22, 0.24);
  border-color: var(--brand);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-label input {
  width: auto;
  margin-top: 0.35em;
}

.form-status {
  min-height: 24px;
  color: var(--brand-dark);
  font-weight: 800;
}

.form-status.success { color: #047857; }
.form-status.error { color: #b91c1c; }
.payload-preview {
  border-radius: 14px;
  white-space: pre-wrap;
}

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

.faq-grid details { padding: 18px 20px; box-shadow: none; }
.faq-grid summary { color: var(--navy); font-weight: 850; cursor: pointer; }
.faq-grid p { margin: 12px 0 0; color: var(--muted); }

.site-footer {
  padding: 42px 0;
  color: #dbeafe;
  background: var(--navy);
}

.site-footer p { margin-bottom: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 28px;
}

@media (max-width: 860px) {
  .nav { align-items: flex-start; padding: 14px 0; flex-direction: column; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero-grid,
  .two-col,
  .steps,
  .value-grid,
  .faq-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .offer-card { align-items: stretch; flex-direction: column; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1120px); }
  h1 { font-size: 2.8rem; }
  .cta-row .button { width: 100%; }
}
