:root {
  --ink: #17130f;
  --paper: #f6f2e9;
  --cream: #fffaf1;
  --orange: #ff5f2e;
  --orange-dark: #d94519;
  --mint: #bff4dc;
  --line: rgba(23, 19, 15, 0.14);
  --muted: #6e655c;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(66, 39, 21, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .8rem 1rem; background: var(--ink); color: white; border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.nav { position: sticky; top: 0; z-index: 50; background: rgba(246,242,233,.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 760; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 2px solid var(--orange); border-radius: 50%; color: var(--orange); font-size: 13px; }
.brand-parent { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.nav-links a:hover { color: var(--orange-dark); }
.menu-button { display: none; border: 1px solid var(--line); background: transparent; border-radius: 12px; padding: 9px 12px; }
.mobile-menu { padding: 0 20px 18px; border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 999px; background: var(--ink); color: white; font-weight: 700; border: 1px solid var(--ink); transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #302821; }
.button-light { background: transparent; color: var(--ink); border-color: var(--line); }
.button-orange { background: var(--orange); border-color: var(--orange); }
.button-orange:hover { background: var(--orange-dark); }

.hero { position: relative; overflow: hidden; padding: 88px 0 72px; }
.hero::before { content: ""; position: absolute; width: 540px; height: 540px; right: -180px; top: -240px; background: var(--orange); border-radius: 50%; filter: blur(2px); opacity: .92; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--orange-dark); font-size: 12px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 64px; align-items: end; position: relative; }
h1 { max-width: 850px; margin: 24px 0 26px; font-size: clamp(54px, 8.2vw, 112px); line-height: .86; letter-spacing: -.075em; font-weight: 750; }
.hero-copy { max-width: 630px; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-card { padding: 28px; background: var(--ink); color: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card p { color: rgba(255,255,255,.64); line-height: 1.6; }
.hero-card-list { display: grid; gap: 0; margin-top: 24px; }
.hero-card-list span { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 16px; }
.hero-card-list b { color: var(--mint); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.marquee { border-block: 1px solid var(--line); padding: 18px 0; overflow: hidden; background: var(--cream); }
.marquee-track { display: flex; justify-content: center; gap: clamp(20px, 4vw, 52px); flex-wrap: wrap; color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
section { padding: 96px 0; }
.section-head { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; margin-bottom: 52px; }
.section-head h2 { margin: 0; font-size: clamp(38px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 680px; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.card { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,250,241,.62); display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-number { color: var(--orange-dark); font-family: ui-monospace, monospace; font-size: 12px; }
.card h3 { margin: 44px 0 12px; font-size: 25px; letter-spacing: -.035em; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; }
.dark-section { background: var(--ink); color: white; }
.dark-section .eyebrow { color: var(--mint); }
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.process article { background: var(--ink); padding: 32px 26px; min-height: 250px; }
.process strong { color: var(--mint); font-family: ui-monospace, monospace; font-size: 12px; }
.process h3 { margin: 54px 0 12px; font-size: 24px; }
.process p { color: rgba(255,255,255,.62); line-height: 1.6; }
.industries { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 15px 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); font-weight: 650; }
.promise { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.promise-main { border-radius: var(--radius); background: var(--orange); color: #24120d; padding: clamp(30px,5vw,64px); }
.promise-main h2 { font-size: clamp(42px,6vw,76px); line-height: .94; letter-spacing: -.06em; margin: 18px 0; }
.promise-list { display: grid; gap: 12px; }
.promise-list div { padding: 24px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; }
.promise-list h3 { margin: 0 0 8px; }
.promise-list p { margin: 0; color: var(--muted); line-height: 1.55; }

.contact { background: #e9e1d4; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.contact h2 { font-size: clamp(44px,6vw,78px); letter-spacing: -.06em; line-height: .95; margin: 22px 0; }
.contact-copy { color: var(--muted); font-size: 18px; line-height: 1.7; }
.contact-detail { display: block; margin-top: 28px; font-weight: 700; }
.form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,4vw,42px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1/-1; }
label, legend { font-size: 13px; font-weight: 750; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--ink); padding: 14px 15px; min-height: 48px; }
textarea { min-height: 136px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(255,95,46,.18); border-color: var(--orange); }
fieldset { border: 0; padding: 0; margin: 0; }
.checks { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 10px; }
.check { position: relative; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check span { display: block; padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 13px; background: white; }
.check input:checked + span { background: var(--ink); color: white; border-color: var(--ink); }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.consent input { width: 18px; min-height: 18px; flex: 0 0 18px; margin-top: 2px; }
.honeypot { position: absolute; left: -9999px; }
.form-status { min-height: 22px; margin: 12px 0 0; font-size: 13px; }
.form-status.success { color: #157347; }
.form-status.error { color: #b42318; }
.form button[disabled] { opacity: .55; cursor: wait; }
.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; }
.faq h2 { font-size: clamp(42px,5vw,68px); letter-spacing: -.055em; margin: 18px 0; }
details { border-top: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-weight: 750; font-size: 18px; }
details p { color: var(--muted); line-height: 1.65; max-width: 700px; }
.footer { padding: 54px 0 32px; background: var(--ink); color: white; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; }
.footer p { color: rgba(255,255,255,.58); max-width: 520px; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } [data-reveal] { opacity: 1; transform: none; } }
@media (max-width: 900px) {
  .nav-links { display: none; } .menu-button { display: block; }
  .hero-grid, .section-head, .contact-grid, .faq, .promise { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 62px; }
  .hero::before { width: 280px; height: 280px; right: -170px; top: -120px; }
  h1 { font-size: clamp(52px,18vw,78px); }
  section { padding: 72px 0; }
  .cards, .process, .form-grid { grid-template-columns: 1fr; }
  .card { min-height: 230px; }
  .field-full { grid-column: auto; }
  .footer-grid { display: grid; }
  .brand-parent { display: none; }
}
