:root {
  --ink-950: #0a0a0f;
  --ink-900: #11131b;
  --ink-850: #171924;
  --ink-800: #1f222f;
  --text-100: #f5f5f8;
  --text-300: #c4c6cf;
  --text-500: #8f93a2;
  --gold-400: #f4b94a;
  --gold-300: #ffd777;
  --gold-200: #ffe6a9;
  --orange-400: #ff8c32;
  --orange-300: #ffad62;
  --border-soft: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(24, 26, 37, 0.42);
  --glass-bg-strong: rgba(20, 22, 33, 0.72);
  --hero-overlay: linear-gradient(170deg, rgba(10, 10, 15, 0.78) 0%, rgba(10, 10, 15, 0.88) 45%, rgba(10, 10, 15, 0.96) 100%);
  --accent-gradient: linear-gradient(90deg, var(--gold-300), var(--gold-400), var(--orange-400));
  --shadow-lg: 0 22px 64px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% -20%, rgba(244, 185, 74, 0.08), transparent 40%),
    radial-gradient(circle at 100% 10%, rgba(255, 140, 50, 0.1), transparent 42%),
    var(--ink-950);
  color: var(--text-100);
  line-height: 1.55;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}


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

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

main {
  overflow: clip;
}

.section {
  padding: 84px 20px;
}

.section-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
.brand-word,
.nav-link,
.button,
.stat-value {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 122, 0.4);
  background: rgba(255, 200, 90, 0.1);
}

.section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-300);
  box-shadow: 0 0 12px rgba(255, 173, 98, 0.8);
}

.section-title {
  margin-top: 14px;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin-top: 14px;
  max-width: 66ch;
  color: var(--text-300);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0;
  height: 3px;
  background: var(--accent-gradient);
  box-shadow: 0 0 25px rgba(255, 191, 74, 0.8);
  transition: width 110ms linear;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: background-color 260ms ease, backdrop-filter 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: transparent;
  transition: background-color 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(22, 19, 18, 0.84);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled::after {
  background: linear-gradient(90deg, rgba(244, 185, 74, 0.1), rgba(244, 185, 74, 0.6), rgba(255, 140, 50, 0.35));
}

.header-inner {
  width: min(var(--max-width), 100% - 32px);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  width: 38px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-word {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--text-300);
  font-size: 0.96rem;
  transition: color 200ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text-100);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  color: var(--text-100);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-drawer {
  position: fixed;
  inset: var(--header-height) 0 0 auto;
  width: min(86vw, 360px);
  background: var(--glass-bg-strong);
  border-left: 1px solid var(--border-soft);
  backdrop-filter: blur(18px);
  transform: translateX(100%);
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.1, 1);
  z-index: 90;
  padding: 28px 20px;
}

.mobile-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0;
  background: rgba(4, 5, 8, 0.55);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease;
}

body.menu-open .mobile-drawer {
  transform: translateX(0);
}

body.menu-open .mobile-backdrop {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-100);
  transform: translateX(24px);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.1, 1), opacity 420ms ease;
}

.mobile-nav a::after {
  content: "->";
  color: var(--gold-300);
}

body.menu-open .mobile-nav a {
  transform: translateX(0);
  opacity: 1;
}

body.menu-open .mobile-nav a:nth-child(1) {
  transition-delay: 90ms;
}

body.menu-open .mobile-nav a:nth-child(2) {
  transition-delay: 130ms;
}

body.menu-open .mobile-nav a:nth-child(3) {
  transition-delay: 170ms;
}

body.menu-open .mobile-nav a:nth-child(4) {
  transition-delay: 210ms;
}

body.menu-open .mobile-nav a:nth-child(5) {
  transition-delay: 250ms;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 42px) 20px 84px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: saturate(85%) contrast(108%) brightness(58%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.58'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: end;
}

.hero-copy {
  max-width: 670px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 146, 0.34);
  background: rgba(14, 14, 20, 0.42);
  backdrop-filter: blur(16px);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-pill strong {
  color: var(--gold-300);
}

.hero-title {
  margin-top: 18px;
  font-size: clamp(2.35rem, 5.6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-highlight {
  display: inline-block;
  background: var(--accent-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  margin-top: 18px;
  color: var(--text-300);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 60ch;
}

.hero-sub .cn {
  color: var(--gold-200);
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #0f1016;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400), var(--orange-400));
  box-shadow: 0 10px 26px rgba(255, 178, 83, 0.45);
}

.button-primary:hover {
  box-shadow: 0 14px 30px rgba(255, 178, 83, 0.54);
}

.button-ghost {
  color: var(--text-100);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
}

.button-ghost:hover {
  border-color: rgba(255, 218, 120, 0.55);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hero-badge {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 245, 220, 0.22);
  background: rgba(20, 22, 33, 0.5);
  backdrop-filter: blur(15px);
  color: var(--text-100);
  font-weight: 600;
  font-size: 0.86rem;
}

.hero-badge strong {
  color: var(--gold-300);
  font-size: 1rem;
}

.ribbon {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(90deg, rgba(244, 185, 74, 0.08), rgba(255, 140, 50, 0.08));
}

.ribbon-inner {
  width: min(var(--max-width), 100% - 40px);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  gap: 16px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 216, 120, 0.6) transparent;
}

.ribbon-item {
  flex: 0 0 auto;
  color: var(--text-300);
  white-space: nowrap;
  font-size: 0.9rem;
}

.ribbon-item strong {
  color: var(--gold-300);
}

.cards-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(31, 34, 47, 0.88), rgba(15, 16, 25, 0.72));
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255, 186, 76, 0.17);
  border: 1px solid rgba(255, 214, 128, 0.5);
  color: var(--gold-300);
  font-weight: 700;
}

.card h3 {
  font-size: 1.28rem;
}

.card p {
  margin-top: 10px;
  color: var(--text-300);
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-300);
  display: grid;
  gap: 8px;
}

.price-badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 119, 0.4);
  background: rgba(255, 190, 90, 0.09);
}

.price-badge strong {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-300);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.stat-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(130deg, rgba(30, 31, 44, 0.78), rgba(12, 13, 20, 0.84));
  padding: 24px;
}

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

.stat {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
}

.stat-value {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1;
  color: var(--gold-300);
}

.stat-label {
  margin-top: 8px;
  color: var(--text-300);
  font-size: 0.9rem;
}

.feature-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  min-height: 380px;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.techno-wipe {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.techno-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 420ms ease;
}

.techno-img-a {
  opacity: 1;
}

.techno-img-b {
  opacity: 0;
}

.techno-wipe.is-alt .techno-img-a {
  opacity: 0;
}

.techno-wipe.is-alt .techno-img-b {
  opacity: 1;
}

.techno-wipe::before,
.techno-wipe::after {
  content: "";
  position: absolute;
  top: -14%;
  left: -25%;
  width: 20%;
  height: 128%;
  opacity: 0;
  pointer-events: none;
}

.techno-wipe::before {
  background: linear-gradient(
    90deg,
    rgba(150, 255, 245, 0),
    rgba(123, 245, 255, 0.8),
    rgba(255, 255, 255, 0.92),
    rgba(123, 245, 255, 0.8),
    rgba(150, 255, 245, 0)
  );
  filter: blur(1px);
}

.techno-wipe::after {
  width: 10%;
  background: linear-gradient(
    90deg,
    rgba(244, 185, 74, 0),
    rgba(244, 185, 74, 0.95),
    rgba(255, 245, 215, 1),
    rgba(244, 185, 74, 0.95),
    rgba(244, 185, 74, 0)
  );
  mix-blend-mode: screen;
}

.techno-wipe.is-switching::before {
  animation: techno-wipe-sweep 560ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
}

.techno-wipe.is-switching::after {
  animation: techno-wipe-sweep 560ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
  animation-delay: 36ms;
}

@keyframes techno-wipe-sweep {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-14deg);
  }
  15% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translateX(750%) skewX(-14deg);
  }
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(10, 10, 15, 0.95));
}

.photo-tag {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 214, 125, 0.46);
  background: rgba(18, 18, 26, 0.62);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
}

.timeline-shell {
  margin-top: 30px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  background: linear-gradient(145deg, rgba(27, 29, 41, 0.9), rgba(13, 14, 22, 0.84));
}

.timeline-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.timeline-arrows {
  display: flex;
  gap: 8px;
}

.timeline-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-100);
  cursor: pointer;
}

.timeline-btn:hover {
  border-color: rgba(255, 216, 120, 0.66);
}

.timeline-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  cursor: grab;
  touch-action: pan-y;
  scrollbar-width: none;
}

.timeline-track::-webkit-scrollbar {
  display: none;
}

.timeline-track.is-dragging {
  cursor: grabbing;
}

.timeline-item {
  flex: 0 0 min(370px, 85vw);
  scroll-snap-align: start;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-400), var(--orange-400), var(--gold-300));
}

.timeline-item time {
  display: inline-block;
  color: var(--gold-300);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 1.12rem;
}

.timeline-thumb {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-height: 150px;
  object-fit: cover;
}

.timeline-item p {
  margin-top: 10px;
  color: var(--text-300);
  font-size: 0.95rem;
}

.timeline-progress-wrap {
  position: relative;
  margin-top: 12px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 214, 125, 0.16), rgba(255, 140, 50, 0.13), rgba(255, 214, 125, 0.16));
  overflow: hidden;
}

.timeline-progress {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-300), var(--orange-400), var(--gold-300));
  transition: width 150ms linear;
  box-shadow: 0 0 14px rgba(255, 190, 84, 0.6);
}

.timeline-progress-wrap::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-300);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(255, 214, 122, 0.7);
  animation: radar-pulse 2.2s ease-out infinite;
  z-index: 2;
}

.timeline-progress-wrap::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 214, 122, 0.34);
  transform: translateY(-50%);
  z-index: 1;
}

@keyframes radar-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 214, 122, 0.72);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 214, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 214, 122, 0);
  }
}

.gallery-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0c0d14;
  min-height: 180px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.09);
}


.feature-photo,
.gallery-item,
.timeline-item {
  position: relative;
  overflow: hidden;
}

.feature-photo::before,
.gallery-item::before,
.timeline-item::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -85%;
  width: 38%;
  height: 320%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(18deg) translateX(-260%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.feature-photo:hover::before,
.gallery-item:hover::before,
.timeline-item:hover::after {
  animation: glass-shine-sweep 920ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
}

@keyframes glass-shine-sweep {
  0% {
    opacity: 0;
    transform: rotate(18deg) translateX(-260%);
  }
  12% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: rotate(18deg) translateX(450%);
  }
}

.gallery-item.large {
  grid-column: span 7;
  min-height: 330px;
}

.gallery-item.medium {
  grid-column: span 5;
  min-height: 330px;
}

.gallery-item.small {
  grid-column: span 4;
}

.gallery-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.79rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 8, 12, 0.55);
  backdrop-filter: blur(8px);
}

.faq-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.faq-item h3 {
  font-size: 1.05rem;
}

.faq-item p {
  margin-top: 8px;
  color: var(--text-300);
}

.cta-band {
  padding: 28px;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 215, 119, 0.18), transparent 48%),
    radial-gradient(circle at 94% 100%, rgba(255, 140, 50, 0.15), transparent 40%),
    rgba(17, 18, 28, 0.86);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.cta-band p {
  margin-top: 10px;
  color: var(--text-300);
}

.cta-band .hero-actions {
  margin-top: 18px;
}

.site-footer {
  margin-top: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 17, 0.72);
}

.footer-inner {
  width: min(var(--max-width), 100% - 40px);
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.footer-brand p {
  margin-top: 8px;
  color: var(--text-300);
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-100);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.social-btn:hover {
  border-color: rgba(255, 216, 120, 0.65);
  transform: translateY(-2px);
}

.qr-pop {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 172px;
  padding: 10px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 11, 16, 0.94);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.qr-pop img {
  border-radius: 10px;
}

.qr-pop small {
  display: block;
  text-align: center;
  margin-top: 6px;
  color: var(--text-300);
  font-size: 0.72rem;
}

.qr-pop.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.page-head {
  padding: calc(var(--header-height) + 56px) 20px 44px;
}

.page-head-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 213, 110, 0.2), transparent 42%),
    radial-gradient(circle at 90% 90%, rgba(255, 140, 50, 0.18), transparent 30%),
    rgba(17, 19, 29, 0.84);
  padding: 34px;
}

.page-head h1 {
  font-size: clamp(2rem, 5.2vw, 4rem);
  letter-spacing: -0.03em;
}

.page-head p {
  margin-top: 14px;
  color: var(--text-300);
  max-width: 64ch;
}

.table-wrap {
  margin-top: 26px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-table th {
  background: rgba(255, 255, 255, 0.05);
  font-family: "Space Grotesk", sans-serif;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
}

.contact-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.contact-card h3 {
  font-size: 1.2rem;
}

.contact-card p {
  margin-top: 10px;
  color: var(--text-300);
}

.contact-card a {
  color: var(--gold-300);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}


.service-card {
  transition-delay: var(--card-delay, 0ms);
}

@media (max-width: 1080px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    justify-content: flex-start;
  }

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

  .gallery-item.large,
  .gallery-item.medium {
    grid-column: span 6;
  }

  .gallery-item.small {
    grid-column: span 6;
  }

  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-video {
    filter: saturate(95%) contrast(105%) brightness(74%);
  }

  .hero::before {
    background: linear-gradient(170deg, rgba(10, 10, 15, 0.52) 0%, rgba(10, 10, 15, 0.64) 45%, rgba(10, 10, 15, 0.76) 100%);
  }

  .hero::after {
    opacity: 0.16;
  }

  .ribbon-inner {
    width: min(var(--max-width), 100% - 32px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    scrollbar-width: none;
  }

  .ribbon-item {
    white-space: normal;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding-bottom: 64px;
  }

  .section {
    padding: 72px 16px;
  }

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

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

  .feature-photo {
    min-height: 0;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    aspect-ratio: auto;
  }

  .feature-photo img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    background: #0c0d14;
  }

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

  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small {
    grid-column: auto;
    min-height: 240px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .page-head-inner {
    padding: 24px;
  }
}

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

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

  .hero-video {
    display: none;
  }

  .hero {
    background: var(--hero-overlay), url('/assets/images/hero-studio.png') center / cover no-repeat;
  }
}
