:root {
  --ink-900: #f5f7ff;
  --ink-700: #c8d1e0;
  --ink-500: #94a1b8;
  --brand: #6d5cff;
  --brand-2: #22d3ee;
  --accent: #ff884d;
  --bg: #0a0b12;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);
  --surface-light: #f5f7fb;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 26px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: radial-gradient(circle at 15% -10%, rgba(109, 92, 255, 0.2), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.18), transparent 45%), var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #fff;
  color: #0b0c12;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 10;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 64px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.04);
}

.section.light {
  background: var(--surface-light);
  color: #0b1b2b;
}

.section.light p,
.section.light .eyebrow {
  color: #4a5b70;
}

.section.light h1,
.section.light h2,
.section.light h3 {
  color: #0b1b2b;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.1rem;
}

p {
  color: var(--ink-700);
  text-wrap: pretty;
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.display-title {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.display-title .muted {
  color: rgba(255, 255, 255, 0.45);
}

.section.light .display-title .muted {
  color: #94a3b8;
}

.lead {
  font-size: 1.05rem;
  max-width: 60ch;
  margin-bottom: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 10, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand img {
  width: 220px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 8px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a[aria-current="page"] {
  color: #fff;
  border-bottom: 2px solid var(--brand-2);
}

.nav-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  gap: 6px;
}

.nav-pill a[aria-current="page"] {
  border-bottom: none;
  background: rgba(109, 92, 255, 0.18);
  border-radius: 999px;
}

.nav-cta {
  padding: 10px 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0b0c12;
  box-shadow: 0 16px 32px rgba(34, 211, 238, 0.25);
}

.button.primary:hover {
  transform: translateY(-2px);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.section.light .button.ghost {
  border-color: var(--brand);
  color: var(--brand);
}

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(109, 92, 255, 0.25), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(34, 211, 238, 0.2), transparent 40%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 22px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.metric-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 0.98rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.dashboard {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 20px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--ink-500);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(109, 92, 255, 0.2);
  color: #c8d1ff;
  font-size: 0.8rem;
  font-weight: 600;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.dashboard-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-s);
  padding: 12px;
  background: rgba(15, 18, 30, 0.8);
}

.dashboard-card span {
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dashboard-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 12px;
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-head.center {
  text-align: center;
  margin: 0 auto 32px;
}

.section-head p {
  color: var(--ink-700);
}

.section.light .section-head p {
  color: #4a5b70;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section.light .card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--ink-500);
}

.section.light .card ul {
  color: #5a6b82;
}

.card li {
  position: relative;
  padding-left: 18px;
}

.card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 12px;
}

.feature-card h3 {
  color: #fff;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0b0c12;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-auto-rows: minmax(170px, auto);
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.mosaic-card::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 92, 255, 0.35), transparent 70%);
  opacity: 0.7;
}

.mosaic-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% 30%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 70%);
  opacity: 0.7;
}

.mosaic-card > * {
  position: relative;
  z-index: 1;
}

.mosaic-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 280px;
}

.mosaic-card.wide {
  grid-column: span 2;
}

.mosaic-letter {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
}

.section.light .mosaic-letter {
  background: rgba(15, 23, 42, 0.08);
  color: #1f2937;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--ink-500);
}

.list li {
  position: relative;
  padding-left: 22px;
}

.list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.section.light .list {
  color: #4a5b70;
}

.numbered-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.numbered-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.numbered-index {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-2);
}

.section.light .numbered-index {
  color: #2563eb;
}

.media-panel {
  position: relative;
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0%, rgba(109, 92, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.2), transparent 40%), rgba(10, 12, 20, 0.8);
  box-shadow: var(--shadow);
}

.media-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 136, 77, 0.28), transparent 70%);
  opacity: 0.8;
}

.media-panel > * {
  position: relative;
  z-index: 1;
}

.section.light .media-panel {
  background: radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.18), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(15, 118, 110, 0.16), transparent 45%), #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.split-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  box-shadow: var(--shadow);
}

.section.light .split-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(109, 92, 255, 0.18);
  color: #d7d5ff;
  font-size: 0.82rem;
  font-weight: 600;
}

.section.light .tag {
  background: rgba(109, 92, 255, 0.12);
  color: #4338ca;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
}

.section.light .step {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.step-count {
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: 6px;
  display: inline-block;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.kpi {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
}

.section.light .kpi {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.kpi span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

.section.light .kpi span {
  color: #4a5b70;
}

.kpi strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  color: #fff;
}

.section.light .kpi strong {
  color: #0b1b2b;
}

.page-hero {
  padding: 90px 0 60px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.page-hero-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  box-shadow: var(--shadow);
}

.section.light .page-hero-card {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 12, 20, 0.8);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-500);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.section.light .faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
}

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

.faq-item p {
  margin-top: 10px;
  color: var(--ink-700);
}

.section.light .faq-item p {
  color: #4a5b70;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.logo-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--ink-500);
  background: rgba(255, 255, 255, 0.04);
}

.section.light .logo-pill {
  border-color: #e2e8f0;
  background: #fff;
  color: #4a5b70;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.profile-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.section.light .profile-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0b0c12;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.profile-role {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--ink-500);
}

.section.light .profile-role {
  color: #4a5b70;
}

.profile-card h3 {
  margin-top: 4px;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.ai-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.ai-card h3 {
  color: #fff;
}

.section.light .ai-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.section.light .ai-card h3 {
  color: #0b1b2b;
}

.chip-set {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-700);
  font-size: 0.82rem;
}

.section.light .chip {
  border-color: #cbd5e1;
  background: #fff;
  color: #334155;
}

.assistant-demo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.assistant-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink-500);
  font-size: 0.85rem;
}

.assistant-demo-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.assistant-query,
.assistant-answer {
  border-radius: 14px;
  padding: 14px;
}

.assistant-query {
  background: rgba(109, 92, 255, 0.2);
  border: 1px solid rgba(109, 92, 255, 0.3);
}

.assistant-answer {
  background: rgba(8, 11, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.assistant-answer h3 {
  margin-bottom: 8px;
  color: #fff;
}

.assistant-answer .list {
  margin-top: 10px;
}

.assistant-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.assistant-flow .step {
  min-height: 150px;
}

.section.light .assistant-demo {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.section.light .assistant-demo-head {
  border-bottom: 1px solid #e2e8f0;
  color: #4a5b70;
}

.section.light .assistant-query {
  background: rgba(109, 92, 255, 0.12);
  border-color: rgba(109, 92, 255, 0.24);
}

.section.light .assistant-answer {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.section.light .assistant-answer h3 {
  color: #0b1b2b;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.visual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-content {
  padding: 14px 16px 16px;
  display: grid;
  gap: 8px;
}

.visual-content h3 {
  color: #fff;
}

.visual-content p {
  font-size: 0.92rem;
}

.section.light .visual-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.section.light .visual-media {
  border-bottom: 1px solid #e2e8f0;
}

.section.light .visual-content h3 {
  color: #0b1b2b;
}

.site-footer {
  padding: 40px 0 24px;
  background: #07080d;
  color: var(--ink-700);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 18px;
}

.site-footer p {
  color: var(--ink-500);
}

.footer-grid a {
  color: var(--ink-700);
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.brand-isd {
  font-style: italic;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-pill {
    width: 100%;
    justify-content: space-between;
  }

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

  .mosaic-card.large,
  .mosaic-card.wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }
}
