:root {
  --bg: #0b0d10;
  --bg-card: #13161b;
  --bg-nav: rgba(11, 13, 16, 0.92);
  --text: #e9ecf1;
  --text-muted: #8b94a3;
  --accent: #d92d20;
  --accent-hover: #f04438;
  --navy: #1b3a8f;
  --border: #1d222a;
  --border-hover: #2b323d;
  --radius: 10px;
  --max-width: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo img { border-radius: 0; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* Hero */
.hero {
  padding: 150px 24px 90px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 800px 400px at 50% -10%, rgba(217, 45, 32, 0.10), transparent 70%),
    radial-gradient(ellipse 600px 400px at 50% 110%, rgba(27, 58, 143, 0.10), transparent 70%);
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero-logo {
  display: block;
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 50px rgba(217, 45, 32, 0.18));
}
.hero h1 {
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-secondary:hover { color: var(--text); border-color: var(--border-hover); }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 84px 24px; }
.section + .section { border-top: 1px solid var(--border); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 12px;
}
.section-lede {
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1rem;
}
.section h2 + .grid, .section h2 + .fact-grid { margin-top: 44px; }

/* Capability grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-hover); }
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--text-muted); font-size: 0.92rem; }
.card ul { color: var(--text-muted); font-size: 0.9rem; margin: 12px 0 0 18px; }
.card ul li { margin-bottom: 5px; }
.card-num {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Fact grid */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.fact {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.fact dt {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.fact dd { font-size: 1.02rem; font-weight: 600; color: var(--text); word-break: break-word; }
.fact dd span { display: block; font-size: 0.88rem; font-weight: 400; color: var(--text-muted); margin-top: 4px; }

/* Quote */
.quote { text-align: center; }
.quote blockquote {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin: 0 auto 18px;
}
.quote cite { color: var(--text-muted); font-style: normal; font-size: 0.92rem; }

/* Page header */
.page-header {
  padding: 130px 24px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.page-header p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 14px auto 0;
}

/* Prose */
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { font-size: 1.45rem; margin: 44px 0 14px; text-align: left; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 30px 0 8px; }
.prose p { color: var(--text-muted); margin-bottom: 16px; }
.prose a { color: var(--accent-hover); }
.prose ul { color: var(--text-muted); margin: 0 0 16px 22px; }
.prose li { margin-bottom: 6px; }

/* Timeline */
.timeline { max-width: 740px; margin: 0 auto; list-style: none; }
.timeline li {
  position: relative;
  padding: 0 0 32px 30px;
  border-left: 1px solid var(--border);
}
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -5px; top: 8px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.timeline p { color: var(--text-muted); font-size: 0.93rem; }

/* People */
.people { display: grid; gap: 18px; max-width: 820px; margin: 0 auto; }
.person {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.person h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 2px; }
.person .role {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.person p { color: var(--text-muted); font-size: 0.92rem; }

/* Program tags */
.tags { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; max-width: 820px; margin: 0 auto; }
.tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.contact-grid a { color: var(--text); text-decoration: none; }
.contact-grid a:hover { color: var(--accent-hover); }

/* CTA */
.cta { text-align: center; }
.cta h2 { margin-bottom: 14px; }
.cta p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.02rem; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 24px;
  text-align: center;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-brand img { border-radius: 0; }
.footer-hubzone { height: 84px; width: auto; margin-bottom: 18px; opacity: 0.9; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: var(--text); }
.footer p { color: var(--text-muted); font-size: 0.82rem; margin: 4px 0; }
.footer a { color: var(--text-muted); }

/* Responsive */
@media (max-width: 720px) {
  .hero { padding: 120px 24px 70px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-tagline { font-size: 1.08rem; }
  .hero-logo { width: 76px; height: 76px; }
  .section { padding: 60px 24px; }
  .section h2 { font-size: 1.55rem; }
  .page-header { padding: 110px 24px 0; }
  .page-header h1 { font-size: 1.85rem; }
  .grid { grid-template-columns: 1fr; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 0.82rem; }
  .nav-logo span { display: none; }
  .quote blockquote { font-size: 1.12rem; }
}

/* Screenshots */
.shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 0 auto;
}
.shot-wrap { max-width: 980px; margin: 0 auto; }
.shot-caption {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-align: center;
  margin-top: 12px;
}

/* Flagship badge */
.badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(217, 45, 32, 0.4);
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Definition list for company data */
.dl { max-width: 740px; margin: 0 auto; }
.dl div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.dl div:last-child { border-bottom: none; }
.dl dt { color: var(--text-muted); font-size: 0.9rem; }
.dl dd { font-size: 0.94rem; }
.dl dd ul { margin: 0 0 0 18px; color: var(--text-muted); }
@media (max-width: 640px) {
  .dl div { grid-template-columns: 1fr; gap: 4px; }
}

/* Screenshot rows */
.shot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.shot-row figure { margin: 0; }
.shot-row img { width: 100%; height: auto; }
.shot-row figcaption {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 720px) {
  .shot-row { grid-template-columns: 1fr; }
}

/* Single wide card, e.g. the unnamed capability list */
.card-wide { max-width: 820px; margin: 0 auto; }
.cap-list { list-style: none; margin: 0; }
.cap-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cap-list li:last-child { border-bottom: none; }
.cap-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 20px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Forms ---------- */

/* A left-aligned reading column; the rest of the site centres its headings,
   but a form reads badly when its labels chase a centred axis. */
.form-col { max-width: 760px; margin: 0 auto; }
.form-col h2 { text-align: left; margin-bottom: 10px; }
.form-col .section-lede {
  text-align: left;
  max-width: none;
  margin: 0 0 30px;
}

.form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 38px;
}

.reg-form { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin: 0; }

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 9px;
}
.field .req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field textarea { min-height: 150px; resize: vertical; }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--border-hover); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.16);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }

.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 23px) calc(50% + 2px), calc(100% - 17px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field select:invalid { color: var(--text-muted); }

/* Acknowledgment checkbox sits in its own bordered well */
.field.check {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  padding: 18px;
}
.field.check label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  margin: 0;
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}
.field.check input[type="checkbox"] {
  width: 19px;
  height: 19px;
  min-height: 0;
  padding: 0;
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}

.reg-form button {
  justify-self: start;
  width: auto;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 15px 38px;
  font-size: 0.98rem;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin: 0;
}
.form-alt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 22px 0 0;
}
.form-alt a { color: var(--accent-hover); }

.form-error {
  margin: 0 0 24px;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid rgba(217, 45, 32, 0.45);
  background: rgba(217, 45, 32, 0.08);
  color: var(--text);
  font-size: 0.93rem;
}

/* Honeypot: off-screen, never shown, never announced */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 640px) {
  .form-panel { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 22px; }
  .reg-form button { width: 100%; justify-self: stretch; }
}

/* ---------- Statement band ----------
   Deliberately not a card grid. The page already has three of those, and the
   in-house claim gets lost if it looks like one more list of features. */
.statement {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 900px 380px at 50% 0%, rgba(217, 45, 32, 0.09), transparent 72%),
    var(--bg-card);
}
.statement-inner { max-width: 940px; margin: 0 auto; text-align: center; }

.statement-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.statement-lead {
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 22px;
}
.statement-lead em {
  font-style: normal;
  color: var(--accent);
}
.statement-sub {
  font-size: 1.04rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.statement-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 56px;
  text-align: left;
}
.statement-point { padding-top: 20px; border-top: 2px solid var(--accent); }
.statement-point h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.statement-point p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .statement { padding: 64px 24px; }
  .statement-lead { font-size: 1.7rem; }
  .statement-points { grid-template-columns: 1fr; gap: 26px; margin-top: 40px; }
}

/* Anchor targets must clear the fixed nav, or the heading lands underneath it. */
:target,
section[id],
[id]:not(body) { scroll-margin-top: 84px; }
