/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #05070A;
  --surface:    #0C0F14;
  --surface-2:  #111520;
  --border:     #1C2230;
  --border-2:   #273044;
  --red:        #3B82F6;
  --red-dim:    rgba(59, 130, 246, 0.12);
  --red-glow:   rgba(59, 130, 246, 0.06);
  --teal:       #14B8A6;
  --amber:      #F59E0B;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --muted:      #94A3B8;
  --muted-2:    #64748B;
  --text:       #F8FAFC;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 64px;   /* kept for fallback */
  --sidebar-w: 220px;
  --max-w: 1160px;
  --section-pad: 120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── DOT GRID ─────────────────────────────────────────────────────────────── */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ─── LEFT SIDEBAR NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  z-index: 100;
  background: rgba(5,7,10,0.96);
  border-right: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 20px 32px;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 36px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
/* Section divider label inside sidebar */
.nav-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 16px 10px 6px;
  display: block;
}
.nav-links li { list-style: none; }
.nav-links a {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  padding: 9px 10px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.nav-links .nav-cta {
  color: var(--white);
  background: var(--red-dim);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 6px;
  padding: 9px 10px;
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.nav-links .nav-cta:hover {
  background: rgba(59,130,246,0.22);
  border-color: var(--red);
}
.nav-links .nav-signin {
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 10px;
  margin-top: 4px;
  text-align: center;
  font-size: 11px;
}
.nav-links .nav-signin:hover {
  color: var(--white);
  border-color: var(--border-2);
  background: rgba(255,255,255,0.04);
}
.nav-links .nav-product {
  color: var(--red) !important;
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 5px;
  position: relative;
  padding-left: 18px;
}
.nav-links .nav-product::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}
.nav-links .nav-product:hover {
  background: var(--red-dim);
  color: var(--white) !important;
}
.nav-links .nav-product--principal {
  color: var(--teal) !important;
}
.nav-links .nav-product--principal::before { background: var(--teal); }
.nav-links .nav-product--principal:hover {
  background: rgba(20,184,166,0.08);
  color: var(--white) !important;
}
.nav-links .nav-product--hr {
  color: #34d399 !important;
}
.nav-links .nav-product--hr::before { background: #34d399; }
.nav-links .nav-product--hr:hover {
  background: rgba(52,211,153,0.08);
  color: var(--white) !important;
}
.nav-links .nav-product--compliance {
  color: #38bdf8 !important;
}
.nav-links .nav-product--compliance::before { background: #38bdf8; }
.nav-links .nav-product--compliance:hover {
  background: rgba(56,189,248,0.08);
  color: var(--white) !important;
}
.nav-links .nav-active {
  color: var(--white) !important;
  background: rgba(59,130,246,0.1);
  border-left: 2px solid var(--red);
  padding-left: 8px;
}

/* Sidebar footer branding */
.nav-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 9px;
  color: var(--muted-2);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  flex-direction: column;
  gap: 5px;
  background: rgba(5,7,10,0.9);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 10px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

/* Push page content right of sidebar — sidebar is 220px wide + 144px gap (~1.5 inch) */
body { padding-left: calc(var(--sidebar-w) + 144px); }

/* ─── CONTAINER ─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px 100px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: #2563EB;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid var(--border-2);
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--muted-2); }

.hero-mark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: min(600px, 55vw);
  opacity: 0.7;
  z-index: 1;
  animation: rotate-mark 60s linear infinite;
}
@keyframes rotate-mark {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* ─── STATEMENT ─────────────────────────────────────────────────────────────── */
.statement {
  background: linear-gradient(135deg, #0F1B2D 0%, #0A1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.category-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.45;
  color: var(--off-white);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  quotes: none;
  border: none;
}

/* ─── SECTION LABELS & TITLES ───────────────────────────────────────────────── */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 60px;
}

/* ─── PLATFORM ──────────────────────────────────────────────────────────────── */
.platform {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.platform-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.platform-card:hover { background: var(--surface-2); }
.card-icon {
  margin-bottom: 20px;
}
.platform-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}
.platform-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── VERTICALS ─────────────────────────────────────────────────────────────── */
.verticals {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.vertical-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
  position: relative;
}
.vertical-card:hover { background: var(--surface-2); }
.vertical-featured {
  grid-column: 1 / -1;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.vertical-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.vertical-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 20px;
}
.vertical-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.vertical-products {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.vp {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 3px;
}
.vp-suite {
  border-color: var(--teal);
  background: rgba(20, 184, 166, 0.06);
}
.vp-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}
.vp-desc {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.vertical-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.vertical-link:hover { opacity: 0.75; }
.scenario-list {
  margin-bottom: 20px;
}
.scenario-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.scenario-list li::before {
  content: "— ";
  color: var(--red);
}
.coming-soon {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ─── READINESS MODEL ────────────────────────────────────────────────────────── */
.model {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.model-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.findings-examples {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.finding {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.55;
}
.finding-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.model-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
}
.score-wheel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.score-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: fade-in 0.5s ease calc(var(--i) * 0.08s) both;
}
@keyframes fade-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.score-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.score-bar {
  height: 4px;
  background: var(--border-2);
  border-radius: 2px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--red), var(--teal));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.score-caption {
  font-size: 11px;
  color: var(--muted-2);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ─── PRICING ────────────────────────────────────────────────────────────────── */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.price-card {
  background: var(--surface);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
  position: relative;
}
.price-card:hover { background: var(--surface-2); }
.price-featured {
  background: var(--surface-2);
  border-top: 2px solid var(--teal);
}
.price-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.price-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  line-height: 1.1;
}
.price-amount span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.price-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.btn-price {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--border-2);
  border-radius: 3px;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.btn-price:hover { color: var(--white); border-color: var(--muted-2); }
.btn-price-featured {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: var(--red);
  border-radius: 3px;
  color: var(--white);
  transition: background 0.2s;
}
.btn-price-featured:hover { background: #2563EB; }
.custom-note {
  font-size: 12px;
  color: var(--muted-2);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ─── SEQUENCE ──────────────────────────────────────────────────────────────── */
.sequence {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.sequence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 60px;
}
.seq-step {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.2s;
}
.seq-step:hover { background: var(--surface-2); }
.seq-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 20px;
}
.seq-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}
.seq-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.seq-target {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ─── CONTACT ───────────────────────────────────────────────────────────────── */
.contact {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg);
  overflow: hidden;
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  white-space: normal;
  overflow-wrap: break-word;
}
.contact > .container > .contact-inner > .contact-left > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cd-item {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
}
.cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  min-width: 70px;
}
.cd-item a { color: var(--off-white); transition: color 0.2s; }
.cd-item a:hover { color: var(--red); }

/* FORM */
.demo-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--muted-2); }
.form-group select option { background: var(--surface); }
.form-group input:focus,
.form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.btn-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 3px;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.btn-submit:hover { background: #2563EB; }
.form-note {
  font-size: 11px;
  color: var(--muted-2);
  text-align: center;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 260px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); /* already 3-col */ }
  .model-inner { grid-template-columns: 1fr; gap: 48px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  /* Mobile: sidebar slides off-screen, toggle appears */
  body { padding-left: 0; }

  .nav {
    transform: translateX(calc(-1 * var(--sidebar-w)));
    box-shadow: 4px 0 24px rgba(0,0,0,0.5);
  }
  .nav.sidebar-open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
  }
  /* Overlay when sidebar open */
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
  }
  .sidebar-overlay.active { display: block; }

  .hero-mark { display: none; }

  .verticals-grid { grid-template-columns: 1fr; }
  .vertical-featured { grid-column: 1; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

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

  .pricing-grid { grid-template-columns: 1fr 1fr; /* 2-col on mobile */ }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-links { gap: 32px; }
}

@media (max-width: 480px) {
  .sequence-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
}


/* ── TRACK-ROUTING CTAs in hero ─────────────────────────────────────────── */
.hero-actions--track {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.btn-track {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.btn-track--security {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.35);
  color: #93c5fd;
}
.btn-track--security:hover {
  background: rgba(59,130,246,0.22);
  color: #bfdbfe;
}

.btn-track--principal {
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.35);
  color: #c4b5fd;
}
.btn-track--principal:hover {
  background: rgba(139,92,246,0.22);
  color: #ddd6fe;
}

.btn-track--hr {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.35);
  color: #6ee7b7;
}
.btn-track--hr:hover {
  background: rgba(16,185,129,0.22);
  color: #a7f3d0;
}

.track-arrow {
  transition: transform 0.2s;
}
.btn-track:hover .track-arrow {
  transform: translateX(3px);
}

/* ── FIND YOUR TRACK section ─────────────────────────────────────────────── */
.find-track {
  padding: 80px 0;
  background: #0d1117;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.track-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 1100px) {
  .track-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .track-cards {
    grid-template-columns: 1fr;
  }
}

.track-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  cursor: pointer;
}

.track-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.track-card--security { border-color: rgba(59,130,246,0.25); }
.track-card--security:hover { border-color: rgba(59,130,246,0.5); }
.track-card--principal { border-color: rgba(139,92,246,0.25); }
.track-card--principal:hover { border-color: rgba(139,92,246,0.5); }
.track-card--hr { border-color: rgba(16,185,129,0.25); }
.track-card--hr:hover { border-color: rgba(16,185,129,0.5); }
.track-card--compliance { border-color: rgba(2,132,199,0.25); }
.track-card--compliance:hover { border-color: rgba(2,132,199,0.5); }

.track-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.track-card--security .track-card-tag { color: #60a5fa; }
.track-card--principal .track-card-tag { color: #a78bfa; }
.track-card--hr .track-card-tag { color: #34d399; }
.track-card--compliance .track-card-tag { color: #38bdf8; }

.track-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f1f5f9;
  margin: 0;
  font-family: 'Syne', sans-serif;
}

.track-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  flex: 1;
}

.track-card-audience {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.track-card-cta {
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 4px;
}
.track-card--security .track-card-cta { color: #93c5fd; }
.track-card--principal .track-card-cta { color: #c4b5fd; }
.track-card--hr .track-card-cta { color: #6ee7b7; }
.track-card--compliance .track-card-cta { color: #7dd3fc; }

/* ── VIDEO DEMO section ─────────────────────────────────────────────────── */
.video-demo {
  padding: 80px 0;
  background: #080d14;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.video-placeholder {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.2);
  aspect-ratio: 16/9;
  max-width: 800px;
}

.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
}

.video-play-icon {
  opacity: 0.7;
}

.video-placeholder-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.video-placeholder-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ── CREDIBILITY STRIP ─────────────────────────────────────────────────── */
.credibility-strip {
  padding: 32px 0;
  background: rgba(59,130,246,0.04);
  border-bottom: 1px solid rgba(59,130,246,0.12);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cred-item {
  text-align: center;
}

.cred-value {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #60a5fa;
  margin-bottom: 4px;
}

.cred-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── Centered contact form layout ──────────────────────────────────────────── */
.contact-inner--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-inner--centered .contact-left {
  max-width: 480px;
}

.contact-inner--centered .contact-right {
  width: 100%;
}

.contact-inner--centered .demo-form {
  text-align: left;
}

/* ── Centered Get Started section ──────────────────────────────────────────── */
.contact-centered {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-centered .contact-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: #f1f5f9;
  margin: 12px 0 16px;
  line-height: 1.1;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}

.demo-form--centered {
  text-align: left;
  margin-top: 8px;
}

/* ─── PRICING GRID — 4-CARD FULL VERSION ───────────────────────────────────── */
.pricing-grid--full {
  grid-template-columns: repeat(4, 1fr);
}
.price-card--featured {
  background: var(--surface-2);
  border-top: 2px solid #3B82F6;
}
.price-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: -4px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.price-features li {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.price-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #3B82F6;
  font-weight: 600;
}
.price-amount--range {
  font-size: 16px !important;
}

@media (max-width: 1100px) {
  .pricing-grid--full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid--full { grid-template-columns: 1fr; }
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────────── */
.about-section {
  padding: 96px 0;
}
.about-section:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

/* ─── NAV SIGN IN LINK ───────────────────────────────────────────────────── */
.nav-signin {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-signin:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5);
}


/* ─── HERO AUDIENCE ANCHOR ROW ──────────────────────────────────────────────── */
.hero-audience-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 24px;
  max-width: 680px;
}
.hero-audience-item {
  flex: 1;
  text-align: center;
}
.hero-audience-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.hero-audience-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.hero-audience-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.hero-audience-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 4px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-btn-primary {
  display: inline-block;
  background: #3B82F6;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-btn-primary:hover { background: #2563EB; }
.hero-btn-secondary {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hero-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────────── */
.how-it-works {
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.step-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s;
}
.step-card:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.04);
}
.step-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  padding: 0 16px;
  margin-top: 40px;
  flex-shrink: 0;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #3B82F6;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .steps-row { flex-direction: column; gap: 16px; }
  .step-arrow { display: none; }
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────────── */
.testimonials {
  padding: 96px 0;
  background: rgba(255,255,255,0.018);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 3rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: #3B82F6;
  opacity: 0.25;
  line-height: 1;
}
.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  padding-top: 20px;
  font-style: italic;
}
.testimonial-author {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.testimonial-org {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ─── OUTCOME STATS ──────────────────────────────────────────────────────────── */
.outcome-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .outcome-stats { grid-template-columns: repeat(2, 1fr); }
}
.outcome-stat {
  background: rgba(5,7,10,0.9);
  padding: 32px 24px;
  text-align: center;
}
.outcome-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #3B82F6;
  line-height: 1;
  margin-bottom: 8px;
}
.outcome-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ─── TRUST BADGES ───────────────────────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 7px 14px;
}
.trust-badge svg {
  color: #3B82F6;
  flex-shrink: 0;
}

/* ─── FORM ALT CONTACT ───────────────────────────────────────────────────────── */
.form-alt {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 8px;
}

/* ─── PILOT HERO CARD ────────────────────────────────────────────────────────── */
.pilot-hero-card {
  max-width: 640px;
  margin: 48px auto 0;
  background: #0C0F14;
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 48px 44px;
  text-align: center;
  box-shadow: 0 0 60px rgba(245,158,11,0.08), 0 4px 32px rgba(0,0,0,0.4);
}
@media (max-width: 640px) {
  .pilot-hero-card { padding: 32px 24px; margin-top: 32px; }
}

.pilot-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: #f59e0b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.pilot-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pilot-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  margin-bottom: 8px;
}

.pilot-price-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.pilot-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  max-width: 420px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pilot-features li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pilot-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
}

.btn-pilot-cta {
  display: inline-block;
  background: #f59e0b;
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}
.btn-pilot-cta:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.pilot-reassurance {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* ─── PRICING SECONDARY GRID ─────────────────────────────────────────────────── */
.pricing-secondary-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin: 52px 0 24px;
}

.pricing-grid-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing-grid-secondary { grid-template-columns: 1fr; max-width: 420px; }
}

.price-card-sm {
  background: #0C0F14;
  border: 1px solid #1C2230;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.price-card-sm:hover { border-color: #273044; }

.price-tier-sm {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.price-amount-sm {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.price-amount-sm span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

.price-card-sm p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.btn-price-sm {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #273044;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-price-sm:hover {
  border-color: #3B82F6;
  color: #3B82F6;
  background: rgba(59,130,246,0.06);
}
