:root {
  --bg: #07111f;
  --bg-2: #0b1628;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #b9c5d6;
  --soft: #8090a8;
  --blue: #38a5ff;
  --cyan: #39f2ff;
  --violet: #9a5cff;
  --pink: #ff4ed8;
  --green: #65ffc7;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(57, 242, 255, 0.18), transparent 35%),
    radial-gradient(circle at 90% 12%, rgba(154, 92, 255, 0.20), transparent 38%),
    linear-gradient(135deg, #050a13 0%, var(--bg) 42%, #0b1020 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 78%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% -10%, rgba(255,255,255,0.10), transparent 32%);
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transition: top 160ms ease;
}
.skip-link:focus { top: 1rem; }

.site-shell { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.26);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56,165,255,0.28), rgba(154,92,255,0.22));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 12px rgba(255,255,255,0.08), 0 0 28px rgba(57,242,255,0.16);
}
.brand-mark img { width: 30px; height: 30px; }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-size: 1rem; letter-spacing: 0.01em; }
.brand-text small { margin-top: 4px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.68rem; }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
  font-size: 0.94rem;
}
.site-nav a:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.site-nav .nav-cta {
  color: var(--bg);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 800;
  box-shadow: 0 0 26px rgba(57,242,255,0.22);
}
.site-nav .nav-cta:hover { color: var(--bg); background: linear-gradient(135deg, var(--green), var(--cyan)); }

.nav-toggle { display: none; }

.section-pad { padding: 98px 0; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 52px;
  min-height: calc(100vh - 120px);
  padding-top: 74px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
  max-width: 840px;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.1vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
h3 { letter-spacing: -0.022em; }
p { color: var(--muted); line-height: 1.72; }
.hero-lede {
  color: var(--text);
  max-width: 680px;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.48;
}
.hero-support { max-width: 650px; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 18px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #03101e;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 52%, var(--violet));
  box-shadow: 0 16px 42px rgba(57,242,255,0.25);
}
.button-secondary {
  background: rgba(255,255,255,0.075);
  border-color: var(--line);
  color: var(--text);
}
.button-secondary:hover { border-color: rgba(57,242,255,0.48); box-shadow: 0 0 28px rgba(57,242,255,0.12); }
.hero-note { font-size: 0.95rem; color: var(--soft); }

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    radial-gradient(circle at 50% 34%, rgba(57,242,255,0.20), transparent 38%),
    radial-gradient(circle at 80% 75%, rgba(154,92,255,0.22), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
}
.orbit-card {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 310px;
  height: 310px;
  display: grid;
  place-items: center;
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(57,242,255,0.34);
  border-radius: 50%;
  transform: rotate(-20deg) skew(10deg);
}
.ring-one { inset: 22px; animation: slow-spin 18s linear infinite; }
.ring-two { inset: 58px; border-color: rgba(154,92,255,0.42); animation: slow-spin 13s linear reverse infinite; }
.nova-core {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  color: var(--text);
  font-size: 4.8rem;
  font-weight: 950;
  letter-spacing: -0.16em;
  padding-right: 0.12em;
  background: linear-gradient(135deg, rgba(57,242,255,0.18), rgba(154,92,255,0.22));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 0 28px rgba(255,255,255,0.08), 0 0 46px rgba(57,242,255,0.25);
}
.pulse-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}
.dot-a { top: 72px; right: 74px; }
.dot-b { bottom: 82px; left: 54px; background: var(--violet); box-shadow: 0 0 22px var(--violet); }
.dot-c { right: 50px; bottom: 116px; background: var(--green); box-shadow: 0 0 22px var(--green); }

.floating-card, .hero-panel {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7,17,31,0.72);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.floating-card { padding: 18px 20px; display: grid; gap: 6px; }
.floating-card span { color: var(--soft); font-size: 0.82rem; }
.floating-card strong { font-size: 1.35rem; }
.floating-card small { color: var(--muted); }
.floating-card.one { left: 34px; top: 250px; }
.floating-card.two { right: 30px; top: 290px; }
.hero-panel { left: 30px; right: 30px; bottom: 30px; padding: 18px; display: grid; gap: 12px; }
.panel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,0.045);
}
.panel-row.active { color: var(--text); background: rgba(57,242,255,0.10); }
.panel-row span { width: 9px; height: 9px; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow);
}
.trust-strip div { padding: 26px; background: rgba(255,255,255,0.055); }
.trust-strip strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.trust-strip span { color: var(--muted); line-height: 1.55; }

.section-heading { max-width: 860px; margin-bottom: 38px; }
.section-heading.compact { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading p { font-size: 1.05rem; }
.card-grid { display: grid; gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.glass-card, .product-card, .benefit, .price-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.062);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}
.glass-card::before, .product-card::before, .price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(57,242,255,0.13), transparent 34%);
  pointer-events: none;
}
.card-icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.glass-card h3, .product-card h3, .benefit h3, .price-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.glass-card p, .product-card p, .benefit p, .price-card p { margin-bottom: 0; }

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 42px;
  align-items: start;
}
.split-copy { position: sticky; top: 130px; }
.text-link { display: inline-flex; color: var(--cyan); font-weight: 850; margin-top: 10px; }
.service-stack { display: grid; gap: 14px; }
.service-stack article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
}
.service-stack h3 { margin-bottom: 8px; font-size: 1.35rem; }
.service-stack p { margin-bottom: 0; }

.product-card { min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; }
.product-topline { margin-bottom: auto; color: var(--cyan); font-size: 0.78rem; letter-spacing: 0.11em; text-transform: uppercase; font-weight: 850; }
.product-card.featured { background: linear-gradient(135deg, rgba(57,242,255,0.16), rgba(154,92,255,0.15)); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
}
.timeline article { padding: 30px; background: rgba(255,255,255,0.06); }
.timeline span { display: inline-flex; color: var(--cyan); margin-bottom: 34px; font-weight: 900; }
.timeline h3 { font-size: 1.22rem; }
.timeline p { margin-bottom: 0; }

.why-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 36px;
  align-items: end;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(57,242,255,0.11), rgba(154,92,255,0.10), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}
.why-card p { margin-bottom: 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 18px; }
.benefit { background: rgba(255,255,255,0.045); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { padding: 32px; }
.price-card span { color: var(--cyan); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.76rem; font-weight: 850; }
.price-card h3 { margin: 18px 0 14px; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -0.055em; }
.price-card.primary {
  background: linear-gradient(135deg, rgba(57,242,255,0.17), rgba(154,92,255,0.17));
  border-color: rgba(57,242,255,0.32);
  transform: translateY(-12px);
}
.pricing-note { max-width: 780px; margin: 26px auto 0; text-align: center; color: var(--soft); }

.case-shell {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 15%, rgba(57,242,255,0.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}
.status-pill {
  display: inline-flex;
  margin-top: 10px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(57,242,255,0.10);
  border: 1px solid rgba(57,242,255,0.24);
  font-weight: 850;
}
.case-window {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5,10,19,0.65);
}
.window-bar { display: flex; gap: 8px; padding: 16px; border-bottom: 1px solid var(--line); }
.window-bar span { width: 10px; height: 10px; border-radius: 99px; background: var(--soft); }
.window-bar span:nth-child(1) { background: var(--pink); }
.window-bar span:nth-child(2) { background: var(--cyan); }
.window-bar span:nth-child(3) { background: var(--violet); }
.window-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px; }
.metric-card, .long-card { background: rgba(255,255,255,0.07); border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.metric-card small { display: block; color: var(--soft); margin-bottom: 10px; }
.metric-card strong { font-size: 2rem; }
.long-card { grid-column: 1 / -1; display: grid; gap: 12px; }
.long-card span { height: 14px; border-radius: 99px; background: linear-gradient(90deg, rgba(57,242,255,0.38), rgba(154,92,255,0.15)); }
.long-card span:nth-child(2) { width: 72%; }
.long-card span:nth-child(3) { width: 44%; }

.enquiry-section { display: grid; grid-template-columns: 0.8fr 1fr; gap: 38px; align-items: start; }
.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.055);
}
.contact-card span { color: var(--soft); }
.contact-card strong { color: var(--cyan); font-weight: 850; word-break: break-word; }
.copy-email {
  justify-self: start;
  margin-top: 8px;
  border: 1px solid rgba(57,242,255,0.24);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  color: var(--text);
  background: rgba(57,242,255,0.08);
  cursor: pointer;
}
.copy-email:hover { border-color: rgba(57,242,255,0.5); }
.footer-email { color: var(--muted); }
.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 14px; }
.form-row.two { grid-template-columns: repeat(2, 1fr); }
label { display: grid; gap: 8px; color: var(--text); font-weight: 750; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: var(--text);
  background: rgba(4,9,18,0.62);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
textarea { resize: vertical; min-height: 98px; }
.field-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
input:focus, select:focus, textarea:focus { border-color: rgba(57,242,255,0.72); box-shadow: 0 0 0 4px rgba(57,242,255,0.10); }
.form-submit { width: 100%; margin-top: 4px; border: 0; }
.form-submit:disabled { opacity: 0.7; cursor: wait; transform: none; }
.form-note { margin-bottom: 0; color: var(--soft); font-size: 0.92rem; }
.form-status {
  min-height: 1.45rem;
  margin: -2px 0 0;
  color: var(--soft);
  font-weight: 750;
}
.form-status[data-state="success"] { color: var(--cyan); }
.form-status[data-state="error"] { color: #ff9db2; }
.form-status[data-state="info"] { color: var(--soft); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
}
.footer-brand { margin-bottom: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; max-width: 520px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--cyan); }
.copyright { grid-column: 1 / -1; color: var(--soft); font-size: 0.92rem; margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 230ms; }

@keyframes slow-spin { to { transform: rotate(340deg) skew(10deg); } }

@media (max-width: 980px) {
  .site-header { border-radius: 26px; align-items: flex-start; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0.7rem 0.85rem;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.055);
    cursor: pointer;
  }
  .nav-toggle i, .nav-toggle i::before, .nav-toggle i::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 9px;
    background: var(--text);
  }
  .nav-toggle i::before { transform: translateY(-5px); }
  .nav-toggle i::after { transform: translateY(3px); }
  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7,17,31,0.94);
    backdrop-filter: blur(18px);
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero, .split-section, .why-card, .case-shell, .enquiry-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 66px; }
  .hero-visual { min-height: 500px; }
  .split-copy { position: static; }
  .card-grid.four, .benefit-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .card-grid.three, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.primary { transform: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .site-shell { width: min(100% - 22px, var(--max)); }
  .site-header { top: 10px; margin-top: 10px; }
  .brand-text strong { font-size: 0.92rem; }
  .brand-text small { font-size: 0.62rem; }
  .section-pad { padding: 68px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-actions, .button { width: 100%; }
  .hero-visual { min-height: 470px; border-radius: 24px; }
  .orbit-card { width: 250px; height: 250px; top: 36px; }
  .nova-core { width: 100px; height: 100px; font-size: 3.9rem; border-radius: 28px; }
  .floating-card.one { left: 16px; top: 230px; }
  .floating-card.two { right: 16px; top: 306px; }
  .hero-panel { left: 16px; right: 16px; bottom: 16px; }
  .card-grid.four, .benefit-grid, .timeline, .form-row.two, .window-content { grid-template-columns: 1fr; }
  .trust-strip div, .glass-card, .product-card, .timeline article, .why-card, .case-shell, .enquiry-form { padding: 22px; }
  .long-card { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ==========================================================
   Nova Corp Systems V2.0 — hero reset
   Purpose: make the live hero feel like a polished public
   website again, with moving Nova orbits and a clean N mark.
   ========================================================== */
:root {
  --max: 1240px;
}
body {
  background:
    radial-gradient(circle at 18% 12%, rgba(57, 242, 255, 0.12), transparent 34%),
    radial-gradient(circle at 83% 21%, rgba(44, 120, 255, 0.16), transparent 40%),
    radial-gradient(circle at 76% 78%, rgba(154, 92, 255, 0.20), transparent 38%),
    linear-gradient(120deg, #030711 0%, #07111f 45%, #080a18 100%);
}
body::before {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.55) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(57,242,255,0.35) 0 1px, transparent 1.6px);
  background-size: 170px 170px, 240px 240px;
  background-position: 0 0, 70px 35px;
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 86%);
}
body::after {
  background:
    linear-gradient(90deg, rgba(2,7,15,0.20), transparent 34%, rgba(2,7,15,0.16)),
    radial-gradient(circle at 52% -12%, rgba(255,255,255,0.09), transparent 30%);
}

.nova-v2-hero {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  padding-top: clamp(76px, 7vw, 110px);
  min-height: calc(100vh - 96px);
}
.nova-v2-hero::before {
  content: "";
  position: absolute;
  inset: 28px -10vw auto auto;
  width: 58vw;
  height: 58vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(57,242,255,0.10), transparent 34%),
    conic-gradient(from 118deg, transparent 0 16%, rgba(57,242,255,0.12), transparent 38%, rgba(154,92,255,0.12), transparent 70%);
  filter: blur(0.2px);
  opacity: 0.82;
  pointer-events: none;
}

.nova-v2-title {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 5.3vw, 5.8rem);
  line-height: 1.03;
  letter-spacing: -0.062em;
  text-wrap: balance;
}
.nova-v2-title span {
  display: block;
}
.nova-v2-title .title-dot {
  display: inline;
  color: var(--cyan);
  letter-spacing: -0.03em;
}
.nova-v2-hero .hero-lede {
  max-width: 690px;
  font-size: clamp(1.12rem, 1.65vw, 1.36rem);
  line-height: 1.48;
  font-weight: 780;
}
.nova-v2-hero .hero-support {
  max-width: 700px;
  color: #c5d0df;
}
.nova-v2-hero .button-primary,
.nova-v2-hero .button-secondary {
  gap: 12px;
}
.nova-v2-hero .hero-note {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nova-v2-hero .hero-note::before {
  content: "◇";
  color: var(--cyan);
  font-size: 1rem;
}

.nova-v2-showcase {
  position: relative;
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 590px;
  isolation: isolate;
}
.nova-stage {
  position: relative;
  min-height: 392px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.028)),
    radial-gradient(circle at 50% 44%, rgba(57,242,255,0.18), transparent 38%),
    radial-gradient(circle at 75% 82%, rgba(154,92,255,0.18), transparent 42%);
  box-shadow:
    0 42px 110px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 72px rgba(57,242,255,0.08);
  overflow: hidden;
}
.nova-stage::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
}
.nova-stage::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 28px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(57,242,255,0.46), rgba(154,92,255,0.38), transparent);
  filter: blur(12px);
  opacity: 0.82;
}
.nova-glow {
  position: absolute;
  width: 270px;
  height: 270px;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,242,255,0.42), rgba(48,111,255,0.12) 43%, transparent 68%);
  filter: blur(2px);
  animation: nova-breathe 4.8s ease-in-out infinite;
}
.orbit {
  position: absolute;
  left: 50%;
  top: 49%;
  border: 1px solid rgba(57,242,255,0.38);
  border-radius: 50%;
  transform-origin: center;
  pointer-events: none;
}
.orbit-one {
  width: 330px;
  height: 150px;
  margin-left: -165px;
  margin-top: -75px;
  transform: rotate(-16deg);
  animation: orbit-one 16s linear infinite;
}
.orbit-two {
  width: 390px;
  height: 192px;
  margin-left: -195px;
  margin-top: -96px;
  border-style: dashed;
  border-color: rgba(154,92,255,0.34);
  transform: rotate(28deg);
  animation: orbit-two 22s linear infinite reverse;
}
.orbit-three {
  width: 455px;
  height: 238px;
  margin-left: -227px;
  margin-top: -119px;
  border-color: rgba(255,255,255,0.12);
  transform: rotate(-38deg);
  animation: orbit-three 28s linear infinite;
}
.nova-logo-stage {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(57,242,255,0.42), rgba(51,109,255,0.35) 45%, rgba(154,92,255,0.38));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow:
    inset 0 1px 18px rgba(255,255,255,0.18),
    0 0 56px rgba(57,242,255,0.30),
    0 0 120px rgba(154,92,255,0.16);
}
.nova-logo-stage img {
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 0 20px rgba(57,242,255,0.18));
}
.star,
.node {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.star {
  width: 10px;
  height: 10px;
  background: #fff;
  box-shadow: 0 0 18px #fff, 0 0 42px var(--cyan);
}
.star-one { left: 22%; top: 30%; animation: star-pulse 2.8s ease-in-out infinite; }
.star-two { right: 20%; top: 22%; animation: star-pulse 3.4s ease-in-out infinite 0.5s; }
.node {
  width: 11px;
  height: 11px;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}
.node-one { left: 27%; bottom: 35%; animation: node-drift 6s ease-in-out infinite; }
.node-two { right: 27%; top: 38%; background: var(--violet); box-shadow: 0 0 24px var(--violet); animation: node-drift 7s ease-in-out infinite 0.7s; }
.node-three { right: 18%; bottom: 28%; background: var(--green); box-shadow: 0 0 24px var(--green); animation: node-drift 8s ease-in-out infinite 1.2s; }

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.workflow-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.070);
  box-shadow: 0 16px 42px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
}
.workflow-icon {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(57,242,255,0.20);
}
.workflow-icon.record,
.workflow-icon.report {
  background: linear-gradient(135deg, #7c5cff, #a155ff);
}
.workflow-card strong {
  color: var(--text);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}
.workflow-card small {
  color: var(--muted);
  font-weight: 700;
}

@keyframes nova-breathe {
  0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(0.98); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes orbit-one {
  to { transform: rotate(344deg); }
}
@keyframes orbit-two {
  to { transform: rotate(388deg); }
}
@keyframes orbit-three {
  to { transform: rotate(322deg); }
}
@keyframes star-pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.55; }
  50% { transform: scale(1.35); opacity: 1; }
}
@keyframes node-drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(8px,-10px,0); }
}

@media (max-width: 1100px) {
  .nova-v2-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .nova-v2-title {
    font-size: clamp(3.2rem, 8vw, 5.2rem);
    max-width: 780px;
  }
  .nova-v2-showcase {
    min-height: auto;
  }
  .nova-stage {
    min-height: 360px;
  }
}
@media (max-width: 700px) {
  .nova-v2-title {
    font-size: clamp(2.85rem, 14vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: -0.07em;
  }
  .nova-v2-title span {
    display: inline;
  }
  .nova-v2-title span::after { content: " "; }
  .nova-v2-title .title-dot::after { content: ""; }
  .nova-v2-hero .hero-lede {
    font-size: 1.08rem;
  }
  .nova-stage {
    min-height: 300px;
    border-radius: 26px;
  }
  .nova-logo-stage {
    width: 106px;
    height: 106px;
    border-radius: 28px;
  }
  .nova-logo-stage img {
    width: 74px;
    height: 74px;
  }
  .orbit-one { width: 260px; height: 118px; margin-left: -130px; margin-top: -59px; }
  .orbit-two { width: 305px; height: 150px; margin-left: -152px; margin-top: -75px; }
  .orbit-three { width: 348px; height: 180px; margin-left: -174px; margin-top: -90px; }
  .workflow-strip {
    grid-template-columns: 1fr;
  }
  .workflow-card {
    grid-template-columns: 36px 1fr;
    padding: 14px;
  }
  .workflow-icon {
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }
}

/* ==========================================================
   Nova Corp Systems V2.1 — hero orbit workflow fix
   Purpose: restore moving Nova orbit energy, keep the N logo
   as the hero focus, and place the four workflow placeholders
   neatly beneath it inside the right hero stage.
   ========================================================== */
:root {
  --hero-stage-width: 540px;
}

.nova-v2-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: center;
}

.nova-v2-title {
  max-width: 780px;
  font-size: clamp(3.45rem, 5.35vw, 6.05rem);
  line-height: 1.04;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.nova-v2-title .title-line {
  display: block;
}

.nova-v2-showcase {
  min-height: 570px;
  align-content: center;
  justify-items: center;
}

.nova-stage {
  width: min(100%, var(--hero-stage-width));
  min-height: 545px;
  padding: 0;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.115), rgba(255,255,255,0.032)),
    radial-gradient(circle at 50% 31%, rgba(57,242,255,0.30), transparent 37%),
    radial-gradient(circle at 80% 78%, rgba(154,92,255,0.22), transparent 45%),
    rgba(5, 13, 28, 0.62);
  backdrop-filter: blur(18px);
}

.nova-stage::before {
  inset: 20px;
  border-radius: 30px;
  border-color: rgba(255,255,255,0.10);
}

.nova-stage::after {
  left: 12%;
  right: 12%;
  bottom: 150px;
  height: 26px;
  background: linear-gradient(90deg, transparent, rgba(57,242,255,0.52), rgba(154,92,255,0.46), transparent);
  filter: blur(14px);
  opacity: 0.9;
}

.nova-glow {
  width: 310px;
  height: 310px;
  top: 35%;
  background: radial-gradient(circle, rgba(57,242,255,0.55), rgba(55,120,255,0.18) 45%, transparent 70%);
}

.nova-logo-stage {
  top: 35%;
  width: 152px;
  height: 152px;
  border-radius: 38px;
}

.nova-logo-stage img {
  width: 106px;
  height: 106px;
}

.orbit {
  top: 35%;
  border-color: rgba(57,242,255,0.44);
  box-shadow: 0 0 18px rgba(57,242,255,0.06);
}

.orbit-one {
  width: 360px;
  height: 158px;
  margin-left: -180px;
  margin-top: -79px;
  animation: orbit-one 13s linear infinite;
}

.orbit-two {
  width: 432px;
  height: 210px;
  margin-left: -216px;
  margin-top: -105px;
  animation: orbit-two 18s linear infinite reverse;
}

.orbit-three {
  width: 510px;
  height: 260px;
  margin-left: -255px;
  margin-top: -130px;
  border-color: rgba(255,255,255,0.15);
  animation: orbit-three 26s linear infinite;
}

.orbit-four {
  width: 590px;
  height: 320px;
  margin-left: -295px;
  margin-top: -160px;
  border: 1px dotted rgba(57,242,255,0.22);
  transform: rotate(64deg);
  animation: orbit-four 34s linear infinite reverse;
}

.star-one { left: 21%; top: 22%; }
.star-two { right: 18%; top: 20%; }
.node-one { left: 19%; bottom: 50%; }
.node-two { right: 21%; top: 39%; }
.node-three { right: 18%; bottom: 44%; }
.node-four {
  left: 50%;
  top: 16%;
  width: 12px;
  height: 12px;
  background: var(--green);
  box-shadow: 0 0 24px var(--green);
  animation: node-drift 7.4s ease-in-out infinite 0.4s;
}

.workflow-strip {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 24px 70px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.workflow-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(57,242,255,0.11), rgba(154,92,255,0.075));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.workflow-card strong,
.workflow-card small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.workflow-card strong {
  font-size: 0.86rem;
  line-height: 1.1;
}

.workflow-card small {
  font-size: 0.74rem;
  color: #b9c5d6;
}

.workflow-icon {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  font-size: 1rem;
}

@keyframes orbit-four {
  to { transform: rotate(424deg); }
}

@media (max-width: 1100px) {
  .nova-v2-hero {
    grid-template-columns: 1fr;
  }
  .nova-v2-showcase {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .nova-v2-title {
    max-width: 100%;
    font-size: clamp(2.85rem, 13.5vw, 4.2rem);
    line-height: 1.04;
  }
  .nova-v2-title .title-line {
    display: block;
  }
  .nova-stage {
    min-height: 520px;
    border-radius: 28px;
  }
  .nova-glow,
  .orbit {
    top: 31%;
  }
  .nova-logo-stage {
    top: 31%;
    width: 118px;
    height: 118px;
    border-radius: 30px;
  }
  .nova-logo-stage img {
    width: 82px;
    height: 82px;
  }
  .workflow-strip {
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }
  .workflow-card {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 11px 12px;
  }
  .workflow-icon {
    width: 34px;
    height: 34px;
  }
}

/* ==========================================================
   Nova Corp Systems V2.2 — hero scale + VA team section
   Purpose: keep the approved moving orbit/N hero, make the
   right side as visually strong as the headline, and add the
   virtual assistant team section.
   ========================================================== */
:root {
  --hero-stage-width: 650px;
}

.nova-v2-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: clamp(34px, 4.7vw, 74px);
  align-items: center;
}

.nova-v2-title {
  max-width: 720px;
  font-size: clamp(3.25rem, 5vw, 5.75rem);
  line-height: 1.055;
  letter-spacing: -0.056em;
}

.nova-v2-hero .hero-lede {
  max-width: 700px;
}

.nova-v2-showcase {
  min-height: clamp(620px, 70vh, 760px);
  width: 100%;
  justify-items: stretch;
  align-content: center;
}

.nova-stage {
  width: min(100%, var(--hero-stage-width));
  min-height: clamp(610px, 68vh, 710px);
  justify-self: end;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.125), rgba(255,255,255,0.035)),
    radial-gradient(circle at 50% 29%, rgba(57,242,255,0.36), transparent 38%),
    radial-gradient(circle at 86% 74%, rgba(154,92,255,0.26), transparent 46%),
    radial-gradient(circle at 20% 70%, rgba(48,111,255,0.13), transparent 42%),
    rgba(5, 13, 28, 0.70);
}

.nova-stage::before {
  inset: 22px;
  border-radius: 34px;
}

.nova-stage::after {
  bottom: 178px;
  height: 34px;
  opacity: 0.95;
}

.nova-glow {
  width: clamp(330px, 32vw, 430px);
  height: clamp(330px, 32vw, 430px);
  top: 34%;
  background: radial-gradient(circle, rgba(57,242,255,0.58), rgba(55,120,255,0.20) 45%, transparent 72%);
}

.nova-logo-stage {
  top: 34%;
  width: clamp(156px, 15vw, 206px);
  height: clamp(156px, 15vw, 206px);
  border-radius: 46px;
}

.nova-logo-stage img {
  width: clamp(108px, 10vw, 146px);
  height: clamp(108px, 10vw, 146px);
}

.orbit { top: 34%; }
.orbit-one { width: 420px; height: 184px; margin-left: -210px; margin-top: -92px; }
.orbit-two { width: 520px; height: 244px; margin-left: -260px; margin-top: -122px; }
.orbit-three { width: 620px; height: 308px; margin-left: -310px; margin-top: -154px; }
.orbit-four { width: 720px; height: 392px; margin-left: -360px; margin-top: -196px; }

.star-one { left: 20%; top: 19%; }
.star-two { right: 18%; top: 17%; }
.node-one { left: 18%; bottom: 53%; }
.node-two { right: 20%; top: 38%; }
.node-three { right: 18%; bottom: 48%; }
.node-four { top: 13%; }

.workflow-strip {
  left: 28px;
  right: 28px;
  bottom: 28px;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
}

.workflow-card {
  padding: 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  border-radius: 18px;
}

.workflow-icon {
  width: 40px;
  height: 40px;
  border-radius: 15px;
}

.workflow-card strong {
  font-size: 0.92rem;
}

.workflow-card small {
  font-size: 0.78rem;
}

.assistants-section {
  position: relative;
}
.assistants-section::before {
  content: "";
  position: absolute;
  inset: 4% -18vw auto auto;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,92,255,0.13), transparent 66%);
  pointer-events: none;
}
.assistant-team-wrap {
  display: grid;
  gap: 22px;
}
.assistant-team-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.assistant-card {
  position: relative;
  min-height: 270px;
  display: grid;
  align-content: end;
  justify-items: center;
  text-align: center;
  padding: 22px 18px 24px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    radial-gradient(circle at 50% 20%, rgba(57,242,255,0.14), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.028));
  box-shadow: 0 24px 70px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}
.assistant-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(57,242,255,0.16);
  border-radius: 22px;
}
.assistant-card::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 28px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(57,242,255,0.32);
  box-shadow: 0 0 44px rgba(57,242,255,0.10);
}
.assistant-avatar {
  position: absolute;
  top: 38px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255,255,255,0.36), transparent 24%),
    linear-gradient(135deg, rgba(57,242,255,0.35), rgba(48,111,255,0.28) 46%, rgba(154,92,255,0.33));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 48px rgba(57,242,255,0.15), inset 0 1px 18px rgba(255,255,255,0.15);
  z-index: 1;
}
.assistant-avatar::before,
.assistant-avatar::after {
  content: "";
  position: absolute;
  inset: -12px 10px;
  border: 1px solid rgba(57,242,255,0.32);
  border-radius: 50%;
  transform: rotate(-24deg);
}
.assistant-avatar::after {
  inset: 10px -12px;
  border-color: rgba(154,92,255,0.30);
  transform: rotate(28deg);
}
.assistant-avatar span {
  font-size: 3.2rem;
  font-weight: 950;
  letter-spacing: -0.1em;
  padding-right: 0.09em;
  color: var(--text);
  z-index: 1;
}
.assistant-card h3 {
  position: relative;
  z-index: 1;
  margin: 150px 0 8px;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}
.assistant-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #c5d0df;
  font-size: 0.94rem;
  line-height: 1.45;
}
.assistant-card[data-accent="violet"]::before,
.assistant-card[data-accent="violet"]::after { border-color: rgba(154,92,255,0.35); }
.assistant-card[data-accent="green"]::before,
.assistant-card[data-accent="green"]::after { border-color: rgba(101,255,199,0.28); }
.assistant-card[data-accent="blue"]::before,
.assistant-card[data-accent="blue"]::after { border-color: rgba(56,165,255,0.35); }
.assistant-card[data-accent="violet"] .assistant-avatar { background: linear-gradient(135deg, rgba(123,92,255,0.34), rgba(154,92,255,0.45)); }
.assistant-card[data-accent="green"] .assistant-avatar { background: linear-gradient(135deg, rgba(101,255,199,0.26), rgba(57,242,255,0.25), rgba(154,92,255,0.20)); }
.assistant-card[data-accent="blue"] .assistant-avatar { background: linear-gradient(135deg, rgba(56,165,255,0.38), rgba(48,111,255,0.35)); }

.assistant-product-strip {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(16px);
}
.assistant-product-intro span {
  display: block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 850;
  margin-bottom: 6px;
}
.assistant-product-intro p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.assistant-product-strip article:not(.assistant-product-intro) {
  padding: 16px;
  border-radius: 18px;
  background: rgba(7,17,31,0.56);
  border: 1px solid rgba(255,255,255,0.10);
}
.assistant-product-strip strong,
.assistant-product-strip span {
  display: block;
}
.assistant-product-strip strong {
  color: var(--text);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.assistant-product-strip span {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  .nova-v2-hero {
    grid-template-columns: 1fr;
  }
  .nova-stage {
    justify-self: center;
  }
  .assistant-team-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .assistant-product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .assistant-product-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .nova-v2-hero {
    gap: 34px;
  }
  .nova-v2-title {
    font-size: clamp(2.9rem, 13.6vw, 4.1rem);
    line-height: 1.075;
    letter-spacing: -0.055em;
  }
  .nova-v2-showcase {
    min-height: auto;
  }
  .nova-stage {
    width: 100%;
    min-height: 540px;
  }
  .nova-glow,
  .orbit {
    top: 30%;
  }
  .nova-logo-stage {
    top: 30%;
    width: 126px;
    height: 126px;
    border-radius: 32px;
  }
  .nova-logo-stage img {
    width: 88px;
    height: 88px;
  }
  .workflow-strip {
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .assistant-team-panel,
  .assistant-product-strip {
    grid-template-columns: 1fr;
  }
  .assistant-card {
    min-height: 250px;
  }
  .site-nav a[href="#assistants"] {
    display: none;
  }
}


/* ==========================================================
   Nova Corp Systems V2.3 — mobile browser hero fix
   Purpose: keep the approved desktop hero, but make the phone
   browser version cleaner: no over-tall workflow stack, no N
   being buried by cards, and better mobile text rhythm.
   ========================================================== */
@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-shell {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    top: max(10px, env(safe-area-inset-top));
    padding: 12px;
    border-radius: 28px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand-mark img {
    width: 33px;
    height: 33px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .nova-v2-hero {
    padding-top: 54px;
    gap: 26px;
    min-height: auto;
  }

  .nova-v2-title {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 3.85rem);
    line-height: 1.09;
    letter-spacing: -0.052em;
    margin-bottom: 22px;
  }

  .nova-v2-title .title-line {
    display: block;
  }

  .nova-v2-hero .hero-lede {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .nova-v2-hero .hero-support {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 12px;
    margin: 26px 0 18px;
  }

  .hero-actions .button {
    min-height: 56px;
  }

  .nova-v2-showcase {
    margin-top: 8px;
    min-height: auto;
  }

  .nova-stage {
    width: 100%;
    min-height: 430px;
    border-radius: 30px;
  }

  .nova-stage::before {
    inset: 12px;
    border-radius: 24px;
  }

  .nova-stage::after {
    bottom: 118px;
    height: 22px;
  }

  .nova-glow,
  .orbit {
    top: 31%;
  }

  .nova-glow {
    width: 245px;
    height: 245px;
  }

  .nova-logo-stage {
    top: 31%;
    width: 112px;
    height: 112px;
    border-radius: 30px;
  }

  .nova-logo-stage img {
    width: 78px;
    height: 78px;
  }

  .orbit-one {
    width: 290px;
    height: 126px;
    margin-left: -145px;
    margin-top: -63px;
  }

  .orbit-two {
    width: 348px;
    height: 158px;
    margin-left: -174px;
    margin-top: -79px;
  }

  .orbit-three {
    width: 410px;
    height: 196px;
    margin-left: -205px;
    margin-top: -98px;
  }

  .orbit-four {
    width: 480px;
    height: 238px;
    margin-left: -240px;
    margin-top: -119px;
  }

  .star-one { left: 20%; top: 20%; }
  .star-two { right: 19%; top: 19%; }
  .node-one { left: 18%; bottom: 55%; }
  .node-two { right: 18%; top: 36%; }
  .node-three { right: 17%; bottom: 50%; }

  .workflow-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
  }

  .workflow-card {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 70px;
    padding: 10px;
    column-gap: 9px;
    border-radius: 16px;
  }

  .workflow-icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    font-size: 0.86rem;
  }

  .workflow-card strong {
    font-size: 0.78rem;
    line-height: 1.1;
    white-space: normal;
  }

  .workflow-card small {
    font-size: 0.68rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .nova-v2-title {
    font-size: clamp(2.55rem, 12.5vw, 3.1rem);
  }

  .workflow-card {
    grid-template-columns: 26px minmax(0, 1fr);
    min-height: 66px;
    padding: 9px;
  }

  .workflow-icon {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    font-size: 0.78rem;
  }
}

/* ==========================================================
   Nova Corp Systems V2.4 — assistant faces live
   Purpose: replace initial placeholders with approved assistant
   portraits while preserving the working V2.3 layout and form.
   ========================================================== */
.assistant-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 4px 0;
}

.assistant-group-heading span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
}

.assistant-group-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 610px;
  text-align: right;
  font-size: 0.96rem;
  line-height: 1.45;
}

.product-heading {
  margin-top: 10px;
}

.assistant-card {
  min-height: 360px;
  padding: 22px 18px 26px;
  background:
    radial-gradient(circle at 50% 19%, rgba(57,242,255,0.18), transparent 45%),
    radial-gradient(circle at 88% 0%, rgba(154,92,255,0.12), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.026));
}

.assistant-card::after {
  left: 50%;
  right: auto;
  top: 24px;
  width: 190px;
  height: 190px;
  transform: translateX(-50%);
  opacity: 0.9;
  z-index: 0;
}

.assistant-avatar {
  top: 28px;
  width: 190px;
  height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(5,13,28,0.9);
  box-shadow:
    0 0 46px rgba(57,242,255,0.18),
    0 0 80px rgba(154,92,255,0.12),
    inset 0 1px 18px rgba(255,255,255,0.12);
}

.assistant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  transform: scale(1.02);
}

.assistant-avatar::before,
.assistant-avatar::after {
  pointer-events: none;
  z-index: 2;
}

.assistant-card h3 {
  margin-top: 218px;
  margin-bottom: 8px;
  font-size: 1.54rem;
  line-height: 1;
}

.assistant-card p {
  max-width: 230px;
}

.product-team .assistant-card {
  min-height: 340px;
}

.product-team .assistant-avatar {
  width: 184px;
  height: 184px;
}

.product-team .assistant-card h3 {
  margin-top: 212px;
}

.assistant-card[data-accent="nova"]::before,
.assistant-card[data-accent="nova"]::after {
  border-color: rgba(57,242,255,0.34);
}

.assistant-card[data-accent="nova"] .assistant-avatar {
  box-shadow:
    0 0 46px rgba(57,242,255,0.20),
    0 0 88px rgba(48,111,255,0.15),
    inset 0 1px 18px rgba(255,255,255,0.12);
}

@media (max-width: 1180px) {
  .assistant-group-heading {
    align-items: start;
    flex-direction: column;
  }

  .assistant-group-heading p {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .assistant-team-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .assistant-card,
  .product-team .assistant-card {
    min-height: 250px;
    padding: 16px 12px 18px;
    border-radius: 22px;
  }

  .assistant-card::before {
    inset: 9px;
    border-radius: 17px;
  }

  .assistant-card::after {
    top: 19px;
    width: 126px;
    height: 126px;
  }

  .assistant-avatar,
  .product-team .assistant-avatar {
    top: 24px;
    width: 126px;
    height: 126px;
  }

  .assistant-avatar::before,
  .assistant-avatar::after {
    inset: -8px 8px;
  }

  .assistant-avatar::after {
    inset: 8px -8px;
  }

  .assistant-card h3,
  .product-team .assistant-card h3 {
    margin-top: 148px;
    font-size: 1.08rem;
    letter-spacing: 0.09em;
  }

  .assistant-card p {
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .assistant-group-heading span {
    font-size: 0.7rem;
  }

  .assistant-group-heading p {
    font-size: 0.86rem;
  }
}

@media (max-width: 390px) {
  .assistant-team-panel {
    gap: 10px;
  }

  .assistant-card,
  .product-team .assistant-card {
    min-height: 232px;
  }

  .assistant-card::after {
    width: 114px;
    height: 114px;
  }

  .assistant-avatar,
  .product-team .assistant-avatar {
    width: 114px;
    height: 114px;
  }

  .assistant-card h3,
  .product-team .assistant-card h3 {
    margin-top: 136px;
    font-size: 0.98rem;
  }

  .assistant-card p {
    font-size: 0.73rem;
  }
}
