:root {
  color-scheme: dark;
  --bg: #070b14;
  --bg-strong: #0b1120;
  --bg-soft: #0f1626;
  --text: #f4f6ff;
  --muted: #a0a7c2;
  --accent: #7de3ff;
  --accent-strong: #64ffa5;
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(100, 255, 165, 0.25);
  --glow-2: rgba(125, 227, 255, 0.18);
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --max-width: 1160px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1200px circle at 10% -20%, rgba(125, 227, 255, 0.18), transparent 60%),
    radial-gradient(900px circle at 90% 10%, rgba(100, 255, 165, 0.16), transparent 55%),
    radial-gradient(600px circle at 10% 80%, rgba(125, 227, 255, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(8, 13, 24, 0.8), rgba(8, 13, 24, 0.95));
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.95), rgba(7, 11, 20, 0.55));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(125, 227, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  position: relative;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 22, 0.7);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(125, 227, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(125, 227, 255, 0.12) inset, 0 8px 24px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bars span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  display: block;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 190px;
  padding: 0.8rem;
  border-radius: 14px;
  background: rgba(10, 15, 27, 0.98);
  border: 1px solid rgba(125, 227, 255, 0.2);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 30;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-menu a {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover {
  color: var(--text);
  background: rgba(125, 227, 255, 0.08);
}

.nav-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2.2rem;
  align-items: center;
}

.hero-copy {
  grid-column: span 6;
}

.hero-visual {
  grid-column: span 6;
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #050815;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-strip {
  padding: 1.4rem 0 0.6rem;
}

.review-track {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.review-track::before,
.review-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5%;
  pointer-events: none;
  z-index: 1;
}

.review-track::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 11, 20, 0.9), rgba(7, 11, 20, 0));
}

.review-track::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 11, 20, 0.9), rgba(7, 11, 20, 0));
}

.review-motion {
  display: flex;
  width: max-content;
  align-items: center;
  animation: reviewScroll 45s linear infinite;
}

.review-row {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 1.2rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.review-track:hover .review-motion {
  animation-play-state: paused;
}

.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.4rem;
  font-size: 0.85rem;
  color: var(--text);
}

.review-pill::after {
  content: "•";
  color: rgba(160, 167, 194, 0.7);
  margin-left: 0.8rem;
}

.review-pill:last-child::after {
  content: "";
  margin-left: 0;
}

.review-stars {
  color: #ffd36a;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.review-text {
  color: var(--text);
  opacity: 0.9;
}

.dock {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.dock-launcher {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), rgba(8, 12, 22, 0.9));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(125, 227, 255, 0.12) inset;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: dockPulse 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.dock-launcher:hover {
  animation-play-state: paused;
  transform: translateY(-2px);
  border-color: rgba(125, 227, 255, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(125, 227, 255, 0.2) inset;
}

.dock-launcher img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.dock-panel {
  position: absolute;
  top: 74px;
  left: 0;
  right: auto;
  width: min(360px, 86vw);
  border-radius: 20px;
  background: rgba(10, 15, 27, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  padding: 0.95rem;
  opacity: 0;
  transform: translateY(-4px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dock-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dock-header {
  padding: 0.35rem 0.35rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.6rem;
}

.dock-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(100, 255, 165, 0.18);
  border: 1px solid rgba(100, 255, 165, 0.35);
  color: #a9ffcf;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.dock-subtitle {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.dock-menu {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dock-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.dock-item--divider {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
  margin-top: 0.15rem;
}

.dock-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dock-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(8, 12, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.dock-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.dock-subtext {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

@keyframes reviewScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes dockPulse {
  0% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 8px rgba(125, 227, 255, 0.16), 0 0 0 1px rgba(125, 227, 255, 0.14) inset;
  }
  40% {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(125, 227, 255, 0.24), 0 0 0 1px rgba(125, 227, 255, 0.18) inset;
  }
  50% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 32px rgba(125, 227, 255, 0.36), 0 0 0 1px rgba(125, 227, 255, 0.28) inset;
  }
  60% {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(125, 227, 255, 0.24), 0 0 0 1px rgba(125, 227, 255, 0.18) inset;
  }
  100% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 8px rgba(125, 227, 255, 0.16), 0 0 0 1px rgba(125, 227, 255, 0.14) inset;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(125, 227, 255, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(13, 20, 38, 0.7);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 1rem 0 1rem;
}

.hero-title span {
  color: var(--accent-strong);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 227, 255, 0.35);
  background: rgba(10, 15, 27, 0.7);
  box-shadow: 0 0 0 1px rgba(125, 227, 255, 0.12) inset, 0 12px 30px rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.trust-stars {
  color: #ffd36a;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, rgba(125, 227, 255, 0.9), rgba(100, 255, 165, 0.9));
  color: #07121a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(8, 12, 22, 0.6);
  backdrop-filter: blur(12px);
}

.trust-strip {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.card {
  position: relative;
  background: rgba(10, 15, 27, 0.88);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(125, 227, 255, 0.4), rgba(100, 255, 165, 0.25), rgba(125, 227, 255, 0.15));
  opacity: 0.35;
  filter: blur(14px);
  z-index: 0;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

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

.card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(125, 227, 255, 0.35);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(125, 227, 255, 0.12) inset,
    0 0 40px rgba(125, 227, 255, 0.12);
}

.card:hover::before {
  opacity: 0.65;
  filter: blur(8px);
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
}

.card-body {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.spline-frame {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(8, 14, 26, 0.9), rgba(10, 18, 32, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.spline-frame p {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.spline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 227, 255, 0.35);
  color: var(--accent);
}

.bento {
  padding: 3rem 0 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.6rem;
}

.section-lede {
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.8rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem;
}

.span-12 { grid-column: span 12; }
.span-7 { grid-column: span 7; }
.span-6 { grid-column: span 6; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }

.media-frame {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  background: #050815;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.media-frame:hover {
  border-color: rgba(125, 227, 255, 0.3);
  box-shadow: 0 0 0 1px rgba(125, 227, 255, 0.12) inset;
  transform: translateY(-2px);
}

.media-frame:hover img,
.media-frame:hover iframe {
  filter: saturate(1.05);
}

.media-frame img,
.media-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.media-frame iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 15, 0.75);
  backdrop-filter: blur(6px);
  animation: lightboxFade 0.2s ease;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(960px, 94vw);
  max-height: 84vh;
  background: rgba(10, 15, 27, 0.95);
  border: 1px solid rgba(125, 227, 255, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  padding: 1rem 1rem 0.8rem;
  margin: 0 10px;
  animation: lightboxPop 0.2s ease;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

.lightbox-video {
  width: min(960px, 86vw);
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  display: none;
  background: #050815;
}

.lightbox--video .lightbox-image {
  display: none;
}

.lightbox--video .lightbox-video {
  display: block;
}

.lightbox--video .lightbox-nav {
  display: none;
}

.lightbox-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 12, 22, 0.9);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 12, 22, 0.9);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

.lightbox-trigger {
  cursor: zoom-in;
}

@keyframes lightboxFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lightboxPop {
  from {
    transform: scale(0.98);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(125, 227, 255, 0.3);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.workflow {
  padding: 3rem 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.8rem 0 2.2rem;
}

.workflow-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.workflow-list li {
  margin-bottom: 0.4rem;
}

.format-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  row-gap: 0.5rem;
  margin-top: 0.9rem;
}

.format-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  background: rgba(8, 12, 22, 0.7);
  border: 1px solid rgba(125, 227, 255, 0.2);
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.step {
  background: rgba(10, 15, 27, 0.8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
}

.step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0.4rem 0 0.3rem;
}

.step-body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.step-micro {
  font-size: 0.8rem;
  color: rgba(160, 167, 194, 0.85);
  margin-top: 0.35rem;
}

.cta-panel {
  margin: 3rem 0 4rem;
  background: linear-gradient(135deg, rgba(10, 18, 32, 0.9), rgba(12, 24, 38, 0.9));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(125, 227, 255, 0.2);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta-panel h2 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-grid .card {
  padding: 1.2rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.prose {
  background: rgba(10, 15, 27, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-top: 0;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 1.6rem;
}

.prose h3 {
  font-size: 1rem;
  margin-top: 1.4rem;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.prose strong {
  color: var(--text);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose .meta {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .hero-copy,
  .hero-visual {
    grid-column: span 12;
  }

  .hero {
    padding-top: 3.2rem;
  }

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

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

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

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .span-7,
  .span-6,
  .span-5,
  .span-4,
  .span-3 {
    grid-column: span 6;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 0.9rem;
  }

  .site-header-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0.75rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    display: none;
  }

  .dock-launcher {
    width: 52px;
    height: 52px;
  }

  .dock-launcher img {
    width: 52px;
    height: 52px;
  }

  .nav-menu {
    right: 0;
    left: auto;
    max-width: min(90vw, 240px);
    transform-origin: top right;
  }

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

  .span-7,
  .span-6,
  .span-5,
  .span-4,
  .span-3 {
    grid-column: span 2;
  }

  .cta-panel {
    padding: 1.6rem;
  }

  .dock-panel {
    width: min(86vw, 340px);
    transform: translateY(4px) scale(0.96);
  }

  .dock-panel.is-open {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) and (max-height: 500px) {
  .site-header-inner {
    gap: 0.6rem;
    padding: 0.7rem 0.75rem;
  }

  .brand-subtitle {
    display: none;
  }

  .nav-menu {
    right: 0;
    left: auto;
    max-width: min(90vw, 240px);
    transform-origin: top right;
  }

  .hero-visual {
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
  }

  .hero-video {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-video video {
    object-position: center;
  }
}

@media (max-width: 600px) {
  .hero-visual {
    width: 100%;
    margin: 0;
  }

  .hero-video {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 900px) and (max-height: 500px) {
  .hero-visual {
    width: 100%;
    margin: 0;
  }

  .hero-video {
    width: 100%;
    margin: 0;
    border-radius: 0;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  .review-motion {
    animation: none !important;
  }
}
