/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --black: #080808;
  --surface: #0f0f0f;
  --surface-2: #161616;
  --surface-3: #1e1e1e;
  --accent: #C8FF00;
  --accent-dim: rgba(200, 255, 0, 0.08);
  --accent-glow: rgba(200, 255, 0, 0.35);
  --white: #F5F5F0;
  --muted: #6b6b6b;
  --muted-2: #444;
  --border: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.10);

  /* Typography */
  --font-head: "Barlow Condensed", system-ui, sans-serif;
  --font-sub: "DM Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --header-h: 72px;
  --container: 1320px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --section-v: clamp(5rem, 10vw, 9rem);
  --radius: 2px;
  --radius-pill: 100px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  /* Lenis handles smooth scroll */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
}

strong {
  font-weight: 500;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--black);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--section-v) 0;
}

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

.hide-mobile {
  display: inline;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  z-index: 1000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ============================================================
   TYPOGRAPHY — SECTION HEADERS
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Clip-path reveal for split text */
.char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--accent {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.btn--accent:hover {
  background: #d4ff26;
  box-shadow: 0 4px 28px var(--accent-glow);
  transform: translateY(-1px);
}

.btn--accent:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(245, 245, 240, 0.2);
}

.btn--ghost:hover {
  border-color: rgba(245, 245, 240, 0.5);
  background: rgba(245, 245, 240, 0.05);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
}

/* ============================================================
   PILLS (filter tabs)
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  background: transparent;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}

.pill:hover {
  color: var(--white);
  border-color: var(--border-2);
}

.pill--active {
  color: var(--black);
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 900;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  z-index: 10;
}

.nav__logo-mark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
}

.nav__logo-text {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.65);
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.35s var(--ease);
}

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

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.mobile-menu__link:hover {
  color: var(--accent);
}

.mobile-menu__cta {
  margin-top: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--header-h);
}

/* Orbs */
.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbPulse 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: rgba(200, 255, 0, 0.12);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: clamp(200px, 30vw, 450px);
  height: clamp(200px, 30vw, 450px);
  background: rgba(200, 255, 0, 0.07);
  bottom: 10%;
  left: -8%;
  animation-delay: 2.5s;
}

.hero__orb--3 {
  width: clamp(150px, 20vw, 300px);
  height: clamp(150px, 20vw, 300px);
  background: rgba(200, 255, 0, 0.05);
  top: 50%;
  left: 40%;
  animation-delay: 5s;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  33% {
    transform: scale(1.08) translate(2%, -2%);
  }

  66% {
    transform: scale(0.95) translate(-2%, 2%);
  }
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Noise overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hero__content {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: 0; /* Behind .hero__inner which has z-index: 1 */
  pointer-events: none;
  /* Градієнтна маска для плавного переходу хромакею вліво */
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.hero__model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% bottom;
}

/* Floating callout — model points toward it */
.hero__pointer-bubble {
  position: absolute;
  right: 2.5%;
  top: 20%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 1.2rem 0.9rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 0.75rem 0.75rem 0;
  max-width: 210px;
  animation: bubble-float 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__pointer-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  font-weight: 400;
}

.hero__pointer-cta {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@keyframes bubble-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .hero__visual {
    display: none;
  }

  .hero__pointer-bubble {
    display: none;
  }

}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 10vw, 160px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  overflow: hidden;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.hero__title-line--accent {
  color: var(--accent);
  -webkit-text-stroke: 0px;
}

.hero__subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero__subtitle strong {
  color: var(--white);
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Stats row — full width breakout */
.hero__stats {
  display: flex;
  align-items: stretch;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--pad-x));
  margin-right: calc(-1 * var(--pad-x));
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.hero__stat {
  flex: 1;
  min-width: 120px;
  padding: 0 2rem;
  position: relative;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.hero__stat-num {
  display: inline;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-unit {
  display: inline;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--accent);
}

.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: #fff;
  margin-top: 0.2rem;
}

@media (min-width: 769px) {
  .hero__stat:last-child .hero__stat-num {
    color: #000;
  }

  .hero__stat:last-child .hero__stat-label {
    color: #000;
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--muted));
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 0;
}

.marquee--muted .marquee__inner span,
.marquee--muted .marquee__dot {
  color: var(--muted-2);
}

.marquee__track {
  display: flex;
  width: max-content;
}

.marquee__track--fwd .marquee__inner {
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track--rev .marquee__inner {
  animation: marqueeScroll 30s linear infinite reverse;
}

.marquee__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.marquee__inner span {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.marquee__dot {
  color: var(--muted-2) !important;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.marquee:hover .marquee__track--fwd .marquee__inner,
.marquee:hover .marquee__track--rev .marquee__inner {
  animation-play-state: paused;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about__text {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.about__quote {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.about__quote p {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius);
  color: var(--accent);
}

.about__feature strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.about__feature p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.about__audience {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.about__audience-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.about__audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about__tag {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: var(--radius-pill);
}

.about__visual {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  min-height: 480px;
}

.about__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about__img-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  overflow: hidden;
}

.about__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(12px);
}

.about__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about__badge span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============================================================
   EQUIPMENT
   ============================================================ */
.equipment__head {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.equipment__head .section-title {
  margin-top: 0.75rem;
}

.equipment__desc {
  color: var(--muted);
  line-height: 1.7;
}

.equipment__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.equipment__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

/* Equipment card */
.eq-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.eq-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 255, 0, 0.1);
}

.eq-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--surface-3);
  color: var(--accent);
  transition: color 0.25s var(--ease);
}

.eq-card__img svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s var(--ease);
}

.eq-card:hover .eq-card__img svg {
  transform: scale(1.1);
}

.eq-card.is-hidden {
  display: none;
}

.eq-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.eq-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.eq-card__name {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.eq-card__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

.eq-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.eq-card__price {
  font-size: 0.875rem;
  color: var(--muted);
}

.eq-card__price .accent {
  font-weight: 600;
}

.eq-card__add.is-added {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   PLATFORM
   ============================================================ */
.platform__head {
  max-width: 100%;
  margin-bottom: 3rem;
}

.platform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* YouTube embed */
.yt-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

.yt-embed__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.yt-embed:hover .yt-embed__thumb {
  transform: scale(1.03);
  filter: brightness(0.6);
}

.yt-embed__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(8, 8, 8, 0.35);
  transition: background 0.3s;
}

.yt-embed:hover .yt-embed__overlay {
  background: rgba(8, 8, 8, 0.2);
}

.yt-embed__play {
  transition: transform 0.3s var(--ease);
}

.yt-embed:hover .yt-embed__play {
  transform: scale(1.12);
}

.yt-embed__label {
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.platform__intro {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.platform__intro strong {
  color: var(--accent);
}

.platform__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.platform__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
}

.platform__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc__head {
  max-width: 600px;
  margin-bottom: 3rem;
}

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

.calc__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}

/* Controls */
.calc__block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.calc__block-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.calc__block-title svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Studio type note inside title */
.calc__block-note {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.25rem;
}

/* Studio type selector */
.calc__studio-types {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.calc__type-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--surface-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.calc__type-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc__type-item:hover {
  border-color: var(--border-2);
}

.calc__type-item--active {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.calc__type-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.calc__type-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.calc__type-price {
  font-size: 0.78rem;
  color: var(--accent);
}

.calc__type-note {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Hours row (below type selector) */
.calc__studio--hours {
  margin-top: 0;
}

/* Summary hours stepper row */
.calc__summary-hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.calc__summary-hours-label {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Service item active state (stepper > 0) */
.calc__svc-item--active {
  border-color: var(--accent) !important;
}



.calc__svc-toggle {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sub);
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.calc__svc-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.calc__svc-toggle.is-active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

/* About section — local video */
.about__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

/* Platform section — local video */
.platform__vid {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Studio block */
.calc__studio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.calc__studio-rate {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.calc__studio-per {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}

.calc__studio-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.5;
}

/* Stepper */
.calc__stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.stepper__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  user-select: none;
}

.stepper__btn:hover {
  background: var(--accent-dim);
  color: var(--accent);
}

.stepper__btn:active {
  background: var(--accent);
  color: var(--black);
}

.stepper__display {
  min-width: 60px;
  text-align: center;
  padding: 0 0.5rem;
}

.stepper__value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.stepper__label {
  font-size: 0.7rem;
  color: var(--muted);
}

/* Small stepper for equipment */
.calc__stepper--sm .stepper__btn {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}

.calc__stepper--sm .stepper__value {
  font-size: 1rem;
}

.calc__stepper--sm .stepper__display {
  min-width: 36px;
}

/* Equipment categories */
.calc__category {
  border-bottom: 1px solid var(--border);
}

.calc__category:last-child {
  border-bottom: none;
}

.calc__cat-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  list-style: none;
  user-select: none;
}

.calc__cat-summary::-webkit-details-marker {
  display: none;
}

.calc__cat-summary:hover {
  color: var(--accent);
}

.calc__cat-arrow {
  color: var(--muted);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

details[open] .calc__cat-arrow {
  transform: rotate(180deg);
}

.calc__cat-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc__eq-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--surface-3);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.calc__eq-item:hover {
  border-color: var(--border-2);
}

.calc__eq-item.is-active {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.calc__eq-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.calc__eq-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.calc__eq-price {
  font-size: 0.78rem;
  color: var(--accent);
}

/* Services */
.calc__services {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc__svc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--surface-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.calc__svc-item:hover {
  border-color: var(--border-2);
}

.calc__svc-item--active {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.calc__svc-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.calc__svc-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.calc__svc-price {
  font-size: 0.78rem;
  color: var(--accent);
  white-space: nowrap;
}

/* Summary — pinned by GSAP ScrollTrigger */
.calc__summary {
  align-self: start;
}

.calc__summary-inner {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.calc__summary-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.calc__summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  min-height: 2rem;
}

.calc__summary-line {
  display: grid;
  grid-template-columns: 1fr auto 7rem;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Inline per-line stepper */
.sl__ctrl {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.sl__btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}

.sl__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sl__val {
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 3rem;
  text-align: center;
  white-space: nowrap;
}

.sl__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sl__amount {
  white-space: nowrap;
  color: var(--white);
  text-align: right;
}

.calc__summary-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.calc__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.calc__total-label {
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.calc__total-amount {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  transition: opacity 0.15s;
}

.calc__total-currency {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--accent);
}

.calc__submit {
  width: 100%;
  margin-bottom: 1rem;
}

.calc__summary-note {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   WHY STUDIO — problem vs solution
   ============================================================ */
.whystudio__head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.whystudio__lead {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 520px;
}

/* Compare grid: bad | divider | good */
.whystudio__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

/* Column label */
.whystudio__col-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-pill);
}

.whystudio__col--bad .whystudio__col-label {
  color: #ff5f5f;
  background: rgba(255, 95, 95, 0.08);
  border: 1px solid rgba(255, 95, 95, 0.15);
}

.whystudio__col--good .whystudio__col-label {
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.15);
}

/* List */
.whystudio__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Item */
.whystudio__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: border-color 0.2s, transform 0.2s;
}

.whystudio__item--bad {
  border-left: 3px solid rgba(255, 95, 95, 0.4);
  opacity: 0.75;
}

.whystudio__item--good {
  border-left: 3px solid rgba(200, 255, 0, 0.5);
}

.whystudio__item--good:hover {
  border-color: rgba(200, 255, 0, 0.2);
  transform: translateX(3px);
}

/* Item icon */
.whystudio__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.whystudio__item--bad .whystudio__item-icon {
  color: #ff5f5f;
  background: rgba(255, 95, 95, 0.07);
}

.whystudio__item--good .whystudio__item-icon {
  color: var(--accent);
  background: var(--accent-dim);
}

/* Item text */
.whystudio__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.whystudio__item-text strong {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.whystudio__item--bad .whystudio__item-text strong {
  color: rgba(245, 245, 240, 0.6);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 95, 95, 0.4);
}

.whystudio__item-text span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* VS divider */
.whystudio__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 3.5rem;
  height: 100%;
}

.whystudio__divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-2) 40%, var(--border-2) 60%, transparent);
  min-height: 60px;
}

.whystudio__divider-vs {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--muted-2);
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Bottom takeaway */
.whystudio__takeaway {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.06), rgba(200, 255, 0, 0.03));
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.whystudio__takeaway-text {
  font-size: 1rem;
  color: rgba(245, 245, 240, 0.8);
  line-height: 1.6;
  max-width: 560px;
}

.whystudio__takeaway-text strong {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================================
   FOR WHOM — audience section
   ============================================================ */
.audience__head {
  max-width: 600px;
  margin-bottom: 3rem;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.audience__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.audience__card:hover {
  border-left-color: var(--accent);
  border-color: rgba(200, 255, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200, 255, 0, 0.07);
}

.audience__card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.25s var(--ease);
}

.audience__card:hover .audience__card-icon {
  background: rgba(200, 255, 0, 0.12);
}

.audience__card-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.audience__card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.howto__head {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.howto__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Connecting line through badge centers */
.howto__steps::before {
  content: '';
  position: absolute;
  top: calc(2rem + 22px);
  /* padding-top + badge-height/2 */
  left: calc(12.5% + 0.5rem);
  right: calc(12.5% + 0.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(200, 255, 0, 0.4) 40%, rgba(200, 255, 0, 0.1) 100%);
  z-index: 0;
  pointer-events: none;
}

.howto__step {
  position: relative;
  z-index: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 4px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.howto__step:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(200, 255, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Top row: badge + icon */
.howto__step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

/* Step badge — circle with number */
.howto__step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}

.howto__step:hover .howto__step-badge {
  background: var(--accent-dim);
}

/* Icon — top right */
.howto__step-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid rgba(200, 255, 0, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.howto__step:hover .howto__step-icon {
  background: var(--accent-dim);
  border-color: rgba(200, 255, 0, 0.25);
}

.howto__step-title {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.howto__step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

/* Bottom tag */
.howto__step-tag {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.875rem;
  align-self: flex-start;
}

/* Platform pricing card */
.platform__head-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 100%;
}

.platform__price-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.platform__price-info {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.platform__price-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.platform__price-cur,
.platform__price-per {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--accent);
}

.platform__price-per {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.platform__price-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__head {
  max-width: 600px;
  margin-bottom: 3rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__img-placeholder {
  position: absolute;
  inset: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease);
}

.gallery__item:hover .gallery__img-placeholder {
  transform: scale(1.04);
}

.gallery__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.gallery__item:hover .gallery__photo {
  transform: scale(1.04);
  filter: brightness(0.65);
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.gallery__item:hover .gallery__overlay {
  transform: translateY(0);
}

@media (hover: none) {
  .gallery__overlay {
    transform: translateY(0);
  }
}

.gallery__overlay-title {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.gallery__overlay-cat {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__head {
  max-width: 600px;
  margin-bottom: 3rem;
}

.reviews__slider {
  overflow: hidden;
  padding: 0.75rem 0.5rem;
  margin: -0.75rem -0.5rem;
  touch-action: pan-y;
}

.reviews__track {
  display: grid;
  grid-template-columns: repeat(4, calc(50% - 0.75rem));
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.reviews__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.reviews__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.reviews__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.reviews__dots {
  display: flex;
  gap: 8px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.reviews__dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 640px) {
  .reviews__track {
    grid-template-columns: repeat(4, 100%);
  }
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3re;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
  border-color: rgba(200, 255, 0, 0.25);
  transform: translateY(-4px);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
  margin: 0;
  position: relative;
  padding-left: 1.25rem;
}

.review-card__text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.2rem;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--accent);
  font-family: var(--font-head);
  opacity: 0.6;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid rgba(200, 255, 0, 0.3);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin: 0 0 0.15rem;
}

.review-card__role {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__head {
  max-width: 600px;
  margin-bottom: 3rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* Form */
.contact__form-wrap {
  position: relative;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.form-input {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--surface-2);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  position: relative;
  min-height: 52px;
}

.form-submit__spinner {
  display: none;
  position: absolute;
  top: calc(50% - 9px);
  left: calc(50% - 9px);
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.form-submit.is-loading .form-submit__text {
  opacity: 0;
}

.form-submit.is-loading .form-submit__spinner {
  display: block;
}

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

/* Form success */
.form-success[hidden] {
  display: none;
}

.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 3rem;
}

.form-success__icon {
  color: var(--accent);
}

.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

.form-success p {
  color: var(--muted);
}

/* Contact info */
.contact__info-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact__info-block {
  margin-bottom: 2.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact__detail svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.contact__link {
  color: var(--white);
  transition: color 0.2s;
}

.contact__link:hover {
  color: var(--accent);
}

.contact__social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}

.social-link svg {
  color: var(--accent);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__address {
  cursor: default;
}

.footer__address:hover {
  color: var(--muted);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: var(--accent);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 700;
  transition: all 0.25s var(--ease);
  opacity: 0;
  transform: translateY(12px);
}

.back-top:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.85rem 2.5rem;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 100px;
  z-index: 700;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(200, 255, 0, 0.4);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.float-cta:hover {
  transform: translateX(-50%) translateY(-2px);
}

/* ============================================================
   REVEAL ANIMATIONS (base states for GSAP)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links {
    gap: 1.75rem;
  }

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

  .about__audience {
    padding-top: 1.5rem;
  }

  .about__visual {
    position: static;
    min-height: 0;
  }

  .about__img-wrap {
    position: static;
    overflow: hidden;
    border-radius: var(--radius);
  }

  .about__video {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .about__img-placeholder {
    aspect-ratio: 16 / 9;
  }

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

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

  .whystudio__takeaway {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }

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

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

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

  .calc__summary {
    position: static;
  }

  .calc__summary-inner {
    position: static !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    margin-top: 0;
  }

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

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

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

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

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-v: 3rem;
  }

  /* ---- Section separators & alternating backgrounds ---- */
  .section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
  }

  /* Accent glow line at top of each section */
  .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--pad-x);
    right: var(--pad-x);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.25) 30%, rgba(200, 255, 0, 0.25) 70%, transparent);
    pointer-events: none;
  }

  .about.section,
  .howto.section,
  .reviews.section {
    background: var(--surface-2);
  }

  .whystudio.section,
  .audience.section,
  .equipment.section,
  .platform.section,
  .gallery.section,
  .calc.section,
  .contact.section {
    background: var(--black);
  }

  /* Section label — left accent bar on eyebrow */
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
  }

  /* ---- Tighter section headers ---- */
  .section-eyebrow {
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  /* ---- How-to steps ---- */
  .howto__steps {
    grid-template-columns: 1fr;
  }

  .howto__steps::before {
    display: none;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  /* ---- Hero ---- */
  .hero {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh; /* progressive enhancement */
  }

  .hero__visual {
    display: none;
  }

  .hero__title {
    line-height: 0.9;
  }

  .hero__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .hero__stats {
    gap: 0;
    margin-top: 1.75rem;
  }

  .hero__stat {
    min-width: 100px;
    padding: 0 1rem;
  }

  .hero__stat:first-child {
    padding-left: 0;
  }

  /* ---- About ---- */
  .about__features {
    grid-template-columns: 1fr;
  }

  .about__audience-tags {
    gap: 0.4rem;
  }

  .about__tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  /* ---- Why Studio ---- */
  .whystudio__compare {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .whystudio__divider {
    flex-direction: row;
    padding-top: 0;
    padding: 1.25rem 0;
    height: auto;
  }

  .whystudio__divider-line {
    flex: 1;
    width: auto;
    height: 1px;
    min-height: unset;
    background: linear-gradient(to right, transparent, var(--border-2) 40%, var(--border-2) 60%, transparent);
  }

  .whystudio__takeaway {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    margin-top: 2rem;
  }

  .whystudio__item {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }

  /* ---- Audience ---- */
  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience__card {
    padding: 1.25rem 1.1rem;
    gap: 0.75rem;
  }

  /* ---- Equipment ---- */
  .equipment__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .eq-card__img {
    padding: 1.25rem 0.75rem;
  }

  .eq-card__img svg {
    width: 36px;
    height: 36px;
  }

  .eq-card__body {
    padding: 0.875rem;
  }

  .eq-card__name {
    font-size: 0.875rem;
  }

  .eq-card__desc {
    font-size: 0.75rem;
  }

  /* ---- Platform ---- */
  .platform__vid {
    max-height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
  }

  .platform__list {
    font-size: 0.875rem;
  }

  .platform__item {
    padding: 0.5rem 0;
  }

  /* ---- Calc ---- */
  .calc__block {
    padding: 1rem;
    border-radius: var(--radius);
  }

  .calc__type-item {
    padding: 0.75rem;
  }

  .calc__eq-item {
    padding: 0.625rem 0.75rem;
  }

  .calc__svc-item {
    padding: 0.625rem 0.75rem;
  }

  .calc__summary-inner {
    padding: 1.25rem;
  }

  /* ---- Contact ---- */
  .contact__info-block + .contact__info-block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

  /* ---- Gallery ---- */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  /* ---- Footer ---- */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__desc {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 1.5rem;
  }

  /* ---- Section heads ---- */
  .equipment__head,
  .calc__head,
  .howto__head,
  .gallery__head,
  .reviews__head {
    margin-bottom: 1.75rem;
  }

  /* ---- Platform ---- */
  .platform__head {
    margin-bottom: 1.75rem;
  }

  /* ---- Reviews ---- */
  .reviews__controls {
    margin-top: 1.25rem;
  }

  /* ---- Float CTA ---- */
  .float-cta {
    display: block;
  }

  .back-top {
    bottom: 5rem;
    right: 1rem;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --section-v: 2.25rem;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta-group .btn {
    text-align: center;
  }

  .hero__title {
    font-size: clamp(40px, 12vw, 52px);
    margin-bottom: 0.75rem;
  }

  .hero__eyebrow {
    margin-bottom: 0.875rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero__stat {
    padding: 0 0.6rem;
  }

  .hero__stat-num {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .about__badge {
    left: 0;
    bottom: -2rem;
  }

  .about__quote {
    margin-bottom: 1.5rem;
  }

  .about__features {
    gap: 0;
  }

  .about__feature {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
  }

  .about__feature:last-child {
    border-bottom: none;
  }

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

  .audience__card {
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem;
    gap: 1rem;
  }

  .audience__card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .audience__card-icon svg {
    width: 22px;
    height: 22px;
  }

  .audience__card-body {
    flex: 1;
    min-width: 0;
  }

  .audience__card-title {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .audience__card-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .equipment__filters {
    gap: 0.5rem;
  }

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

  .pill {
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
  }

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

  .eq-card__img {
    padding: 1rem 0.5rem;
  }

  .eq-card__img svg {
    width: 30px;
    height: 30px;
  }

  .eq-card__body {
    padding: 0.75rem;
  }

  .eq-card__name {
    font-size: 0.8rem;
  }

  .eq-card__desc {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
  }

  .eq-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .howto__step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0.875rem;
    row-gap: 0.25rem;
    padding: 1rem;
    align-items: start;
  }

  .howto__step-top {
    grid-column: 1;
    grid-row: 1 / 4;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-top: 0.1rem;
  }

  .howto__step-badge {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .howto__step-icon {
    width: 36px;
    height: 36px;
  }

  .howto__step-icon svg {
    width: 17px;
    height: 17px;
  }

  .howto__step-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.95rem;
    margin-bottom: 0;
    align-self: center;
  }

  .howto__step-desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .howto__step-tag {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    align-self: end;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .hide-mobile {
    display: none;
  }

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

  .footer__brand {
    grid-column: auto;
  }
}

/* ============================================================
   RESPONSIVE — 380px
   ============================================================ */
@media (max-width: 380px) {
  :root {
    --pad-x: 1rem;
  }

  .hero__title {
    font-size: clamp(36px, 11vw, 46px);
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* ============================================================
   RESPONSIVE — landscape mobile (short viewport)
   ============================================================ */
@media (max-height: 600px) and (max-width: 900px) {
  .hero__inner {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
  }

  .hero__title {
    font-size: clamp(32px, 8vh, 52px);
    margin-bottom: 0.5rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero__cta-group {
    flex-direction: row;
    align-items: center;
  }

  .hero__stats {
    margin-top: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .hero__stat-num {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
}

@media (max-width: 650px) {
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .hero__stat::after {
    display: none;
  }

  .hero__stat {
    padding: 1rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .hero__stat:first-child {
    padding-left: 1rem;
  }

  .hero__stat:nth-child(2n) {
    border-right: none;
  }

  .hero__stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}