@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
}

:root {
  --background: #fafafa;
  --foreground: #000000;
  --primary: #e85102;
  --primary-hover: #d84b02;
  --secondary: #333333;
  --muted: #646464;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --font-sans: "Plus Jakarta Sans", sans-serif;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-synthesis: none;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

#about,
#solutions,
#features,
#models,
#screenaat,
#specs,
#contact {
  scroll-margin-top: 72px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 24px;
  color: var(--secondary);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.section-heading {
  max-width: 768px;
  margin: 0 auto 80px;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 20px 25px -5px rgb(232 81 2 / 0.2), 0 8px 10px -6px rgb(232 81 2 / 0.2);
}

.button-primary:hover svg {
  transform: translateX(4px);
}

.button-primary svg {
  transition: transform 200ms ease;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  padding: 24px 0;
  border-bottom: 1px solid transparent;
  transition: padding 300ms ease, background-color 300ms ease, border-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.scrolled {
  padding: 16px 0;
  border-color: var(--gray-200);
  background: rgb(255 255 255 / 0.8);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 52;
  display: block;
  width: 138px;
  height: 24px;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 250ms ease, transform 250ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.scrolled .brand-logo-light,
.site-header.menu-open .brand-logo-light {
  opacity: 0;
  transform: translateY(-50%) scale(0.98);
}

.site-header.scrolled .brand-logo-dark,
.site-header.menu-open .brand-logo-dark {
  opacity: 1;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.desktop-nav > a:not(.nav-cta) {
  color: rgb(255 255 255 / 0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms ease;
}

.desktop-nav > a:hover {
  color: var(--primary);
}

.site-header.scrolled .desktop-nav > a:not(.nav-cta) {
  color: var(--secondary);
}

.site-header.scrolled .desktop-nav > a:not(.nav-cta):hover {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.nav-cta:hover {
  background: var(--primary-hover);
  color: #ffffff !important;
  box-shadow: 0 10px 15px -3px rgb(232 81 2 / 0.2);
}

.menu-toggle {
  position: relative;
  z-index: 52;
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  margin-right: 0;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 50%;
  background: rgb(0 0 0 / 0.34);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.menu-toggle svg {
  position: absolute;
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.menu-toggle .close-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.75);
}

.site-header.scrolled .menu-toggle .menu-icon {
  color: #000000;
}

.site-header.scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: var(--gray-200);
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.1);
}

.site-header.menu-open .menu-toggle .menu-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.75);
}

.site-header.menu-open .menu-toggle .close-icon {
  color: #000000;
  opacity: 1;
  transform: rotate(0) scale(1);
}

.mobile-menu {
  position: absolute;
  z-index: 51;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 96px 24px 32px;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  opacity: 0;
  transform: translateY(-20px);
  transition: visibility 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.site-header.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu nav > a:not(.mobile-cta) {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--secondary);
  font-size: 24px;
  font-weight: 600;
  transition: color 200ms ease;
}

.mobile-menu nav > a:hover {
  color: var(--primary);
}

.mobile-cta {
  margin-top: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--primary);
  box-shadow: 0 10px 15px -3px rgb(232 81 2 / 0.2);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

/* Hero */
.hero {
  --pointer-x: 70%;
  --pointer-y: 30%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-scroll: 0px;
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
}

.hero-background,
.hero-background::before,
.hero-background::after {
  position: absolute;
  inset: 0;
}

.hero-background {
  z-index: 0;
  overflow: hidden;
  background: #020202;
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: -2%;
  transform: translate3d(
    var(--hero-shift-x),
    calc(var(--hero-shift-y) + var(--hero-scroll)),
    0
  );
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.68) brightness(0.88) contrast(1.02);
  transform: scale(1.015);
  animation: hero-cinematic-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-aurora,
.hero-pointer-glow,
.hero-light-beam,
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-aurora {
  z-index: 1;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.3;
}

.hero-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.34;
  will-change: transform, opacity;
}

.hero-orb-orange {
  top: -18%;
  right: -8%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgb(232 81 2 / 0.85) 0%, rgb(232 81 2 / 0) 70%);
  animation: hero-orb-orange 13s ease-in-out infinite alternate;
}

.hero-orb-blue {
  right: 12%;
  bottom: -42%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgb(22 122 168 / 0.58) 0%, rgb(9 81 118 / 0) 72%);
  animation: hero-orb-blue 16s ease-in-out infinite alternate;
}

.hero-orb-gold {
  top: 30%;
  left: 30%;
  width: min(24vw, 340px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgb(255 176 87 / 0.38) 0%, rgb(255 176 87 / 0) 70%);
  opacity: 0.22;
  animation: hero-orb-gold 11s ease-in-out infinite alternate;
}

.hero-pointer-glow {
  z-index: 2;
  background: radial-gradient(
    circle 340px at var(--pointer-x) var(--pointer-y),
    rgb(255 126 45 / 0.2),
    rgb(255 126 45 / 0.06) 36%,
    transparent 72%
  );
  mix-blend-mode: screen;
  opacity: 0.24;
}

.hero-light-beam {
  z-index: 2;
  top: -35%;
  right: 18%;
  bottom: auto;
  left: auto;
  width: 13%;
  height: 175%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.08) 46%,
    rgb(255 190 135 / 0.12) 52%,
    transparent
  );
  filter: blur(12px);
  opacity: 0;
  transform: rotate(17deg) translateX(32vw);
  animation: hero-light-sweep 10s cubic-bezier(0.55, 0, 0.2, 1) 1.5s infinite;
  mix-blend-mode: screen;
}

.hero-particles {
  z-index: 2;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  top: var(--particle-y);
  left: var(--particle-x);
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  background: rgb(255 208 172 / 0.9);
  box-shadow: 0 0 12px rgb(232 81 2 / 0.75);
  opacity: 0;
  animation: hero-particle-rise var(--particle-duration) ease-in-out var(--particle-delay) infinite;
  will-change: transform, opacity;
}

.hero-background::before {
  z-index: 3;
  content: "";
  background:
    linear-gradient(to top, #000000 0%, rgb(0 0 0 / 0.24) 34%, transparent 72%),
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 58px,
      rgb(255 255 255 / 0.018) 59px,
      transparent 60px
    );
}

.hero-background::after {
  z-index: 4;
  content: "";
  background:
    linear-gradient(to right, rgb(0 0 0 / 0.76), rgb(0 0 0 / 0.28) 56%, transparent 82%),
    radial-gradient(circle at center, transparent 52%, rgb(0 0 0 / 0.14) 100%);
}

@keyframes hero-cinematic-drift {
  0% {
    transform: scale(1.015) translate3d(-0.35%, -0.2%, 0);
  }
  50% {
    transform: scale(1.04) translate3d(0.35%, 0.1%, 0);
  }
  100% {
    transform: scale(1.06) translate3d(-0.1%, 0.4%, 0);
  }
}

@keyframes hero-orb-orange {
  0% {
    opacity: 0.22;
    transform: translate3d(8%, -4%, 0) scale(0.92);
  }
  100% {
    opacity: 0.42;
    transform: translate3d(-18%, 18%, 0) scale(1.13);
  }
}

@keyframes hero-orb-blue {
  0% {
    transform: translate3d(14%, 8%, 0) scale(0.9);
  }
  100% {
    transform: translate3d(-12%, -18%, 0) scale(1.16);
  }
}

@keyframes hero-orb-gold {
  0% {
    opacity: 0.12;
    transform: translate3d(-18%, 12%, 0) scale(0.82);
  }
  100% {
    opacity: 0.3;
    transform: translate3d(32%, -18%, 0) scale(1.18);
  }
}

@keyframes hero-light-sweep {
  0%,
  18% {
    opacity: 0;
    transform: rotate(17deg) translateX(34vw);
  }
  34% {
    opacity: 0.65;
  }
  58% {
    opacity: 0.18;
    transform: rotate(17deg) translateX(-78vw);
  }
  100% {
    opacity: 0;
    transform: rotate(17deg) translateX(-78vw);
  }
}

@keyframes hero-particle-rise {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.65);
  }
  22% {
    opacity: 0.55;
  }
  72% {
    opacity: 0.18;
  }
  86% {
    opacity: 0;
    transform: translate3d(18px, -82px, 0) scale(1.15);
  }
}

.hero-inner {
  position: relative;
  z-index: 5;
  padding-top: 128px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 896px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero h1 > span,
.hero h1 > em {
  display: block;
}

.hero-lead {
  max-width: 672px;
  margin: 0 0 48px;
  color: rgb(255 255 255 / 0.7);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-actions .button {
  width: 100%;
}

.button-glass {
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.1);
  color: #ffffff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  background: rgb(255 255 255 / 0.2);
}

.button-glass .play-icon {
  fill: #ffffff;
}

/* Motion replacements for Framer Motion */
.has-js .hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}

.has-js .hero-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.has-js .reveal {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.has-js .reveal-left {
  transform: translateX(-40px);
}

.has-js .reveal-right {
  transform: translateX(40px);
}

.has-js .reveal-up {
  transform: translateY(30px);
}

.has-js .reveal-scale {
  transform: scale(0.95);
}

.has-js .reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Brand introduction */
.brand-intro {
  position: relative;
  overflow: hidden;
}

.brand-grid {
  grid-template-areas: "copy" "visual";
}

.product-visual {
  position: relative;
  grid-area: visual;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  background: var(--gray-100);
}

.product-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top right, rgb(0 0 0 / 0.2), transparent);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.operation-card {
  position: absolute;
  right: -32px;
  bottom: -32px;
  display: none;
  max-width: 240px;
  padding: 32px;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  color: #ffffff;
}

.operation-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 48px;
  line-height: 1;
}

.operation-card span {
  display: block;
  color: rgb(255 255 255 / 0.8);
  font-size: 14px;
  font-weight: 500;
}

.brand-copy {
  grid-area: copy;
}

.body-copy {
  display: grid;
  gap: 24px;
  color: var(--muted);
  font-size: 18px;
}

.body-copy p {
  margin: 0;
}

.intro-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.intro-benefits h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.intro-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Use cases */
.solutions {
  background: var(--gray-50);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.use-case {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
}

.use-case > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.use-case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.2), transparent);
  opacity: 0.8;
  transition: opacity 300ms ease;
}

.use-case-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transform: translateY(16px);
  transition: transform 300ms ease;
}

.use-case-copy h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.3;
}

.use-case-copy p {
  margin: 0;
  color: rgb(255 255 255 / 0.7);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 300ms ease 100ms;
}

.use-case:hover > img,
.use-case:focus-within > img {
  transform: scale(1.1);
}

.use-case:hover .use-case-overlay,
.use-case:focus-within .use-case-overlay {
  opacity: 0.9;
}

.use-case:hover .use-case-copy,
.use-case:focus-within .use-case-copy {
  transform: translateY(0);
}

.use-case:hover .use-case-copy p,
.use-case:focus-within .use-case-copy p {
  opacity: 1;
}

/* Core features */
.dark-section {
  background: #000000;
  color: #ffffff;
}

.features-heading {
  max-width: 672px;
  margin-bottom: 80px;
}

.dark-section .section-title {
  color: #ffffff;
}

.features .section-lead,
.specs .section-lead {
  color: rgb(255 255 255 / 0.6);
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 24px;
  background: rgb(255 255 255 / 0.1);
}

.feature-card {
  padding: 40px;
  background: #000000;
  transition: background-color 300ms ease;
}

.feature-card:hover {
  background: rgb(255 255 255 / 0.05);
}

.feature-icon {
  display: flex;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgb(255 255 255 / 0.05);
  color: var(--primary);
  transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: rgb(255 255 255 / 0.6);
  font-size: 14px;
  line-height: 1.625;
  transition: color 200ms ease;
}

.feature-card:hover p {
  color: rgb(255 255 255 / 0.8);
}

/* Product models */
.models-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.model-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  border-radius: 32px;
  background: var(--gray-50);
  transition: background-color 300ms ease;
}

.model-card:hover {
  background: var(--gray-100);
}

.model-size-background {
  position: absolute;
  top: 32px;
  left: 32px;
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.2;
  transition: opacity 300ms ease;
}

.model-card:hover .model-size-background {
  opacity: 1;
}

.model-image {
  display: flex;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 32px;
  padding: 32px;
  align-items: center;
  justify-content: center;
}

.model-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  transition: transform 500ms ease;
}

.model-card:hover .model-image img {
  transform: translateY(-8px);
}

.model-name {
  width: 100%;
  margin-bottom: 32px;
  text-align: center;
}

.model-name h3 {
  margin: 0 0 4px;
  color: #000000;
  font-size: 24px;
  line-height: 1.3;
}

.model-name p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.model-specs {
  width: 100%;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.model-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.model-specs li:last-child {
  border-bottom: 0;
}

.model-specs span {
  font-size: 14px;
  font-weight: 600;
}

.model-specs i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(232 81 2 / 0.4);
}

.quote-button {
  width: 100%;
  margin-top: auto;
  padding: 14px 16px;
  border: 2px solid #000000;
  border-radius: 12px;
  background: transparent;
  color: #000000;
  font-weight: 700;
  text-align: center;
  transition: color 300ms ease, background-color 300ms ease;
}

.quote-button:hover {
  background: #000000;
  color: #ffffff;
}

/* Screenaat CMS */
.screenaat {
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
}

.screenaat-shape {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  border-radius: 100px 0 0 100px;
  background: rgb(232 81 2 / 0.05);
}

.screenaat-inner {
  position: relative;
  z-index: 1;
}

.software-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid rgb(232 81 2 / 0.2);
  border-radius: 999px;
  background: rgb(232 81 2 / 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.screenaat-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.22em;
}

.screenaat-wordmark {
  width: 5.75em;
  max-width: 100%;
  height: auto;
  flex: 0 1 auto;
  filter: drop-shadow(0 5px 12px rgb(232 81 2 / 0.14));
}

.screenaat-copy > .section-lead {
  margin-bottom: 40px;
  line-height: 1.625;
}

.cms-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.cms-feature {
  display: flex;
  gap: 16px;
}

.cms-icon {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  color: var(--primary);
}

.cms-icon svg {
  width: 20px;
  height: 20px;
}

.cms-feature h3 {
  margin: 0 0 4px;
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
}

.cms-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.workflow {
  padding: 24px;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.workflow > h3 {
  margin: 0 0 24px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.workflow-steps span {
  padding: 8px 16px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--gray-50);
}

.workflow-steps svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.workflow-steps .workflow-final {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 4px 6px -1px rgb(232 81 2 / 0.2);
  color: #ffffff;
}

.cms-visual {
  position: relative;
}

.cms-image {
  position: relative;
  overflow: hidden;
  border: 8px solid #000000;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.cms-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgb(0 0 0 / 0.4), transparent);
  pointer-events: none;
}

.cms-image img {
  width: 100%;
  height: auto;
}

.network-card {
  --card-base-y: -50%;
  position: absolute;
  top: 50%;
  left: -32px;
  display: none;
  padding: 20px 22px;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transform: translateY(var(--card-base-y));
}

.screenaat-app-card {
  min-width: 300px;
  display: none;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
  animation: screenaat-card-float 4.8s ease-in-out infinite;
  will-change: transform;
}

.screenaat-app-card::before {
  position: absolute;
  z-index: -1;
  top: -80px;
  left: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(232 81 2 / 0.12), transparent 70%);
  content: "";
  animation: screenaat-card-glow 4.8s ease-in-out infinite;
}

.screenaat-app-card::after {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  content: "";
  opacity: 0.5;
  transform-origin: center;
  animation: screenaat-card-line 3.4s ease-in-out infinite;
}

.screenaat-app-logo {
  width: 68px;
  height: 70px;
  flex: 0 0 68px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgb(232 81 2 / 0.2));
  animation: screenaat-logo-breathe 3.2s ease-in-out infinite;
  will-change: transform, filter;
}

.screenaat-app-copy {
  min-width: 0;
}

.screenaat-app-copy > span {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screenaat-app-copy strong {
  display: block;
  color: #000000;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.screenaat-app-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.screenaat-app-card:hover,
.screenaat-app-card:hover::before,
.screenaat-app-card:hover::after,
.screenaat-app-card:hover .screenaat-app-logo {
  animation-play-state: paused;
}

@keyframes screenaat-card-float {
  0%,
  100% {
    box-shadow: 0 18px 24px -7px rgb(0 0 0 / 0.11), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: translate3d(0, calc(var(--card-base-y) - 5px), 0) rotate(-0.2deg);
  }
  50% {
    box-shadow: 0 28px 34px -9px rgb(0 0 0 / 0.18), 0 12px 14px -8px rgb(232 81 2 / 0.14);
    transform: translate3d(0, calc(var(--card-base-y) + 5px), 0) rotate(0.2deg);
  }
}

@keyframes screenaat-logo-breathe {
  0%,
  100% {
    filter: drop-shadow(0 7px 12px rgb(232 81 2 / 0.18));
    transform: scale(0.98);
  }
  50% {
    filter: drop-shadow(0 10px 17px rgb(232 81 2 / 0.32));
    transform: scale(1.045);
  }
}

@keyframes screenaat-card-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes screenaat-card-line {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleX(0.35);
  }
  50% {
    opacity: 0.75;
    transform: scaleX(1);
  }
}

/* Technical specifications */
.specs-container {
  max-width: 1024px;
}

.specs-heading {
  max-width: none;
  margin-bottom: 64px;
}

.specs-heading .section-lead {
  max-width: 672px;
  margin: 0 auto;
}

.spec-tabs {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.spec-tabs button {
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.05);
  color: rgb(255 255 255 / 0.6);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.spec-tabs button:hover {
  background: rgb(255 255 255 / 0.1);
  color: #ffffff;
}

.spec-tabs button.active {
  background: var(--primary);
  box-shadow: 0 10px 15px -3px rgb(232 81 2 / 0.2);
  color: #ffffff;
}

.spec-content {
  min-height: 400px;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 24px;
  background: rgb(255 255 255 / 0.05);
}

.spec-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 48px;
  row-gap: 16px;
  animation: panel-in 300ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.spec-row > span {
  color: rgb(255 255 255 / 0.6);
  font-weight: 500;
}

.spec-row > strong {
  max-width: 60%;
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-accordions {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.spec-accordion {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.05);
}

.spec-accordion > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.spec-accordion > button svg {
  width: 20px;
  height: 20px;
  color: rgb(255 255 255 / 0.4);
  transition: color 300ms ease, transform 300ms ease;
}

.spec-accordion.active > button svg {
  color: var(--primary);
  transform: rotate(180deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 300ms ease, opacity 300ms ease;
}

.spec-accordion.active .accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.accordion-inner {
  min-height: 0;
  margin: 0 24px;
  overflow: hidden;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.spec-accordion.active .accordion-inner {
  padding: 16px 0 24px;
}

.mobile-spec-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.mobile-spec-row:last-child {
  margin-bottom: 0;
}

.mobile-spec-row span {
  color: rgb(255 255 255 / 0.6);
  font-size: 14px;
  font-weight: 500;
}

.mobile-spec-row strong {
  color: #ffffff;
  font-size: 14px;
  text-align: right;
}

/* Connectivity */
.connectivity-lead {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
}

.connectivity-points {
  display: grid;
  gap: 24px;
}

.connectivity-points p {
  display: flex;
  gap: 16px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.connectivity-points i {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--primary);
}

.ports-panel {
  padding: 40px;
  border: 1px solid var(--gray-100);
  border-radius: 32px;
  background: var(--gray-50);
}

.port-list {
  display: grid;
  gap: 12px;
}

.port {
  display: flex;
  align-items: center;
  cursor: default;
}

.port > i {
  position: relative;
  display: flex;
  width: 64px;
  height: 32px;
  flex: 0 0 64px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  background: #000000;
  transition: background-color 200ms ease;
}

.port > i span {
  width: 32px;
  height: 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.2);
}

.port > b {
  width: 32px;
  height: 1px;
  flex: 0 0 32px;
  background: #d1d5db;
  transition: background-color 200ms ease;
}

.port > strong {
  min-width: 0;
  flex: 1;
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  font-size: 14px;
  transition: color 200ms ease, border-color 200ms ease;
}

.port:hover > i,
.port:hover > b {
  background: var(--primary);
}

.port:hover > strong {
  border-color: var(--primary);
  color: var(--primary);
}

.power-ports {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.power-in > i {
  height: 40px;
  border-left: 4px solid var(--primary);
}

.power-in > i span {
  width: 24px;
  height: 16px;
  border: 2px solid rgb(255 255 255 / 0.2);
  border-radius: 2px;
  background: transparent;
}

.power-switch > i span {
  width: 24px;
  height: 12px;
  border-radius: 2px;
  background: #ef4444;
  box-shadow: inset 0 2px 4px rgb(0 0 0 / 0.4);
}

.power-ports .port:hover > i {
  background: #000000;
}

.power-ports .port:hover > b {
  background: #d1d5db;
}

.power-ports .port:hover > strong {
  border-color: var(--gray-200);
  color: #000000;
}

/* Footer */
.site-footer {
  padding: 96px 0 48px;
  background: #000000;
  color: #ffffff;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.footer-cta h2 {
  margin: 0 0 24px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.footer-cta p {
  max-width: 448px;
  margin: 0;
  color: rgb(255 255 255 / 0.6);
  font-size: 20px;
  font-weight: 300;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-actions .button {
  min-height: 64px;
  padding-top: 18px;
  padding-bottom: 18px;
  white-space: nowrap;
}

.footer-secondary {
  background: rgb(255 255 255 / 0.1);
  color: #ffffff;
}

.footer-secondary:hover {
  background: rgb(255 255 255 / 0.2);
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 384px;
  margin: 0;
  color: rgb(255 255 255 / 0.5);
  font-size: 14px;
  line-height: 1.625;
}

.footer-links h3 {
  margin: 0 0 24px;
  font-size: 16px;
}

.footer-links ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-links a {
  color: rgb(255 255 255 / 0.5);
  font-size: 14px;
  font-weight: 500;
}

.footer-links a {
  transition: color 200ms ease;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.4);
  font-size: 12px;
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  transition: color 200ms ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* 404 page */
.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgb(232 81 2 / 0.2), transparent 30%),
    linear-gradient(135deg, #050505, #111111 58%, #050505);
  color: #ffffff;
}

.error-main {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  padding: 32px 24px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.error-brand {
  position: absolute;
  top: 32px;
  left: 24px;
  width: 154px;
}

.error-brand img {
  width: 100%;
  height: auto;
}

.error-shell {
  width: min(100%, 760px);
  padding: 48px 24px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 32px;
  background: rgb(255 255 255 / 0.05);
  box-shadow: 0 32px 80px rgb(0 0 0 / 0.35);
  text-align: center;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.error-code {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: clamp(72px, 20vw, 160px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.error-title {
  margin: 0 0 20px;
  font-size: clamp(32px, 8vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.error-copy {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgb(255 255 255 / 0.68);
  font-size: 18px;
}

.error-actions {
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions,
  .footer-actions {
    flex-direction: row;
  }

  .hero-actions {
    gap: 24px;
  }

  .hero-actions .button {
    width: auto;
  }

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

  .error-main {
    padding: 48px;
  }

  .error-brand {
    top: 48px;
    left: 48px;
  }

  .error-shell {
    padding: 72px 64px;
  }
}

@media (min-width: 768px) {
  .section {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .section-title {
    font-size: 48px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 24px;
  }

  .operation-card {
    display: block;
  }

  .network-card {
    display: flex;
  }

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

  .features .section-title {
    font-size: 60px;
  }

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

  .spec-tabs {
    display: flex;
  }

  .spec-content {
    padding: 48px;
  }

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

  .spec-accordions {
    display: none;
  }

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

  .footer-cta h2 {
    font-size: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    max-width: 680px;
  }

  .hero-background::after {
    background:
      linear-gradient(to right, rgb(0 0 0 / 0.82), rgb(0 0 0 / 0.42) 66%, transparent 94%),
      radial-gradient(circle at center, transparent 52%, rgb(0 0 0 / 0.12) 100%);
  }

  .operation-card {
    right: 24px;
    bottom: 24px;
  }

  .network-card {
    --card-base-y: 0%;
    top: auto;
    bottom: 24px;
    left: 24px;
  }

  .screenaat-app-card {
    min-width: min(300px, calc(100% - 48px));
  }

  .model-card:last-child {
    width: calc(50% - 16px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  body.menu-open {
    overflow: auto;
  }

  .hero h1 {
    font-size: 60px;
  }

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

  .brand-grid {
    grid-template-areas: "visual copy";
  }

  .use-cases-grid,
  .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .screenaat-shape {
    display: block;
  }
}

@media (max-width: 767px) {
  .ports-panel {
    padding: 24px;
  }

  .port > i {
    width: 48px;
    flex-basis: 48px;
  }

  .port > b {
    width: 16px;
    flex-basis: 16px;
  }

  .port > strong {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js .hero-reveal,
  .has-js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-image,
  .hero-image img,
  .hero-orb,
  .hero-light-beam,
  .hero-particles span {
    animation: none !important;
    transform: none !important;
  }

  .hero-light-beam,
  .hero-particles {
    display: none;
  }

  .screenaat-app-card {
    animation: none !important;
    transform: translateY(var(--card-base-y)) !important;
  }

  .screenaat-app-card::before,
  .screenaat-app-card::after,
  .screenaat-app-logo {
    animation: none !important;
  }
}
