:root {
  --background: #071209;
  --foreground: #ffffff;
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --accent-foreground: #052e16;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.1);
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  /* Layout widths — keep hero, prose, and grids in one proportion system */
  --width-layout: 64rem;   /* outer page shell (~1024px): cards, grids */
  --width-prose: 42rem;    /* long-form article body (~672px) */
  /* Section intros (eyebrow + h1/h2 + lead) above cards: nearly full layout */
  --width-intro: 56rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

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

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

/* Heroicons outline — shared icon sizing */
.hi {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: var(--width-layout);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Header — mobile first, hamburger right */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(7, 18, 9, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.site-header__brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  min-width: 0;
}

@media (min-width: 768px) {
  .site-header {
    padding: 0.875rem 1.5rem;
  }

  .site-header__brand {
    font-size: 1.4rem;
  }
}

.site-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.site-header__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-header__toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 1.125rem;
}

.site-header__toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

/* Slide-out menu from right */
.site-menu {
  pointer-events: none;
}

.site-menu--open {
  pointer-events: auto;
}

.site-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-menu--open .site-menu__backdrop {
  opacity: 1;
}

.site-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  width: min(18rem, 88vw);
  height: 100dvh;
  padding: 5rem 1.25rem 1.5rem;
  border-left: 1px solid var(--border);
  background: #071209;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.site-menu--open .site-menu__panel {
  transform: translateX(0);
}

.site-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-menu__nav a {
  padding: 0.875rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #d4d4d8;
  transition: background 0.2s, color 0.2s;
}

.site-menu__nav a:hover,
.site-menu__nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.site-menu__nav a[aria-current="page"] {
  color: var(--accent);
  background: rgba(34, 197, 94, 0.1);
}

.site-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .site-header__toggle {
    display: none;
  }

  .site-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
    pointer-events: auto;
  }

  .site-menu__backdrop {
    display: none;
  }

  .site-menu__panel {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .site-menu__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.125rem;
  }

  .site-menu__nav a {
    padding: 0.5rem 0.625rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .site-menu__actions {
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .site-menu__actions .btn--block {
    width: auto;
  }
}

.btn--block {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn--ghost {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #d4d4d8;
  background: transparent;
}

.btn--ghost:hover {
  color: #fff;
}

.btn--primary-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn--primary-sm:hover {
  background: var(--accent-dark);
}

.btn--primary {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--outline {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero — mobile first */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1rem 3.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 5rem 1.5rem 6rem;
  }
}

/* Homepage hero with wildlife photo + brand fade */
.hero--photo {
  min-height: min(78vh, 42rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero--photo {
    min-height: min(85vh, 48rem);
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-wolf.jpg");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: saturate(0.85) brightness(0.75);
  pointer-events: none;
}

/* Video hero: same full-bleed background layer as .hero__photo */
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  filter: saturate(0.85) brightness(0.75);
}

.hero--video .hero__fade,
.hero--video .hero__glow-left,
.hero--video .hero__glow-right,
.hero--video .hero__grid {
  z-index: 1;
}

.hero--video .hero__content {
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__media {
    background-image: url("videos/hero-deer-poster.jpg");
    background-size: cover;
    background-position: center 40%;
    filter: saturate(0.85) brightness(0.75);
  }
}

.hero__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Brand green wash + readability: dark edges, softer center for photo */
  background:
    linear-gradient(
      180deg,
      rgba(7, 18, 9, 0.82) 0%,
      rgba(7, 18, 9, 0.45) 28%,
      rgba(7, 18, 9, 0.35) 50%,
      rgba(7, 18, 9, 0.7) 78%,
      rgba(7, 18, 9, 0.97) 100%
    ),
    linear-gradient(
      90deg,
      rgba(7, 18, 9, 0.75) 0%,
      transparent 22%,
      transparent 78%,
      rgba(7, 18, 9, 0.75) 100%
    ),
    radial-gradient(
      ellipse 90% 70% at 50% 40%,
      rgba(34, 197, 94, 0.12) 0%,
      transparent 60%
    );
}

.hero__glow-left,
.hero__glow-right {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__glow-left {
  left: -8rem;
  top: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(34, 197, 94, 0.2);
}

.hero--photo .hero__glow-left {
  background: rgba(34, 197, 94, 0.18);
  opacity: 0.7;
}

.hero__glow-right {
  right: -8rem;
  top: 8rem;
  width: 20rem;
  height: 20rem;
  background: rgba(6, 78, 59, 0.4);
  filter: blur(100px);
}

.hero--photo .hero__glow-right {
  opacity: 0.55;
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero--photo .hero__grid {
  opacity: 0.025;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__content {
    gap: 2rem;
  }
}

.hero--photo .hero__content {
  text-shadow: 0 1px 24px rgba(7, 18, 9, 0.65);
}

.hero--photo .badge {
  background: rgba(7, 18, 9, 0.45);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero--photo .btn--outline {
  background: rgba(7, 18, 9, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.hero--photo .btn--outline:hover {
  background: rgba(7, 18, 9, 0.65);
}

.hero--photo .hero__stats {
  margin-top: 0.25rem;
  padding: 0.65rem 0.85rem;
  border-top: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  background: rgba(7, 18, 9, 0.5);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero--photo .hero__lead {
  color: #d4d4d8;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  color: #d4d4d8;
  backdrop-filter: blur(8px);
}

.badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  margin: 0;
  max-width: 56rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero__lead {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #a1a1aa;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 20rem;
  gap: 0.75rem;
}

.hero__cta .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    width: auto;
  }

  .hero__cta .btn {
    width: auto;
  }
}

.hero__free-note,
.hero__beta-note {
  margin: -1.25rem 0 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  text-align: center;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
  max-width: var(--width-layout);
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-top: none;
}

@media (min-width: 900px) {
  .hero__stats {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.25rem;
    padding: 0.7rem 1rem;
  }
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 9.5rem;
  max-width: 100%;
  padding: 0.4rem 0.55rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .hero__stat {
    flex: 1 1 0;
    min-width: 0;
    justify-content: flex-start;
    padding: 0.35rem 0.45rem;
  }

  .hero__stat + .hero__stat {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0.65rem;
  }
}

.hero__stat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
}

.hero__stat-icon .hi {
  width: 0.95rem;
  height: 0.95rem;
}

.hero__stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
  line-height: 1.2;
}

.hero__stat-value {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f4f4f5;
}

.hero__stat-label {
  font-size: 0.6875rem;
  font-weight: 400;
  color: #a1a1aa;
}

@media (min-width: 900px) {
  .hero__stat-value {
    font-size: 0.8125rem;
  }

  .hero__stat-label {
    font-size: 0.6875rem;
  }
}

@media (min-width: 1100px) {
  .hero__stat-value {
    font-size: 0.875rem;
  }

  .hero__stat-label {
    font-size: 0.75rem;
  }

  .hero__stat-icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

/* Dashboard preview */
.preview {
  padding: 0 1rem 3.5rem;
}

@media (min-width: 768px) {
  .preview {
    padding: 0 1.5rem 5rem;
  }
}

.preview__window {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #09090b;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.preview__titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(24, 24, 27, 0.8);
}

.preview__dots {
  display: flex;
  gap: 0.375rem;
}

.preview__dots span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.preview__dots span:nth-child(1) { background: rgba(239, 68, 68, 0.8); }
.preview__dots span:nth-child(2) { background: rgba(234, 179, 8, 0.8); }
.preview__dots span:nth-child(3) { background: rgba(34, 197, 94, 0.8); }

.preview__shot {
  width: 100%;
  background: #09090b;
  line-height: 0;
}

.preview__shot-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.preview__url {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: #71717a;
}

.preview__body {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .preview__body {
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem;
  }
}

.preview__chart {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .preview__chart { grid-column: span 2; }
}

.preview__chart-label,
.preview__list-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
}

.preview__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 8rem;
}

.preview__bar {
  flex: 1;
  border-radius: 0.25rem 0.25rem 0 0;
  background: rgba(34, 197, 94, 0.7);
}

.preview__metrics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.preview__metric {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
}

.preview__metric p {
  margin: 0;
}

.preview__metric-label {
  font-size: 0.75rem;
  color: #71717a;
}

.preview__metric-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.preview__metric-sub {
  font-size: 0.75rem;
  color: var(--accent);
}

.preview__metric-sub--muted {
  color: #a1a1aa;
}

.preview__list {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .preview__list { grid-column: span 3; }
}

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

@media (min-width: 480px) {
  .preview__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .preview__thumbs {
    grid-template-columns: repeat(8, 1fr);
  }
}

.preview__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #27272a, #18181b);
  text-align: center;
}

.preview__thumb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
}

.preview__thumb-icon .hi {
  width: 1rem;
  height: 1rem;
}

.preview__thumb-code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.preview__thumb-label {
  margin-top: 0.25rem;
  font-size: 0.625rem;
  color: #a1a1aa;
}

/* Sections — mobile first (balanced padding so topics don’t float) */
.section {
  padding: 2.75rem 1rem;
}

@media (min-width: 768px) {
  .section {
    padding: 3.75rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 4.5rem 1.5rem;
  }
}

/* Page hero stays a bit tighter vertically */
.section.page-hero {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section.page-hero {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }
}

.section--bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.section--light {
  background: #fafafa;
  color: #171717;
}

/* Section tints — preview on homepage (optie 1: kleurritme) */
.section--tint {
  border-top: 1px solid rgba(34, 197, 94, 0.12);
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(34, 197, 94, 0.1), transparent 55%),
    linear-gradient(180deg, #0a1810 0%, #0c1f14 50%, #09160e 100%);
}

.section--tint-soft {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(34, 197, 94, 0.07), transparent 50%),
    #0a1410;
}

.section--tint .section__lead,
.section--tint-soft .section__lead {
  color: #b0b0b8;
}

.rewild-section--rich {
  position: relative;
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  border-bottom: 1px solid rgba(34, 197, 94, 0.12);
  background:
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(22, 101, 52, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(34, 197, 94, 0.12), transparent 50%),
    linear-gradient(180deg, #06140c 0%, #0a1f12 40%, #071209 100%);
}

.rewild-section--rich .section__eyebrow {
  color: #4ade80;
}

.rewild-section--rich h2 {
  color: #f0fdf4;
}

.rewild-section--rich .rewild-section__content p {
  color: #d1d5db;
}

.cta--band {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(34, 197, 94, 0.15);
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(34, 197, 94, 0.14), transparent 65%),
    linear-gradient(180deg, #0a1a10 0%, #071209 100%);
}

.cta--band .cta__box {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.16), rgba(7, 18, 9, 0.6));
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.08);
}

@media (min-width: 768px) {
  .cta--band {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

/* Section containers: tight, consistent gap between intro text and cards */
.section > .container:not(.home-teaser):not(.media-split):not(.contact-page__grid):not(.cam-product-hero__grid):not(.webapp-split),
.section > .container--narrow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .section > .container:not(.home-teaser):not(.media-split):not(.contact-page__grid):not(.cam-product-hero__grid):not(.webapp-split),
  .section > .container--narrow {
    gap: 1.5rem;
  }
}

.section__intro {
  max-width: var(--width-intro);
  margin: 0;
  width: 100%;
}

/* Lead under a section title uses the same wide column as the title */
.section__intro .section__lead {
  max-width: none;
}

.section__intro--center {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--width-intro);
  text-align: center;
}

.section__intro--center .section__lead {
  margin-left: auto;
  margin-right: auto;
}

/* No extra top margin on the first block after a section intro */
.section__intro + *,
.section__subintro + * {
  margin-top: 0;
}

/* Card / grid blocks under an intro: no phantom top spacing */
.section__intro + .features-grid,
.section__intro + .highlights-grid,
.section__intro + .partner-types,
.section__intro + .steps-grid,
.section__intro + .camera-grid,
.section__intro + .camera-brands-grid,
.section__intro + .shop-grid,
.section__intro + .shop-buy-paths,
.section__intro + .verticals-grid,
.section__intro + .dashboard-shots,
.section__intro + .pricing-grid,
.section__intro + .compare-table-wrap,
.section__intro + .content-block,
.section__intro + .faq-list,
.section__intro + .highlights-cta {
  margin-top: 0;
}

.section__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.section__lead {
  margin: 0;
  font-size: 1.125rem;
  color: #a1a1aa;
  line-height: 1.6;
}

/* Topic blocks: group long-form topics into clear cards */
.content-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 768px) {
  .content-stack {
    gap: 1.5rem;
  }
}

.content-block {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 768px) {
  .content-block {
    padding: 1.5rem 1.5rem;
  }
}

.content-block > h2,
.content-block > h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.content-block > p {
  margin: 0 0 0.85rem;
  color: #d4d4d8;
  line-height: 1.65;
}

.content-block > p:last-child,
.content-block > ul:last-child,
.content-block > dl:last-child,
.content-block > .cameras-protocols:last-child,
.content-block > .steps-grid:last-child,
.content-block > .compare-table-wrap:last-child {
  margin-bottom: 0;
}

.content-block > ul {
  margin: 0 0 0.85rem;
}

.content-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.content-block a:hover {
  color: #4ade80;
}

/* Full-width grids inside a narrow content stack still use layout width */
.content-stack > .content-block--wide,
.content-block--wide {
  max-width: none;
}

.content-block--wide .steps-grid,
.content-block--wide .compare-table-wrap,
.content-block--wide .cameras-protocols,
.content-block--wide .partner-types {
  max-width: none;
}

.section--light .section__lead {
  color: #52525b;
}

/* Key benefits highlight */
.benefits-highlight {
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.03));
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.08), 0 20px 40px rgba(0, 0, 0, 0.25);
}

.benefits-highlight__header {
  margin-bottom: 1.75rem;
}

.benefits-highlight__header h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.benefits-highlight__header p {
  margin: 0;
  font-size: 1rem;
  color: #d4d4d8;
  line-height: 1.6;
}

.benefits-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
  }
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #e4e4e7;
}

.benefits-list li strong {
  color: #fff;
  font-weight: 600;
}

.benefits-list li strong a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.benefits-list li strong a:hover {
  color: #4ade80;
}

.benefits-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent);
}

.benefits-list__icon .hi {
  width: 0.875rem;
  height: 0.875rem;
}

.section__subintro {
  margin-bottom: 0;
}

.section__subintro h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.section__subintro p {
  margin: 0;
  font-size: 1rem;
  color: #a1a1aa;
  line-height: 1.6;
}

/* Feature cards */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover,
.feature-card--link:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.feature-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent);
}

.feature-card__icon .hi {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.6;
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 2.5rem;
}

.steps-grid--compact {
  margin: 0;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
}

.step-card h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.6;
}

/* Verticals (homepage) */
.verticals-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .verticals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Home: always three use-case cards in a row on tablet+ */
@media (min-width: 768px) {
  .verticals-grid--home {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vertical-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(34, 197, 94, 0.18);
  background: rgba(7, 18, 9, 0.35);
  transition: border-color 0.2s, background 0.2s;
}

.vertical-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.vertical-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.vertical-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.vertical-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.vertical-card p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.vertical-card p a:hover {
  color: #4ade80;
}

/* Use cases page — card grid */
.use-cases-grid {
  align-items: stretch;
}

.use-case-card {
  scroll-margin-top: 5.5rem;
  min-height: 100%;
}

.use-case-card__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.8125rem;
  color: #a1a1aa;
  line-height: 1.5;
  flex: 1;
}

.use-case-card__list li {
  margin-bottom: 0.4rem;
}

.use-case-card__list li:last-child {
  margin-bottom: 0;
}

.use-case-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.use-case-card__actions .btn--ghost {
  padding: 0.4rem 0.5rem;
  font-size: 0.8125rem;
  color: var(--accent);
}

.use-case-card__actions .btn--ghost:hover {
  color: #4ade80;
  background: transparent;
}

/* Knowledge hub */
.knowledge-grid {
  align-items: stretch;
}

.knowledge-article {
  scroll-margin-top: 5.5rem;
}

.knowledge-article .cameras-protocols {
  margin: 1.25rem 0 1.5rem;
}

.knowledge-links {
  margin-top: 1.5rem;
}

/* Product: field WebApp section */
#webapp {
  scroll-margin-top: 5.5rem;
}

.webapp-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .webapp-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem 4rem;
  }
}

.webapp-split__copy .section__intro {
  max-width: none;
  margin-bottom: 1rem;
}

.webapp-split__body {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.webapp-split__list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.webapp-split__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #d4d4d8;
  line-height: 1.55;
}

.webapp-split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.webapp-split__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.webapp-split__media {
  display: flex;
  justify-content: center;
}

.webapp-phone {
  margin: 0;
  width: 100%;
  max-width: 17.5rem;
}

.webapp-phone__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  max-height: 36rem;
  margin: 0 auto;
  border-radius: 1.75rem;
  border: none;
  background:
    linear-gradient(160deg, rgba(34, 197, 94, 0.1), rgba(255, 255, 255, 0.03) 55%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.webapp-phone__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.webapp-phone__img.is-missing {
  display: none;
}

.webapp-phone__frame:has(.webapp-phone__img:not(.is-missing)) {
  background: transparent;
  border: none;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.vertical-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.vertical-card--link:hover h3 {
  color: var(--accent);
}

.vertical-card__more {
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
}

/* CTA */
.cta {
  padding: 3.5rem 1rem;
}

@media (min-width: 768px) {
  .cta {
    padding: 5rem 1.5rem;
  }
}

.cta__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
  text-align: center;
}

.cta__box h2 {
  margin: 0;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
}

.cta__box p {
  margin: 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: #a1a1aa;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cta__box {
    gap: 2rem;
    padding: 4rem 2rem;
  }
}

/* Footer */
.site-footer {
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 1.5rem;
  }
}

.site-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.site-footer__brand > strong {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.site-footer__brand p {
  margin: 0.85rem 0 0;
  max-width: 20rem;
  font-size: 0.8rem;
  color: #71717a;
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.site-footer__col-title {
  font-weight: 500;
  color: #d4d4d8;
}

.site-footer__col a {
  color: #71717a;
  transition: color 0.2s;
}

.site-footer__col a:hover {
  color: #fff;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.75rem;
  color: #52525b;
}

/* Split layout: copy left, image right (platform teaser, dashboard, etc.) */
.media-split,
.home-teaser {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .media-split,
  .home-teaser {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem 4rem;
  }
}

.media-split__content,
.home-teaser__content {
  min-width: 0;
}

.media-split .section__intro,
.home-teaser .section__intro {
  margin-bottom: 1.5rem;
  max-width: none;
}

.media-split .section__intro h2,
.home-teaser .section__intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.media-split .section__lead,
.home-teaser .section__lead {
  max-width: none;
}

.media-split__body {
  margin: 0 0 1.25rem;
  max-width: none;
  font-size: 0.9875rem;
  color: #a1a1aa;
  line-height: 1.65;
}

.media-split__subtitle {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #e4e4e7;
}

.media-split__list,
.home-teaser__list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: none;
}

.media-split__list li,
.home-teaser__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: #d4d4d8;
  line-height: 1.55;
}

.media-split__list li strong {
  color: #f4f4f5;
  font-weight: 600;
}

.media-split__list li::before,
.home-teaser__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.media-split__cta,
.home-teaser__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 20rem;
}

.media-split__cta .btn,
.home-teaser__cta .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .media-split__cta,
  .home-teaser__cta {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
  }

  .media-split__cta .btn,
  .home-teaser__cta .btn {
    width: auto;
  }
}

.media-split__media,
.home-teaser__media {
  min-width: 0;
  width: 100%;
}

.media-split__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 16rem;
  border-radius: 1.25rem;
  border: 1px dashed rgba(34, 197, 94, 0.35);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
  color: #71717a;
}

.media-split__placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
}

.media-split__placeholder-icon .hi {
  width: 1.5rem;
  height: 1.5rem;
}

.media-split__placeholder-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Product / home screenshots — real img with dashed frame fallback */
.home-teaser__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 16rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px dashed rgba(34, 197, 94, 0.35);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
}

.home-teaser__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-teaser__frame:has(.home-teaser__img:not(.is-missing)) {
  border-style: solid;
  border-color: rgba(34, 197, 94, 0.28);
  background: var(--surface);
}

.home-teaser__img.is-missing {
  display: none;
}

#dashboard {
  scroll-margin-top: 5.5rem;
}

/* Product dashboard: full-width text → 2-col bullets → shots */
.dashboard-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard-block__intro {
  width: 100%;
  max-width: var(--width-intro);
  margin-bottom: 0;
}

.dashboard-block__intro h2 {
  margin: 0 0 0.75rem;
}

.dashboard-block__intro .section__lead {
  max-width: none;
  margin-bottom: 0.85rem;
}

.dashboard-block__body {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: var(--width-intro);
}

.dashboard-block__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 700px) {
  .dashboard-block__list {
    grid-template-columns: 1fr 1fr;
  }
}

.dashboard-block__list li {
  position: relative;
  margin: 0;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.dashboard-block__list li strong {
  color: var(--text);
  font-weight: 600;
}

.dashboard-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.dashboard-block .dashboard-shots {
  margin-bottom: 0;
}

.dashboard-block .highlights-cta {
  margin-top: 0;
}

/* Home dashboard: centered intro (same width token as other section intros) */
.section__intro--center {
  margin-bottom: 0;
}

.dashboard-shots {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .dashboard-shots {
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
}

.dashboard-shots__item {
  min-width: 0;
}

.dashboard-shots__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px dashed rgba(34, 197, 94, 0.35);
  background:
    linear-gradient(160deg, rgba(34, 197, 94, 0.1), rgba(255, 255, 255, 0.03) 55%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.dashboard-shots__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dashboard-shots__img.is-missing {
  display: none;
}

.dashboard-shots__frame:has(.dashboard-shots__img:not(.is-missing)) {
  border-style: solid;
  border-color: rgba(34, 197, 94, 0.28);
  background: var(--surface);
}

.dashboard-shots__item--main .dashboard-shots__frame {
  aspect-ratio: 16 / 10;
  min-height: 12rem;
}

.dashboard-shots__item--main .dashboard-shots__frame:has(.dashboard-shots__img:not(.is-missing)) {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

@media (min-width: 768px) {
  .dashboard-shots__item:not(.dashboard-shots__item--main) .dashboard-shots__frame {
    aspect-ratio: 3 / 4;
    max-height: 18rem;
    margin-top: auto;
    margin-bottom: auto;
  }

  .dashboard-shots__item--main .dashboard-shots__frame {
    height: 100%;
    min-height: 16rem;
    aspect-ratio: auto;
  }
}

#who-for {
  scroll-margin-top: 5.5rem;
}

/* Funder logos — greyscale strip below legal */
.site-footer__funders {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer__funders-label {
  margin: 0 0 1.15rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52525b;
}

.site-footer__funders-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.5rem;
}

.site-footer__funders-logos img {
  display: block;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
}

/* Pre-rendered grey assets — no CSS invert (avoids solid grey boxes).
   Kept close in visual size so the pair reads as balanced/centered. */
.site-footer__funder--stimulus {
  height: 1.35rem;
  max-width: 8rem;
}

.site-footer__funder--mit {
  height: 1.65rem;
  max-width: 9rem;
}

@media (min-width: 768px) {
  .site-footer__funder--stimulus {
    height: 1.45rem;
    max-width: 8.5rem;
  }

  .site-footer__funder--mit {
    height: 1.75rem;
    max-width: 9.5rem;
  }
}

/* Page hero — same left edge as body content (no jump from wide → narrow) */
/* Hero: intro only — cards live in the next section for cleaner spacing */
.page-hero > .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .page-hero > .container {
    gap: 1.5rem;
  }
}

.page-hero .section__intro {
  max-width: var(--width-intro);
  margin: 0;
}

/* When cards still sit inside a hero (legacy), keep gap tight */
.page-hero .section__intro + .partner-types,
.page-hero .section__intro + .shop-buy-paths {
  margin-top: 0.25rem;
}

.page-hero .section__intro h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: none; /* full intro column — matches lead + cards below */
}

.benefits-highlight__header h2,
.section__subintro h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.benefits-highlight__header h2 {
  color: var(--accent);
}

/* Home highlights */
.highlights-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
}

.highlight-card:hover,
.highlight-card--link:hover {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.highlight-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.highlight-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
}

.highlight-card__icon .hi {
  width: 1.25rem;
  height: 1.25rem;
}

.highlight-card h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
}

.highlight-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.highlights-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .highlights-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/*
 * Reading column: same outer shell as .container (left-aligned),
 * so prose lines up with page-hero text instead of re-centering narrower.
 */
.container--narrow {
  max-width: var(--width-layout);
}

/*
 * Outer shell stays --width-layout (same left edge as page-hero).
 * Reading content is capped at --width-prose, still left-aligned.
 */
.container--narrow > .section__subintro,
.container--narrow > .faq-list,
.container--narrow > .product-consult-cta,
.container--narrow > p,
.container--narrow > h2,
.container--narrow > h3,
.container--narrow > ul:not(.partner-types),
.container--narrow > .detail-next-links,
.container--narrow > .cameras-protocols,
.container--narrow > .cameras-brands,
.container--narrow > .cameras-note,
.container--narrow > .cameras-certified-placeholder,
.container--narrow > form,
.container--narrow > .contact-form,
.container--narrow > .partner-form,
.container--narrow .section__subintro,
.container--narrow .faq-list,
.about-page__content > h2,
.about-page__content > h3,
.about-page__content > p,
.about-page__content > ul,
.about-page__content > dl,
.about-page__content > .detail-next-links,
.use-case-section .container--narrow > * {
  max-width: var(--width-prose);
}

/* Multi-column blocks may use the full layout width */
.container--narrow > .product-deep-links,
.container--narrow > .partner-types {
  max-width: none;
}

.about-page__lead {
  margin: 0;
  font-size: 1.125rem;
  color: #a1a1aa;
  line-height: 1.65;
}

/* Full layout width for long product/detail text (e.g. self-hosted) */
.about-page__content--wide > h2,
.about-page__content--wide > h3,
.about-page__content--wide > p,
.about-page__content--wide > ul,
.about-page__content--wide > dl,
.about-page__content--wide > .detail-next-links,
.about-page__content--wide > .compare-table-wrap {
  max-width: none;
}

.about-page__content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.about-page__content h2:first-child {
  margin-top: 0;
}

/* When topics are split into content-blocks, reset flat-page h2 spacing */
.about-page__content.content-stack,
.about-page__content .content-stack {
  max-width: none;
}

.about-page__content > .content-stack {
  width: 100%;
}

.about-page__content .content-block {
  max-width: var(--width-prose);
}

.about-page__content .content-block--wide {
  max-width: none;
}

.about-page__content--wide .content-block {
  max-width: none;
}

/* Prose sections: tight intro → body, normal paragraph rhythm (not flex-gap per <p>) */
.container--narrow.about-page__content {
  gap: 0;
}

.container--narrow.about-page__content > .section__intro {
  margin: 0 0 1.25rem;
}

.container--narrow.about-page__content > p,
.container--narrow.about-page__content > ul,
.container--narrow.about-page__content > dl,
.container--narrow.about-page__content > .cameras-protocols,
.container--narrow.about-page__content > .detail-next-links,
.container--narrow.about-page__content > .product-trust-note,
.container--narrow > .section__intro,
.container--narrow > .faq-list {
  margin-top: 0;
}

.container--narrow > .section__intro {
  margin-bottom: 1.25rem;
}

.container--narrow > .faq-list {
  width: 100%;
}

.about-page__content p {
  margin: 0 0 1rem;
  color: #d4d4d8;
  line-height: 1.65;
}

.about-page__content > p:last-child,
.about-page__content > ul:last-child,
.about-page__content > dl:last-child {
  margin-bottom: 0;
}

/* Grids/lists after intro keep full section width */
.section > .container > .features-grid,
.section > .container > .highlights-grid,
.section > .container > .partner-types,
.section > .container > .steps-grid,
.section > .container > .camera-grid,
.section > .container > .camera-brands-grid,
.section > .container > .camera-fixed-list,
.section > .container > .shop-grid,
.section > .container > .shop-buy-paths,
.section > .container > .verticals-grid,
.section > .container > .dashboard-shots,
.section > .container > .highlights-cta,
.section > .container > .content-stack,
.section > .container > .pricing-grid {
  width: 100%;
}

.about-page__content a,
.container--narrow > a,
.container--narrow p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.about-page__content a:hover,
.container--narrow > a:hover,
.container--narrow p a:hover {
  color: #4ade80;
}

.about-page__list {
  margin: 0;
  padding-left: 1.25rem;
  color: #d4d4d8;
  line-height: 1.65;
}

.about-page__list li + li {
  margin-top: 0.75rem;
}

.about-page__list strong {
  color: #fff;
}

.about-page__details {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.about-page__details div {
  display: grid;
  gap: 0.25rem;
}

.about-page__details dt {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
}

.about-page__details dd {
  margin: 0;
  color: #e4e4e7;
}

.about-page__details a {
  color: var(--accent);
}

/* Partner page */
.partner-types {
  display: grid;
  gap: 1.25rem;
  margin-top: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .partner-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 cards in a hero: allow 3 columns on large screens */
.page-hero .partner-types {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .page-hero .partner-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .page-hero .partner-types {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-type-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.partner-type-card--link {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.partner-type-card--link:hover {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

/* Product deep-link cards */
.product-deep-links {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .product-deep-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Anchor from homepage notifications card (sticky header offset) */
#notifications,
#how-it-works,
#faq {
  scroll-margin-top: 5.5rem;
}

.product-free-note,
.product-beta-note {
  margin: 1rem 0 0;
  max-width: none;
  font-size: 0.9375rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.page-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  max-width: none;
}

.page-hero__cta .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .page-hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-hero__cta .btn {
    width: auto;
  }
}

.product-trust-note {
  margin-top: 0;
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  width: 100%;
}

.product-trust-note h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-trust-note p {
  margin: 0;
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.65;
}

.product-trust-note a {
  color: var(--accent);
  text-decoration: none;
}

.product-trust-note a:hover {
  text-decoration: underline;
}

.product-consult-cta {
  text-align: center;
}

.product-consult-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.product-consult-cta p {
  margin: 0 0 1.25rem;
  color: #a1a1aa;
  line-height: 1.65;
}

.product-consult-cta a:not(.btn) {
  color: var(--accent);
  text-decoration: none;
}

.product-consult-cta a:not(.btn):hover {
  text-decoration: underline;
}

.faq-section-gap {
  margin-top: 0;
}

.faq-group .section__subintro {
  margin: 0 0 1rem;
  max-width: none;
}

.faq-group .section__subintro h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.faq-group .faq-list {
  max-width: none;
}

.content-stack > .detail-next-links {
  margin-top: 0.25rem;
  max-width: var(--width-prose);
}

.page-hero .section__intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-hero .section__intro a:hover {
  color: #4ade80;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: #f4f4f5;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  color: #a1a1aa;
  line-height: 1.65;
}

.faq-item a {
  color: var(--accent);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

.detail-next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  font-weight: 500;
}

.detail-next-links a {
  color: var(--accent);
  text-decoration: none;
}

.detail-next-links a:hover {
  text-decoration: underline;
}

.partner-consult-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.6;
}

.partner-consult-note a {
  color: var(--accent);
  text-decoration: none;
}

.partner-consult-note a:hover {
  text-decoration: underline;
}

.contact-page__partner-note {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.contact-page__partner-note a {
  color: var(--accent);
  text-decoration: none;
}

.contact-page__partner-note a:hover {
  text-decoration: underline;
}

.product-deep-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.product-deep-link:hover {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.product-deep-link h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
}

.product-deep-link p {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.product-deep-link__more {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.page-breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #71717a;
}

.page-breadcrumb a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s;
}

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

.partner-type-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
}

.partner-type-card h2 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
}

.partner-type-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.partner-tech__title {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.partner-tech__lead {
  margin: 0 0 1rem;
  color: #d4d4d8;
  line-height: 1.65;
}

/* Supported cameras page */
.cameras-protocols {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 640px) {
  .cameras-protocols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cameras-protocol {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.cameras-protocol--recommended {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.cameras-protocol__label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.cameras-protocol__status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.cameras-protocol p {
  margin: 0;
  font-size: 0.8125rem;
  color: #a1a1aa;
  line-height: 1.5;
}

.cameras-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  color: #d4d4d8;
}

@media (min-width: 480px) {
  .cameras-brands {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cameras-brands li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
}

.cameras-note {
  font-size: 0.875rem !important;
  color: #71717a !important;
  font-style: italic;
}

.cameras-certified-placeholder {
  margin: 1.5rem 0 2rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.cameras-certified-placeholder__title {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a1a1aa;
}

.cameras-certified-placeholder__text {
  margin: 0;
  font-size: 0.875rem;
  color: #71717a;
  line-height: 1.55;
}

/* Rewilding section — homepage */
.rewild-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06) 0%, transparent 100%);
}

.rewild-section h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.rewild-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rewild-section__content p {
  margin: 0;
  font-size: 1.0625rem;
  color: #d4d4d8;
  line-height: 1.7;
}

/* Comparison table */
.compare-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.compare-table-wrap--elevated {
  margin: 0;
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(7, 18, 9, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.self-hosted-duo {
  margin-bottom: 0.5rem;
}

.features-grid--after-duo {
  margin-top: 1.5rem;
}

.partner-type-card--emphasis {
  border-color: rgba(34, 197, 94, 0.28);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(255, 255, 255, 0.03));
  padding: 1.75rem;
}

.partner-type-card--emphasis h2 {
  font-size: 1.25rem;
}

.partner-type-card--emphasis p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #d4d4d8;
}

.partner-type-card--emphasis strong {
  color: #fff;
  font-weight: 600;
}

.self-hosted-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.06);
}

.self-hosted-note p {
  margin: 0;
  max-width: 48rem;
  font-size: 0.9375rem;
  color: #d4d4d8;
  line-height: 1.6;
}

.self-hosted-note strong {
  color: #fff;
  font-weight: 600;
}

#how-deployment-works,
#self-hosted-deployments,
#white-label-oem,
#cloud-vs-self-hosted,
#whats-included {
  scroll-margin-top: 5.5rem;
}

/* Self-hosted: 4 deployment steps */
@media (min-width: 900px) {
  #how-deployment-works .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

#how-deployment-works .step-card h3 {
  font-size: 1.0625rem;
}

#how-deployment-works .highlights-cta {
  margin-top: 2.5rem;
}

.compare-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table th,
.compare-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  color: #fff;
}

.compare-table tbody th {
  font-weight: 500;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.02);
  width: 28%;
}

.compare-table tbody td {
  color: #a1a1aa;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table th:nth-child(3),
.compare-table td:nth-child(3) {
  color: #e4e4e7;
  background: rgba(34, 197, 94, 0.06);
}

/* Inner pages */
.page-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-inner main {
  flex: 1;
}

/* Contact page — mobile first */
.contact-page {
  padding: 2rem 1rem 3rem;
}

@media (min-width: 768px) {
  .contact-page {
    padding: 3rem 1.5rem 4rem;
  }
}

.contact-page__grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
}

@media (min-width: 900px) {
  .contact-page__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-page__intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.contact-page__lead {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  color: #a1a1aa;
  line-height: 1.65;
}

.contact-page__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-page__details > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-page__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
}

.contact-page__details a {
  color: var(--accent);
  transition: color 0.2s;
}

.contact-page__details a:hover {
  color: #4ade80;
}

.contact-page__details span:not(.contact-page__label) {
  font-size: 0.9375rem;
  color: #d4d4d8;
  line-height: 1.5;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form__honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d4d4d8;
}

.contact-form__field em {
  color: var(--accent);
  font-style: normal;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #71717a;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.contact-form__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__field select option {
  background: #18181b;
  color: #fff;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form__field--error input,
.contact-form__field--error select,
.contact-form__field--error textarea {
  border-color: rgba(239, 68, 68, 0.6);
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #a1a1aa;
  line-height: 1.55;
  cursor: pointer;
}

.contact-form__checkbox input {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.contact-form__checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form__checkbox a:hover {
  color: #4ade80;
}

.contact-form__error {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 0.875rem;
}

.contact-form__submit {
  align-self: flex-start;
  min-width: 10rem;
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Thank you page */
.thanks-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  min-height: 60dvh;
}

@media (min-width: 768px) {
  .thanks-page {
    padding: 5rem 1.5rem 4rem;
  }
}

.thanks-page__box {
  max-width: 32rem;
  text-align: center;
}

.thanks-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: var(--accent);
}

.thanks-page__icon .hi {
  width: 1.75rem;
  height: 1.75rem;
}

.thanks-page__box h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}

.thanks-page__box p {
  margin: 0 0 2rem;
  color: #a1a1aa;
  line-height: 1.65;
}

.thanks-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Pricing tiers */
.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-card__tier {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-card__price {
  margin: 0;
}

.pricing-card__amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

.pricing-card__list {
  margin: 0.5rem 0 1rem;
  padding: 0 0 0 1.1rem;
  flex: 1;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.55;
}

.pricing-card__list li {
  margin-bottom: 0.4rem;
}

.pricing-card--featured {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2), 0 16px 40px rgba(0, 0, 0, 0.25);
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-footnote {
  margin: 2.5rem auto 0;
  max-width: var(--width-prose);
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-footnote a {
  color: var(--accent);
}

/* ── Cookie banner & GDPR preferences ───────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner__inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--width-layout);
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(7, 18, 9, 0.96);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }
}

.cookie-banner__copy {
  flex: 1;
  min-width: 0;
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  font-size: 0.875rem;
  padding: 0.55rem 0.95rem;
}

.cookie-banner__manage {
  border-color: transparent;
  color: #d4d4d8;
}

.cookie-banner__manage:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}

.cookie-modal[hidden],
.cookie-modal-backdrop[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-modal__panel {
  pointer-events: auto;
  width: 100%;
  max-width: 32rem;
  max-height: min(90vh, 40rem);
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: #0a1a0e;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.cookie-modal__header h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.cookie-modal__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cookie-modal__body {
  padding: 1.15rem 1.25rem;
}

.cookie-modal__lead {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.cookie-modal__lead a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-prefs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-prefs__item {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.cookie-prefs__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-prefs__row strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: var(--foreground);
}

.cookie-prefs__row p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-prefs__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.1);
}

.cookie-prefs__item .cookie-prefs__toggle[disabled] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 2.75rem;
  height: 1.5rem;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch__ui {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border);
  transition: background 0.15s, border-color 0.15s;
}

.cookie-switch__ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #e4e4e7;
  transition: transform 0.15s;
}

.cookie-switch input:checked + .cookie-switch__ui {
  background: rgba(34, 197, 94, 0.35);
  border-color: rgba(34, 197, 94, 0.55);
}

.cookie-switch input:checked + .cookie-switch__ui::after {
  transform: translateX(1.2rem);
  background: var(--accent);
}

.cookie-switch input:focus-visible + .cookie-switch__ui {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
}

body.cookie-modal-open {
  overflow: hidden;
}

/* ── Camera catalogue, shop & product pages ─────────────────────── */
.cam-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d4d4d8;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.cam-badge--ftps {
  color: var(--accent);
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.12);
}

.camera-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .camera-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .camera-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.camera-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.camera-card:hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.camera-card__media {
  display: block;
  color: inherit;
}

.camera-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(34, 197, 94, 0.1), rgba(255, 255, 255, 0.03) 55%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
}

.camera-card__frame--lg {
  aspect-ratio: 4 / 3;
  border-radius: 1.15rem;
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.camera-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.camera-card__img.is-missing {
  display: none;
}

.camera-card__frame:has(.camera-card__img:not(.is-missing)) {
  background: var(--surface, #0c1a10);
}

.camera-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
}

.camera-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.camera-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.camera-card__title a {
  color: inherit;
}

.camera-card__title a:hover {
  color: var(--accent);
}

.camera-card__brand {
  margin: 0;
  font-size: 0.8125rem;
  color: #71717a;
  letter-spacing: 0.02em;
}

.camera-card__summary {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.camera-card__specs {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.875rem;
  color: #d4d4d8;
  line-height: 1.5;
}

.camera-card__specs li {
  margin-bottom: 0.25rem;
}

.camera-card__why {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.camera-card__why strong {
  color: #e4e4e7;
}

.camera-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.camera-grid-note {
  margin: 0;
  font-size: 0.8125rem;
  color: #71717a;
  text-align: center;
}

.camera-grid-note code {
  font-size: 0.8em;
  color: #a1a1aa;
}

.camera-brands-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .camera-brands-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 800px) {
  .camera-brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.camera-brand-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  min-height: 5.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.camera-brand-chip:hover {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.06);
}

.camera-brand-chip--more {
  border-style: dashed;
  background: transparent;
}

.camera-brand-chip__name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.camera-brands-note {
  margin: 0;
  max-width: var(--width-prose);
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
}

.camera-brands-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Fixed FTPS camera list */
.camera-fixed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.camera-fixed-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background 0.2s;
}

.camera-fixed-item:hover {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 700px) {
  .camera-fixed-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.camera-fixed-item__main {
  min-width: 0;
  flex: 1;
}

.camera-fixed-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.camera-fixed-item__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

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

.camera-fixed-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  flex-shrink: 0;
}

@media (min-width: 700px) {
  .camera-fixed-item__meta {
    align-items: flex-end;
    text-align: right;
    min-width: 9.5rem;
  }
}

.camera-fixed-item__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.camera-fixed-item__source {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #71717a;
}

.camera-fixed-list__footnote {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.08);
  font-size: 0.925rem;
  color: #d4d4d8;
  line-height: 1.6;
  max-width: none;
  width: 100%;
}

/* Shop */
.shop-buy-paths {
  display: grid;
  gap: 1rem;
  margin-top: 0;
  width: 100%;
}

@media (min-width: 700px) {
  .shop-buy-paths {
    grid-template-columns: 1fr 1fr;
  }
}

.shop-buy-path {
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.shop-buy-path--accent {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.shop-buy-path h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.shop-buy-path p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.shop-grid {
  display: grid;
  gap: 1.75rem;
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  scroll-margin-top: 5.5rem;
}

.shop-card__media {
  display: block;
}

.shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
}

.shop-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
}

.shop-card__body h3 a {
  color: inherit;
}

.shop-card__body h3 a:hover {
  color: var(--accent);
}

.shop-card__tagline {
  margin: 0;
  font-size: 0.875rem;
  color: #a1a1aa;
}

.shop-card__price-hint {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.shop-card__buy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.shop-card__buy-block {
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.shop-card__buy-block--primary {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.shop-card__buy-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.shop-card__buy-block--primary .shop-card__buy-label {
  color: var(--accent);
}

.shop-card__buy-note {
  margin: 0.55rem 0 0;
  font-size: 0.75rem;
  color: #71717a;
  line-height: 1.4;
}

.shop-affiliates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.btn--sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
}

.shop-card__more {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.shop-card__more:hover {
  text-decoration: underline;
}

/* Product detail template */
.cam-product-hero {
  padding-top: 2rem;
}

.cam-product-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .cam-product-hero__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
  }
}

.cam-product-hero__copy h1 {
  margin: 0.75rem 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cam-product-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: none;
}

.cam-product-buy {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .cam-product-buy {
    grid-template-columns: 1fr 1fr;
  }
}

.cam-product-buy__option {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.cam-product-buy__option--featured {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cam-product-buy__option h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.cam-product-buy__option p {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.cam-product-buy__option .btn {
  align-self: flex-start;
}

.cam-specs__grid {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

@media (min-width: 640px) {
  .cam-specs__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cam-specs__grid > div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .cam-specs__grid > div:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
}

.cam-specs__grid dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #71717a;
}

.cam-specs__grid dd {
  margin: 0;
  font-size: 0.95rem;
  color: #e4e4e7;
  line-height: 1.45;
}

.cam-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  width: 100%;
}

.cam-split > div:not(.cam-preconfig-card) {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 800px) {
  .cam-split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.cam-split h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.cam-preconfig-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background:
    linear-gradient(160deg, rgba(34, 197, 94, 0.12), rgba(255, 255, 255, 0.02) 60%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.cam-preconfig-card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.cam-preconfig-card > p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.55;
}

.cam-preconfig-card__list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  font-size: 0.9rem;
  color: #d4d4d8;
  line-height: 1.55;
}

.cam-preconfig-card__list li {
  margin-bottom: 0.35rem;
}

.cam-preconfig-card .btn {
  align-self: flex-start;
}

.cam-preconfig-card .btn + .btn {
  margin-top: -0.25rem;
}