@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --bg: #060b14;
  --panel: #0d1625;
  --panel-2: #111d30;
  --ink: #f6f9ff;
  --muted: #a9b6ca;
  --line: rgba(179, 199, 229, .16);
  --blue: #3f7cff;
  --cyan: #2ee6d6;
  --green: #19d27d;
  --amber: #ffb84d;
  --danger: #ff6678;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(63, 124, 255, .24), transparent 34%),
    radial-gradient(circle at 82% 2%, rgba(46, 230, 214, .16), transparent 32%),
    linear-gradient(180deg, #050914 0%, #08111f 46%, #050914 100%);
  color: var(--ink);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); font-size: 18px; line-height: 1.65; margin: 0; }
img, svg { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 20, .78);
  backdrop-filter: blur(18px);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 12px; font-family: Outfit, system-ui, sans-serif; font-weight: 800; letter-spacing: -.03em; font-size: 22px; }
.logo-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #06101f; box-shadow: 0 12px 36px rgba(63, 124, 255, .36); }
.nav-links { display: flex; align-items: center; gap: 22px; color: #d8e3f6; font-weight: 700; }
.nav-links a, .menu-trigger { opacity: .82; }
.nav-links a:hover, .menu-item:hover .menu-trigger { opacity: 1; color: var(--white); }
.menu-item { position: relative; padding: 12px 0; }
.menu-trigger { display: inline-flex; align-items: center; gap: 7px; cursor: default; }
.menu-trigger:after { content: '⌄'; font-size: 14px; color: var(--cyan); transform: translateY(-1px); }
.dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 16, 31, .96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.menu-item:hover .dropdown, .menu-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 11px 12px; border-radius: 13px; color: #d8e3f6; white-space: nowrap; }
.dropdown a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--white); color: #06101f; font-weight: 800; }

.hero { padding: 78px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: #d9fff8; background: rgba(46, 230, 214, .09); border: 1px solid rgba(46, 230, 214, .24); border-radius: 999px; padding: 9px 13px; font-weight: 800; margin-bottom: 22px; }
.kicker span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
h1, h2, h3, .metric strong { font-family: Outfit, system-ui, sans-serif; letter-spacing: -.055em; }
h1 { font-size: clamp(48px, 7vw, 92px); line-height: .9; margin: 0 0 24px; max-width: 760px; }
.hero-copy { font-size: 22px; color: #c4d1e4; max-width: 680px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 15px 22px; font-weight: 900; border: 1px solid transparent; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #05101d; box-shadow: 0 18px 48px rgba(63, 124, 255, .28); }
.btn-secondary { border-color: var(--line); background: rgba(255, 255, 255, .045); color: var(--white); }

.command-centre { position: relative; min-height: 560px; }
.dashboard {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(17, 29, 48, .92), rgba(8, 16, 31, .92));
  box-shadow: var(--shadow);
  padding: 18px;
  transform: none;
}
.dash-top { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding: 7px 8px 16px; margin-bottom: 16px; }
.dots { display: flex; gap: 7px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; display: block; background: var(--line); }
.dots i:nth-child(1) { background: var(--danger); }
.dots i:nth-child(2) { background: var(--amber); }
.dots i:nth-child(3) { background: var(--green); }
.status { color: #cbfef2; font-weight: 800; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.widget { background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 22px; padding: 18px; }
.widget.wide { grid-column: span 2; }
.widget-title { color: #dce8fb; font-weight: 900; margin-bottom: 12px; }
.metric { display: flex; align-items: end; justify-content: space-between; gap: 10px; }
.metric strong { font-size: 42px; color: var(--white); }
.metric span { color: var(--green); font-weight: 900; }
.bars { display: grid; gap: 9px; margin-top: 18px; }
.bars i { height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--cyan)); display: block; }
.bars i:nth-child(2) { width: 72%; opacity: .7; }
.bars i:nth-child(3) { width: 48%; opacity: .45; }
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.flow span { border: 1px solid var(--line); border-radius: 16px; padding: 12px; color: #dce8fb; background: rgba(4, 10, 20, .32); font-weight: 800; text-align: center; }
.signal-card { position: absolute; right: -10px; bottom: 24px; width: 270px; padding: 20px; border: 1px solid rgba(46,230,214,.28); border-radius: 26px; background: rgba(7, 18, 31, .92); box-shadow: var(--shadow); }
.signal-card strong { display: block; font-family: Outfit, system-ui, sans-serif; font-size: 23px; margin-bottom: 8px; }

.section { padding: 78px 0; }
.section.tight { padding: 52px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 30px; }
.section-head h2, .page-hero h1 { margin: 0; }
h2 { font-size: clamp(36px, 5vw, 64px); line-height: .95; }
h3 { font-size: 27px; line-height: 1.05; margin: 0 0 12px; }
.eyebrow { color: var(--cyan); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; font-size: 13px; margin-bottom: 12px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.045); padding: 24px; min-height: 250px; position: relative; overflow: hidden; }
.feature-card:before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); opacity: .8; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: rgba(63, 124, 255, .14); color: var(--cyan); margin-bottom: 22px; font-weight: 900; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: stretch; }
.panel { border: 1px solid var(--line); border-radius: 34px; background: rgba(255,255,255,.045); padding: 28px; box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.check-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #dce8fb; font-size: 18px; }
.check-list li:before { content: '✓'; color: #06101f; background: var(--green); width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 23px; font-weight: 900; }
.process { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(4, 10, 20, .28); }
.step b { width: 48px; height: 48px; border-radius: 17px; display: grid; place-items: center; background: var(--white); color: #06101f; font-family: Outfit, system-ui, sans-serif; }
.step strong { display: block; font-family: Outfit, system-ui, sans-serif; font-size: 21px; margin-bottom: 4px; }

.pricing { border: 1px solid rgba(46,230,214,.24); border-radius: 36px; padding: 34px; background: linear-gradient(135deg, rgba(63,124,255,.13), rgba(46,230,214,.07)); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.pricing strong { font-family: Outfit, system-ui, sans-serif; font-size: clamp(34px, 5vw, 60px); letter-spacing: -.055em; display: block; }
.note { color: #d8e3f6; }
.pricing-toggle { width: max-content; margin: 0 auto 28px; display: flex; gap: 8px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.05); }
.pricing-toggle button { border: 0; border-radius: 999px; padding: 13px 18px; background: transparent; color: #d8e3f6; font: inherit; font-weight: 900; cursor: pointer; }
.pricing-toggle button.active { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #06101f; }
.pricing-toggle span { color: var(--green); font-size: 13px; margin-left: 5px; }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-page-section { padding-top: 46px; }
.pricing-table-wrap { border: 1px solid rgba(179,199,229,.16); border-radius: 34px; background: rgba(255,255,255,.04); padding: 24px; margin-top: 22px; box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.pricing-table-wrap.yearly { background: linear-gradient(135deg, rgba(63,124,255,.08), rgba(46,230,214,.04)); }
.billing-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.billing-label { display: inline-flex; align-items: center; border: 1px solid rgba(46,230,214,.28); border-radius: 999px; background: rgba(46,230,214,.08); color: #d9fff8; padding: 8px 13px; font-weight: 900; }
.billing-head p { margin-top: 8px; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { position: relative; border: 1px solid var(--line); border-radius: 28px; background: rgba(4,10,20,.38); padding: 24px; overflow: hidden; }
.price-card.featured { border-color: rgba(46,230,214,.45); box-shadow: 0 20px 70px rgba(46,230,214,.12); }
.price-card:before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); opacity: .85; }
.plan-badge { display: inline-flex; margin-bottom: 16px; border-radius: 999px; padding: 7px 11px; background: rgba(63,124,255,.16); color: #e5f0ff; font-size: 13px; font-weight: 900; }
.price-card h3 { font-size: 34px; margin-bottom: 6px; }
.plan-caption { color: #d5e2f4; min-height: 30px; }
.price { font-family: Outfit, system-ui, sans-serif; font-size: 46px; letter-spacing: -.055em; font-weight: 800; margin: 20px 0 4px; }
.price span { font-family: 'Source Sans 3', system-ui, sans-serif; font-size: 18px; letter-spacing: 0; color: var(--muted); font-weight: 700; }
.saving { color: var(--green); font-weight: 800; font-size: 16px; min-height: 28px; margin-bottom: 18px; }
.price-card .btn { width: 100%; margin-bottom: 18px; text-align: center; }
.pricing-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pricing-features li { border-top: 1px solid var(--line); padding-top: 10px; color: #dce8fb; line-height: 1.3; }
.pricing-features strong { color: #fff; }
.price-card.compact .btn { margin-bottom: 0; }
.price-card.compact .saving { min-height: 0; }

.page-hero { padding: 74px 0 42px; border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 760px; font-size: 22px; color: #c7d5e8; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.detail-card { border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.045); padding: 28px; }

.cta-band { margin: 70px 0; border-radius: 40px; padding: 42px; background: linear-gradient(135deg, #f6f9ff, #dff8f5); color: #06101f; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-band p { color: #2c3b51; }
.cta-band .btn-primary { color: #06101f; }
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: #d8e3f6; }
.legal-footer { align-items: flex-start; }
.legal-footer strong { display: block; color: #fff; margin-bottom: 8px; }
.legal-footer p { font-size: 15px; line-height: 1.45; margin: 3px 0; max-width: 720px; }
.legal-page .panel { max-width: 940px; }
.legal-page h2 { font-size: 30px; margin: 30px 0 10px; }
.legal-page p { margin: 0 0 12px; }

@media (max-width: 980px) {
  .hero-grid, .split, .pricing, .cta-band { grid-template-columns: 1fr; }
  .card-grid, .price-cards { grid-template-columns: repeat(2, 1fr); }
  .command-centre { min-height: auto; }
  .signal-card { position: static; margin: 16px 0 0 auto; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .card-grid, .detail-grid, .dash-grid, .flow, .price-cards { grid-template-columns: 1fr; }
  .widget.wide { grid-column: auto; }
  h1 { font-size: 48px; }
  .hero { padding-top: 48px; }
  .section { padding: 54px 0; }
  .cta-band { padding: 28px; border-radius: 28px; }
}
