* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
:root {
  --bg: #000;
  --ink: #fff;
  --muted: rgba(255,255,255,.68);
  --faint: rgba(255,255,255,.42);
  --panel: rgba(15, 15, 18, .72);
  --panel-strong: rgba(8, 9, 13, .94);
  --line: rgba(255,255,255,.13);
  --line-hi: rgba(255,255,255,.28);
  --accent: #168cff;
  --cyan: #29d3e8;
  --amber: #ffae3d;
  --green: #1fd39a;
  --red: #ff4f73;
  --mono: "JetBrains Mono", Consolas, monospace;
  --font: "Inter", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  background: #000;
  overflow-x: hidden;
}
button, input, textarea, select { font-family: var(--font); }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
.section-pad { width: min(1200px, calc(100% - 64px)); margin: 0 auto; }
#landing {
  background:
    radial-gradient(circle at 13% 18%, rgba(255,160,62,.08), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(25,139,255,.10), transparent 31rem),
    #000;
}
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(1200px, calc(100% - 64px));
  height: 54px;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.nav-brand,
.site-nav nav,
.nav-actions,
.nav-cta { pointer-events: auto; }
.nav-brand img {
  width: 132px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.25) contrast(1.1);
}
.site-nav nav {
  justify-self: center;
  height: 53px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(17,17,22,.36);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.18), 0 14px 32px rgba(0,0,0,.3);
  backdrop-filter: blur(20px);
}
.site-nav nav a {
  color: rgba(255,255,255,.84);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav nav a:hover { color: #fff; }
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-cta {
  height: 47px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  color: rgba(255,255,255,.86);
  background: rgba(12, 14, 20, .52);
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.admin-cta:hover {
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.nav-cta {
  justify-self: end;
  width: 141px;
  height: 47px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 16px;
  color: #fff;
  background: #030303;
  font-size: 15px;
  font-weight: 900;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    inset 0 0 18px rgba(32,144,255,.72),
    0 0 14px rgba(255,187,92,.55),
    0 10px 22px rgba(0,0,0,.42);
}
.primary,
.secondary,
.ghost,
#auth-submit,
#logout {
  min-height: 47px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 900;
}
.primary {
  color: #fff;
  background: #030303;
  border-color: rgba(255,255,255,.28);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 0 18px rgba(32,144,255,.78),
    0 0 18px rgba(255,168,69,.50),
    0 16px 30px rgba(0,0,0,.45);
}
.secondary {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.big { min-width: 141px; padding: 0 24px; }
.hero {
  position: relative;
  min-height: 1435px;
  padding: 154px 32px 0;
  display: grid;
  justify-items: center;
  overflow: hidden;
}
.space-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 42%, rgba(255,136,19,.32), transparent 26rem),
    radial-gradient(circle at 66% 39%, rgba(10,137,255,.32), transparent 30rem),
    radial-gradient(circle at 48% 2%, rgba(255,255,255,.14), transparent 32rem),
    #000;
}
.space-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .58;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.82) 1px, transparent 1.3px),
    radial-gradient(circle, rgba(255,255,255,.32) 1px, transparent 1.2px);
  background-size: 74px 74px, 113px 113px;
  background-position: 12px 18px, 44px 8px;
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 88%);
}
.space-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -90px;
  width: 370px;
  height: 900px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent, rgba(255,181,105,.35), rgba(82,150,255,.42), transparent);
  filter: blur(18px);
  opacity: .72;
}
.aurora {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 360px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 38% 72%, rgba(255,149,17,.86), transparent 25%),
    radial-gradient(ellipse at 48% 62%, rgba(255,255,255,.82), transparent 24%),
    radial-gradient(ellipse at 61% 68%, rgba(0,150,255,.86), transparent 30%),
    radial-gradient(ellipse at 50% 70%, rgba(172,77,255,.65), transparent 46%);
  filter: blur(25px);
  opacity: .92;
  animation: auroraPulse 7s ease-in-out infinite alternate;
}
.planet {
  position: absolute;
  left: 50%;
  top: 600px;
  width: min(1180px, 92vw);
  height: 380px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(ellipse at 49% 0%, rgba(255,255,255,.9), rgba(18,120,255,.5) 7%, rgba(17,29,58,.95) 19%, rgba(6,9,18,.98) 46%, #010103 75%);
  box-shadow:
    0 -20px 40px rgba(255,255,255,.55),
    0 -36px 88px rgba(20,144,255,.72),
    0 -18px 68px rgba(255,148,35,.65);
  overflow: hidden;
}
.planet::before {
  content: "";
  position: absolute;
  inset: -4px 0 auto;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255,122,24,.86), rgba(255,255,255,.95), rgba(0,153,255,.86));
  filter: blur(8px);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1060px, 100%);
  display: grid;
  justify-items: center;
  align-items: start;
  align-content: start;
  text-align: center;
}
.launch-pill {
  display: inline-flex;
  align-items: center;
  height: 32px;
  min-height: 32px;
  padding: 0 17px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.hero h1 {
  margin-top: 26px;
  max-width: 1060px;
  color: #fff;
  font-size: clamp(58px, 6.45vw, 88px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
}
.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}
.hero .primary { margin-top: 39px; }
.dashboard-peek {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 655px;
  width: min(1110px, calc(100% - 160px));
  aspect-ratio: 16 / 9;
  transform: translateX(-50%);
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(4, 7, 12, .88);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.12),
    0 -12px 58px rgba(255,255,255,.16),
    0 24px 80px rgba(0,0,0,.62);
}
.dashboard-peek.reveal {
  opacity: 0;
  transform: translateX(-50%) translateY(18px);
  animation: revealPeek .8s ease forwards;
}
.dashboard-peek::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.16), transparent 42%);
}
.dashboard-peek video,
.dashboard-peek img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.logo-marquee {
  width: 100%;
  margin-top: -20px;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.logo-marquee div {
  width: max-content;
  display: flex;
  gap: 32px;
  padding: 24px 0;
  animation: marquee 28s linear infinite;
}
.logo-marquee span {
  min-width: 150px;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 72px;
  padding-bottom: 34px;
}
.trust-strip article {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    rgba(9,13,20,.76);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 24px 52px rgba(0,0,0,.32);
}
.trust-strip strong {
  display: block;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
}
.trust-strip span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.premium-section,
.flow-section,
.operations-section,
.testimonial-section,
.premium-security,
.pricing-section {
  padding-top: 94px;
  padding-bottom: 94px;
}
.premium-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.premium-heading small,
.operations-copy small {
  display: block;
  margin-bottom: 13px;
  color: #67e7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.premium-heading h2,
.operations-copy h2 {
  color: #fff;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: 0;
}
.premium-heading p,
.operations-copy p,
.premium-card p,
.flow-panel p,
.quote-card span {
  color: rgba(255,255,255,.64);
  line-height: 1.58;
}
.premium-heading p,
.operations-copy p {
  max-width: 760px;
  margin-top: 16px;
  font-size: 18px;
}
.premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 18px;
}
.premium-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(49,201,255,.16), transparent 36%),
    linear-gradient(180deg, rgba(24,30,40,.9), rgba(8,11,17,.9));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 32px 72px rgba(0,0,0,.38);
}
.premium-card.large {
  grid-row: span 2;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.premium-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(103,231,255,.26);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(33,171,207,.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.premium-card h3 {
  max-width: 580px;
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: 0;
}
.premium-card p { max-width: 620px; margin-top: 14px; }
.card-visual {
  position: absolute;
  inset: 28px 28px auto;
  height: 255px;
  border: 1px solid rgba(123,171,214,.18);
  border-radius: 18px;
  background:
    linear-gradient(rgba(122,169,207,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,169,207,.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(14,23,35,.94), rgba(8,13,22,.84));
  background-size: 100% 42px, 70px 100%, 100% 100%;
}
.execution-visual::before,
.execution-visual::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  height: 62px;
  border: 1px solid rgba(252,151,43,.48);
  background: rgba(252,151,43,.17);
}
.execution-visual::before { bottom: 28px; }
.execution-visual::after {
  top: 28px;
  border-color: rgba(22,224,226,.46);
  background: rgba(22,224,226,.13);
}
.flow-section {
  position: relative;
}
.flow-section::before,
.operations-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,231,255,.2), transparent);
}
.flow-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,176,76,.16), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(39,157,255,.18), transparent 36%),
    rgba(8,11,17,.92);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 34px 78px rgba(0,0,0,.38);
}
.flow-panel article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.flow-panel article:last-child { border-right: 0; }
.flow-panel b {
  color: rgba(103,231,255,.86);
  font: 900 13px var(--mono);
}
.flow-panel h3 {
  margin-top: 72px;
  color: #fff;
  font-size: 25px;
}
.flow-panel p { margin-top: 10px; }
.operations-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
  gap: 28px;
  align-items: center;
}
.assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.assurance-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.05);
  font-size: 13px;
  font-weight: 800;
}
.ops-board {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(21,29,41,.92), rgba(8,12,19,.9));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 30px 70px rgba(0,0,0,.36);
}
.ops-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.035);
}
.ops-row + .ops-row { margin-top: 10px; }
.ops-row.active {
  border-color: rgba(103,231,255,.28);
  background: rgba(33,171,207,.11);
}
.ops-row b {
  color: #fff;
  font-size: 14px;
}
.premium-security {
  text-align: center;
}
.premium-security .premium-heading {
  margin-inline: auto;
}
.premium-security .premium-heading p {
  margin-inline: auto;
}
.premium-security .security-grid {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15,24,36,.92), rgba(8,11,17,.92));
}
.premium-security .security-grid span {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.testimonial-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.quote-card {
  min-height: 285px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(103,231,255,.13), transparent 32%),
    linear-gradient(180deg, rgba(19,24,33,.92), rgba(8,11,17,.9));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 30px 68px rgba(0,0,0,.34);
}
.quote-card p {
  color: #fff;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}
.quote-card span {
  display: block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 800;
}
.pricing-section .premium-heading {
  text-align: center;
  margin-inline: auto;
}
.pricing-section .premium-heading p {
  margin-inline: auto;
}
.intro-copy { padding: 88px 0 118px; overflow: hidden; }
.intro-copy div {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: marquee 38s linear infinite reverse;
}
.intro-copy p {
  width: 450px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}
.split-section,
.product-showcase,
.multiple-products,
.steps,
.security-section,
.pricing-section,
.final-cta { padding-top: 92px; padding-bottom: 92px; }
.section-heading {
  max-width: 690px;
  margin-bottom: 32px;
}
.section-heading small,
.cta-orbit small {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-heading h2,
.cta-orbit h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .99;
  letter-spacing: 0;
  font-weight: 700;
}
.section-heading p,
.feature-card p,
.showcase-main p,
.showcase-side p,
.product-large p,
.product-tile p,
.step-card p,
.price-card p,
.cta-orbit p {
  color: rgba(255,255,255,.62);
  line-height: 1.58;
}
.section-heading p { margin-top: 12px; font-size: 17px; }
.exception-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card,
.showcase-main,
.showcase-side,
.product-large,
.product-tile,
.step-card,
.price-card,
.ready-panel,
.security-grid,
.cta-orbit,
.card {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(20,20,24,.84), rgba(8,8,10,.78));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 30px 60px rgba(0,0,0,.28);
}
.feature-card {
  min-height: 312px;
  padding: 24px;
  border-radius: 18px;
  overflow: hidden;
}
.feature-card::before,
.showcase-main::before,
.product-large::before {
  content: "";
  display: block;
  height: 112px;
  margin: -4px -4px 26px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 68%, rgba(255,164,46,.58), transparent 28%),
    radial-gradient(circle at 68% 36%, rgba(31,144,255,.58), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.feature-card span {
  color: rgba(255,255,255,.36);
  font: 900 13px var(--mono);
}
.feature-card h3,
.showcase-main h3,
.showcase-side h3,
.product-large h3,
.product-tile h3,
.step-card h3,
.price-card h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 23px;
  letter-spacing: 0;
}
.ready-panel {
  display: grid;
  grid-template-columns: 1fr 358px;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 34px;
  border-radius: 18px;
}
.ready-panel h3 { font-size: 28px; }
.ready-panel p { margin-top: 8px; color: rgba(255,255,255,.62); }
.ready-panel > div:last-child { display: grid; gap: 10px; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.showcase-main {
  grid-row: span 2;
  min-height: 520px;
  padding: 28px;
  border-radius: 18px;
}
.showcase-side {
  min-height: 251px;
  padding: 28px;
  border-radius: 18px;
}
.tabs-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.tabs-row span,
.tag-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 900;
}
.products-grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(2, .68fr);
  gap: 18px;
}
.product-large {
  grid-row: span 2;
  min-height: 500px;
  padding: 28px;
  border-radius: 18px;
}
.product-large ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255,255,255,.74);
  list-style: none;
}
.product-large li::before {
  content: "-";
  margin-right: 8px;
  color: rgba(255,255,255,.4);
}
.product-tile {
  min-height: 241px;
  padding: 24px;
  border-radius: 18px;
}
.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step-card {
  min-height: 420px;
  padding: 28px;
  border-radius: 18px;
}
.step-card b {
  display: block;
  margin-bottom: 160px;
  color: rgba(255,255,255,.25);
  font: 900 44px var(--mono);
}
.security-grid {
  min-height: 310px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(25,139,255,.18), transparent 34%),
    linear-gradient(180deg, rgba(20,20,24,.84), rgba(8,8,10,.78));
}
.security-grid span {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 16px;
  text-align: center;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.06);
  font-weight: 900;
}
.landing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  position: relative;
  min-height: 478px;
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 18px;
}
.price-card.featured {
  border-color: rgba(255,255,255,.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(25,139,255,.28), transparent 40%),
    linear-gradient(180deg, rgba(28,28,34,.92), rgba(8,8,10,.82));
}
.price-card label {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.landing-price { font: 900 45px var(--mono); }
.landing-price span { color: rgba(255,255,255,.43); font: 800 13px var(--font); }
.price-card ul {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  list-style: none;
  color: rgba(255,255,255,.73);
}
.price-card li::before { content: "-"; color: rgba(255,255,255,.45); margin-right: 8px; }
.price-card .primary { align-self: end; width: 100%; }
.final-cta { padding-bottom: 140px; }
.cta-orbit {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  padding: 48px;
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(255,255,255,.16), transparent 18%),
    radial-gradient(circle at 44% 60%, rgba(255,150,30,.28), transparent 27%),
    radial-gradient(circle at 60% 60%, rgba(20,139,255,.34), transparent 34%),
    #030303;
}
.cta-orbit::before {
  content: "";
  position: absolute;
  inset: auto 8% -70px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255,128,24,.8), rgba(255,255,255,.85), rgba(0,153,255,.8));
  filter: blur(28px);
}
.cta-orbit > * { position: relative; z-index: 1; }
.cta-orbit h2 { max-width: 760px; }
.cta-orbit p { max-width: 620px; margin: 16px auto 0; }
.cta-orbit .hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .8s ease forwards;
}
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }

#auth-view {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(12px);
}
.auth-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: var(--panel-strong);
  box-shadow: 0 30px 100px -50px rgba(22,140,255,.8), inset 0 1px 0 rgba(255,255,255,.07);
}
.close-auth {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #c9d7e4;
  background: rgba(255,255,255,.06);
  font-size: 16px;
  line-height: 1;
}
.auth-logo {
  width: 210px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}
.auth-logo-wide {
  width: min(100%, 360px);
  height: 92px;
  object-position: left center;
  margin: -8px 0 12px;
}
.auth-panel h1 { font-size: 30px; letter-spacing: 0; }
.auth-panel p { color: rgba(255,255,255,.68); line-height: 1.55; margin: 8px 0 18px; }
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5,10,16,.62);
  margin-bottom: 12px;
}
.auth-tabs button {
  height: 40px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: rgba(255,255,255,.62);
  background: transparent;
  font-weight: 900;
}
.auth-tabs button.active { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.auth-panel input {
  width: 100%;
  height: 44px;
  margin-bottom: 9px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: rgba(5,10,16,.68);
  outline: none;
  font-weight: 700;
}
.auth-panel input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22,140,255,.12); }
#auth-submit { width: 100%; color: #fff; background: #030303; border-color: rgba(255,255,255,.28); box-shadow: inset 0 0 18px rgba(32,144,255,.78), 0 0 18px rgba(255,168,69,.36); }
#auth-status { min-height: 18px; margin-top: 10px; color: var(--red); font-size: 12px; font-weight: 700; }
#auth-status.ok { color: var(--green); }

#app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 264px 1fr;
  background:
    radial-gradient(circle at 12% -8%, rgba(41,199,223,.18), transparent 30%),
    radial-gradient(circle at 86% -2%, rgba(92,124,255,.16), transparent 34%),
    linear-gradient(180deg, #0b1320, #071019 62%, #050a10);
}
#sidebar {
  padding: 18px;
  border-right: 1px solid rgba(150,181,211,.16);
  background: linear-gradient(180deg, rgba(11,20,32,.95), rgba(7,13,22,.86));
  backdrop-filter: blur(18px);
}
.portal-brand { height: 58px; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.portal-brand img { width: 170px; max-height: 48px; object-fit: contain; object-position: left center; }
.portal-brand span { color: rgba(255,255,255,.42); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
#sidebar nav { display: grid; gap: 7px; }
#sidebar nav button,
#logout,
.ghost {
  min-height: 40px;
  text-align: left;
  padding: 0 13px;
  color: rgba(255,255,255,.62);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
}
#sidebar nav button:hover,
#sidebar nav button.active { color: #e9fbff; background: rgba(41,199,223,.13); border-color: rgba(41,199,223,.30); }
#logout { width: 100%; margin-top: 24px; color: #ffd9e1; background: rgba(255,79,115,.12); border-color: rgba(255,79,115,.24); }
#content { min-width: 0; padding: 22px; }
#topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
#eyebrow { display: block; color: rgba(255,255,255,.42); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
#page-title { margin-top: 3px; font-size: 30px; letter-spacing: 0; }
#account-chip {
  padding: 10px 13px;
  border: 1px solid rgba(150,181,211,.16);
  border-radius: 999px;
  background: rgba(12,22,34,.76);
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
}
.grid { display: grid; gap: 12px; }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { padding: 16px; border-radius: 14px; }
.card h3 { font-size: 15px; margin-bottom: 10px; }
.metric label,
.form label,
.admin-row label { display: block; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 5px; }
.metric strong { font-size: 24px; letter-spacing: 0; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(150,181,211,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.045);
  font-size: 12px;
  font-weight: 900;
}
.pill.active { color: #baf8e3; background: rgba(31,211,154,.13); border-color: rgba(31,211,154,.28); }
.pill.warn { color: #ffd5de; background: rgba(255,79,115,.13); border-color: rgba(255,79,115,.28); }
.form { display: grid; gap: 10px; max-width: 620px; }
.form input,
.form textarea,
.admin-row input,
.admin-row select {
  width: 100%;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(150,181,211,.16);
  border-radius: 10px;
  background: rgba(5,10,16,.58);
  color: #fff;
  outline: none;
  font-weight: 700;
}
.form textarea { min-height: 120px; resize: vertical; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.plan { display: grid; gap: 10px; }
.price { font: 900 30px var(--mono); }
.price span { color: rgba(255,255,255,.42); font: 800 12px var(--font); }
.list { display: grid; gap: 8px; }
.row,
.admin-row {
  padding: 12px;
  border: 1px solid rgba(150,181,211,.16);
  border-radius: 12px;
  background: rgba(11,19,30,.64);
}
.row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.row small,
.muted { color: rgba(255,255,255,.62); }
.admin-row { display: grid; gap: 10px; }
.admin-head { display: flex; justify-content: space-between; gap: 12px; }
.admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: rgba(255,255,255,.62);
  background: rgba(10,18,29,.70);
  border-color: rgba(150,181,211,.16);
}
.download-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.download-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #effcff, #29d3e8 48%, #79ffcf);
  color: #031017;
  text-decoration: none;
  font-weight: 900;
}
.download-btn.secondary {
  color: #dffbff;
  background: rgba(41,199,223,.12);
  border: 1px solid rgba(41,199,223,.30);
}
.danger { color: #ffd9e1; background: rgba(255,79,115,.12); border-color: rgba(255,79,115,.24); }
#toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #0e1827;
  color: white;
  opacity: 0;
  transform: translateY(8px);
  transition: .18s;
  font-weight: 800;
  border: 1px solid rgba(150,181,211,.16);
}
#toast.show { opacity: 1; transform: translateY(0); }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealPeek {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes auroraPulse {
  100% { transform: scale(1.04) translateY(-8px); filter: blur(30px) saturate(1.18); }
}
@keyframes bars {
  50% { transform: scaleY(.72); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
@media (max-width: 980px) {
  .site-nav {
    width: calc(100% - 28px);
    grid-template-columns: 130px 1fr;
  }
  .site-nav nav { display: none; }
  .nav-brand img { width: 120px; }
  .admin-cta { display: none; }
  .hero { min-height: 1050px; padding-inline: 18px; }
  .hero h1 { font-size: clamp(52px, 12vw, 78px); }
  .dashboard-peek {
    top: 650px;
    width: calc(100% - 38px);
  }
  .trust-strip,
  .flow-panel,
  .premium-security .security-grid,
  .testimonial-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .premium-grid,
  .operations-section {
    grid-template-columns: 1fr;
  }
  .premium-card.large {
    grid-row: auto;
    min-height: 560px;
  }
  .flow-panel article:nth-child(2n) {
    border-right: 0;
  }
  .flow-panel article {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .flow-panel article:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .exception-layout,
  .showcase-grid,
  .products-grid,
  .step-list,
  .security-grid,
  .landing-plans,
  .ready-panel { grid-template-columns: 1fr; }
  .showcase-main,
  .product-large { grid-row: auto; }
  .step-card b { margin-bottom: 82px; }
  #app { grid-template-columns: 1fr; }
  #sidebar { position: sticky; top: 0; z-index: 5; }
  #sidebar nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cols-3,
  .cols-2,
  .plans,
  .admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .section-pad { width: min(100% - 24px, 1200px); }
  .site-nav { top: 10px; height: 52px; }
  .nav-cta { width: 124px; height: 43px; font-size: 14px; }
  .hero { min-height: 930px; padding-top: 128px; }
  .hero h1 { font-size: 50px; }
  .hero p { font-size: 16px; }
  .aurora { top: 435px; left: -16%; right: -16%; }
  .planet { top: 630px; width: 125vw; height: 280px; }
  .dashboard-peek { top: 640px; width: calc(100% - 24px); border-radius: 14px; }
  .trust-strip {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }
  .trust-strip article {
    min-height: 112px;
    padding: 20px;
  }
  .premium-section,
  .flow-section,
  .operations-section,
  .testimonial-section,
  .premium-security,
  .pricing-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .premium-heading h2,
  .operations-copy h2 {
    font-size: 40px;
    line-height: 1.02;
  }
  .premium-heading p,
  .operations-copy p {
    font-size: 16px;
  }
  .premium-card {
    min-height: auto;
    padding: 22px;
    border-radius: 16px;
  }
  .premium-card.large {
    min-height: 510px;
  }
  .card-visual {
    inset: 20px 20px auto;
    height: 230px;
    border-radius: 14px;
  }
  .premium-card h3,
  .quote-card p {
    font-size: 25px;
  }
  .flow-panel,
  .premium-security .security-grid,
  .testimonial-section {
    grid-template-columns: 1fr;
  }
  .flow-panel,
  .premium-security .security-grid,
  .quote-card,
  .ops-board {
    border-radius: 16px;
  }
  .flow-panel article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .flow-panel article:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .flow-panel article:last-child {
    border-bottom: 0;
  }
  .flow-panel h3 {
    margin-top: 48px;
  }
  .premium-security .security-grid span {
    min-height: 86px;
  }
  .quote-card {
    min-height: auto;
    padding: 24px;
  }
  .intro-copy p { width: 320px; font-size: 17px; }
  .split-section,
  .product-showcase,
  .multiple-products,
  .steps,
  .security-section,
  .pricing-section,
  .final-cta { padding-top: 64px; padding-bottom: 64px; }
  .feature-card,
  .showcase-main,
  .showcase-side,
  .product-large,
  .product-tile,
  .step-card,
  .price-card { min-height: auto; border-radius: 16px; }
  .ready-panel { padding: 22px; }
  .cta-orbit { min-height: 420px; padding: 26px 18px; }
  .cta-orbit .hero-actions { display: grid; }
  .big { width: 100%; }
  #content { padding: 14px; }
  #topbar { display: grid; }
  #sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
