:root {
  --bg: #080b10;
  --bg-elevated: #0f141c;
  --bg-card: #141b26;
  --border: #243041;
  --text: #e8edf5;
  --muted: #8b9cb3;
  --cyan: #00d4ff;
  --cyan-dim: #0099bf;
  --green: #3dff8b;
  --amber: #ffb020;
  --radius: 14px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "Cascadia Code", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(8, 11, 16, 0.88);
  border-bottom: 1px solid var(--border);
}

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

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

.brand-lockup .brand-icon {
  height: 46px;
  width: 46px;
  display: block;
}

.brand-lockup .wordmark {
  height: 40px;
  width: auto;
  display: block;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-brand .hero-icon {
  height: 84px;
  width: 84px;
  display: block;
}

.hero-brand .hero-wordmark {
  height: 60px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

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

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav a.active {
  color: var(--cyan);
}

.nav-cta {
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  background: var(--cyan) !important;
  color: #001018 !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: #33ddff !important;
  color: #001018 !important;
}

.nav-toggle {
  display: none;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 212, 255, 0.14), transparent),
    linear-gradient(180deg, #0b1018 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero .lead {
  max-width: 52ch;
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--cyan);
  color: #001018;
}

.btn-primary:hover {
  background: #33ddff;
  color: #001018;
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg-elevated);
}

.btn-secondary:hover {
  border-color: var(--muted);
  color: var(--text);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-meta span::before {
  content: "✓ ";
  color: var(--green);
}

.hero-shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-shot img {
  display: block;
  width: 100%;
}

.hero-shot .caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.75rem;
  color: var(--muted);
}

/* Banner */

.banner {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 176, 32, 0.25);
  background: rgba(255, 176, 32, 0.08);
  color: #f0d7a6;
  font-size: 0.9rem;
  text-align: center;
}

.banner strong {
  color: #ffd98a;
}

.banner a {
  color: #ffe8b8;
  text-decoration: underline;
}

.banner-sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}

.license-note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--amber);
  background: rgba(255, 176, 32, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
}

.license-note-centered {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

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

.disclaimer {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.disclaimer-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

/* Sections */

section {
  padding: 4.5rem 0;
}

section.alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-intro {
  margin: 0 0 2.5rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Features */

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

.feature-card {
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  font-size: 1.1rem;
}

/* Product modes */

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mode-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mode-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.mode-card .tagline {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mode-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.mode-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.mode-card li {
  margin-bottom: 0.35rem;
}

/* Architecture */

.arch-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.arch-box {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.arch-box strong {
  display: block;
  margin-bottom: 0.35rem;
}

.arch-box span {
  color: var(--muted);
  font-size: 0.88rem;
}

.arch-core {
  padding: 1.5rem 1.75rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: var(--radius);
  text-align: center;
}

.arch-arrow {
  color: var(--muted);
  font-size: 1.5rem;
}

/* Screenshots */

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.shot-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.shot-card img {
  display: block;
  width: 100%;
}

.shot-card figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Download */

.download-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.download-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.download-card h3 {
  margin: 0 0 0.75rem;
}

.download-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.platform-pill {
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}

.platform-pill.active {
  border-color: rgba(0, 212, 255, 0.55);
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan);
}

.download-status {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.download-all {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}

/* Release archive */

.release-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.release-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.release-row:first-child {
  padding-top: 0;
}

.release-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.release-row-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
}

.release-version {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.release-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.release-badge-latest {
  border-color: rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan);
}

.release-date {
  color: var(--muted);
  font-size: 0.85rem;
}

.release-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.release-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
}

.release-link:hover {
  border-color: rgba(0, 212, 255, 0.45);
  color: var(--cyan);
}

.release-link-missing {
  opacity: 0.45;
  cursor: default;
}

.release-size {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 450;
}

.release-extras {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.release-extra {
  color: var(--muted);
}

.release-extra:hover {
  color: var(--cyan);
}

.hero .download-status {
  margin: 0 0 1.25rem;
}

.code-block {
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: #06080d;
  border: 1px solid var(--border);
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.5;
  color: #c5d4e8;
}

.code-block .comment {
  color: #5c6b7e;
}

.wip-note {
  margin-top: 1.25rem;
  padding: 1rem;
  border-left: 3px solid var(--cyan);
  background: rgba(0, 212, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Volunteer */

.volunteer-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.volunteer-copy h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.volunteer-copy h3:not(:first-child) {
  margin-top: 1.75rem;
}

.volunteer-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.volunteer-ways {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.volunteer-ways li {
  margin-bottom: 0.65rem;
}

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

.volunteer-perks {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--green);
}

.volunteer-perks h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.volunteer-perks ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.volunteer-perks li {
  margin-bottom: 0.6rem;
}

.volunteer-note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}

/* Footer */

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: #06080d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-brand img:first-child {
  height: 40px;
  width: 40px;
}

.footer-brand img:last-child {
  height: 34px;
  width: auto;
}

.footer-grid p,
.footer-grid li {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

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

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0.35rem 0;
}

/* Responsive */

/* Products page */

.page-hero {
  padding: 4rem 0 2rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 212, 255, 0.1), transparent),
    linear-gradient(180deg, #0b1018 0%, var(--bg) 100%);
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 18ch;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.product-grid {
  display: grid;
  gap: 2rem;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card-planned {
  border-style: dashed;
  border-color: #2a3a4d;
}

.product-card-media {
  position: relative;
  background: #06080d;
  min-height: 280px;
}

.product-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-media-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0, 212, 255, 0.06), transparent 65%),
    #0a0f16;
}

.placeholder-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 2rem;
  border: 1px dashed #2a3a4d;
  border-radius: 12px;
  text-align: center;
}

.placeholder-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

.placeholder-sub {
  font-size: 0.85rem;
  color: #5c6b7e;
}

.status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.status-prerelease {
  background: #2a1f06;
  color: #ffd080;
  border: 1px solid rgba(255, 176, 32, 0.75);
}

.status-available {
  background: #092817;
  color: #8dffb8;
  border: 1px solid rgba(141, 255, 184, 0.75);
}

.status-planned {
  background: #062635;
  color: #8eeeff;
  border: 1px solid rgba(142, 238, 255, 0.75);
}

.product-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.product-vendor {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.product-card-body > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-features {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex-grow: 1;
}

.product-features li {
  margin-bottom: 0.4rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.roadmap {
  display: grid;
  gap: 0;
  max-width: 560px;
}

.roadmap-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.roadmap-item:last-child {
  border-bottom: none;
}

.roadmap-marker {
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
}

.roadmap-done .roadmap-marker {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(61, 255, 139, 0.4);
}

.roadmap-next .roadmap-marker {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.roadmap-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.roadmap-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .product-detail-hero-grid,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-shot {
    order: 0;
  }
}

/* Product detail page */

.product-detail-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 212, 255, 0.1), transparent),
    linear-gradient(180deg, #0b1018 0%, var(--bg) 100%);
}

.product-detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.product-detail-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.product-detail-hero .vendor {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-hero .lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.feature-category {
  margin-bottom: 3rem;
}

.feature-category h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.feature-category > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 62ch;
}

.feature-list {
  display: grid;
  gap: 1.5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-shot {
  order: 1;
}

.feature-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-copy p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-copy ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.feature-copy li {
  margin-bottom: 0.3rem;
}

.feature-shot {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #06080d;
}

.feature-shot img {
  display: block;
  width: 100%;
}

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

.feature-tile {
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.feature-tile h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

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

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

@media (max-width: 900px) {
  .hero-grid,
  .mode-grid,
  .download-panel,
  .footer-grid,
  .volunteer-panel {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-media {
    min-height: 200px;
  }

  .hero-brand .hero-icon {
    height: 64px;
    width: 64px;
  }

  .hero-brand .hero-wordmark {
    height: 46px;
  }

  .brand-lockup .brand-icon {
    height: 38px;
    width: 38px;
  }

  .brand-lockup .wordmark {
    height: 32px;
  }

  .arch-diagram {
    grid-template-columns: 1fr;
  }

  .arch-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    background: rgba(8, 11, 16, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .site-header .inner {
    position: relative;
  }
}
