:root {
  --bg: #06111f;
  --navy: #071426;
  --ink: #07111f;
  --text: #eef6ff;
  --muted: #98aac1;
  --line: rgba(148, 163, 184, .22);
  --blue: #2864ff;
  --cyan: #40c8ff;
  --green: #24d982;
  --soft: #f4f8ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, Helvetica, sans-serif; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }

.site-header {
  height: 78px;
  padding: 0 5.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 10, 22, .92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }

.mark, .mini-mark, .glow-mark { width: 36px; height: 30px; display: grid; gap: 5px; }
.mark span, .mini-mark i, .glow-mark span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, var(--cyan), var(--blue));
  transform: skewX(-22deg);
  box-shadow: 0 0 12px rgba(64, 200, 255, .35);
}
.mark span:nth-child(1) { width: 26px; }
.mark span:nth-child(2) { width: 34px; margin-left: 2px; }
.mark span:nth-child(3) { width: 22px; margin-left: 10px; }

.site-header nav, footer nav { display: flex; gap: 34px; color: #e7eef9; font-size: 14px; font-weight: 700; }

.nav-cta, .primary-btn {
  background: linear-gradient(135deg, var(--blue), #0d4fff);
  border: 1px solid rgba(91, 170, 255, .7);
  box-shadow: 0 0 28px rgba(40, 100, 255, .35);
  padding: 15px 22px;
  border-radius: 9px;
  font-weight: 900;
}

.secondary-btn, .secondary-dark {
  border: 1px solid rgba(255,255,255,.25);
  padding: 15px 22px;
  border-radius: 9px;
  font-weight: 900;
  background: rgba(255,255,255,.04);
}

.hero {
  min-height: 650px;
  padding: 70px 5.5% 58px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(40, 100, 255, .22), transparent 32%),
    linear-gradient(120deg, #04101f 0%, #06172a 55%, #071c35 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px 45%;
  height: 520px;
  background:
    linear-gradient(135deg, transparent 20%, rgba(40, 100, 255, .42) 21%, transparent 22%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(64,200,255,.16) 23px 24px);
  opacity: .6;
  pointer-events: none;
}

.eyebrow { color: #67c7ff; font-size: 13px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin: 12px 0 26px; line-height: .92; }
.hero h1 span {
  display: block;
  font-size: clamp(54px, 8vw, 88px);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff, #a9c4e8);
  -webkit-background-clip: text;
  color: transparent;
}
.hero h1 small {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c9e7ff;
}
.hero h2 { font-size: clamp(34px, 4.2vw, 54px); line-height: 1.05; margin: 0 0 24px; max-width: 700px; }
.subhead { max-width: 650px; color: #d4e1f1; font-size: 18px; line-height: 1.75; }
.hero-actions { margin: 34px 0 28px; display: flex; gap: 16px; flex-wrap: wrap; }
.trust-points { display: flex; flex-wrap: wrap; gap: 26px; color: #d7e6f7; font-size: 13px; font-weight: 800; }
.trust-points span::before { content: "◎"; color: #6fd0ff; margin-right: 8px; }

.product-shell {
  position: relative;
  z-index: 1;
  background: rgba(5, 16, 31, .9);
  border: 1px solid rgba(95, 160, 235, .35);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), inset 0 0 70px rgba(40,100,255,.06);
  overflow: hidden;
}

.app-top { height: 62px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 14px; padding: 0 22px; }
.mini-mark { width: 24px; height: 18px; gap: 3px; }
.mini-mark i { height: 3px; }
.status { margin-left: auto; color: #e8f4ff; font-size: 13px; }
.status::before { content: ""; width: 8px; height: 8px; display: inline-block; background: var(--green); border-radius: 50%; margin-right: 8px; }

.app-grid { display: grid; grid-template-columns: 150px 1fr 225px; min-height: 480px; }
.sidebar { padding: 18px 12px; border-right: 1px solid var(--line); display: grid; align-content: start; gap: 8px; }
.sidebar a { padding: 13px 15px; border-radius: 8px; color: #d6e4f5; font-size: 13px; font-weight: 800; }
.sidebar .active { background: rgba(40, 100, 255, .55); color: white; }
.opportunity-card, .profile-card { padding: 24px; border-right: 1px solid var(--line); }
.profile-card { border-right: none; }
.label-row { display: flex; justify-content: space-between; color: #d8e8fa; font-size: 13px; font-weight: 900; }
.label-row em { color: #9ff3c4; background: rgba(36,217,130,.14); border-radius: 99px; padding: 5px 10px; text-transform: uppercase; font-style: normal; }
.opportunity-card h3 { font-size: 30px; margin: 22px 0 10px; color: white; }
.tags { display: flex; gap: 8px; margin-bottom: 22px; }
.tags span { background: rgba(255,255,255,.08); border: 1px solid var(--line); color: #dcecff; padding: 6px 10px; border-radius: 8px; font-size: 12px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-row div { border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: rgba(255,255,255,.03); }
.metric-row b { display: block; font-size: 27px; color: white; }
.metric-row small { color: var(--muted); }
.reason { margin-top: 24px; }
.reason h4, .profile-card h4 { color: white; margin: 0 0 10px; }
.reason p, .profile-card dd, .activity span { color: #b8c8dc; }
.reason p { line-height: 1.65; }
.button-row { display: flex; gap: 12px; margin-top: 24px; }
button { border: 0; border-radius: 8px; background: linear-gradient(135deg, var(--blue), #063bd6); color: white; padding: 13px 17px; font-weight: 900; cursor: pointer; }
button.ghost { background: transparent; border: 1px solid var(--line); }
.profile-card dl { display: grid; grid-template-columns: 1fr 1.2fr; gap: 14px; font-size: 12px; margin: 20px 0 26px; }
.profile-card dt { color: var(--muted); }
.profile-card dd { margin: 0; }
.activity { border-top: 1px solid var(--line); padding-top: 20px; }
.activity p { color: white; font-size: 13px; }
.activity span { display: block; font-size: 12px; margin-top: 3px; }

.industry-band { background: #08182b; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 5.5%; text-align: center; }
.industry-band p { color: #7ecbff; letter-spacing: .22em; text-transform: uppercase; font-weight: 900; font-size: 13px; }
.industry-band div { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 24px; }
.industry-band span { color: #dbe9fb; text-transform: uppercase; font-weight: 900; font-size: 13px; opacity: .8; }

.capabilities, .pricing-section, .demo-section { background: var(--soft); color: var(--ink); padding: 70px 5.5%; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-heading h2, .pricing-section h2, .demo-section h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.1; margin: 8px 0 0; }
.section-heading a { border: 1px solid #d5deea; padding: 14px 18px; border-radius: 8px; font-weight: 900; background: white; }

.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.feature-grid article { background: white; border: 1px solid #dbe4ef; border-radius: 12px; padding: 28px 20px; min-height: 205px; box-shadow: 0 18px 36px rgba(15, 23, 42, .06); text-align: center; }
.icon { color: var(--blue); font-size: 36px; margin-bottom: 18px; }
.feature-grid h3 { color: var(--ink); font-size: 16px; }
.feature-grid p { color: #46566d; line-height: 1.65; font-size: 14px; }

.platform-section { padding: 75px 5.5%; background: radial-gradient(circle at 65% 50%, rgba(40,100,255,.2), transparent 30%), #03101f; display: grid; grid-template-columns: .75fr 1.25fr; gap: 52px; align-items: center; }
.platform-copy h2 { font-size: clamp(36px, 4.5vw, 54px); line-height: 1; margin: 14px 0; }
.platform-copy p { color: #c6d8ec; font-size: 18px; line-height: 1.7; margin-bottom: 32px; }
.secondary-dark { display: inline-block; }

.dashboard { min-height: 395px; border: 1px solid rgba(124,176,255,.35); border-radius: 14px; display: grid; grid-template-columns: 165px 1fr; background: rgba(255,255,255,.03); overflow: hidden; }
.dash-sidebar { padding: 22px; border-right: 1px solid var(--line); display: grid; align-content: start; gap: 14px; }
.dash-sidebar span { color: #cfddf0; font-size: 13px; }
.dash-main { padding: 24px; }
.dash-main h3 { color: white; }
.dash-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.dash-metrics div { background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.dash-metrics b { display: block; font-size: 28px; }
.dash-metrics small { color: var(--muted); }
.chart { height: 145px; margin: 24px 0; border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: end; gap: 18px; padding: 20px; background: rgba(255,255,255,.03); }
.chart span { width: 34px; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--cyan), var(--blue)); }
.outcomes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.outcomes p { margin: 0; color: #dbe8fa; display: flex; justify-content: space-between; }

.pricing-section { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: center; }
.pricing-section p { color: #46566d; line-height: 1.7; max-width: 780px; }
.price-card { background: white; border: 1px solid #dbe4ef; border-radius: 18px; padding: 32px; box-shadow: 0 22px 46px rgba(15, 23, 42, .09); }
.price-card h3 { color: var(--ink); }
.price-card strong { color: var(--blue); font-size: 52px; display: block; margin: 12px 0; }
.price-card strong span { color: #738197; font-size: 18px; }
.price-card li { margin: 12px 0; color: #36455c; }

.coming-soon { background: linear-gradient(90deg, #071426, #061a34); border-top: 1px solid rgba(83, 160, 255, .35); border-bottom: 1px solid rgba(83, 160, 255, .35); padding: 48px 5.5%; display: grid; grid-template-columns: 90px 1fr auto; gap: 28px; align-items: center; }
.glow-mark { width: 70px; height: 58px; padding: 18px; border-radius: 18px; border: 1px solid rgba(64,200,255,.5); box-shadow: 0 0 35px rgba(40,100,255,.55); }
.coming-soon h2 { margin: 0; font-size: 32px; }
.coming-soon p { color: #cbdcf0; margin: 8px 0 0; }

.demo-section { text-align: center; }
.demo-section p:not(.eyebrow) { color: #46566d; }
.demo-section form { max-width: 850px; margin: 28px auto 0; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 12px; }
input { border: 1px solid #cbd6e4; border-radius: 10px; padding: 16px; font-size: 15px; }

footer { min-height: 92px; padding: 0 5.5%; display: flex; align-items: center; justify-content: space-between; background: #020a15; border-top: 1px solid var(--line); }
footer p { color: #b8c7d9; font-size: 13px; }

@media (max-width: 1100px) {
  .site-header nav, footer nav { display: none; }
  .hero, .platform-section, .pricing-section { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 120px 1fr; }
  .profile-card { display: none; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-band div { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .site-header { padding: 0 20px; }
  .nav-cta { display: none; }
  .hero { padding: 52px 20px; }
  .hero h1 span { font-size: 48px; }
  .app-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .metric-row, .dash-metrics, .outcomes, .feature-grid, .industry-band div, .demo-section form { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .coming-soon { grid-template-columns: 1fr; text-align: left; }
  footer { display: grid; gap: 18px; padding: 28px 20px; }
}
