/* HZ360 public product web — shared presentation layer.
   Tokens carried from the ratified TrainingOS visual language:
   HZ360_TrainingOS_Interactive_Prototype (2026-08-31) and the governed
   application shell (src/app/globals.css, DR-057). No token is invented here.
   No web font is loaded: the page makes zero third-party requests. */

:root {
  --hz-navy: #0b1f3a;
  --hz-blue: #0052cc;
  --hz-orange: #ff6a00;
  --bg: #f6f8fb;
  --card: #ffffff;
  --soft: #eef3fb;
  --text: #142033;
  --muted: #667085;
  --border: #dfe3ea;
  --success: #177245;
  --r-md: 12px;
  --r-lg: 16px;
  --shadow: 0 1px 2px rgba(11, 31, 58, .06), 0 8px 24px rgba(11, 31, 58, .05);
  --measure: 68ch;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Calibri, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

a { color: var(--hz-blue); }

:focus-visible {
  outline: 3px solid var(--hz-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--hz-navy);
  color: #fff;
  padding: 12px 16px;
  border-radius: 0 0 var(--r-md) 0;
  z-index: 20;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- masthead ---------- */

.masthead {
  background: var(--hz-navy);
  color: #fff;
  padding: 16px 0;
}
.masthead .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: space-between;
}
.lockup { display: flex; flex-direction: column; gap: 2px; }
.lockup .mark { font-size: 21px; font-weight: 800; letter-spacing: .01em; line-height: 1.2; }
.lockup .mark em { font-style: normal; color: var(--hz-orange); }
.lockup .powered { font-size: 12.5px; color: #b9c6d8; line-height: 1.4; }
.masthead a:not(.btn) { color: #fff; text-decoration: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  border: 1px solid var(--hz-orange);
  background: var(--hz-orange);
  color: var(--hz-navy);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
}
.btn:hover { background: #e65f00; border-color: #e65f00; }
.btn-sm { padding: 10px 16px; font-size: 15px; }

/* ---------- sections ---------- */

main { display: block; }

section { padding: 56px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
  font-weight: 700;
  color: #5c6579;
  margin: 0 0 10px;
}

h1 {
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 0 0 18px;
  max-width: 20ch;
}

h2 {
  font-size: clamp(23px, 4vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  max-width: 26ch;
}

h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; line-height: 1.3; }

p { margin: 0 0 16px; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(18px, 2.4vw, 21px); color: #33415a; }

.hero { background: var(--card); }
.promise {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .02em;
  color: var(--hz-blue);
  margin: 0 0 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex: none; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.cta-note { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card p { font-size: 15.5px; color: #3c4a63; }

/* ---------- flow ---------- */

.flow { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.flow li {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--hz-orange);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.flow .step {
  display: block;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--hz-blue);
  margin-bottom: 6px;
}
.flow p { font-size: 15.5px; color: #3c4a63; margin: 0; }

/* ---------- value list ---------- */

.value { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.value li {
  padding-left: 30px;
  position: relative;
  max-width: var(--measure);
  font-size: 16px;
  color: #33415a;
}
.value li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--hz-orange);
}
.value b { color: var(--text); }

/* ---------- status ---------- */

.status { background: var(--soft); }
.status-grid { display: grid; gap: 14px; margin-top: 24px; }
.status-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.status-item .tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 9px;
}
.tag-live { background: #e3f2e9; color: #135c33; border: 1px solid #b6ddc6; }
.tag-pilot { background: #fff2e3; color: #8a4200; border: 1px solid #f2cfa8; }
.status-item p { font-size: 15.5px; color: #3c4a63; margin: 0; }

/* ---------- closing ---------- */

.closing { background: var(--hz-navy); color: #fff; border-top: 0; }
.closing h2 { color: #fff; }
.closing p { color: #cfd9e6; }
.closing .cta-note { color: #9fb0c6; }

/* ---------- footer ---------- */

footer { background: var(--hz-navy); color: #9fb0c6; padding: 0 0 44px; font-size: 14px; }
footer .rule { height: 1px; background: rgba(255,255,255,.14); margin-bottom: 26px; }
footer p { max-width: var(--measure); margin: 0 0 10px; }
footer .cec { color: #cfd9e6; }
footer .tagline { color: #fff; font-weight: 700; }

@media (min-width: 700px) {
  .flow { grid-template-columns: 1fr 1fr; }
  .status-grid { grid-template-columns: 1fr 1fr; }
}
