:root {
  --bg: #07090d;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: #0d1118;
  --line: rgba(255,255,255,0.1);
  --text: #f5f7fb;
  --muted: rgba(255,255,255,0.66);
  --soft: rgba(255,255,255,0.48);
  --cyan: #8df4ff;
  --blue: #6fa8ff;
  --violet: #7c6dff;
  --shadow: 0 40px 90px rgba(0,0,0,0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  inset: auto;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 420px; height: 420px; background: rgba(0, 217, 255, 0.16); top: -80px; left: -80px; }
.orb-2 { width: 380px; height: 380px; background: rgba(103, 120, 255, 0.16); top: 100px; right: -80px; }
.orb-3 { width: 460px; height: 460px; background: rgba(133, 72, 255, 0.12); bottom: -80px; left: 30%; }
.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.site-header, main, .site-footer { position: relative; z-index: 1; }
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(7,9,13,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 20;
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  font-weight: 800;
  color: var(--cyan);
}
.brand-title { font-size: 1.2rem; font-weight: 700; }
.brand-sub { font-size: 0.72rem; color: var(--soft); text-transform: uppercase; letter-spacing: 0.24em; }
.nav-links { display: flex; gap: 22px; color: var(--muted); }
.nav-links a:hover, .footer-links a:hover { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 14px 22px;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.button-light {
  background: white;
  color: #0a0c12;
}
.button-light:hover { transform: translateY(-1px); background: #f1f3f7; }
.button-dark {
  background: #11151d;
  color: white;
}
.button-dark:hover { background: #171d28; }
.button-ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
  color: white;
}
.button-ghost:hover { background: rgba(255,255,255,0.08); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding: 72px 0 48px;
}
.hero h1, .section h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.hero h1 { font-size: clamp(3rem, 8vw, 5.5rem); max-width: 840px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(141,244,255,0.09);
  border: 1px solid rgba(141,244,255,0.2);
  color: #b8fbff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.lead, .section-copy p, .section-heading p, .cta-box p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.glass-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.stat-card {
  border-radius: 24px;
  padding: 22px;
}
.stat-card h3, .feature-item h3, .module-card h3, .mini-card h4, .pricing-card h3 { margin: 0 0 8px; }
.stat-card p, .feature-item p, .module-card p, .mini-card p, .pricing-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.app-shell {
  border-radius: 34px;
  overflow: hidden;
}
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.dots { display: flex; gap: 8px; }
.dots span {
  width: 10px; height: 10px; border-radius: 999px;
}
.dots span:nth-child(1){ background:#ff6c6c; }
.dots span:nth-child(2){ background:#ffcf63; }
.dots span:nth-child(3){ background:#5fe08f; }
.app-label { color: var(--soft); font-size: 0.92rem; }
.app-badge {
  font-size: 0.76rem;
  color: #c7fcff;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(141,244,255,0.18);
  background: rgba(141,244,255,0.08);
}
.app-body { padding: 22px; }
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 18px;
}
.dashboard-card {
  background: var(--panel-strong);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
}
.split-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}
.muted { display: block; color: var(--soft); font-size: 0.92rem; }
.primary-card h3 { margin: 6px 0 0; font-size: 1.8rem; }
.risk-ring {
  width: 92px; height: 92px; border-radius: 999px;
  display: grid; place-items: center;
  border: 11px solid rgba(141,244,255,0.6);
  background: rgba(141,244,255,0.09);
  box-shadow: inset 0 0 25px rgba(141,244,255,0.15);
}
.risk-ring span { font-weight: 700; font-size: 1.15rem; }
.meter-list { margin-top: 22px; display: grid; gap: 16px; }
.meter-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 7px;
}
.meter {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  gap: 10px;
}
.check-list li {
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.84);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
}
.notice-box {
  border-radius: 20px;
  padding: 16px;
  background: rgba(141,244,255,0.09);
  border: 1px solid rgba(141,244,255,0.2);
}
.notice-label {
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #c8fcff;
}
.notice-box p { margin: 0; line-height: 1.6; color: rgba(255,255,255,0.78); }
.mini-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px;
}

.section { padding: 84px 0; }
.two-col, .band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.section h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 18px; }
.feature-grid, .module-grid, .shot-grid, .pricing-grid {
  display: grid;
  gap: 18px;
}
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.feature-item, .module-card { border-radius: 28px; padding: 24px; }
.module-grid { grid-template-columns: repeat(3, 1fr); }
.shot-grid {
  grid-template-columns: 1fr 1fr 1.15fr;
  align-items: start;
}
.shot {
  border-radius: 28px;
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-self: start;
}
.shot img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.02);
}
.shot figcaption {
  color: var(--soft);
  font-size: 0.92rem;
  padding: 12px 6px 2px;
}
.large-shot { grid-row: span 1; }
.section-band {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-card, .featured-card {
  border-radius: 32px;
  padding: 28px;
  position: relative;
}
.pricing-card ul, .featured-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
  display: grid;
  gap: 12px;
}
.pricing-card li, .featured-card li {
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.82);
}
.pricing-card li::before, .featured-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
}
.featured-card {
  background: #ffffff;
  color: #0c0f15;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
}
.featured-card p, .featured-card li { color: rgba(12,15,21,0.74); }
.featured-card li::before { color: #0c0f15; }
.featured-pill {
  position: absolute;
  top: 20px; right: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #0c0f15;
  color: white;
  font-size: 0.76rem;
  font-weight: 600;
}
.price {
  font-size: 2.8rem;
  font-weight: 800;
  margin-top: 10px;
}
.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--soft);
}
.featured-card .price span { color: rgba(12,15,21,0.52); }
.pricing-button { width: 100%; }

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 38px;
  padding: 34px;
  background: linear-gradient(90deg, rgba(141,244,255,0.12), rgba(111,168,255,0.08), rgba(124,109,255,0.12));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--soft);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-links { display: flex; gap: 18px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero, .two-col, .band-grid, .cta-box, .shot-grid { grid-template-columns: 1fr; }
  .feature-grid, .module-grid, .pricing-grid, .mini-grid, .hero-stats { grid-template-columns: 1fr 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .large-shot { grid-row: auto; }
}

@media (max-width: 760px) {
  .nav-links, .nav > .button-light { display: none; }
  .hero { padding-top: 38px; }
  .feature-grid, .module-grid, .pricing-grid, .mini-grid, .hero-stats { grid-template-columns: 1fr; }
  .footer-row, .cta-box { grid-template-columns: 1fr; display: grid; }
  .cta-actions { width: 100%; }
  .button, .pricing-button { width: 100%; }
  .price { font-size: 2.2rem; }
}


.zoomable-shot { position: relative; }
.shot-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  border-radius: 18px;
  overflow: hidden;
  display: block;
}
.shot-button::after {
  content: "Click to enlarge";
  position: absolute;
  right: 24px;
  bottom: 54px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: rgba(7,9,13,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.25s ease;
  pointer-events: none;
}
.zoomable-shot:hover .shot-button::after,
.zoomable-shot:focus-within .shot-button::after {
  opacity: 1;
  transform: translateY(0);
}
.shot-button img { transition: transform 0.35s ease, filter 0.35s ease; }
.zoomable-shot:hover .shot-button img,
.zoomable-shot:focus-within .shot-button img {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.shot-button:focus-visible { outline: 2px solid rgba(141,244,255,0.75); outline-offset: 4px; }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}
.lightbox.is-open { display: block; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,5,10,0.82);
  backdrop-filter: blur(12px);
}
.lightbox-dialog {
  position: relative;
  width: min(1600px, calc(100% - 32px));
  margin: 28px auto;
  max-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(10, 13, 20, 0.95);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 120px rgba(0,0,0,0.55);
}
.lightbox-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lightbox-title { font-size: 1.05rem; font-weight: 700; }
.lightbox-hint { color: var(--soft); font-size: 0.9rem; margin-top: 4px; }
.lightbox-content {
  overflow: auto;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.lightbox-content img {
  width: auto;
  max-width: min(100%, 1800px);
  height: auto;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.lightbox-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  flex: 0 0 auto;
}
.lightbox-close:hover { background: rgba(255,255,255,0.12); }
body.lightbox-open { overflow: hidden; }

@media (max-width: 760px) {
  .shot-button::after { opacity: 1; transform: none; right: 16px; bottom: 50px; font-size: 0.7rem; }
  .lightbox-dialog { width: calc(100% - 18px); margin: 9px auto; max-height: calc(100vh - 18px); border-radius: 22px; }
  .lightbox-header { padding: 16px 18px; align-items: flex-start; }
  .lightbox-content { padding: 16px; }
  .lightbox-title { padding-right: 8px; }
}


.pdf-pill {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8,12,24,0.86);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.dossier-shot .shot-button::after {
  content: none;
}


.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.two-col-tight { align-items: start; }
.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.shot {
  border-radius: 30px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.shot:hover {
  transform: translateY(-4px);
  border-color: rgba(141,244,255,0.2);
  box-shadow: 0 40px 90px rgba(0,0,0,0.45), 0 0 0 1px rgba(141,244,255,0.08) inset;
}
.shot-button, .shot-link {
  width: 100%;
  display: block;
  background: transparent;
  border: 0;
  padding: 16px 16px 12px;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.shot-button img, .shot-link img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  object-position: top center;
  border-radius: 18px;
  background: rgba(5,8,12,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.pdf-shot img { object-fit: contain; object-position: top center; }
.shot figcaption {
  color: var(--muted);
  padding: 0 16px 16px;
}
.shot-cta {
  position: absolute;
  left: 30px;
  bottom: 28px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(7,9,13,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.pricing-note { margin-top: 20px; }
.pricing-helper {
  border-radius: 24px;
  padding: 18px 20px;
  color: var(--muted);
  line-height: 1.7;
}
.pricing-helper code, .launch-step code { color: #d7fcff; }
.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.launch-step {
  padding: 22px;
  border-radius: 24px;
}
.launch-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(141,244,255,0.09);
  border: 1px solid rgba(141,244,255,0.18);
  color: #b8fbff;
  font-weight: 700;
  margin-bottom: 14px;
}
.launch-step h3 { margin: 0 0 8px; }
.launch-step p { margin: 0; color: var(--muted); line-height: 1.7; }
.lightbox-dialog {
  width: min(1400px, calc(100vw - 40px));
}
.lightbox-content {
  padding: 12px 22px 22px;
}
.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(5,8,12,0.8);
}
@media (max-width: 1080px) {
  .shot-grid, .launch-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-stats, .shot-grid, .launch-grid { grid-template-columns: 1fr; }
}


.contact-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.96rem;
}
.contact-label {
  color: var(--text);
  font-weight: 600;
  margin-right: 8px;
}
.inline-link {
  color: var(--cyan);
}
.inline-link:hover {
  color: white;
}
.footer-stack {
  display: grid;
  gap: 12px;
  padding: 24px 0 34px;
}
.footer-legal {
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
}
.legal-page main {
  padding: 54px 0 64px;
}
.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.legal-hero {
  margin-bottom: 24px;
}
.legal-card {
  border-radius: 30px;
  padding: 28px;
}
.legal-card + .legal-card {
  margin-top: 18px;
}
.legal-card h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 14px;
}
.legal-card h2 {
  font-size: 1.35rem;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}
.legal-card ul {
  margin: 0;
  padding-left: 20px;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.legal-note {
  color: var(--soft);
  font-size: 0.96rem;
}
.code-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.9rem;
}
@media (max-width: 820px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
}


.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: start;
}
.cta-actions-inline {
  flex-direction: row;
  flex-wrap: wrap;
}
.contact-meta-private {
  margin-top: 26px;
}
.enterprise-form-card {
  border-radius: 30px;
  padding: 24px;
}
.form-head h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.form-head p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}
.enterprise-form {
  display: grid;
  gap: 14px;
}
.enterprise-form .hidden-field {
  display: none;
}
.form-grid {
  display: grid;
  gap: 14px;
}
.form-grid.two-up {
  grid-template-columns: 1fr 1fr;
}
.enterprise-form label {
  display: grid;
  gap: 8px;
}
.enterprise-form label span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.enterprise-form input,
.enterprise-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.enterprise-form input::placeholder,
.enterprise-form textarea::placeholder {
  color: rgba(255,255,255,0.38);
}
.enterprise-form input:focus,
.enterprise-form textarea:focus {
  border-color: rgba(141,244,255,0.55);
  background: rgba(255,255,255,0.06);
}
.enterprise-form textarea {
  min-height: 148px;
  resize: vertical;
}
.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
.form-note {
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
.enterprise-form-card .button { width: 100%; }
@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .form-grid.two-up {
    grid-template-columns: 1fr;
  }
}

/* v13 final polish: public-ready screenshot cards, lightbox controls, and responsive stability */
.shot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.shot {
  min-height: auto;
}
.shot-button,
.shot-link {
  padding: 16px;
  border-radius: 22px;
}
.shot-button img,
.shot-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  background: rgba(5,8,12,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.pdf-shot img {
  object-fit: cover;
  object-position: center center;
}
.shot-cta {
  left: 32px;
  bottom: 32px;
  z-index: 3;
}
.shot figcaption {
  padding: 0 16px 18px;
}
.lightbox-header {
  align-items: center;
}
.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  line-height: 1;
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 1.7rem;
}
.lightbox-content img {
  max-height: 76vh;
  object-fit: contain;
}
.launch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1080px) {
  .shot-grid, .launch-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .shot-grid, .launch-grid { grid-template-columns: 1fr; }
  .shot-cta { left: 28px; bottom: 28px; }
  .lightbox-header { align-items: flex-start; }
}

/* V17 candidate: Image Intelligence extension. Audio-first architecture remains intact. */
.image-intelligence-section { position: relative; }
.image-intelligence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}
.image-hero-card {
  padding: 28px;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.image-hero-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(141,244,255,0.12), transparent 34%), radial-gradient(circle at 88% 20%, rgba(255,112,181,0.12), transparent 36%);
  pointer-events: none;
}
.image-hero-card > * { position: relative; z-index: 1; }
.image-orbit-visual {
  min-height: 300px;
  display: grid;
  place-items: center;
}
.image-frame-glow {
  width: min(300px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  border: 1px solid rgba(141,244,255,0.35);
  background: linear-gradient(145deg, rgba(8,16,32,0.96), rgba(18,12,34,0.82));
  box-shadow: inset 0 0 70px rgba(111,168,255,0.18), 0 0 70px rgba(141,244,255,0.14);
  position: relative;
  overflow: hidden;
}
.image-frame-glow:before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background-image: linear-gradient(rgba(141,244,255,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(141,244,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.85;
}
.image-frame-glow:after {
  content: "";
  position: absolute;
  left: 18%;
  top: 18%;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  border: 1px solid rgba(255,112,181,0.30);
  box-shadow: 0 0 60px rgba(255,112,181,0.20);
}
.image-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  top: 26%;
  background: linear-gradient(90deg, transparent, var(--cyan), white, var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(141,244,255,0.90);
  animation: auralitImageScan 4s linear infinite;
}
@keyframes auralitImageScan { 0% { top: 16%; opacity: .35; } 50% { opacity: 1; } 100% { top: 84%; opacity: .35; } }
.image-grid-mini {
  position: absolute;
  inset: 70px;
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(141,244,255,0.22), transparent 45%);
  opacity: 0.9;
}
.image-focus-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(141,244,255,1);
}
.dot-a { left: 26%; top: 36%; }
.dot-b { right: 24%; top: 58%; }
.dot-c { left: 54%; bottom: 26%; background: #ff70b5; box-shadow: 0 0 28px rgba(255,112,181,1); }
.image-hero-copy h3 { font-size: clamp(1.6rem, 3vw, 2.7rem); line-height: 1.04; letter-spacing: -0.045em; margin: 0 0 14px; }
.image-hero-copy p { color: var(--muted); line-height: 1.72; margin: 0; }
.image-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.image-signal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 980px) {
  .image-intelligence-grid, .image-hero-card { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .image-signal-grid { grid-template-columns: 1fr; }
  .image-cta-row .button { width: 100%; }
}
