﻿:root {
  --blue: #0b5bff;
  --blue-deep: #0a2d8f;
  --green: #00e1b0;
  --mint: #d9fff3;
  --white: #ffffff;
  --gray-100: #f1f4f8;
  --gray-200: #d7dde6;
  --gray-600: #2d3b4b;
  --black: #0a0f18;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(12, 20, 33, 0.12);
  --glow: 0 0 0 1px rgba(11, 91, 255, 0.2), 0 18px 60px rgba(11, 91, 255, 0.18);
  --shadow: 0 28px 70px rgba(8, 20, 40, 0.18);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Pretendard", "Malgun Gothic", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  background-color: #f6f9ff;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(11, 91, 255, 0.08), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(0, 225, 176, 0.12), transparent 35%),
    linear-gradient(0deg, rgba(10, 15, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 24, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  color: #0b1320;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font-family: inherit;
}

section {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--blue-deep);
  font-weight: 600;
}

.section-title {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin: 16px 0;
}

.section-title p {
  color: #3b4a5e;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: conic-gradient(from 120deg, #0b5bff, #00e1b0, #0b5bff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), var(--glow);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #4a5a6c;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  border: none;
  background: linear-gradient(120deg, #0b5bff, #00e1b0);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(11, 91, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(11, 91, 255, 0.35);
  filter: saturate(1.1);
}

.hero {
  padding-top: 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  margin: 20px 0;
}

.lead {
  font-size: 18px;
  color: #3b4a5e;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.btn {
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #0b5bff, #00e1b0);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(11, 91, 255, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: #3b4a5e;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(11, 91, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #3f4f63;
  border: 1px solid rgba(11, 91, 255, 0.2);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.scan-frame {
  position: relative;
  width: 320px;
  height: 380px;
  background: linear-gradient(140deg, rgba(11, 91, 255, 0.2), rgba(0, 225, 176, 0.2));
  border-radius: 32px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.scan-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(0, 102, 204, 0.3);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}

.scan-ring.ring-2 {
  width: 200px;
  height: 200px;
  animation-direction: reverse;
}

.scan-core {
  width: 160px;
  height: 200px;
  border-radius: 90px 90px 60px 60px;
  background: linear-gradient(180deg, #ffffff, #d7efff);
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 102, 204, 0.2);
}

.scan-face {
  width: 100px;
  height: 140px;
  border-radius: 60px;
  background: radial-gradient(circle at 30% 30%, #f6f6f6, #cde6ff);
  margin: 30px auto 0;
}

.scan-glow {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(0, 102, 204, 0.4);
}

.scan-caption {
  position: absolute;
  bottom: 24px;
  font-size: 12px;
  color: #335a7a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 24px;
}

.features {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.stat {
  padding: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(11, 91, 255, 0.12), rgba(0, 225, 176, 0.1));
  text-align: center;
  border: 1px solid rgba(11, 91, 255, 0.2);
}

.stat strong {
  display: block;
  font-size: 28px;
}

.simulation {
  background: linear-gradient(140deg, rgba(11, 91, 255, 0.08) 0%, rgba(255, 255, 255, 0.6) 60%);
}

.simulation-panel {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.tab.active {
  background: linear-gradient(120deg, #0b5bff, #00e1b0);
  color: var(--white);
  border-color: transparent;
}

.panel-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.panel-step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.tabs-sticky {
  position: sticky;
  top: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(15, 35, 70, 0.1);
  margin-bottom: 18px;
}

.btn-end {
  margin-left: auto;
  display: inline-flex;
}

.panel-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 16px;
}

.upload {
  border: 1px dashed rgba(11, 91, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 16px;
}

.upload-card {
  display: grid;
  gap: 10px;
}

.upload-title {
  font-weight: 600;
  color: #2f3b4a;
}

.upload.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.upload.has-image {
  padding: 10px;
}

.upload.has-image .upload-inner {
  display: none;
}

.upload-preview {
  display: none;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.upload.has-image .upload-preview {
  display: block;
}

.upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-actions {
  margin: 12px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.previa {
  background:
    linear-gradient(120deg, rgba(0, 198, 255, 0.25), rgba(102, 214, 255, 0.25)),
    linear-gradient(0deg, rgba(10, 15, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 24, 0.04) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.previa-stage {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

.previa-side {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(15, 35, 70, 0.15);
  display: grid;
  gap: 14px;
}

.previa-header {
  display: grid;
  gap: 12px;
}

.previa-switch {
  display: flex;
  gap: 10px;
}

.previa-tab {
  border: 1px solid #d7dee8;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: #1d2b3b;
}

.previa-tab.active {
  background: linear-gradient(120deg, #00c6ff, #0070ff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(0, 112, 255, 0.3);
}

.previa-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.previa-pill {
  border: 1px solid #d7dee8;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #1d2b3b;
  width: 100%;
  text-align: left;
}

.previa-pill.active {
  background: #e6f0ff;
  border-color: #6ea7ff;
  color: #0b5bff;
}

.previa-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 20px;
}

.previa-image-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 35, 70, 0.12);
  display: grid;
  gap: 12px;
}

.previa-card-title {
  font-weight: 600;
  color: #1d2b3b;
}

.previa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.previa-image-frame {
  position: relative;
  background: #eaf2ff;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.previa-3d-card {
  background: #0e1a2c;
  display: grid;
  place-items: center;
  color: #e6efff;
  padding: 12px;
  gap: 10px;
}

.previa-3d-caption {
  font-size: 12px;
  color: #9fb4d4;
  margin-top: 8px;
}

.fbx-viewer {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #1c2b44, #0c1526);
  overflow: hidden;
}



.previa-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.previa-label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.previa-label span {
  display: inline-block;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1d2b3b;
}

.previa-card {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 18px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.previa-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.previa-panel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(11, 91, 255, 0.08);
  aspect-ratio: 4 / 5;
}

.previa-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.previa-label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.previa-label span {
  display: inline-block;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.previa-note {
  margin-top: 24px;
  font-size: 18px;
  color: #0b1320;
  background: rgba(11, 91, 255, 0.1);
  border: 1px solid rgba(11, 91, 255, 0.3);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(11, 91, 255, 0.12);
}

.region-select {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #4b5a6b;
}

.region-select input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.region-select label {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.region-select input:checked + span {
  color: #0b5bff;
}

.region-select label:has(input:checked) {
  border-color: rgba(11, 91, 255, 0.6);
  box-shadow: var(--glow);
  background: linear-gradient(120deg, rgba(11, 91, 255, 0.12), rgba(0, 225, 176, 0.12));
  transform: translateY(-1px);
}

.region-select label span {
  display: inline-block;
}

.upload-sub {
  font-size: 12px;
  color: #6a7a8c;
}

.checkboxes {
  display: grid;
  gap: 16px;
}

.checkboxes label {
  display: block;
  margin: 6px 0;
  font-size: 14px;
}

.hidden {
  display: none;
}

.panel-state {
  margin-top: 32px;
  padding: 28px;
  background: linear-gradient(140deg, #0a1324, #0c1b3a);
  color: var(--white);
  border-radius: var(--radius-md);
  text-align: center;
}

.state-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.progress {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #00e1b0, #0b5bff);
  transition: width 0.4s ease;
}

.loading-orbit {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--green);
  margin: 24px auto 0;
  animation: spin 2s linear infinite;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.model-view {
  background: linear-gradient(160deg, #0b1326, #0e1f3f);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.model-sphere {
  width: 160px;
  height: 160px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e8f8f5, #0066cc);
  animation: float 3s ease-in-out infinite;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.time {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: #ffffff;
}

.time.active {
  background: var(--blue);
  color: var(--white);
  border-color: transparent;
}

.compare {
  background: rgba(11, 91, 255, 0.08);
  padding: 16px;
  border-radius: var(--radius-md);
}

.compare-track {
  display: flex;
  height: auto;
  aspect-ratio: 4 / 4;
  background: linear-gradient(120deg, rgba(11, 91, 255, 0.12), rgba(0, 225, 176, 0.12));
  border-radius: var(--radius-md);
  overflow: hidden;
  --split: 50%;
}

.compare-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.compare-panel {
  position: relative;
  flex: 1 1 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.compare-before {
  flex-basis: var(--split);
}

.compare-after {
  flex-basis: calc(100% - var(--split));
}

.compare-label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: #0b1a2b;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  pointer-events: none;
  width: 100%;
}

.compare-label span {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.compare-range {
  width: 100%;
  margin-top: 16px;
}
.compare input {
  width: 100%;
  margin-top: 16px;
}

.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tech-grid {
  display: grid;
  gap: 24px;
}

.tech-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.tech-card.reverse {
  direction: rtl;
}

.tech-card.reverse > * {
  direction: ltr;
}

.tech-visual {
  height: 200px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0b5bff, #00e1b0);
  box-shadow: var(--shadow);
}

.tech-visual.alt {
  background: linear-gradient(135deg, #0f172a, #0b5bff);
}

.dept-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dept span {
  display: block;
  margin-top: 12px;
  color: #5b6b7c;
  font-size: 14px;
}

.dept-link {
  color: inherit;
  display: block;
}

.dept-link:hover {
  text-decoration: none;
}

.video-card {
  display: grid;
  gap: 20px;
}

.video-frame {
  background: linear-gradient(140deg, #0a1220, #0d1f3a);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.video-portrait {
  display: none;
}

@media (max-width: 767px) {
  .video-landscape {
    display: none;
  }
  .video-portrait {
    display: block;
  }
}

.video-note {
  color: #5b6b7c;
  font-size: 14px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.review-meta {
  font-size: 12px;
  color: #6a7a8c;
}

.review-score {
  background: linear-gradient(140deg, #0b5bff, #00e1b0);
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.review-body {
  color: #425466;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-tags span {
  background: #f0f6ff;
  color: #4b5a6b;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.solutions {
  background: linear-gradient(140deg, #0a1220, #0d1f3a);
  color: var(--white);
}

.solutions .section-title p,
.solutions .section-title h2 {
  color: var(--white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-card ul {
  margin-top: 16px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.solution-card li::before {
  content: ">";
  color: var(--green);
  margin-right: 8px;
}

.solution-card.cta {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.45), rgba(0, 200, 150, 0.4));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.footer {
  background: #0a0f18;
  color: var(--white);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.bg-orbit {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(11, 91, 255, 0.18), transparent 40%),
    radial-gradient(circle at 20% 72%, rgba(0, 225, 176, 0.2), transparent 40%),
    linear-gradient(120deg, rgba(11, 91, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .panel-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 90px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .scan-frame {
    width: 260px;
    height: 320px;
  }
}

