/* ─── 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;
  --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;
}

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(5,7,10,0.94);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  color: var(--white);
  border: 1px solid var(--border-2);
  padding: 8px 18px;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.nav-links .nav-cta:hover {
  border-color: var(--red);
  background: var(--red-dim);
  color: var(--white);
}
.nav-links .nav-product {
  color: var(--red) !important;
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-links .nav-product:hover {
  background: var(--red-dim);
  border-color: var(--red);
  color: var(--white) !important;
}
.nav-links .nav-product--principal {
  color: var(--teal) !important;
  border-color: rgba(20,184,166,0.3);
}
.nav-links .nav-product--principal:hover {
  background: rgba(20,184,166,0.08);
  border-color: var(--teal);
  color: var(--white) !important;
}
.nav-toggle { display: none; }

/* ─── 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: calc(var(--nav-h) + 80px) 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(52px, 7vw, 88px);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 32px;
}
.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: nowrap;
}
.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; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px 32px 32px;
    gap: 20px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.2s, opacity 0.2s;
  }

  .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: 44px; }
}
