:root {
  --bg: #0b0d10;
  --panel: rgba(20, 24, 29, 0.74);
  --panel-solid: #14181d;
  --line: rgba(244, 246, 248, 0.1);
  --text: #f4f6f8;
  --muted: #a7afba;
  --accent: #ff2d8d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --header-h: 88px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.grain-overlay,
.vignette-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
}

.grain-overlay {
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.vignette-overlay {
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.52) 100%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 1rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(to bottom, rgba(11, 13, 16, 0.88), rgba(11, 13, 16, 0.18));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
}

.site-nav a {
  font-size: 0.95rem;
  transition: color 180ms ease, opacity 180ms ease;
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(20, 24, 29, 0.8);
  color: var(--text);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
}

.section {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section--fullscreen {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 2rem);
  display: flex;
  align-items: center;
}

.section--dark {
  background: var(--bg);
}

.hero__media,
.specs__media,
.value__media,
.contact__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img,
.specs__media img,
.value__media img,
.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay,
.specs__overlay,
.value__overlay,
.contact__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay,
.specs__overlay,
.value__overlay {
  background: linear-gradient(90deg, rgba(11, 13, 16, 0.9) 0%, rgba(11, 13, 16, 0.58) 45%, rgba(11, 13, 16, 0.2) 100%);
}

.contact__overlay {
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.92) 0%, rgba(11, 13, 16, 0.72) 45%, rgba(11, 13, 16, 0.94) 100%);
}

.hero__content,
.specs__content,
.value__content,
.contact__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  width: min(1440px, calc(100vw - 2rem));
  min-height: 720px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--muted {
  color: var(--muted);
}

.display,
.section-title,
.product-card h3,
.specs-card h3,
.roadmap-card h3,
.contact__actions h3 {
  margin: 0;
  font-family: "Saira Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(3.4rem, 9vw, 6.5rem);
}

.display span {
  color: var(--accent);
}

.display--small {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
}

.hero__grid,
.value__content,
.contact__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: end;
}

.hero__copy {
  max-width: 34rem;
  padding-right: 0;
}

.hero__kicker {
  margin: 1.25rem 0 1rem;
  color: var(--accent);
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__text,
.value__text,
.contact__text,
.specs-card__intro,
.product-card__text,
.roadmap-card p,
.info-panel li,
.offer-list span,
.stat-list span {
  color: var(--muted);
  line-height: 1.75;
}

.hero__text {
  max-width: 31rem;
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero__actions,
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.button,
.button--ghost,
.button--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  background: linear-gradient(135deg, #ff2d8d 0%, #d4146a 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 45, 141, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.button:hover,
.button--ghost:hover,
.button--outline:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button:hover {
  box-shadow: 0 16px 40px rgba(255, 45, 141, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button--outline {
  border-color: rgba(255, 45, 141, 0.6);
  background: transparent;
  color: var(--accent);
}

.button--small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.text-link {
  color: var(--text);
  opacity: 0.78;
  text-decoration: underline;
  text-decoration-color: rgba(255, 45, 141, 0.45);
  text-underline-offset: 0.2rem;
}

.card,
.info-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.product-card:hover, .specs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 141, 0.3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 45, 141, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.stat-list,
.offer-list,
.spec-list,
.info-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stat-list li,
.offer-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-list li:first-child,
.offer-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.product-grid,
.specs-grid,
.roadmap-grid,
.info-grid {
  display: grid;
  gap: 1.4rem;
}

.product-grid,
.specs-grid,
.roadmap-grid,
.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roadmap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.product-card,
.specs-card,
.roadmap-card {
  padding: 1.5rem;
}

.product-card {
  display: grid;
  gap: 1.2rem;
}

.product-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.product-card__tag,
.roadmap-card__status {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-card__status--muted {
  color: var(--muted);
}

.product-badge {
  border: 1px solid rgba(255, 45, 141, 0.32);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--accent);
  background: rgba(255, 45, 141, 0.08);
  font-size: 0.76rem;
}

.product-card__media {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 1rem;
  border-radius: calc(var(--radius) - 8px);
  background: rgba(11, 13, 16, 0.66);
  overflow: hidden;
}

.product-card__media img {
  width: auto;
  max-width: 100%;
  max-height: 290px;
  object-fit: contain;
}

.specs {
  overflow: hidden;
}

.specs-card,
.offer-card,
.contact__actions,
.info-panel {
  position: relative;
  z-index: 1;
}

.specs-card h3,
.offer-card p:first-child,
.roadmap-card h3,
.info-panel h3 {
  margin-bottom: 0.85rem;
}

.spec-list li {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-list li:first-child {
  border-top: 0;
}

.spec-list strong,
.offer-list strong,
.stat-list strong,
.info-panel h3 {
  color: var(--text);
}

.section-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.value {
  overflow: hidden;
}

.value__content,
.contact__content {
  align-items: center;
}

.offer-card {
  padding: 1.6rem;
}

.roadmap-card p,
.info-panel li,
.contact-details span,
.contact-details a,
.site-footer,
.site-footer a {
  font-size: 0.98rem;
}

.info-panel {
  padding: 1.5rem;
}

.info-panel ul {
  display: grid;
  gap: 0.9rem;
  padding-left: 1rem;
}

.info-panel li {
  list-style: disc;
}

.contact {
  overflow: hidden;
  padding-bottom: 2rem;
}

.contact__copy {
  position: relative;
  z-index: 1;
}

.contact-details {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.8rem;
}

.contact-details a {
  color: var(--text);
  font-weight: 700;
}

.contact__actions {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.product-page {
  padding-top: calc(var(--header-h) + 3rem);
}

.product-hero {
  padding: 0 0 2.5rem;
}

.product-hero__layout,
.product-info__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
}

.product-gallery,
.product-buy {
  padding: 1.5rem;
}

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

.product-gallery__frame {
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  background: rgba(11, 13, 16, 0.92);
}

.product-gallery__frame img {
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-gallery__thumb {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: rgba(255, 45, 141, 0.52);
  box-shadow: 0 14px 30px rgba(255, 45, 141, 0.12);
  transform: translateY(-2px);
}

.product-gallery__thumb img {
  height: 120px;
  object-fit: cover;
}

.product-buy {
  align-self: start;
  display: grid;
  gap: 1.2rem;
}

.product-buy__title {
  margin: 0;
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.product-buy__price {
  margin: 0;
  color: var(--text);
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
}

.product-buy__summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-extra-group {
  display: grid;
  gap: 0.8rem;
}

.product-extra-group__title {
  margin: 0;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-extra {
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.product-extra:hover,
.product-extra.is-selected {
  border-color: rgba(255, 45, 141, 0.52);
  background: rgba(255, 45, 141, 0.08);
  transform: translateY(-1px);
}

.product-extra strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.product-extra span {
  color: var(--muted);
  line-height: 1.6;
}

.product-buy__actions {
  display: grid;
  gap: 0.9rem;
}

.product-buy__note {
  display: grid;
  gap: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.product-buy__note span {
  color: var(--muted);
  line-height: 1.7;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.6;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 246, 248, 0.68);
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal--delay-1 {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 200ms;
}

.reveal--delay-3 {
  transition-delay: 300ms;
}

.reveal--delay-4 {
  transition-delay: 400ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-dashboard {
  position: absolute;
  top: 8rem;
  right: 1rem;
  width: min(40vw, 640px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.94) 0%, rgba(2, 5, 10, 0.98) 100%);
  border: 1px solid rgba(67, 248, 255, 0.25);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(67, 248, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-dashboard__topbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(67, 248, 255, 0.12);
  color: rgba(98, 242, 255, 0.94);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.hero-dashboard__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.8fr);
  gap: 0.9rem;
  padding: 0.9rem;
}

.hero-dashboard__cams {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.camera-feed,
.dash-stat {
  position: relative;
  border: 1px solid rgba(67, 248, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(3, 7, 13, 0.9);
}

.camera-feed {
  min-height: 250px;
}

.camera-feed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02) brightness(0.84);
}

.camera-feed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 6, 12, 0.02) 0%, rgba(1, 6, 12, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 225, 255, 0.04) 0%, transparent 30%, transparent 100%);
  pointer-events: none;
}

.camera-feed__scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 22%;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(52, 241, 255, 0.22) 45%, transparent 100%);
  mix-blend-mode: screen;
  animation: dash-scan 4.8s linear infinite;
}

.camera-feed__label,
.camera-feed__meta,
.dash-stat__label,
.dash-stat__sub,
.dash-stat__unit,
.dash-metric-list span {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.camera-feed__label {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  padding: 0.45rem 0.55rem;
  background: rgba(6, 14, 22, 0.84);
  color: #7df6ff;
  font-size: 0.64rem;
  box-shadow: inset 0 0 0 1px rgba(67, 248, 255, 0.08);
}

.camera-feed__meta {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 1;
  color: rgba(190, 245, 255, 0.8);
  font-size: 0.62rem;
  line-height: 1.6;
  text-shadow: 0 0 12px rgba(43, 227, 255, 0.18);
}

.camera-feed__reticle {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-top: 2px solid rgba(0, 226, 255, 0.95);
  border-left: 2px solid rgba(0, 226, 255, 0.95);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.9;
  animation: dash-pulse 1.8s ease-in-out infinite;
}

.hero-dashboard__stats {
  display: grid;
  gap: 0.9rem;
}

.dash-stat {
  padding: 0.9rem;
}

.dash-stat--accent strong {
  display: block;
  margin-top: 0.5rem;
  color: #f7fbff;
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(2.5rem, 3.2vw, 3.5rem);
  line-height: 0.9;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}

.dash-stat__label {
  color: rgba(97, 242, 255, 0.86);
  font-size: 0.64rem;
}

.dash-stat__sub,
.dash-stat__unit {
  display: inline-block;
  margin-top: 0.35rem;
  color: rgba(182, 239, 247, 0.56);
  font-size: 0.62rem;
}

.dash-bar {
  margin-top: 1rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(66, 74, 89, 0.34);
  overflow: hidden;
}

.dash-bar span {
  display: block;
  width: 84%;
  height: 100%;
  background: linear-gradient(90deg, #20df78 0%, #2edaa0 38%, #f0c400 68%, #636a73 100%);
  animation: dash-bar-breathe 2.8s ease-in-out infinite;
}

.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.dash-stat-grid .dash-stat strong {
  display: block;
  margin-top: 0.4rem;
  color: #f7fbff;
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  line-height: 0.95;
}

.dash-stat--list {
  display: grid;
  gap: 0.85rem;
}

.dash-metric-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.dash-metric-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(67, 248, 255, 0.08);
}

.dash-metric-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.dash-metric-list span {
  color: rgba(178, 238, 244, 0.7);
  font-size: 0.64rem;
}

.dash-metric-list strong {
  color: #f7fbff;
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.dash-live-value {
  animation: dash-flicker 5.2s steps(1) infinite;
}

@keyframes dash-scan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  55% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(520%);
    opacity: 0;
  }
}

@keyframes dash-pulse {
  0%,
  100% {
    opacity: 0.6;
    box-shadow: 0 0 0 rgba(0, 226, 255, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 18px rgba(0, 226, 255, 0.3);
  }
}

@keyframes dash-bar-breathe {
  0%,
  100% {
    transform: scaleX(0.96);
    transform-origin: left center;
    opacity: 0.88;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left center;
    opacity: 1;
  }
}

@keyframes dash-flicker {
  0%,
  92%,
  100% {
    opacity: 1;
  }
  93% {
    opacity: 0.82;
  }
  94% {
    opacity: 1;
  }
  95% {
    opacity: 0.9;
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .value__content,
  .contact__content,
  .roadmap-grid,
  .product-grid,
  .specs-grid,
  .info-grid,
  .product-hero__layout,
  .product-info__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 520px;
  }

  .hero__content {
    width: var(--container);
    min-height: 0;
  }

  .hero__copy {
    max-width: 780px;
    padding-right: 0;
  }

  .hero-dashboard {
    position: static;
    max-width: 100%;
    width: auto;
  }

  .hero-dashboard__layout {
    grid-template-columns: 1fr;
  }

  .roadmap-grid {
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 78px;
    --container: min(100vw - 1.25rem, 100%);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(11, 13, 16, 0.95);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.55rem 0;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section--fullscreen {
    min-height: auto;
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 4rem;
  }

  .brand__logo {
    height: 38px;
  }

  .display {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .product-card__top {
    flex-direction: column;
  }

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

  .hero-dashboard__cams,
  .dash-stat-grid {
    grid-template-columns: 1fr;
  }

  .camera-feed {
    min-height: 240px;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .hero__actions,
  .product-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button--ghost,
  .button--outline {
    width: 100%;
  }

  .product-card__media {
    min-height: 220px;
  }

  .product-card,
  .specs-card,
  .roadmap-card,
  .product-gallery,
  .product-buy,
  .offer-card,
  .contact__actions,
  .info-panel {
    padding: 1.2rem;
  }

  .product-gallery__frame {
    min-height: 360px;
  }

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