:root {
  --bg: #070b12;
  --bg-elev: #0d1320;
  --panel: #10192a;
  --line: #1e293b;
  --text: #ecf1ff;
  --muted: #a7b4d0;
  --accent: #6ea1ff;
  --accent-2: #2d5cff;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(46, 92, 255, 0.12), transparent 35%), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
video { width: 100%; height: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; background: #fff; color: #000; padding: .75rem 1rem; z-index: 50;
}
.skip-link:focus { top: 1rem; }

.page {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 18, 0.8);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  width: min(calc(100% - 2rem), var(--max)); margin: 0 auto;
  min-height: 4.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; min-height: 44px; }
.brand-mark {
  width: 2.5rem; height: 2.5rem; border: 1px solid var(--line); display: grid; place-items: center;
  background: rgba(255,255,255,.02) url('/assets/dambavisuals.svg') center/contain no-repeat;
  color: transparent; font-size: 0; line-height: 0; overflow: hidden;
}
.brand-text { font-size: .95rem; letter-spacing: .18em; text-transform: uppercase; }
.brand-sub { display: block; font-size: .72rem; letter-spacing: .12em; color: var(--muted); margin-top: .15rem; }

.desktop-nav { display: none; gap: 1.15rem; align-items: center; }
.desktop-nav a, .menu-link {
  color: var(--muted); font-size: .92rem; min-height: 44px; display: inline-flex; align-items: center;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible, .menu-link:hover, .menu-link:focus-visible { color: var(--text); }

.mobile-menu { position: relative; }
.mobile-menu > summary {
  list-style: none; min-height: 44px; min-width: 44px; border: 1px solid var(--line); padding: .6rem .85rem;
  color: var(--text); display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu > summary::-webkit-details-marker { display: none; }
.mobile-menu-panel {
  position: absolute; right: 0; top: calc(100% + .75rem); width: min(92vw, 22rem); background: var(--bg-elev);
  border: 1px solid var(--line); padding: .8rem; display: grid; gap: .35rem;
}

.hero {
  padding: clamp(2rem, 5vw, 4.5rem) 0 2rem; display: grid; gap: 1.5rem;
}
.hero-grid {
  display: grid; gap: 1.25rem;
}
.eyebrow {
  color: var(--accent); letter-spacing: .18em; text-transform: uppercase; font-size: .77rem;
}
h1, h2, h3 { margin: 0; font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.5rem, 7vw, 6.4rem); max-width: 13ch; }
h2 { font-size: clamp(1.6rem, 3vw, 2.8rem); }
h3 { font-size: 1.05rem; }
p { margin: 0; color: var(--muted); }
.lede { max-width: 60ch; font-size: 1.05rem; }

.hero-media {
  position: relative; min-height: clamp(20rem, 52vw, 42rem); border: 1px solid var(--line); overflow: hidden;
  background: linear-gradient(180deg, rgba(16,25,42,.6), rgba(7,11,18,.95));
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,18,.1), rgba(7,11,18,.6) 78%, rgba(7,11,18,.9));
}
.hero-media video, .hero-media img, .hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media video, .hero-media img { z-index: 1; }
.hero-media video { pointer-events: none; }
.hero-fallback { z-index: 2; }
.hero-fallback {
  display: grid; place-items: center; text-align: center; padding: 2rem; background:
    radial-gradient(circle at center, rgba(110,161,255,.15), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
}
.hero-copy {
  position: relative; z-index: 3; display: grid; align-content: end; min-height: inherit; padding: clamp(1.25rem, 3vw, 2rem);
}
.hero-kicker {
  display: grid; gap: .35rem; max-width: 28rem;
}
.hero-words { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.pill {
  border: 1px solid var(--line); padding: .65rem .85rem; color: var(--text); background: rgba(16,25,42,.45); font-size: .88rem;
}

.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.35rem; }
.btn {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.1rem;
  border: 1px solid var(--line); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem;
}
.btn-primary { background: var(--accent-2); border-color: rgba(110,161,255,.35); color: #fff; }
.btn-secondary { background: transparent; color: var(--text); }
.btn:hover, .btn:focus-visible { border-color: rgba(110,161,255,.55); }

.section { padding: 2rem 0; }
.section-head { display: grid; gap: .65rem; margin-bottom: 1.2rem; }
.section-grid { display: grid; gap: 1rem; }
.card, .stat, .process-step, .contact-box, .form-panel, .project-item {
  border: 1px solid var(--line); background: rgba(16,25,42,.5);
}
.card, .stat, .process-step, .project-item { padding: 1rem; }
.card p, .process-step p, .project-item p { font-size: .95rem; }
.card-grid { display: grid; gap: 1rem; }
.service-list { display: grid; gap: .55rem; }
.service-list a {
  display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.service-list a:hover, .service-list a:focus-visible { border-color: rgba(110,161,255,.5); }

.stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.stat strong { display: block; font-size: 1.35rem; }

.process { display: grid; gap: 1rem; }
.process-step { display: grid; gap: .6rem; }

.split { display: grid; gap: 1rem; }
.frame {
  border: 1px solid var(--line); padding: 1rem; background: rgba(255,255,255,.02);
}
.frame img, .frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.contact-grid { display: grid; gap: 1rem; }
.contact-box { padding: 1rem; display: grid; gap: .85rem; }
.contact-links { display: grid; gap: .5rem; }

form { display: grid; gap: .85rem; }
.field-grid { display: grid; gap: .85rem; }
label { display: grid; gap: .35rem; font-size: .92rem; color: var(--text); }
input, select, textarea {
  width: 100%; min-height: 44px; border: 1px solid var(--line); background: rgba(7,11,18,.55); color: var(--text);
  padding: .8rem .9rem;
}
textarea { min-height: 8rem; resize: vertical; }
::placeholder { color: #8091b7; }

.footer {
  border-top: 1px solid var(--line); margin-top: 2rem; padding: 1.5rem 0 2.5rem; color: var(--muted);
}
.footer-grid { display: grid; gap: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .9rem 1.2rem; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .88rem; }
.breadcrumb a { color: var(--text); }

.meta-note {
  border-left: 2px solid var(--accent); padding: .85rem 1rem; background: rgba(110,161,255,.06); color: var(--muted);
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

@media (min-width: 768px) {
  .desktop-nav { display: inline-flex; }
  .mobile-menu { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: end; }
  .section-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .split { grid-template-columns: repeat(2, minmax(0,1fr)); align-items: start; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .footer-grid { grid-template-columns: 1fr auto; align-items: center; }
  .field-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (min-width: 1024px) {
  .stats { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .process { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Editorial homepage */
.home-editorial {
  background: #070b12;
  color: #f8fafc;
  font-family: Arial, Helvetica, sans-serif;
}

.home-editorial main,
.home-editorial section,
.home-editorial div,
.home-editorial form {
  min-width: 0;
}

.editorial-container {
  width: min(calc(100% - 2rem), 1380px);
  margin-inline: auto;
}

.editorial-header {
  background: rgba(7, 11, 18, .94);
  border-color: #1e293b;
}

.editorial-header .site-header-inner {
  width: min(calc(100% - 2rem), 1380px);
  min-height: 4.5rem;
}

.editorial-header .desktop-nav {
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.editorial-header .desktop-nav a {
  color: #cbd5e1;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.editorial-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid #1e293b;
  background: #070b12;
}

.editorial-hero-media,
.editorial-hero-media video,
.editorial-hero-poster,
.editorial-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.editorial-hero-media video {
  z-index: 1;
  object-fit: cover;
  object-position: center;
}

.editorial-hero-poster {
  z-index: 0;
  background: #0d1320 url('/assets/posters/hero.jpg') center / cover no-repeat;
}

.editorial-hero-overlay {
  z-index: 2;
  background: rgba(7, 11, 18, .75);
}

.editorial-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding-block: clamp(2rem, 6vw, 6rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
}

.editorial-index {
  color: #94a3b8;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.editorial-hero h1 {
  align-self: center;
  max-width: 15ch;
  color: #fff;
  font-size: clamp(2.4rem, 6.8vw, 7.5rem);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.editorial-hero-bottom {
  display: grid;
  gap: 1.25rem;
  align-items: end;
  border-top: 1px solid rgba(226, 232, 240, .35);
  padding-top: 1.25rem;
}

.editorial-hero-bottom p {
  max-width: 50ch;
  color: #e2e8f0;
  font-size: clamp(.95rem, 1.25vw, 1.15rem);
}

.editorial-cta,
.editorial-submit {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid #f8fafc;
  padding: .85rem 1rem;
  color: #070b12;
  background: #f8fafc;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
}

.editorial-cta:hover,
.editorial-cta:focus-visible,
.editorial-submit:hover,
.editorial-submit:focus-visible {
  color: #f8fafc;
  background: transparent;
}

.editorial-section {
  padding-block: clamp(4rem, 9vw, 8rem);
  border-bottom: 1px solid #1e293b;
}

.editorial-section-head {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  gap: 1rem;
}

.editorial-section-head h2,
.contact-intro h2 {
  max-width: 20ch;
  color: #f8fafc;
  font-size: clamp(2.1rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.expertise-grid {
  display: grid;
  border-top: 1px solid #1e293b;
  border-left: 1px solid #1e293b;
}

.expertise-card {
  min-height: 23rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 1.5rem;
  border-right: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  background: #070b12;
  transition: background-color .2s ease;
}

.expertise-card:hover,
.expertise-card:focus-visible {
  background: #0d1320;
}

.card-number,
.process-count,
.card-link,
.portfolio-meta {
  color: #94a3b8;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.expertise-card h3 {
  align-self: end;
  max-width: 16ch;
  color: #f8fafc;
  font-size: clamp(1.6rem, 2.7vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

.expertise-card p {
  max-width: 42ch;
  color: #94a3b8;
}

.card-link {
  color: #e2e8f0;
  border-top: 1px solid #1e293b;
  padding-top: 1rem;
}

.process-section {
  background: #0a101a;
}

.editorial-section-head-wide > p:last-child {
  max-width: 46ch;
  color: #94a3b8;
}

.process-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #334155;
}

.process-timeline li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid #334155;
}

.process-timeline li > div {
  display: grid;
  gap: .75rem;
}

.process-timeline h3 {
  color: #f8fafc;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  font-weight: 500;
}

.process-timeline p {
  max-width: 48ch;
  color: #94a3b8;
}

.portfolio-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem) 1rem;
}

.portfolio-card {
  display: grid;
  gap: 1rem;
}

.portfolio-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #1e293b;
  background-color: #0d1320;
}

.portfolio-visual-film {
  background-image: linear-gradient(rgba(7, 11, 18, .28), rgba(7, 11, 18, .6)), url('/assets/posters/hero.jpg');
  background-position: center;
  background-size: cover;
}

.portfolio-visual-live {
  background:
    linear-gradient(90deg, transparent 49.8%, #334155 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, #334155 50%, transparent 50.2%),
    #0d1320;
  background-size: 25% 25%;
}

.portfolio-visual-content {
  background: linear-gradient(135deg, #111827 0 42%, #1e293b 42% 58%, #0d1320 58% 100%);
}

.play-mark,
.signal-mark,
.frame-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  min-width: 4.5rem;
  min-height: 4.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 250, 252, .75);
  color: #f8fafc;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.play-mark {
  border-radius: 50%;
  padding-left: .25rem;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1rem;
}

.portfolio-card h3 {
  max-width: 25ch;
  color: #e2e8f0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
}

.contact-section {
  background: #0a101a;
}

.contact-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.contact-intro {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.contact-intro > p:not(.editorial-index) {
  max-width: 45ch;
  color: #94a3b8;
}

.direct-details {
  margin-top: 1.5rem;
  display: grid;
  border-top: 1px solid #334155;
  font-style: normal;
}

.direct-details a,
.direct-details p {
  min-height: 4.3rem;
  padding-block: 1rem;
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: center;
  border-bottom: 1px solid #334155;
  color: #e2e8f0;
  overflow-wrap: anywhere;
}

.direct-details span {
  color: #64748b;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.editorial-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #334155;
  background: #070b12;
}

.editorial-form label {
  color: #cbd5e1;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
  border: 0;
  border-bottom: 1px solid #334155;
  border-radius: 0;
  padding-inline: 0;
  color: #f8fafc;
  background: transparent;
  letter-spacing: normal;
  text-transform: none;
}

.editorial-form select option {
  color: #f8fafc;
  background: #070b12;
}

.editorial-form textarea {
  min-height: 9rem;
}

.editorial-submit {
  width: 100%;
  border: 1px solid #f8fafc;
  cursor: pointer;
}

.form-note {
  color: #64748b;
  font-size: .75rem;
}

.editorial-footer {
  margin-top: 0;
  border-color: #1e293b;
  background: #070b12;
  font-size: .78rem;
}

@media (min-width: 680px) {
  .editorial-hero-bottom {
    grid-template-columns: 1fr auto;
  }

  .editorial-cta {
    min-width: 15rem;
  }

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

  .portfolio-card-featured {
    grid-column: 1 / -1;
  }

  .portfolio-card-featured .portfolio-visual {
    aspect-ratio: 2 / 1;
  }

  .process-timeline li {
    grid-template-columns: 5rem minmax(0, 1fr);
  }
}

@media (min-width: 960px) {
  .expertise-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .editorial-section-head-wide {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: end;
  }

  .editorial-section-head-wide .editorial-index {
    align-self: start;
  }

  .process-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid #334155;
  }

  .process-timeline li {
    min-height: 18rem;
    padding: 1.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    border-right: 1px solid #334155;
  }

  .process-timeline li > div {
    align-content: end;
  }

  .portfolio-grid {
    grid-template-columns: 1.35fr .65fr;
  }

  .portfolio-card-featured {
    grid-column: auto;
    grid-row: span 2;
  }

  .portfolio-card-featured .portfolio-visual {
    aspect-ratio: 4 / 3;
  }

  .contact-layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

@media (max-width: 679px) {
  .editorial-container,
  .editorial-header .site-header-inner {
    width: min(calc(100% - 1.25rem), 1380px);
  }

  .editorial-hero {
    aspect-ratio: auto;
    overflow: visible;
  }

  .editorial-hero-media {
    position: relative;
    aspect-ratio: 16 / 9;
  }

  .editorial-hero-content {
    height: auto;
    padding-block: 2rem 3rem;
    gap: 2rem;
    background: #070b12;
  }

  .editorial-hero h1 {
    align-self: auto;
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .expertise-card {
    min-height: 20rem;
  }

  .direct-details a,
  .direct-details p {
    grid-template-columns: 1fr;
    gap: .4rem;
  }
}

/* ============================================================
   SERVICE & AGENCE PAGES — Swiss Grid system
   Reusable structure (16 service pages + agence):
   sv-hero -> sv-section(Capacités) -> sv-section-alt(Réalisations)
   -> sv-section(Méthode) -> sv-section-alt(Dispositif) -> sv-cta.
   All page borders: #1e293b on a #070b12 base.
   ============================================================ */
.sv { background: #070b12; color: #f8fafc; }
.sv, .sv section, .sv div, .sv h1, .sv h2, .sv h3, .sv p,
.sv dl, .sv dd, .sv dt, .sv ol, .sv li, .sv table, .sv td, .sv th { min-width: 0; }
.sv h1, .sv h2, .sv h3 { font-family: inherit; letter-spacing: -.03em; text-wrap: balance; }
.sv p { color: #94a3b8; }
.sv-container { width: min(calc(100% - 2rem), 1280px); margin-inline: auto; }

/* Hero — 16:9 media header with high-contrast overlay */
.sv-hero { position: relative; overflow: hidden; border-bottom: 1px solid #1e293b; background: #0d1320; }
.sv-hero-media { position: absolute; inset: 0; overflow: hidden; background-color: #0d1320; }
.sv-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sv-hero-media::after { content: ""; position: absolute; inset: 0; background: rgba(7, 11, 18, .75); }
.sv-hero-body { position: relative; z-index: 2; min-height: clamp(24rem, 64vh, 38rem); display: grid; align-content: end; gap: 1.1rem; padding-block: clamp(1.5rem, 4vw, 3.5rem); }
.sv-eyebrow { color: #6ea1ff; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.sv-hero h1 { max-width: 16ch; color: #fff; font-size: clamp(2.2rem, 6vw, 6rem); line-height: .96; }
.sv-lede { max-width: 54ch; color: #cbd5e1; font-size: clamp(.95rem, 1.2vw, 1.1rem); }
.sv-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .75rem; }

/* Sections */
.sv-section { padding-block: clamp(3rem, 7vw, 6rem); border-bottom: 1px solid #1e293b; }
.sv-section-alt { background: #0a101a; }
.sv-section-head { margin-bottom: clamp(2rem, 4.5vw, 3.5rem); display: grid; gap: 1rem; }
.sv-section-head h2 { max-width: 22ch; color: #f8fafc; font-size: clamp(1.8rem, 4vw, 3.6rem); font-weight: 500; line-height: 1; }
.sv-index { color: #64748b; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

/* Key metrics grid */
.sv-metrics { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #1e293b; border-left: 1px solid #1e293b; }
.sv-metrics div { padding: 1.4rem 1.2rem; border-right: 1px solid #1e293b; border-bottom: 1px solid #1e293b; display: grid; gap: .55rem; background: #070b12; }
.sv-metrics dt { color: #64748b; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sv-metrics dd { margin: 0; color: #f8fafc; font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.35rem); letter-spacing: -.02em; }

/* Realisation proof grid — explicit <img> placeholders, 16:9 1920x1080 */
.sv-proof { display: grid; gap: clamp(1.75rem, 4vw, 3rem) 1rem; }
.sv-proof-card { display: grid; gap: .9rem; }
.sv-proof-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid #1e293b; background: #0d1320; }
.sv-proof-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,18,0) 55%, rgba(7,11,18,.88)); }
.sv-proof-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.02); transform: scale(1.001); transition: transform .55s ease, filter .55s ease; }
.sv-proof-card:hover .sv-proof-media img, .sv-proof-card:focus-within .sv-proof-media img { transform: scale(1.045); filter: saturate(1) contrast(1.02); }
.sv-tags { position: absolute; left: .9rem; right: .9rem; bottom: .9rem; z-index: 2; display: flex; flex-wrap: wrap; gap: .4rem; }
.sv-tags span { padding: .32rem .55rem; border: 1px solid rgba(248,250,252,.45); background: rgba(7,11,18,.62); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sv-proof-meta { display: flex; justify-content: space-between; gap: .5rem 1rem; padding-top: .75rem; border-top: 1px solid #1e293b; color: #64748b; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sv-proof-card h3 { max-width: 30ch; color: #e2e8f0; font-size: clamp(1.15rem, 2vw, 1.65rem); font-weight: 500; line-height: 1.1; }

/* Production workflow — 3-step visual timeline */
.sv-process { margin: 0; padding: 0; list-style: none; display: grid; border-top: 1px solid #1e293b; border-left: 1px solid #1e293b; }
.sv-process li { padding: 1.5rem 1.25rem; border-right: 1px solid #1e293b; border-bottom: 1px solid #1e293b; display: grid; gap: 1rem; background: #070b12; }
.sv-process b { color: #6ea1ff; font-size: .72rem; font-weight: 700; letter-spacing: .18em; }
.sv-process div { display: grid; gap: .6rem; }
.sv-process h3 { color: #f8fafc; font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 500; }
.sv-process p { max-width: 36ch; font-size: .95rem; }

/* Hardware specification table */
.sv-tablewrap { overflow-x: auto; border: 1px solid #1e293b; }
.sv-gear { width: 100%; min-width: 44rem; border-collapse: collapse; background: #070b12; }
.sv-gear th, .sv-gear td { padding: .9rem 1rem; text-align: left; vertical-align: top; border-right: 1px solid #1e293b; border-bottom: 1px solid #1e293b; }
.sv-gear thead th { background: #0a101a; color: #64748b; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.sv-gear tbody tr:last-child th, .sv-gear tbody tr:last-child td { border-bottom: 0; }
.sv-gear th[scope="row"] { color: #f8fafc; font-weight: 600; font-size: .95rem; }
.sv-gear td { color: #94a3b8; font-size: .93rem; }

/* Conversion CTA */
.sv-cta { border-top: 1px solid #1e293b; background: #0a101a; }
.sv-cta-inner { padding-block: clamp(3rem, 7vw, 6rem); display: grid; gap: 1.25rem; }
.sv-cta h2 { max-width: 20ch; color: #f8fafc; font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 500; line-height: .98; letter-spacing: -.05em; }
.sv-cta h2 em { color: #6ea1ff; font-style: normal; }
.sv-cta-inner > p:not(.sv-index) { max-width: 52ch; }
.sv-cta-note { font-size: .9rem; }
.sv-cta-note a { color: #cbd5e1; border-bottom: 1px solid #334155; }
.sv-cta-note a:hover, .sv-cta-note a:focus-visible { color: #fff; border-color: #6ea1ff; }

.sv .btn { border-color: #1e293b; min-width: max-content; }
.sv .btn-primary { background: #2d5cff; border-color: rgba(110,161,255,.4); color: #fff; }
.sv .btn-primary:hover, .sv .btn-primary:focus-visible { background: #1f4ae0; }
.sv .btn-secondary { color: #e2e8f0; }

@media (min-width: 720px) {
  .sv-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sv-process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sv-process li { min-height: 15rem; }
  .sv-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1020px) {
  .sv-hero-body { min-height: 0; aspect-ratio: 16 / 9; align-content: end; }
  .sv-section-head { grid-template-columns: 9rem 1fr; align-items: end; }
  .sv-section-head .sv-index { padding-bottom: .4rem; }
  .sv-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 719px) {
  .sv-container { width: min(calc(100% - 1.25rem), 1280px); }
}
