:root {
  --bg: #FBFAF7;
  --panel: #F3EFE6;
  --ink: #17202B;
  --muted: #5C6672;
  --accent: #1D3557;
  --gold: #C9A227;
  --line: #E7E4DC;
}
* { box-sizing: border-box; margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--accent); }
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* nav */
header { border-bottom: 1px solid var(--line); background: var(--bg); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand img { width: 34px; height: 34px; display: block; }
.brand span { font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em; }
.nav nav { display: flex; gap: 26px; }
.nav nav a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 500; }
.nav nav a:hover, .nav nav a:focus-visible { color: var(--ink); }
.nav nav a.active { color: var(--ink); }

/* hero */
.hero { padding: 84px 0 64px; }
.hero .kicker {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 52px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.12; max-width: 17ch; margin-bottom: 20px;
}
.hero p.lede { color: var(--muted); font-size: 18px; max-width: 54ch; margin-bottom: 28px; }
.btn {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 8px;
}
.btn:hover, .btn:focus-visible { background: #16294a; }
.hero-flex { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.hero-copy { flex: 1 1 420px; }

/* queue mock */
.queue { flex: 0 1 340px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: 0 10px 30px rgba(23,32,43,0.07); }
.queue h4 { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.q-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px; border-radius: 8px; }
.q-item + .q-item { margin-top: 6px; }
.q-item .dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; flex: none; }
.q-item b { display: block; font-size: 14px; font-weight: 600; }
.q-item span { font-size: 12.5px; color: var(--muted); }
.q-item.done { opacity: 0.5; }
.q-item.done b { text-decoration: line-through; }

/* sections */
section.block { padding: 56px 0; border-top: 1px solid var(--line); }
.block h2 { font-size: 26px; letter-spacing: -0.02em; margin-bottom: 10px; }
.block > .container > p.sub { color: var(--muted); max-width: 58ch; margin-bottom: 34px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.feature .ico { width: 34px; height: 34px; border-radius: 8px; background: var(--panel); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 14px; }
.feature h3 { font-size: 16.5px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14.5px; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.step { padding: 4px 0; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-weight: 700; color: var(--gold); font-size: 14px; letter-spacing: 0.06em;
  display: block; margin-bottom: 8px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; }

.cta { background: var(--accent); color: #fff; border-radius: 16px; padding: 44px 36px; margin: 64px 0; }
.cta h2 { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 8px; }
.cta p { color: #C6D0DE; max-width: 56ch; margin-bottom: 20px; }
.cta a.btn { background: var(--gold); color: #17202B; }
.cta a.btn:hover { background: #b8931f; }

/* company page */
.prose { max-width: 640px; padding: 72px 0 40px; }
.prose h1 { font-size: clamp(30px, 5vw, 42px); letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 22px; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose h2 { font-size: 20px; margin: 36px 0 10px; }
.prose .dogline { display: flex; align-items: center; gap: 16px; background: var(--panel); border-radius: 12px; padding: 16px 18px; margin: 28px 0; }
.prose .dogline img { width: 56px; height: 56px; flex: none; }
.prose .dogline p { margin: 0; font-size: 14.5px; }

/* contact form */
.contact-form { display: grid; gap: 14px; max-width: 460px; margin-top: 18px; }
.contact-form .row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--muted); }
.field input, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.contact-form button {
  justify-self: start; background: var(--accent); color: #fff; border: 0; cursor: pointer;
  font: inherit; font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 8px;
}
.contact-form button:hover { background: #16294a; }
.cta .contact-form { max-width: none; }
.cta .field label { color: #C6D0DE; }
.cta .field input, .cta .field textarea { background: rgba(255,255,255,0.95); border-color: transparent; }
.cta .contact-form button { background: var(--gold); color: #17202B; }
.cta .contact-form button:hover { background: #b8931f; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cta .form-note { color: #9FB0C6; }

footer { border-top: 1px solid var(--line); padding: 26px 24px; text-align: center; color: var(--muted); font-size: 13.5px; }
footer a { color: var(--muted); }
