:root {
  --navy: #0d0f33;
  --navy-soft: #171a4a;
  --orange: #fe5800;
  --orange-soft: #ff7c33;
  --ink: #0d0f33;
  --muted: #6b6f9c;
  --line: rgba(13, 15, 51, 0.1);
  --bg: #f7f7fb;
  --card: #ffffff;
  --radius: 6px;
  --max-width: 1080px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Top bar ---------------------------------------------------- */

.topbar {
  padding: 28px 0 0;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 64px;
  width: auto;
}

footer .brand img {
  height: 48px;
  opacity: 0.85;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 6px;
}

.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 88, 0, 0.18);
}

/* ---- Hero --------------------------------------------------------- */

.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--orange);
}

.hero p.lede {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(254, 88, 0, 0.6);
}

.btn-primary:hover {
  background: var(--orange-soft);
}

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--navy);
}

/* ---- What's coming ------------------------------------------------ */

.progress {
  padding: 8px 0 72px;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.progress-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.progress-card .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.progress-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.progress-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- Contact -------------------------------------------------------- */

.contact {
  padding: 12px 0 100px;
}

.contact-panel {
  background: var(--navy);
  background-image: radial-gradient(circle at 15% 20%, var(--navy-soft), var(--navy) 60%);
  color: #fff;
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-copy h2 {
  font-size: 1.8rem;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 20px;
  max-width: 40ch;
}

.contact-copy .meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-copy .meta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-copy .meta-list .tick {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--orange);
}

form#contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field textarea {
  font: inherit;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fbfbfe;
  color: var(--ink);
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 88, 0, 0.15);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Honeypot - hidden from real users, present in the DOM for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

form#contact-form button {
  margin-top: 4px;
}

.form-status {
  min-height: 20px;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-status.success {
  color: #1a7f4e;
  font-weight: 600;
}

.form-status.error {
  color: #c0392b;
  font-weight: 600;
}

/* ---- Footer ----------------------------------------------------- */

footer {
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* ---- Responsive --------------------------------------------------- */

@media (max-width: 860px) {
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .progress-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0 48px;
  }
}
