:root {
  --bg: #080111;
  --bg-elev: #11081c;
  --bg-card: #140a22;
  --bg-card-2: #1a102c;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(168, 85, 247, 0.35);
  --text: #ffffff;
  --muted: #a1a1aa;
  --muted-2: #8b8b96;
  --purple: #8b5cf6;
  --purple-2: #a855f7;
  --indigo: #6366f1;
  --green: #34d399;
  --green-soft: #10b981;
  --red: #f87171;
  --amber: #f59e0b;
  --teal: #2dd4bf;
  --blue: #60a5fa;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font: "Hanken Grotesk", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.center { text-align: center; }

.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.bg-glow-1 {
  width: 620px; height: 620px;
  left: -160px; top: 80px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
}
.bg-glow-2 {
  width: 720px; height: 720px;
  right: -220px; top: -40px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28), transparent 70%);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(8, 1, 17, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--border); }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  z-index: 2;
}
.logo-ai { font-weight: 500; opacity: 0.92; margin-left: 2px; }
.logo-mark { flex-shrink: 0; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.35), 0 10px 30px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: rgba(139, 92, 246, 0.55);
  color: #fff;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.15);
}
.btn-ghost:hover { border-color: #a855f7; background: rgba(139, 92, 246, 0.08); }
.btn-nav {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168, 85, 247, 0.45);
  color: #fff;
  padding: 10px 14px;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}
.btn-sm { padding: 8px 14px; font-size: 12px; border-radius: 8px; }
.btn-lg { padding: 16px 24px; font-size: 14px; }
.btn-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
}
.btn-icon img { width: 14px; height: 14px; filter: invert(1) brightness(2); }

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  padding: 72px clamp(20px, 4vw, 48px) 40px;
  display: grid;
  gap: 56px;
  min-height: calc(100vh - 72px);
}
.hero-copy {
  width: min(640px, 100%);
  margin-left: auto;
  margin-right: clamp(0px, 4vw, 80px);
  text-align: left;
  animation: fadeUp .7s ease both;
  padding-top: 24px;
}
.hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  margin-bottom: 28px;
  max-width: 58ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-product {
  width: min(1120px, 100%);
  margin: 0 auto;
  animation: fadeUp .9s .15s ease both;
}
.product-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 30%),
    linear-gradient(160deg, #160b28, #0c0518 60%, #0a0414);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow), 0 0 80px rgba(124, 58, 237, 0.18);
  overflow: hidden;
  padding: 22px;
}
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.greet { font-size: 22px; font-weight: 600; }
.greet-sub { color: var(--muted); font-size: 13px; margin-top: 4px; }
.progress-wrap { width: min(280px, 100%); }
.progress-label {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted); margin-bottom: 8px;
}
.progress-bar {
  height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
.progress-bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: inherit;
}

.product-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  min-height: 460px;
}
.action-list {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 520px; overflow: auto;
  padding-right: 4px;
}
.action-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.action-card:hover, .action-card.active {
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(139, 92, 246, 0.08);
}
.action-card.active { box-shadow: inset 0 0 0 1px rgba(168,85,247,.25); }
.action-meta {
  display: flex; justify-content: space-between; gap: 8px;
  margin-bottom: 8px; align-items: center;
}
.agent {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  padding: 4px 8px; border-radius: 6px;
}
.agent.closer { background: rgba(239,68,68,.15); color: #fca5a5; }
.agent.strategist { background: rgba(99,102,241,.18); color: #c4b5fd; }
.agent.prepme { background: rgba(168,85,247,.18); color: #e9d5ff; }
.agent.desk { background: rgba(245,158,11,.15); color: #fcd34d; }
.prio {
  font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 999px;
}
.prio.critical { color: #fca5a5; background: rgba(239,68,68,.12); }
.prio.high { color: #93c5fd; background: rgba(59,130,246,.12); }
.action-card h4 { font-size: 14px; line-height: 1.3; margin-bottom: 6px; }
.action-card p { font-size: 12px; color: var(--muted); }

.action-detail {
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.detail-head {
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start;
}
.detail-head h3 { font-size: 18px; line-height: 1.25; }
.badge {
  font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.badge.critical { background: rgba(239,68,68,.15); color: #fca5a5; }
.insight {
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 12px;
  padding: 14px;
}
.insight-label {
  font-size: 11px; letter-spacing: .08em; color: #fca5a5;
  font-weight: 700; margin-bottom: 6px;
}
.insight p { font-size: 13px; color: #fecaca; }
.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.metrics div {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}
.metrics span {
  display: block; font-size: 10px; letter-spacing: .06em;
  color: var(--muted); margin-bottom: 4px;
}
.metrics strong { font-size: 13px; }
.green { color: var(--green); }
.red { color: var(--red); }

.nudge {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.nudge-top {
  display: flex; justify-content: space-between; gap: 10px;
  margin-bottom: 10px; flex-wrap: wrap;
}
.pending { font-size: 12px; color: var(--muted); }
.nudge-subject {
  font-size: 13px; margin-bottom: 8px;
}
.nudge-subject span {
  display: inline-block; font-size: 10px; letter-spacing: .08em;
  color: var(--muted); margin-right: 8px;
}
.nudge-body { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.nudge-actions { display: flex; gap: 8px; justify-content: flex-end; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}
.chips button:hover { color: #fff; border-color: rgba(168,85,247,.4); }
.ask-bar {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
}
.ask-bar input {
  flex: 1; background: transparent; border: 0; outline: none;
  font-size: 13px; color: #fff;
}
.ask-bar button {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(139,92,246,.2); border: 0; cursor: pointer;
}

.team-pulse {
  margin-top: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}
.pulse-head h3 { font-size: 18px; margin-bottom: 4px; }
.pulse-head p { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.pulse-table-wrap { overflow-x: auto; }
.pulse-table {
  width: 100%; border-collapse: collapse; min-width: 680px;
}
.pulse-table th {
  text-align: left; font-size: 11px; letter-spacing: .08em;
  color: var(--muted); font-weight: 600;
  padding: 0 10px 12px; border-bottom: 1px solid var(--border);
}
.pulse-table td {
  padding: 14px 10px; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.pulse-table tr:hover td { background: rgba(139,92,246,0.05); }
.avatar {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  margin-right: 8px; font-size: 11px; font-weight: 700;
  vertical-align: middle;
}
.avatar.j { background: #4c1d95; }
.avatar.c { background: #9a3412; }
.avatar.r { background: #065f46; }
.avatar.t { background: #7f1d1d; }
.avatar.m { background: #1e3a8a; }
.mini-bar {
  display: inline-block; width: 72px; height: 6px;
  background: rgba(255,255,255,0.08); border-radius: 999px;
  overflow: hidden; margin-right: 8px; vertical-align: middle;
}
.mini-bar i { display: block; height: 100%; border-radius: inherit; }
.status {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
}
.status.on { background: rgba(16,185,129,.15); color: #6ee7b7; }
.status.need { background: rgba(245,158,11,.15); color: #fcd34d; }
.status.risk { background: rgba(239,68,68,.15); color: #fca5a5; }

/* SECTIONS */
.section {
  position: relative; z-index: 1;
  padding: 96px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}
.eyebrow.green { color: #6ee7b7; background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.25); }
.eyebrow.amber { color: #fdba74; background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.25); }
.eyebrow.purple { color: #d8b4fe; background: rgba(168,85,247,.12); border-color: rgba(168,85,247,.25); }
.eyebrow.blue { color: #93c5fd; background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.25); }
.eyebrow.teal { color: #5eead4; background: rgba(45,212,191,.12); border-color: rgba(45,212,191,.25); }

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 58ch;
  margin-bottom: 40px;
}
.section-sub.center { margin-left: auto; margin-right: auto; }
.grad-text {
  background: linear-gradient(90deg, #c4b5fd, #a855f7, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.compare-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.before-label { color: #fb7185; }
.after-label { color: #34d399; }
.compare-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  background: #0a0414;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.compare-visual img { width: 100%; height: auto; }
.compare-card p { color: var(--muted); font-size: 15px; }
.operating-model {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 28px);
  margin-top: 56px;
  letter-spacing: -0.02em;
  color: #e4e4e7;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.agent-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  min-height: 320px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.agent-card:hover {
  border-color: rgba(168,85,247,.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.agent-card h3 { font-size: 22px; margin-bottom: 8px; }
.agent-tagline { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.agent-card ul { list-style: none; display: grid; gap: 14px; }
.agent-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.agent-card li img {
  width: 22px; height: 22px;
  filter: invert(1) brightness(1.4) opacity(.75);
  margin-top: 2px;
}
.agent-card li strong {
  display: block; font-size: 12px; letter-spacing: .06em;
  margin-bottom: 2px;
}
.agent-card li span { color: var(--muted); font-size: 13px; }
.agent-card.more {
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(168,85,247,.18), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}

.quote-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  margin-top: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.quote-photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #1a102c;
}
.quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.amp-logo { height: 28px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .9; }
.quote-body p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.quote-body footer strong { display: block; }
.quote-body footer span { color: var(--muted); font-size: 14px; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.pillar-grid article {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.pillar-grid img {
  width: 48px; height: 48px; margin-bottom: 16px;
  filter: brightness(1.1);
}
.pillar-grid h3 { font-size: 18px; margin-bottom: 10px; }
.pillar-grid p { color: var(--muted); font-size: 14px; }

.security-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: start;
}
.security-copy { display: grid; gap: 14px; color: var(--muted); font-size: 15px; margin-top: 8px; }
.text-link {
  color: #c4b5fd; font-weight: 600; margin-top: 8px;
  display: inline-block;
}
.text-link:hover { color: #fff; }
.trust-card {
  background: linear-gradient(180deg, #1a102c, #12091f);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.soc2 { width: 72px; height: auto; margin-bottom: 16px; }
.trust-card h3 {
  font-size: 16px; letter-spacing: .02em;
  margin-bottom: 18px; color: #e9d5ff;
}
.trust-card dl { display: grid; gap: 14px; }
.trust-card dl div {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.trust-card dt {
  font-size: 11px; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 4px;
}
.trust-card dd { font-size: 13px; color: #e4e4e7; }

.final-cta {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at center, rgba(124,58,237,.18), transparent 55%);
}
.final-cta h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.footer-brand p { color: var(--muted); font-size: 13px; margin: 14px 0; }
.socials { display: flex; gap: 12px; }
.socials img { width: 22px; height: 22px; filter: invert(1) opacity(.7); }
.socials a:hover img { opacity: 1; }
.footer h4 {
  font-size: 13px; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 14px;
}
.footer a {
  display: block; color: #e4e4e7; font-size: 14px;
  margin-bottom: 10px;
}
.footer a:hover { color: #fff; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr; }
  .action-list { max-height: none; display: grid; grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: repeat(3, 1fr); }
  .agent-grid { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .quote-card { grid-template-columns: 160px 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,1,17,.96); padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .hero-copy { margin-right: 0; }
  .action-list { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .agent-grid, .pillar-grid, .footer-grid { grid-template-columns: 1fr; }
  .quote-card { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
