/* Cedure landing page: plain CSS, no build step */
:root {
  --ink: #0f2233;
  --ink-2: #1b3348;
  --text: #1f2d3a;
  --muted: #56636f;
  --paper: #f7f5f0;
  --paper-2: #efebe2;
  --white: #ffffff;
  --line: #ddd7cb;
  --accent: #0e7c6b;
  --accent-dark: #0a5f52;
  --accent-light: #3fb8a2;
  --brass: #a8792a;
  --warn: #b0651c;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(15,34,51,.06), 0 8px 24px rgba(15,34,51,.08);
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --maxw: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body {
  margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.6;
  color: var(--text); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent-dark); }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent-light); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); line-height: 1.08; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
h3 { font-size: 1.08rem; font-weight: 600; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -48px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: 600 1rem/1 var(--sans); padding: 15px 22px; border-radius: 10px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-sm { padding: 10px 16px; font-size: .94rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,240,.92); backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 2px 12px rgba(15,34,51,.05); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { color: var(--ink); display: inline-flex; }
.logo { height: 34px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-menu ul a { color: var(--text); text-decoration: none; font-weight: 500; font-size: .96rem; }
.nav-menu ul a:hover { color: var(--accent-dark); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; border-radius: 8px; }
.bars, .bars::before, .bars::after { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; margin: 0 auto; transition: transform .2s, opacity .2s; }
.bars::before, .bars::after { content: ""; position: absolute; left: 0; }
.bars::before { top: -7px; } .bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-7px) rotate(-45deg); }

/* Eyebrow + section scaffolding */
.eyebrow { font: 600 .8rem/1.4 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px; }
.eyebrow-light { color: var(--accent-light); }
.section { padding: 96px 0; }
.section-alt { background: var(--paper-2); }
.section-head { max-width: 740px; margin-bottom: 48px; }
.section-lede { font-size: 1.12rem; color: var(--muted); }
.fine { font-size: .9rem; color: var(--muted); }

/* Hero */
.hero { padding: 72px 0 96px; background:
  radial-gradient(900px 420px at 88% 10%, rgba(14,124,107,.09), transparent 60%),
  linear-gradient(var(--paper), var(--paper)); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.lede { font-size: 1.2rem; color: #34414d; max-width: 36em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.cta-row.center { justify-content: center; }

.mock { background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.mock-head { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: var(--ink); color: #dfe7ee; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.28); }
.mock-title { margin-left: 10px; font-size: .84rem; font-weight: 500; }
.mock-body { padding: 22px; }
.mock-label { font: 600 .74rem/1.3 var(--sans); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.checklist { list-style: none; margin: 0 0 20px; padding: 0; }
.checklist li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid #eee9df; font-size: .95rem; }
.checklist li em { margin-left: auto; font-style: normal; font-size: .8rem; font-weight: 600; white-space: nowrap; }
.checklist .done em { color: var(--accent-dark); }
.checklist .wait em { color: var(--warn); }
.st { flex: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); position: relative; }
.done .st { background: var(--accent); border-color: var(--accent); }
.done .st::after { content: ""; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.wait .st { border-color: var(--warn); border-style: dashed; }
.mock-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-card { border: 1px solid #eee9df; border-radius: 10px; padding: 14px; background: #fbfaf7; }
.mock-card .mock-label { margin-bottom: 6px; }
.mock-line { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin: 0; font-size: .88rem; flex-wrap: wrap; }
.pill { font-size: .74rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.pill.ok { background: #dcf0eb; color: var(--accent-dark); }
.pill.hold { background: #f6e8d6; color: #8a4d12; }
.mock-caption { font-size: .8rem; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* Cards */
.cards { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.section-alt .card { border-color: #e2dccf; }
.role { border-top: 4px solid var(--accent); }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; }
.step { background: var(--white); border-radius: var(--radius); padding: 30px 28px; border: 1px solid #e2dccf; position: relative; }
.step p { color: var(--muted); margin: 0; font-size: .98rem; }
.step-num { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; font: 600 1.1rem/1 var(--serif); margin-bottom: 18px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 40px; }
.feature h3 { margin: 12px 0 6px; }
.feature p { color: var(--muted); margin: 0; font-size: .97rem; }
.ico { width: 40px; height: 40px; padding: 8px; border-radius: 10px; background: #dcf0eb; fill: none; stroke: var(--accent-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Split layout */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: 0 0 20px 38px; color: var(--muted); }
.ticks li strong { color: var(--ink); display: block; margin-bottom: 2px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); }
.ticks li::after { content: ""; position: absolute; left: 8px; top: 8px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* Florida (dark) */
.section-dark { background: var(--ink); color: #c9d4de; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-lede { color: #b6c3cf; }
.fl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fl-item { border-top: 2px solid var(--accent-light); padding-top: 18px; }
.fl-item p { margin: 0; font-size: .96rem; }
.callout { margin-top: 48px; background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); border-left: 4px solid #d9a94e; border-radius: var(--radius); padding: 26px 28px; }
.callout p { margin: 0; color: #d6dee6; }
.callout strong { color: #fff; }

/* Security */
.honest { margin-top: 28px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brass); border-radius: var(--radius); padding: 20px 24px; }
.honest p { margin: 0; }
.placeholder-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.placeholder {
  border: 2px dashed #c0842b; background: repeating-linear-gradient(45deg, #fff8ec, #fff8ec 10px, #fdf1dc 10px, #fdf1dc 20px);
  color: #7a4a0c; font: 600 .86rem/1.4 var(--sans); letter-spacing: .02em; text-align: center;
  padding: 16px; border-radius: 10px; margin-top: 16px;
}
.placeholder-row .placeholder { margin-top: 0; }
.placeholder-inline { display: inline-block; border: 1.5px dashed #c0842b; background: #fff8ec; color: #7a4a0c; font-size: .82em; font-weight: 600; padding: 1px 7px; border-radius: 6px; }

/* Integrations */
.int-panel { background: var(--white); border: 1px solid #e2dccf; border-radius: var(--radius); padding: 30px; }
.int-status { display: flex; gap: 10px; flex-wrap: wrap; margin: 4px 0 12px; }
.badge { font-size: .85rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; }
.badge-live { background: #dcf0eb; color: var(--accent-dark); }
.badge-planned { background: #eceae4; color: var(--muted); border: 1px dashed #b9b2a3; }
.int-panel .fine { margin: 0; }

/* Pilot + form */
.pilot { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pilot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 8px 0 8px; }
.dots { margin: 0; padding-left: 1.1em; color: var(--muted); }
.dots li { margin-bottom: 6px; }
.dots li::marker { color: var(--accent); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 32px; }
.form-card h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 4px; }
.form { margin-top: 16px; }
.field { margin-bottom: 16px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label, .field legend { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.opt { font-weight: 400; color: var(--muted); }
input[type="text"], input[type="email"], select, textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text); background: #fff;
  border: 1.5px solid #cfc8ba; border-radius: 8px; padding: 11px 12px; min-height: 46px;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(14,124,107,.18); }
.field-radio { border: 0; padding: 0; margin: 0 0 16px; }
.field-radio label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; margin: 0 20px 6px 0; font-size: .96rem; }
input[type="radio"], input[type="checkbox"] { accent-color: var(--accent); width: 18px; height: 18px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--text); margin: 4px 0 18px; }
.check input { margin-top: 3px; flex: none; }
.form-status { font-size: .92rem; margin: 12px 0 0; min-height: 1em; }
.form-status.warn { color: #7a4a0c; }
.form-status.ok { color: var(--accent-dark); }
.form-status.err { color: #a12a1f; }
[aria-invalid="true"] { border-color: #a12a1f !important; }

/* FAQ */
.faq details { background: var(--white); border: 1px solid #e2dccf; border-radius: 10px; margin-bottom: 12px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 52px 18px 22px; font-weight: 600; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--accent-dark); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* Final CTA */
.final-cta { background: linear-gradient(135deg, var(--ink) 0%, #143a4a 100%); color: #d3dde6; padding: 88px 0; text-align: center; }
.final-inner { max-width: 760px; }
.final-cta h2 { color: #fff; }
.final-cta p { font-size: 1.1rem; }

/* Footer */
.site-footer { background: #0a1825; color: #9fb0bf; padding: 56px 0 40px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 40px; }
.logo-footer { color: #f7f5f0; height: 32px; margin-bottom: 12px; }
.footer-tag { max-width: 22em; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #d3dde6; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-legal p { margin-bottom: 10px; }
.site-footer .placeholder-inline { background: transparent; color: #e6b86a; border-color: #b58032; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .split, .pilot { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 560px; }
  .fl-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 8px; background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 24px 20px; box-shadow: 0 12px 24px rgba(15,34,51,.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu ul { flex-direction: column; gap: 0; }
  .nav-menu ul a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-menu .btn { margin-top: 8px; }
  .cards-3, .steps, .placeholder-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 64px; }
  .section-head { margin-bottom: 32px; }
  .features, .fl-grid, .pilot-cols, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .field-row { gap: 0; }
  .cta-row .btn { width: 100%; }
  .mock-split { grid-template-columns: 1fr; }
  .checklist li { flex-wrap: wrap; gap: 4px 12px; }
  .checklist li em { margin-left: 30px; width: 100%; }
  .form-card { padding: 24px 20px; }
  .card, .step { padding: 22px; }
  .final-cta { padding: 64px 0; }
}
input.hp { display: none !important; }
.nw { white-space: nowrap; }
