:root {
  --bg: #070707;
  --bg-soft: #101010;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-strong: rgba(24, 24, 24, 0.92);
  --text: #f7f7f4;
  --muted: #b8b6ae;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #ff5a18;
  --orange-soft: rgba(255, 90, 24, 0.18);
  --cyan: #35d7c6;
  --lime: #b6f45d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(255, 90, 24, 0.08), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(53, 215, 198, 0.08), transparent 28%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 88%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 90, 24, 0.08), transparent),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 7px
    );
  animation: scan 8s linear infinite;
}

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

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

.network-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 26px 0 36px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(360px, 58vw);
}

.brand img {
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(255, 90, 24, 0.1));
}

.status-chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  font-size: 0.86rem;
  letter-spacing: 0;
}

.status-chip span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(182, 244, 93, 0.66);
  animation: statusPulse 1.8s ease-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
  min-height: 66vh;
  padding: 64px 0 48px;
}

.hero-copy {
  min-width: 0;
  animation: riseIn 900ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.7;
}

.access-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.access-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.primary-action {
  color: #130602;
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(255, 90, 24, 0.25);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.secondary-action:hover {
  border-color: rgba(53, 215, 198, 0.52);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 460px;
  overflow: hidden;
  animation: fadeIn 1s ease 180ms both;
}

.access-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: min(470px, 88vw);
  aspect-ratio: 1;
}

.access-scene::before,
.access-scene::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(255, 90, 24, 0.32);
  border-radius: 999px;
  animation: orbit 14s linear infinite;
}

.access-scene::after {
  inset: 46px;
  border-color: rgba(53, 215, 198, 0.28);
  animation-duration: 18s;
  animation-direction: reverse;
}

.access-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 999px;
  pointer-events: none;
}

.access-rays span {
  position: absolute;
  top: 50%;
  left: 9%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 24, 0.48), transparent);
  transform-origin: center;
  animation: raySweep 5.5s ease-in-out infinite;
}

.access-rays span:nth-child(2) {
  background: linear-gradient(90deg, transparent, rgba(53, 215, 198, 0.42), transparent);
  animation-delay: -1.4s;
  transform: rotate(58deg);
}

.access-rays span:nth-child(3) {
  animation-delay: -2.6s;
  transform: rotate(126deg);
}

.access-device {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(258px, 62vw);
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 90, 24, 0.2), transparent 34%),
    linear-gradient(340deg, rgba(53, 215, 198, 0.22), transparent 40%),
    rgba(4, 8, 8, 0.82);
  box-shadow: var(--shadow), inset 0 0 36px rgba(255, 255, 255, 0.04);
  animation: floatIcon 5.8s ease-in-out infinite;
}

.access-device::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.device-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: stretch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.device-brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 0 22px rgba(255, 90, 24, 0.22);
}

.biometric-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 168px;
  aspect-ratio: 1;
  margin: 42px 0 30px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 198, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 90, 24, 0.18), transparent 62%),
    rgba(0, 0, 0, 0.32);
}

.fingerprint-line {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-right-color: transparent;
  border-bottom-color: rgba(255, 90, 24, 0.8);
  border-radius: 50%;
}

.line-a {
  width: 42px;
  height: 72px;
}

.line-b {
  width: 72px;
  height: 106px;
}

.line-c {
  width: 102px;
  height: 132px;
}

.line-d {
  width: 126px;
  height: 146px;
  opacity: 0.48;
}

.scan-light {
  position: absolute;
  right: 14px;
  left: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(53, 215, 198, 0.9);
  animation: accessScan 2.15s ease-in-out infinite;
}

.device-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid rgba(182, 244, 93, 0.32);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(182, 244, 93, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 138px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.floating-card span {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
}

.rfid-card {
  top: 76px;
  left: 6px;
  transform: rotate(-5deg);
  animation: floatCardA 4.8s ease-in-out infinite;
}

.qr-card {
  right: 0;
  bottom: 94px;
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 116px;
  animation: floatCardB 5.2s ease-in-out infinite;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 13px);
  gap: 5px;
}

.qr-grid i {
  width: 13px;
  height: 13px;
  background: rgba(255, 255, 255, 0.86);
}

.qr-grid i:nth-child(2),
.qr-grid i:nth-child(4),
.qr-grid i:nth-child(8) {
  background: var(--orange);
}

.qr-grid i:nth-child(6),
.qr-grid i:nth-child(7) {
  background: var(--cyan);
}

.turnstile {
  position: absolute;
  bottom: 36px;
  left: 54px;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 10px;
  opacity: 0.9;
}

.turnstile span {
  display: block;
  width: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, rgba(255, 90, 24, 0.72), rgba(53, 215, 198, 0.18));
  animation: gatePulse 1.8s ease-in-out infinite;
}

.turnstile span:nth-child(1) {
  height: 72px;
}

.turnstile span:nth-child(2) {
  height: 108px;
  animation-delay: 0.2s;
}

.turnstile span:nth-child(3) {
  height: 86px;
  animation-delay: 0.4s;
}

.signal-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(430px, 82vw);
  aspect-ratio: 1;
}

.signal-ring::before,
.signal-ring::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 90, 24, 0.38);
  border-radius: 999px;
  animation: orbit 12s linear infinite;
}

.signal-ring::after {
  inset: 32px;
  border-color: rgba(53, 215, 198, 0.28);
  animation-direction: reverse;
  animation-duration: 15s;
}

.icon-stage {
  position: relative;
  z-index: 1;
  width: min(260px, 58vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.58);
  box-shadow: var(--shadow), inset 0 0 42px rgba(255, 90, 24, 0.08);
  animation: floatIcon 5.6s ease-in-out infinite;
}

.icon-stage::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 90, 24, 0.68), transparent 42%, rgba(53, 215, 198, 0.42));
  opacity: 0.8;
}

.icon-stage img {
  border-radius: 24px;
}

.pulse-line {
  position: absolute;
  right: 4%;
  bottom: 66px;
  left: 12%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.pulse-line::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), transparent);
  transform: translateX(-100%);
  animation: pulseTravel 2.2s ease-in-out infinite;
}

.progress-section {
  padding: 44px 0 26px;
}

.access-gallery {
  padding: 38px 0 22px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-width: 0;
  gap: 32px;
  margin-bottom: 22px;
}

.section-heading h2,
.launch-panel h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.progress-card {
  position: relative;
  min-width: 0;
  min-height: 188px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.progress-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: rgba(255, 255, 255, 0.16);
}

.progress-card.is-complete::before {
  background: var(--lime);
}

.progress-card.is-active::before {
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  animation: shimmer 2.4s linear infinite;
}

.card-index {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
}

.progress-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.progress-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.motion-tile {
  min-width: 0;
  min-height: 278px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel);
  backdrop-filter: blur(18px);
}

.motion-tile h3 {
  margin: 18px 0 10px;
  font-size: 1.12rem;
}

.motion-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tile-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 132px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 90, 24, 0.12), transparent),
    rgba(0, 0, 0, 0.28);
}

.tile-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.finger-visual span {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-left-color: var(--orange);
  border-radius: 50%;
}

.finger-visual span:nth-child(1) {
  width: 44px;
  height: 70px;
}

.finger-visual span:nth-child(2) {
  width: 78px;
  height: 102px;
}

.finger-visual span:nth-child(3) {
  width: 106px;
  height: 118px;
  opacity: 0.58;
}

.finger-visual::after {
  position: absolute;
  right: 18px;
  left: 18px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(53, 215, 198, 0.9);
  animation: accessScan 2.3s ease-in-out infinite;
}

.card-visual span {
  position: absolute;
  width: 126px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 90, 24, 0.86), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  animation: cardWave 3.2s ease-in-out infinite;
}

.card-visual span:nth-child(2) {
  transform: translate(34px, 16px) rotate(8deg);
  background:
    linear-gradient(135deg, rgba(53, 215, 198, 0.78), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
  animation-delay: -1.3s;
}

.gate-visual span {
  position: relative;
  z-index: 1;
  width: 18px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--orange), rgba(53, 215, 198, 0.42));
  animation: gatePulse 1.6s ease-in-out infinite;
}

.gate-visual span:nth-child(1) {
  height: 72px;
}

.gate-visual span:nth-child(2) {
  height: 104px;
  animation-delay: 0.18s;
}

.gate-visual span:nth-child(3) {
  height: 82px;
  animation-delay: 0.36s;
}

.launch-panel {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 390px);
  align-items: center;
  gap: 34px;
  margin: 30px 0 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 90, 24, 0.16), transparent 48%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.loading-bar {
  position: relative;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
}

.loading-bar span {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--lime));
  animation: loadingBreath 2.8s ease-in-out infinite;
}

.launch-copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.4deg);
  }
}

@keyframes accessScan {
  0%,
  100% {
    top: 24px;
    opacity: 0.45;
  }
  50% {
    top: calc(100% - 28px);
    opacity: 1;
  }
}

@keyframes raySweep {
  0%,
  100% {
    opacity: 0.35;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.9;
    transform: rotate(38deg);
  }
}

@keyframes floatCardA {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes floatCardB {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(12px) rotate(1deg);
  }
}

@keyframes gatePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleY(0.88);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes cardWave {
  0%,
  100% {
    transform: translate(-18px, -8px) rotate(-7deg);
  }
  50% {
    transform: translate(-2px, -15px) rotate(-2deg);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseTravel {
  0% {
    transform: translateX(-100%);
  }
  54%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes shimmer {
  to {
    filter: hue-rotate(100deg);
  }
}

@keyframes loadingBreath {
  0%,
  100% {
    width: 64%;
    opacity: 0.86;
  }
  50% {
    width: 78%;
    opacity: 1;
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(182, 244, 93, 0.58);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(182, 244, 93, 0);
  }
}

@keyframes scan {
  to {
    background-position: 240px 0, 0 28px;
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 360px;
  }

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

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

  .launch-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .footer {
    width: min(100% - 28px, 1180px);
  }

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

  .status-chip {
    min-height: 36px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 34px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.45rem);
    }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

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

  .section-heading {
    display: block;
  }

  .icon-stage {
    border-radius: 26px;
  }

  .hero-visual {
    overflow: hidden;
  }

  .access-scene {
    width: min(360px, 100%);
  }

  .access-device {
    width: min(222px, 58vw);
    min-height: 322px;
    padding: 18px;
  }

  .biometric-core {
    width: 140px;
    margin: 34px 0 24px;
  }

  .rfid-card {
    top: 44px;
    left: 0;
  }

  .qr-card {
    right: 18px;
    bottom: 72px;
  }

  .floating-card {
    min-width: 104px;
    padding: 11px;
  }

  .floating-card strong {
    font-size: 0.78rem;
  }

  .turnstile {
    left: 18px;
    bottom: 30px;
  }
}

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