/* Falco Agents: black & white identity. Amber #ff9f0a is used only for small decorative accents
   (step numbers, bullets, eyebrow bars, link-hover underline). Readable amber text, if ever needed: #9a5c00. */
:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --accent: #1d1d1f;
  --accent-hover: #000000;
  --deco: #ff9f0a;        /* decorative amber accent */
  --amber-text: #9a5c00;  /* amber for readable text (WCAG AA on #fff and #f5f5f7) */
  --btn: #1d1d1f;
  --btn-hover: #000000;
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --line: #d2d2d7;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Inter, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
section[id] { scroll-margin-top: 56px; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-hover); text-decoration-thickness: 2px; text-decoration-color: var(--deco); }
:focus-visible { outline: 3px solid rgba(29, 29, 31, .45); outline-offset: 3px; border-radius: 6px; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; text-align: center; }
.narrow { max-width: 820px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 56px; display: flex; align-items: center; gap: 32px;
}
.wordmark { display: inline-flex; align-items: center; gap: 8px; font-size: 21px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.wordmark img { display: block; width: 26px; height: 26px; }
.wordmark:hover { color: var(--ink); text-decoration: none; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--ink); font-size: 14px; opacity: .8; }
.nav-links a:hover { opacity: 1; color: var(--ink); text-decoration: none; }

/* Buttons */
.pill {
  display: inline-block; border: 0; cursor: pointer;
  background: var(--btn); color: #fff;
  border-radius: 980px; font-family: inherit; font-weight: 500;
  transition: background-color .2s ease, transform .2s ease;
}
.pill:hover { background: var(--btn-hover); color: #fff; text-decoration: none; }
.pill:active { transform: scale(.98); }
.pill:disabled { opacity: .6; cursor: default; }
.pill-sm { padding: 7px 16px; font-size: 14px; white-space: nowrap; }
.pill-lg { padding: 14px 30px; font-size: 17px; }

/* Type */
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.025em; }
h1 { font-size: clamp(44px, 8vw, 96px); line-height: 1.04; }
h2 { font-size: clamp(34px, 5.6vw, 64px); line-height: 1.08; }
h3 { font-size: 28px; line-height: 1.15; }
.eyebrow {
  margin: 0 0 14px; font-size: 17px; font-weight: 600; color: var(--muted);
}
.subhead {
  margin: 24px auto 0; max-width: 760px;
  font-size: clamp(22px, 3vw, 32px); font-weight: 600; line-height: 1.25; letter-spacing: -.015em;
}
.lead {
  margin: 18px auto 40px; max-width: 620px;
  font-size: clamp(17px, 2vw, 21px); color: var(--muted);
}
.body-lg {
  margin: 28px auto 0; max-width: 700px;
  font-size: clamp(18px, 2.1vw, 22px); line-height: 1.5; color: var(--muted);
}
.tagline {
  margin: 36px auto 0; max-width: 700px;
  font-size: clamp(22px, 2.8vw, 30px); font-weight: 600; line-height: 1.3; letter-spacing: -.015em;
}
.accent { color: var(--ink); }
.eyebrow::after {
  content: ""; display: block; width: 28px; height: 3px; border-radius: 2px;
  background: var(--deco); margin: 12px auto 0;
}

/* Sections */
.hero { padding: clamp(96px, 16vw, 180px) 0 clamp(96px, 14vw, 160px); }
.section { padding: clamp(88px, 12vw, 150px) 0; }
.alt { background: var(--bg-alt); }

/* Cards */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px; text-align: left;
}
.card {
  background: var(--bg-alt); border-radius: 24px; padding: 40px 32px;
}
.card .step { display: block; font-size: 14px; font-weight: 600; color: var(--deco); letter-spacing: .06em; margin-bottom: 28px; }
.card .meta { margin: 8px 0 20px; font-size: 17px; font-weight: 600; color: var(--ink); }
.card p { margin: 0; font-size: 17px; color: var(--ink); opacity: .82; }
.card .meta { opacity: 1; }
.card:nth-child(2) { transition-delay: .08s; }
.card:nth-child(3) { transition-delay: .16s; }

/* What you get */
.gets {
  list-style: none; padding: 0; margin: 64px auto 0; max-width: 900px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: left;
}
.gets li {
  background: #fff; border-radius: 20px; padding: 32px;
  font-size: clamp(20px, 2.2vw, 24px); font-weight: 600; line-height: 1.3; letter-spacing: -.01em;
  display: flex; align-items: flex-start; gap: 16px;
}
.dot {
  flex: none; width: 10px; height: 10px; border-radius: 50%;
  background: var(--deco); margin-top: .5em;
}

/* Form */
.form { margin: 48px auto 0; max-width: 620px; text-align: left; display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: grid; gap: 8px; }
.form label span { font-size: 14px; font-weight: 500; color: var(--ink); }
.form input, .form textarea {
  width: 100%; font: inherit; font-size: 17px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 16px; transition: border-color .2s, box-shadow .2s;
}
.form textarea { resize: vertical; min-height: 120px; }
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(29, 29, 31, .12);
}
.form button { justify-self: center; margin-top: 10px; min-width: 160px; }
.form-status { margin: 0; min-height: 1.4em; text-align: center; font-size: 15px; color: var(--ink); font-weight: 500; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.thanks { margin: 48px auto 0; max-width: 620px; background: #fff; border-radius: 24px; padding: 48px 32px; }
.thanks p { margin: 12px 0 0; color: var(--muted); font-size: 17px; }
.fallback { margin: 20px 0 0; font-size: 15px; color: var(--muted); }

/* Footer */
.footer { border-top: 1px solid rgba(0, 0, 0, .08); padding: 28px 0; font-size: 13px; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Reveal */
.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1); }
.js-reveal .reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .card:nth-child(n) { transition-delay: 0s; }
}
@media (max-width: 734px) {
  .nav-links { display: none; }
  .nav-inner { justify-content: space-between; gap: 16px; padding: 0 20px; }
  .container { padding: 0 20px; }
  .gets { grid-template-columns: 1fr; }
  .gets li { padding: 24px; }
  .card { padding: 32px 24px; }
  .form .row { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; flex-direction: column; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* B&W: underline only real text links, not nav, wordmark or buttons */
.wordmark, .nav-links a, .pill { text-decoration: none; }
