:root {
  --bg: #03050a;
  --paper: #0b1018;
  --ink: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.12);
  --dark: #03050a;
  --dark2: #090e18;
  --darkText: rgba(255, 255, 255, 0.92);
  --darkMuted: rgba(255, 255, 255, 0.72);
  --sky: #0369a1;
  --gold: #d78b1f;
  --radius: 18px;
  --max: 1140px;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(900px 580px at 50% -8%, rgba(56, 189, 248, 0.12), transparent 58%),
    radial-gradient(800px 520px at 8% 14%, rgba(37, 99, 235, 0.1), transparent 54%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  background: rgba(3, 5, 10, 0.84);
  backdrop-filter: blur(12px);
}

.topbarInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand strong { font-size: 16px; letter-spacing: -0.01em; }
.brand span { color: var(--soft); font-size: 12px; }

.menu {
  position: relative;
}

.menu summary {
  list-style: none;
}

.menu summary::-webkit-details-marker {
  display: none;
}

.menuButton {
  width: 46px;
  height: 38px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  padding: 0 13px;
  cursor: pointer;
}

.menuButton span {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.82);
}

.menuPanel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(280px, calc(100vw - 36px));
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: rgba(7, 10, 18, 0.96);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
  padding: 10px;
}

.menuPanel a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-radius: 12px;
  padding: 12px 13px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 650;
}

.menuPanel a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.menuPanel .external {
  color: rgba(125, 211, 252, 0.96);
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 750;
}

.button.primary { border-color: rgba(125, 211, 252, 0.72); background: #fff; color: #03050a; }
.button.secondary { background: rgba(255,255,255,0.06); color: #fff; }
.button.light { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; }

.hero {
  background:
    radial-gradient(850px 560px at 78% 14%, rgba(56, 189, 248, 0.18), transparent 58%),
    radial-gradient(780px 520px at 16% 20%, rgba(59, 130, 246, 0.12), transparent 56%),
    linear-gradient(135deg, var(--dark), var(--dark2));
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.heroInner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 560px;
  padding: 58px 18px 54px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  color: var(--sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #93c5fd; }

h1 {
  margin: 18px 0 0;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.heroTitleCompact {
  max-width: 760px;
}

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 760px;
}

.hero .lead { color: var(--darkMuted); }

.actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proofStrip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-width: 860px;
}

.proofItem {
  min-height: 74px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  padding: 11px;
}

.proofItem span {
  display: block;
  color: rgba(125, 211, 252, 0.96);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proofItem strong,
.proofItem a {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  line-height: 1.3;
}

.proofItem a {
  text-decoration: underline;
  text-decoration-color: rgba(125, 211, 252, 0.45);
  text-underline-offset: 3px;
}

.fieldCard, .panel {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(3, 7, 18, 0.74);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
  overflow: hidden;
}

.heroProof {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,0.5);
}

.heroProof img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #05070d;
  padding: 10px;
}

.heroProof figcaption {
  padding: 13px 15px;
  color: var(--muted);
  font-size: 13px;
}

.heroVisual {
  display: grid;
  gap: 14px;
}

.heroVisual .themeList {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.heroVisual .themePill {
  border-radius: 14px;
  line-height: 1.25;
}

.proofMenu {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  padding: 22px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
}

.proofMenu h2 {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.proofMenu p {
  margin: 14px 0 0;
  color: var(--darkMuted);
  line-height: 1.65;
}

.themeList {
  margin-top: 18px;
  display: grid;
  gap: 9px;
}

.themePill {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.055);
  font-size: 13px;
  font-weight: 750;
}

.themePill span {
  color: rgba(125, 211, 252, 0.95);
}

.fieldTop {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.62);
  font-family: var(--mono);
  font-size: 11px;
}

.dots { display: flex; gap: 7px; }
.dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.24); }

.fieldBody { padding: 22px; }
.fieldKicker {
  margin: 0 0 12px;
  color: #fbbf24;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fieldTitle {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.fieldText {
  margin: 16px 0 0;
  color: var(--darkMuted);
  font-size: 14px;
  line-height: 1.62;
}

.fieldList {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.fieldList li {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--darkMuted);
  font-size: 13px;
  line-height: 1.4;
}

.band {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.bandInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fact strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.fact p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

section.pageSection {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 18px;
}

.sectionHead { max-width: 800px; }
.sectionHead h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.sectionHead p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.cards3, .cards2 {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.cards3 { grid-template-columns: repeat(3, 1fr); }
.cards2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.card p, .card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.card p { margin: 0; }
.card ul { margin: 12px 0 0; padding-left: 18px; }

.darkSection {
  max-width: none;
  background: var(--dark);
  color: #fff;
}

.darkInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 18px;
}

.darkSection .lead, .darkSection p { color: var(--darkMuted); }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.imageFrame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,0.28);
}

.imageFrame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #05070d;
  padding: 10px;
  cursor: zoom-in;
}

.imageFrame.feature img {
  aspect-ratio: auto;
  min-height: 0;
  padding: 16px;
}

.imageFrame.feature figcaption {
  font-size: 14px;
}

.storyGrid {
  margin-top: 36px;
  display: grid;
  gap: 24px;
}

.storyPair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.storySingle {
  max-width: 980px;
}

.storySingle.wide {
  max-width: none;
}

.sectionDivider {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.themeStack {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.themePanel {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.themePanel summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.themePanel summary::-webkit-details-marker {
  display: none;
}

.themePanel summary span {
  color: rgba(125, 211, 252, 0.98);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.themePanel[open] summary {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(125, 211, 252, 0.055);
}

.themeBody {
  padding: 20px;
}

.contactBand .sectionHead p a {
  color: rgba(125, 211, 252, 0.98);
  border-bottom: 1px solid rgba(125, 211, 252, 0.36);
}

.imageFrame figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.demoGrid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.showcaseGrid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.shotWide {
  grid-column: span 12;
}

.shotHalf {
  grid-column: span 6;
}

.shotThird {
  grid-column: span 4;
}

.shotTall img {
  aspect-ratio: 4 / 5;
}

.imageFrame.gemini {
  border-color: rgba(125, 211, 252, 0.22);
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.05),
    0 24px 75px rgba(0,0,0,0.35);
}

.imageFrame.gemini figcaption strong {
  color: rgba(125, 211, 252, 0.98);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox img {
  max-width: min(1320px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: #05070d;
  box-shadow: 0 28px 90px rgba(0,0,0,0.72);
}

.lightboxClose {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lightboxClose:hover {
  background: rgba(255,255,255,0.14);
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.09);
  background: var(--dark);
  color: rgba(255,255,255,0.58);
  font-size: 12px;
}

.footerInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a { color: rgba(255,255,255,0.82); border-bottom: 1px solid rgba(255,255,255,0.18); }

@media (max-width: 920px) {
  .heroInner,
  .bandInner,
  .cards3,
  .cards2,
  .split,
  .demoGrid {
    grid-template-columns: 1fr;
  }

  .storyPair {
    grid-template-columns: 1fr;
  }

  .shotWide,
  .shotHalf,
  .shotThird {
    grid-column: span 12;
  }

  .topbarInner { align-items: center; }

  .proofStrip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .heroVisual .themeList {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbarInner { align-items: flex-start; }
  .heroInner { padding-top: 42px; min-height: auto; }
  section.pageSection, .darkInner { padding-top: 56px; padding-bottom: 56px; }

  .proofStrip {
    grid-template-columns: 1fr;
  }
}
