:root {
  --bg: #050606;
  --text: #F3F4F4;
  --muted: #969DA0;
  --orange: #FF6500;
  --line: #25292A;
  --glass: rgba(12, 13, 13, 0.55);
  --glass-border: rgba(243, 244, 244, 0.08);
  --orange-glow: rgba(255, 101, 0, 0.42);
  --header-h: 72px;
  --section-y: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1440px;
  --font: 'Manrope', sans-serif;
  --font-sub: Unbounded, Manrope, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  background: var(--bg);
  color-scheme: dark;
  overflow-x: clip;
  max-width: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}
html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
html.lenis.lenis-stopped {
  overflow: hidden;
}
html.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dt, dd { margin: 0; }
em { font-style: normal; color: var(--orange); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  padding: 8px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

::selection { background: var(--orange); color: #fff; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.section-frame {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s, color 0.35s;
}
.btn span { transition: transform 0.3s var(--ease); }
.btn:hover span { transform: translateX(4px); }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow:
    0 8px 32px rgba(255, 101, 0, 0.22),
    0 2px 10px rgba(255, 101, 0, 0.12);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(255, 101, 0, 0.28),
    0 4px 14px rgba(255, 101, 0, 0.14);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(243, 244, 244, 0.28);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: #fff;
}

.btn--ghost {
  min-height: 44px;
  padding: 0 20px;
  background: transparent;
  color: var(--text);
  border-color: rgba(243, 244, 244, 0.18);
  font-size: 14px;
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn--text {
  background: none;
  border: none;
  color: var(--text);
  padding: 0;
  min-height: 44px;
}
.btn--text:hover { color: var(--orange); }

.btn--underline {
  border-bottom: 1px solid rgba(243, 244, 244, 0.35);
  border-radius: 0;
  padding: 0 0 6px;
  min-height: 44px;
}
.btn--underline:hover { border-bottom-color: var(--orange); }

/* ——— Logo ——— */
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 32px;
  width: auto;
}

/* ——— Site ribbon (только 2K+) ——— */
.site-ribbon {
  display: none;
}
@media (min-width: 2560px) {
  .site-ribbon {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100vh;
    height: 100dvh;
    width: auto;
    max-width: min(18vw, 280px);
    object-fit: contain;
    object-position: left center;
    pointer-events: none;
    opacity: 0.92;
    filter: drop-shadow(0 0 28px rgba(255, 101, 0, 0.45));
  }
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5, 6, 6, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.header-bar {
  height: 100%;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.page-nav,
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  min-width: 0;
}
.page-nav {
  flex-wrap: nowrap;
}
.page-nav a,
.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 10px;
  white-space: nowrap;
  transition: color 0.2s;
}
.footer-nav a {
  font-size: 15px;
  padding: 8px 14px;
}
.footer-nav a:hover { color: var(--text); }
.page-nav a:hover,
.page-nav a.is-active {
  color: var(--orange);
}
.page-nav a.is-active {
  text-shadow: 0 0 16px rgba(255, 101, 0, 0.35);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(243, 244, 244, 0.2);
  background: rgba(12, 13, 13, 0.6);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
  z-index: 101;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: rgba(5, 6, 6, 0.96);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile .btn { margin-top: 24px; width: 100%; }

@media (min-width: 1101px) {
  .menu-btn { display: none; }
  .nav-mobile { display: none !important; }
}
@media (max-width: 1100px) {
  .page-nav,
  .header-actions .btn { display: none !important; }
  .header-bar { grid-template-columns: 1fr auto; }
  .menu-btn { display: flex !important; }
  .site-header {
    background: rgba(5, 6, 6, 0.88);
    backdrop-filter: blur(18px);
    border-bottom-color: var(--line);
  }
}

/* ——— Type ——— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.eyebrow__mark {
  width: 2px;
  height: 14px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}
.eyebrow--tri {
  color: var(--muted);
}
.eyebrow--tri::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 9px solid var(--orange);
  filter: drop-shadow(0 0 8px var(--orange));
}

.display-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.28em;
}
.display-title--xl {
  font-size: clamp(48px, 8vw, 110px);
}
.display-title--overlap { position: relative; z-index: 2; }

.word-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--orange);
  border-radius: 999px;
  padding: 0.06em 0.38em 0.1em;
  box-shadow: 0 0 24px rgba(255, 101, 0, 0.18);
  max-width: 100%;
  box-sizing: border-box;
}

#main {
  position: relative;
  overflow-x: clip;
  max-width: 100%;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 0;
  padding: calc(var(--header-h) + var(--section-y)) 0 var(--section-y);
  overflow-x: clip;
  overflow-y: visible;
  display: flex;
  align-items: center;
}
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 10%, transparent 70%);
  opacity: 0.55;
}
.hero__grid::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 10%;
  width: 55vw;
  height: 70vh;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.16), transparent 62%);
  filter: blur(20px);
}

.hero__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 24px 8px;
  min-height: 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
}
.hero__copy .eyebrow {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  max-width: 36rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
}
.hero__copy .eyebrow__mark {
  flex-shrink: 0;
  margin-top: 0.2em;
}
.hero__copy .eyebrow__text {
  min-width: 0;
}

.hero__title {
  font-size: clamp(52px, 8.4vw, 108px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--text);
}
.hero__line { display: block; }
.hero__line--capsule { margin: 0.04em 0 0.02em -0.04em; }
.hero__title .word-capsule {
  font-size: inherit;
  color: var(--orange);
}
.hero__seo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0.28em;
  max-width: 22rem;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #c8cccd;
}
.hero__seo-dash {
  flex-shrink: 0;
  width: 32px;
  height: 1.5px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.hero__lead {
  max-width: 46ch;
  margin-top: 28px;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #c8cccd;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero__perks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  min-width: 0;
}
.hero__perks svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.hero__stage {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  aspect-ratio: 1.38;
  margin: 0 -3vw 0 auto;
  overflow: visible;
  align-self: center;
}
.hero__bg,
.hero__card {
  position: absolute;
  user-select: none;
}
.hero__bg {
  width: 124%;
  left: -12%;
  top: -10%;
  z-index: 0;
  max-width: none;
  height: auto;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
}
.hero__card {
  margin: 0;
  opacity: 0;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.45));
  transform-origin: center center;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease), z-index 0s;
}
.hero__card img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  pointer-events: none;
}
.hero__card--article {
  width: 42%;
  left: 29%;
  top: 12%;
  z-index: 6;
}
.hero__card--article img { animation: floatY 8s ease-in-out infinite; }
.hero__card--phrases {
  width: 33%;
  left: -6%;
  top: -8%;
  z-index: 4;
}
.hero__card--phrases img { animation: floatY 9.2s 0.2s ease-in-out infinite; }
.hero__card--pages {
  width: 33%;
  right: -8%;
  top: -4%;
  z-index: 4;
}
.hero__card--pages img { animation: floatY 10s 0.5s ease-in-out infinite; }
.hero__card--recs {
  width: 33%;
  left: -8%;
  bottom: 0;
  z-index: 4;
}
.hero__card--recs img { animation: floatY 8.6s 0.15s ease-in-out infinite; }
.hero__card--hits {
  width: 31%;
  right: -6%;
  bottom: 6%;
  z-index: 3;
}
.hero__card--hits img { animation: floatY 9.8s 0.4s ease-in-out infinite; }
.hero__card--links {
  width: 32%;
  left: 30%;
  bottom: -2%;
  z-index: 5;
}
.hero__card--links img { animation: floatY 7.8s 0.3s ease-in-out infinite; }

/* ——— Features ——— */
.features {
  position: relative;
  padding: var(--section-y) 0;
  overflow: visible;
}
.features__head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
.features__intro {
  max-width: 42ch;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #c8cccd;
  justify-self: end;
  padding-bottom: 8px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 24px;
  width: 100%;
  align-items: stretch;
}

.feat {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feat__num {
  position: absolute;
  left: 0;
  top: -22px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
}

.feat__object {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feat__card {
  position: relative;
  width: 100%;
  min-height: 200px;
  height: 100%;
  padding: 22px 20px 20px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 8px;
  align-items: start;
  flex: 1;
  border-radius: 22px;
  background:
    linear-gradient(165deg, rgba(48, 32, 18, 0.5) 0%, rgba(10, 10, 10, 0.92) 42%, rgba(8, 8, 8, 0.96) 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(255, 101, 0, 0.16);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.feat__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #ffc07a 0%, #ff6500 22%, rgba(255, 101, 0, 0.15) 48%, #ff6500 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.feat__card::after {
  content: '';
  position: absolute;
  inset: 10px 12px auto 12px;
  height: 42%;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 180, 90, 0.12), transparent);
  pointer-events: none;
}
.feat:hover .feat__card {
  transform: translateY(-8px);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(255, 101, 0, 0.32);
}

.feat__icon {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  color: var(--text);
  margin: 2px 0 0;
  flex-shrink: 0;
}

.feat__card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.25;
  max-width: none;
  margin: 0;
}

.feat__card p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 0;
  padding-top: 0;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #c8cccd;
}

.feat__float {
  position: absolute;
  width: 40px;
  z-index: 2;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: floatY 7s ease-in-out infinite;
}
.feat__float--tr {
  right: -14px;
  top: -6px;
}
.feat__float--br {
  right: -12px;
  top: auto;
  bottom: -10px;
  animation-duration: 8.5s;
}
.feat__float--bl {
  left: -14px;
  right: auto;
  top: auto;
  bottom: -8px;
  width: 32px;
  animation-duration: 6.5s;
}

.deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.deco__el {
  position: absolute;
  mix-blend-mode: screen;
  user-select: none;
  animation: floatY 9s ease-in-out infinite;
}
.deco__el--hero-1 {
  width: 40px;
  left: -1%;
  top: 22%;
  animation-duration: 7s;
}
.deco__el--hero-2 {
  width: 64px;
  left: 38%;
  top: 12%;
  animation-duration: 11s;
  animation-delay: 0.5s;
}
.deco__el--hero-3 {
  width: 52px;
  right: 6%;
  top: 44%;
  animation-duration: 8.5s;
  animation-delay: 0.7s;
}
.deco__el--feat-1 {
  width: 26px;
  left: 3%;
  top: 28%;
  animation-duration: 8s;
}
.deco__el--feat-2 {
  width: 44px;
  left: 46%;
  top: 58%;
  animation: floatChaos 10s ease-in-out infinite;
}
.deco__el--feat-3 {
  width: 34px;
  right: 4%;
  top: 72%;
  animation: floatY 9.5s 0.4s ease-in-out infinite;
}
.deco__el--feat-4 {
  width: 22px;
  left: 22%;
  top: 78%;
  animation: floatChaos2 11s 0.8s ease-in-out infinite;
}
.deco__el--idea-1 {
  width: 58px;
  left: -2%;
  top: 42%;
  animation-duration: 8.5s;
  animation-delay: 0.3s;
}
.deco__el--proc-1 {
  width: 56px;
  left: 38%;
  top: 18%;
  animation: floatChaos 9s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(255, 101, 0, 0.35));
}
.deco__el--glab-1 {
  width: 48px;
  left: 32%;
  top: 8%;
  animation-duration: 9s;
}
.deco__el--glab-2 {
  width: 68px;
  left: -3%;
  top: 58%;
  animation: floatChaos2 10s 0.8s ease-in-out infinite;
}
.deco__el--faq-1 {
  width: 58px;
  left: 38%;
  top: 28%;
  animation: floatChaos 9s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(255, 101, 0, 0.35));
}
.deco__el--support-1 {
  width: 52px;
  right: 8%;
  top: 18%;
  animation: floatChaos 10s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(255, 101, 0, 0.35));
}

/* ——— Idea ——— */
.idea {
  position: relative;
  min-height: 0;
  padding: var(--section-y) 0;
  overflow-x: clip;
}
.idea__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px 32px;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.idea__copy {
  width: auto;
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 0;
  text-align: left;
  justify-self: end;
  max-width: 42rem;
}
.idea__copy .eyebrow {
  justify-content: flex-start;
}
.idea__copy .display-title {
  max-width: 14ch;
  margin-left: 0;
  margin-bottom: 0.32em;
  text-shadow: 0 8px 40px rgba(5, 6, 6, 0.9);
}
.idea__lead {
  max-width: 52ch;
  margin-top: 8px;
  margin-left: 0;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #c8cccd;
}
.idea__lead + .idea__lead {
  margin-top: 16px;
}
.idea__points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 48px;
  margin-top: 8px;
  margin-left: 0;
  max-width: none;
  text-align: left;
}
.idea__points li {
  position: relative;
  padding-top: 4px;
}
.idea__points span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 12px;
}
.idea__points h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
  white-space: nowrap;
}
.idea__points p {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.03em;
  max-width: 42ch;
  margin: 0;
  color: #c8cccd;
}

.idea__stage {
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}
.idea__knot {
  width: min(100%, 560px);
  max-width: none;
  height: auto;
  display: block;
  margin: 0;
  object-fit: contain;
  mix-blend-mode: screen;
  animation: floatY 14s ease-in-out infinite;
}

/* ——— Process ——— */
.process {
  position: relative;
  padding: var(--section-y) 0;
  overflow: visible;
}
.process__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px 80px;
  align-items: start;
}
.process__head { position: sticky; top: 96px; }

.timeline {
  position: relative;
  padding-left: 8px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, var(--orange), var(--line) 80%);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.4s var(--ease);
}
.timeline.is-visible::before { transform: scaleY(1); }

.timeline li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  position: relative;
}
.timeline li + li { border-top: 1px solid var(--line); }

.timeline__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
}
.timeline__num::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 36px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.timeline h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.timeline p { font-size: 15px; max-width: 36ch; }

/* ——— Interface ——— */
.interface {
  position: relative;
  padding: var(--section-y) 0;
  overflow: visible;
}
.interface .section-frame {
  width: min(100% - 40px, 1520px);
}

.shots {
  position: relative;
  z-index: 2;
  min-height: 980px;
  overflow: visible;
  perspective: 1800px;
  perspective-origin: 50% 40%;
}
.shots__glow {
  position: absolute;
  inset: 12% 18% 18% 16%;
  background: radial-gradient(ellipse at 50% 48%, rgba(255, 101, 0, 0.16), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.shots__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.shots__wires path {
  stroke: #ff6500;
  stroke-width: 1.35;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 101, 0, 0.85));
  opacity: 0.88;
}
.shots__frame {
  --rx: 6deg;
  --ry: -16deg;
  --rz: 0deg;
  position: absolute;
  margin: 0;
  padding: 7px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28, 20, 14, 0.92), rgba(10, 11, 11, 0.96));
  box-shadow:
    0 0 0 1.5px #ff6500,
    0 0 28px rgba(255, 101, 0, 0.38),
    0 28px 64px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: rotateY(var(--ry)) rotateX(var(--rx)) rotateZ(var(--rz)) translateZ(1px);
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.shots__shot {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  border-radius: 15px;
  background: #eef0f0;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
.shots__zoom {
  display: none;
}
.shots__frame--settings {
  left: 3%;
  top: 2%;
  width: 50%;
  --ry: 12deg;
  --rx: 6deg;
  --rz: -2deg;
  transform-origin: left center;
  z-index: 3;
}
.shots__frame--recs {
  right: 4%;
  top: 5%;
  width: 35%;
  --ry: -18deg;
  --rx: 9deg;
  --rz: 2deg;
  transform-origin: right center;
  z-index: 4;
}
.shots__frame--links {
  left: 32%;
  bottom: 4%;
  width: 32%;
  --ry: 6deg;
  --rx: 5deg;
  --rz: 0deg;
  transform-origin: center bottom;
  z-index: 5;
}
.shots__note {
  --rz: 0deg;
  position: absolute;
  z-index: 9;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 236px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(8, 9, 9, 0.92);
  border: 1px solid rgba(255, 101, 0, 0.42);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(255, 101, 0, 0.16);
  backdrop-filter: blur(16px);
  transform: rotateZ(var(--rz));
  transition: transform 0.4s var(--ease), border-color 0.35s;
}
.shots__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 101, 0, 0.4);
}
.shots__icon svg {
  width: 16px;
  height: 16px;
}
.shots__note h3 {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.shots__note p {
  margin: 0;
  font-family: var(--font-sub);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #c8cccd;
}
.shots__note--settings {
  left: 38%;
  top: 12%;
  --rz: -5deg;
}
.shots__note--recs {
  right: 1%;
  top: 2%;
  --rz: 4deg;
}
.shots__note--links {
  left: 17%;
  bottom: 8%;
  --rz: -3deg;
}
.shots__orb,
.shots__crystal,
.shots__chain {
  position: absolute;
  z-index: 7;
  pointer-events: none;
  height: auto;
}
.shots__orb--1 {
  width: 28px;
  left: 1%;
  top: 36%;
  animation: floatY 7.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 101, 0, 0.45));
}
.shots__orb--2 {
  width: 38px;
  right: 1%;
  top: 12%;
  animation: floatY 8.8s 0.4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 101, 0, 0.5));
}
.shots__orb--3 {
  width: 22px;
  left: 26%;
  bottom: 22%;
  animation: floatY 6.6s 0.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 101, 0, 0.4));
}
.shots__crystal--1 {
  width: 54px;
  right: 2%;
  bottom: 22%;
  animation: floatChaos 11s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(255, 101, 0, 0.28));
}
.shots__crystal--2 {
  width: 42px;
  left: 47%;
  top: 0;
  transform: rotate(-18deg);
  animation: floatChaos2 13s 0.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(255, 101, 0, 0.25));
}
.shots__chain {
  width: 42px;
  height: 42px;
  left: 51%;
  top: 40%;
  color: #ff6500;
  filter: drop-shadow(0 0 10px rgba(255, 101, 0, 0.85));
  animation: floatY 6.2s 0.2s ease-in-out infinite;
}

.gallery {
  width: min(100% - 24px, 920px);
  max-height: calc(100% - 32px);
  margin: auto;
  padding: 56px 16px 20px;
  border: 1px solid rgba(255, 101, 0, 0.35);
  border-radius: 20px;
  background: rgba(8, 9, 9, 0.96);
  color: var(--text);
  box-shadow: 0 0 48px rgba(255, 101, 0, 0.18);
}
.gallery::backdrop {
  background: rgba(5, 6, 6, 0.88);
  backdrop-filter: blur(8px);
}
.gallery__close,
.gallery__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(243, 244, 244, 0.12);
  border-radius: 50%;
  background: rgba(12, 13, 13, 0.8);
  color: var(--text);
  cursor: pointer;
}
.gallery__close {
  top: 10px;
  right: 10px;
}
.gallery__nav--prev { left: 8px; top: 50%; transform: translateY(-50%); }
.gallery__nav--next { right: 8px; top: 50%; transform: translateY(-50%); }
.gallery__close:hover,
.gallery__nav:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.gallery__close svg,
.gallery__nav svg {
  width: 20px;
  height: 20px;
}
.gallery__stage {
  margin: 0 44px;
  text-align: center;
}
.gallery__img {
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 860px);
  margin: 0 auto;
  border-radius: 12px;
  background: #eef0f0;
  touch-action: pan-y;
}
.gallery__cap {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.gallery__count {
  margin-top: 6px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.screen {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 86%;
  justify-self: end;
  perspective: 1600px;
  perspective-origin: 12% 45%;
  padding: 12px 0 28px;
}
.screen__bezel {
  background: linear-gradient(180deg, #1a1c1c, #0c0d0d);
  border: 1px solid #2c3030;
  border-radius: 22px;
  padding: 12px 12px 18px;
  transform: rotateY(-26deg) rotateX(8deg) scale(0.88);
  transform-origin: left center;
  transform-style: preserve-3d;
  box-shadow:
    28px 36px 70px rgba(0, 0, 0, 0.5),
    -8px 0 40px rgba(255, 101, 0, 0.12),
    0 0 0 1px rgba(255, 101, 0, 0.08);
  animation: floatScreen 7s ease-in-out infinite;
}
.screen__bezel::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #2a2e2e;
}

.admin {
  pointer-events: none;
  background: #101212;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  min-width: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.admin__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: #141616;
}
.admin__dots { display: flex; gap: 6px; }
.admin__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3f40;
}
.admin__dots i:first-child { background: #ff5f57; }
.admin__dots i:nth-child(2) { background: #febc2e; }
.admin__dots i:last-child { background: #28c840; }

.admin__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 0;
  flex: 1;
}
.admin__nav {
  padding: 20px 16px;
  border-right: 1px solid var(--line);
  background: #0c0e0e;
}
.admin__nav p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.admin__nav span {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.admin__nav span.is-active {
  color: var(--text);
  background: rgba(255, 101, 0, 0.12);
  box-shadow: inset 2px 0 0 var(--orange);
}

.admin__main { min-width: 0; }
.admin__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}
.admin__add {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 24px var(--orange-glow);
}

.admin__table-wrap { overflow-x: auto; }
.admin__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin__table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.admin__table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  white-space: nowrap;
}
.admin__table tr.is-active td {
  background: rgba(255, 101, 0, 0.06);
}
.admin__table tbody tr:hover td {
  background: rgba(255, 101, 0, 0.08);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(243, 244, 244, 0.16);
  font-size: 12px;
  font-weight: 600;
}
.pill--auto {
  border-color: rgba(255, 101, 0, 0.45);
  color: var(--orange);
}

/* ——— Support ——— */
.support {
  position: relative;
  padding: var(--section-y) 0;
  overflow: visible;
}
.support__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px 56px;
  padding: 44px 52px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(28, 20, 14, 0.78), rgba(10, 11, 11, 0.92));
  border: 1px solid rgba(255, 101, 0, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 101, 0, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 56px rgba(255, 101, 0, 0.14);
}
.support__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.support__text {
  margin-top: 16px;
  max-width: 46ch;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #c8cccd;
}
.support__panel .btn {
  justify-self: end;
}

.fos {
  width: min(100% - 24px, 520px);
  max-height: calc(100% - 32px);
  margin: auto;
  padding: 48px 28px 28px;
  overflow: auto;
  border: 1px solid rgba(255, 101, 0, 0.35);
  border-radius: 20px;
  background: rgba(8, 9, 9, 0.96);
  color: var(--text);
  box-shadow: 0 0 48px rgba(255, 101, 0, 0.18);
}
.fos::backdrop {
  background: rgba(5, 6, 6, 0.88);
  backdrop-filter: blur(8px);
}
.fos__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(243, 244, 244, 0.12);
  border-radius: 50%;
  background: rgba(12, 13, 13, 0.8);
  color: var(--text);
  cursor: pointer;
}
.fos__close:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.fos__close svg {
  width: 20px;
  height: 20px;
}
.fos__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--text);
}
.fos__lead {
  margin: 10px 0 24px;
  font-family: var(--font-sub);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #c8cccd;
}
.fos__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fos__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.fos__field input,
.fos__field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(243, 244, 244, 0.12);
  background: rgba(12, 13, 13, 0.85);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}
.fos__field textarea {
  resize: vertical;
  min-height: 96px;
}
.fos__field input:focus,
.fos__field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.16);
}
.fos__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}
.fos__check input {
  margin-top: 3px;
  accent-color: var(--orange);
}
.fos__check a {
  color: var(--orange);
  text-decoration: underline;
}
.fos__error {
  margin: 0;
  font-size: 13px;
  color: #ff8a3d;
}
.fos__submit {
  width: 100%;
  margin-top: 4px;
}
.fos__ok p {
  margin: 0 0 20px;
  font-family: var(--font-sub);
  font-size: 15px;
  line-height: 1.55;
  color: #c8cccd;
}

/* ——— SEO note ——— */
.seo {
  position: relative;
  padding: var(--section-y) 0;
  overflow-x: clip;
}
.seo__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px 72px;
  align-items: start;
}
.seo__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 54ch;
  padding-top: 10px;
  font-family: var(--font-sub);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.03em;
  color: #c8cccd;
}

/* ——— FAQ ——— */
.faq {
  position: relative;
  padding: var(--section-y) 0;
  overflow-x: clip;
}
.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px 64px;
  align-items: start;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.35;
  padding: 20px 40px 20px 0;
  position: relative;
}
.faq summary::-webkit-details-marker,
.faq summary::marker {
  display: none;
  content: '';
}
.faq summary::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s ease;
}
.faq details.is-open summary::after {
  transform: translateY(-20%) rotate(225deg);
}
.faq__body {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}
.faq details p {
  margin: 0;
  padding: 0 48px 20px 0;
  font-family: var(--font-sub);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.03em;
  color: #c8cccd;
  max-width: 54ch;
}

/* ——— GLab ——— */
.glab {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
  min-height: 0;
  display: flex;
  align-items: center;
}
.glab__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto minmax(0, 1.15fr);
  gap: 40px 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.glab__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.glab__title em {
  font-size: 1.12em;
}
.glab__text {
  margin: 24px 0 32px;
  max-width: 46ch;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.03em;
  color: #c8cccd;
}
.glab__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 8px 8px 8px 24px;
  border-left: 1px solid var(--line);
}
.glab__stats dt {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 1;
}
.glab__stats dd {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  max-width: 28ch;
  color: var(--muted);
}
.glab__stat-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

.glab__stage {
  position: relative;
  min-height: 620px;
  margin-right: -8vw;
  isolation: isolate;
}
.glab__rock,
.glab__cube,
.glab__glass {
  position: absolute;
}
.glab__rock {
  width: min(100%, 520px);
  max-width: 520px;
  height: auto;
  right: 0;
  top: 10%;
  object-fit: contain;
}
.glab__glass {
  left: 4%;
  top: 18%;
  width: min(280px, 70%);
  padding: 36px 28px 32px;
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(243, 244, 244, 0.16);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 40px rgba(255, 101, 0, 0.08);
  animation: floatY 14s ease-in-out infinite;
}
.glab__brand {
  display: block;
  width: 148px;
  height: auto;
}
.glab__slogan {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.45;
}
.glab__bar {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 24px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}
.glab__cube {
  width: 28%;
  max-width: 180px;
  right: 10%;
  top: 6%;
  mix-blend-mode: screen;
  animation: floatY 9s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(255, 101, 0, 0.45));
}

/* ——— Final ——— */
.final {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}
.final__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}
.final__copy {
  max-width: 38rem;
  position: relative;
  z-index: 3;
}
.final__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.final__lead {
  margin-top: 16px;
  max-width: 46ch;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #c8cccd;
  text-transform: none;
}
.final__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-left: auto;
  position: relative;
  z-index: 3;
}
.final__dust {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.final__bit {
  position: absolute;
  mix-blend-mode: screen;
  will-change: transform;
}
.final__bit--1 {
  width: 36px;
  left: 4%;
  top: 8%;
  animation: floatChaos 8s ease-in-out infinite;
}
.final__bit--2 {
  width: 48px;
  right: 3%;
  top: 12%;
  animation: floatChaos2 11s 0.4s ease-in-out infinite;
}
.final__bit--3 {
  width: 28px;
  left: 18%;
  top: auto;
  bottom: 10%;
  animation: floatChaos 6.5s 0.8s ease-in-out infinite;
}
.final__bit--4 {
  width: 40px;
  left: 46%;
  top: 6%;
  animation: floatChaos2 9s 0.2s ease-in-out infinite;
}
.final__bit--5 {
  width: 56px;
  right: 6%;
  top: auto;
  bottom: 8%;
  animation: floatChaos 12s 1s ease-in-out infinite;
}
.final__bit--6 {
  width: 32px;
  left: 58%;
  top: auto;
  bottom: 14%;
  animation: floatChaos2 7.5s 1.4s ease-in-out infinite;
}
.final__bit--7 {
  width: 24px;
  right: 22%;
  top: 16%;
  animation: floatChaos 5.5s 0.6s ease-in-out infinite;
}

@keyframes floatChaos {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -18px); }
}
@keyframes floatChaos2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-14px, 12px) rotate(8deg); }
}
@keyframes floatRibbon {
  0%, 100% { transform: rotate(-18deg) translate(0, 0); }
  50% { transform: rotate(-18deg) translate(8px, -16px); }
}
/* ——— Footer ——— */
.site-footer {
  position: relative;
  z-index: 2;
  padding: var(--section-y) 0 40px;
}
.footer-bar {
  min-height: var(--header-h);
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}
.footer-contacts a {
  padding: 2px 0;
  transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--text); }
.footer-copy {
  width: min(100% - 40px, var(--container));
  margin: 8px auto 0;
  font-size: 12px;
  color: var(--muted);
}

/* ——— Motion ——— */
@keyframes floatY {
  0%, 100% { transform: translate3d(0, var(--py, 0px), 0); }
  50% { transform: translate3d(0, calc(var(--py, 0px) - 16px), 0); }
}
@keyframes floatScreen {
  0%, 100% { transform: rotateY(-26deg) rotateX(8deg) scale(0.88) translateY(0); }
  50% { transform: rotateY(-26deg) rotateX(8deg) scale(0.88) translateY(-16px); }
}

.reveal,
.reveal-stagger,
.reveal-scale {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible,
.reveal-stagger.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-scale { transform: scale(0.97) translateY(24px); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.32s; }

.hero.is-ready .hero__copy > * {
  animation: fadeUp 0.9s var(--ease) both;
}
.hero.is-ready .eyebrow { animation-delay: 0.05s; }
.hero.is-ready .hero__title { animation-delay: 0.16s; }
.hero.is-ready .hero__lead { animation-delay: 0.32s; }
.hero.is-ready .hero__cta { animation-delay: 0.42s; }
.hero.is-ready .hero__perks { animation-delay: 0.54s; }
.hero.is-ready .hero__bg {
  opacity: 1;
  animation: fadeSoft 0.9s 0.12s var(--ease) backwards, floatY 16s ease-in-out infinite;
}
.hero.is-ready .hero__card {
  opacity: 1;
  animation: cardPop 0.7s var(--ease) backwards;
}
.hero.is-ready .hero__card--article { animation-delay: 0.28s; }
.hero.is-ready .hero__card--phrases { animation-delay: 0.44s; }
.hero.is-ready .hero__card--pages { animation-delay: 0.58s; }
.hero.is-ready .hero__card--hits { animation-delay: 0.72s; }
.hero.is-ready .hero__card--recs { animation-delay: 0.86s; }
.hero.is-ready .hero__card--links { animation-delay: 1s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96) translateX(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeSoft {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes cardPop {
  from { opacity: 0; transform: translateY(22px) scale(0.84); }
  to { opacity: 1; transform: none; }
}

/* ——— Responsive ——— */
@media (max-width: 1400px) and (min-width: 1101px) {
  .shots { min-height: 860px; }
}

@media (max-width: 1100px) {
  :root { --section-y: 40px; }
  .section-frame,
  .hero__inner,
  .idea__inner,
  .header-bar,
  .footer-bar {
    width: min(100% - 32px, var(--container));
  }
  .hero__inner,
  .idea__inner,
  .features__head,
  .process__layout,
  .seo__layout,
  .faq__layout,
  .glab__layout,
  .final__layout,
  .support__panel {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 48px) 0 var(--section-y);
    display: block;
    overflow-x: clip;
  }
  .hero__grid::after { display: none; }
  .hero__stage {
    display: none;
  }
  .hero__copy .eyebrow {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .hero__copy .eyebrow__text {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero__title,
  .display-title,
  .glab__title,
  .final__title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .features {
    overflow: hidden;
  }
  .features__grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }
  .features__intro { justify-self: start; text-align: left; }
  .feat__float,
  .deco { display: none; }
  .idea { min-height: 0; overflow-x: clip; }
  .idea__copy {
    order: -1;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    justify-self: start;
    max-width: none;
    margin-left: 0;
  }
  .hero__copy .eyebrow,
  .idea__copy .eyebrow,
  .process__head .eyebrow,
  .seo__head .eyebrow,
  .faq__head .eyebrow,
  .glab__copy .eyebrow {
    margin-inline: 0;
    justify-content: flex-start;
  }
  .hero__title,
  .display-title,
  .glab__title,
  .final__title {
    text-align: left;
    margin-inline: 0;
  }
  .hero__line--capsule { margin-left: 0; }
  .hero__title { font-size: clamp(40px, 11vw, 72px); }
  .display-title { font-size: clamp(32px, 8.8vw, 56px); }
  .glab__title,
  .final__title { font-size: clamp(32px, 8.4vw, 52px); }
  .idea__copy .display-title { margin-inline: 0; max-width: 100%; }
  .idea__stage { display: none; }
  .idea__points {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    text-align: left;
  }
  .idea__points h3 { white-space: normal; }
  .idea__points li {
    padding: 20px 0;
    border-top: 1px solid var(--line);
  }
  .idea__points li:last-child { border-bottom: 1px solid var(--line); }
  .idea__points h3 { min-height: 0; }
  .process { padding: var(--section-y) 0; }
  .process__head { position: static; }
  .shots {
    position: static;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    perspective: none;
    padding: 8px 0;
  }
  .shots__frame,
  .shots__frame--settings,
  .shots__frame--recs,
  .shots__frame--links {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
    transform-origin: center center;
  }
  .shots__zoom {
    display: grid;
    place-items: center;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .shots__zoom svg {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(8, 9, 9, 0.72);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 101, 0, 0.45);
    pointer-events: none;
  }
  .shots__note,
  .shots__note--settings,
  .shots__note--recs,
  .shots__note--links {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    transform: none;
  }
  .shots__shot {
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
  }
  .shots__glow,
  .shots__wires,
  .shots__orb,
  .shots__crystal,
  .shots__chain {
    display: none;
  }
  .support__panel {
    padding: 32px 24px;
  }
  .support__panel .btn {
    justify-self: start;
    width: 100%;
  }
  .seo__head { order: -1; }
  .seo__copy { padding-top: 0; max-width: none; }
  .faq summary { font-size: 16px; }
  .glab { min-height: 0; }
  .glab__layout { gap: 40px; }
  .glab__stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding: 24px 0 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .glab__stats dd {
    max-width: 28ch;
    margin-inline: auto;
  }
  .glab__stage { display: none; }
  .final__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px 24px;
    padding-bottom: 0;
  }
  .final__actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0;
  }
  .final__actions .btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }
  .final__dust { display: none; }
  .site-footer {
    padding: var(--section-y) 0 32px;
  }
  .footer-bar {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 28px;
    min-height: 0;
  }
  .footer-nav {
    grid-column: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    max-width: 340px;
    gap: 2px 12px;
    justify-content: stretch;
  }
  .footer-nav a {
    text-align: center;
    padding: 10px 8px;
  }
  .footer-contacts {
    align-items: center;
    gap: 8px;
    font-size: 15px;
  }
  .footer-copy {
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 720px) {
  .hero__title { font-size: clamp(36px, 12vw, 56px); }
  .display-title { font-size: clamp(28px, 10vw, 48px); }
  .features__grid { grid-template-columns: minmax(0, 1fr); }
  .glab__stats { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .footer-contacts { align-items: center; }
  .hero__perks { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .admin__table td:nth-child(3),
  .admin__table th:nth-child(3) { display: none; }
  .gallery { padding: 52px 8px 16px; }
  .gallery__stage { margin: 0 36px; }
  .gallery__nav { width: 40px; height: 40px; }
}

@media (hover: hover) {
  .hero__perks li,
  .idea__points li,
  .timeline li,
  .feat,
  .shots__frame,
  .shots__note,
  .seo__copy p,
  .glab__stats > div {
    cursor: pointer;
  }

  .hero__card:hover {
    z-index: 12;
    transform: scale(1.1);
    filter:
      drop-shadow(0 22px 40px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 28px rgba(255, 101, 0, 0.55));
  }

  .hero__perks li {
    transition: transform 0.35s var(--ease), color 0.35s;
  }
  .hero__perks li:hover {
    transform: translateX(4px);
    color: #fff;
  }
  .hero__perks li:hover svg { color: var(--orange); filter: drop-shadow(0 0 8px var(--orange)); }

  .idea__points li {
    transition: transform 0.4s var(--ease);
  }
  .idea__points li:hover { transform: translateY(-6px); }
  .idea__points h3 { transition: color 0.35s; }
  .idea__points li:hover h3 { color: var(--orange); }

  .timeline li {
    transition: transform 0.4s var(--ease);
  }
  .timeline li:hover { transform: translateX(8px); }
  .timeline__num { transition: color 0.35s; }
  .timeline li:hover .timeline__num { color: var(--orange); }

  .shots__frame:hover {
    transform: rotateY(var(--ry)) rotateX(var(--rx)) rotateZ(var(--rz)) translate3d(0, -14px, 48px) scale(1.03);
    box-shadow:
      0 0 0 1.5px #ff8a3d,
      0 0 44px rgba(255, 101, 0, 0.55),
      0 32px 72px rgba(0, 0, 0, 0.6);
    z-index: 8;
  }
  .shots__note:hover {
    transform: rotateZ(var(--rz)) translateY(-6px);
    border-color: var(--orange);
  }

  .seo__copy p {
    transition: color 0.35s;
  }
  .seo__copy p:hover { color: var(--text); }

  .glab__stats > div {
    transition: transform 0.4s var(--ease);
  }
  .glab__stats > div:hover { transform: translateY(-6px); }
  .glab__stats dt { transition: color 0.35s; }
  .glab__stats > div:hover dt { color: var(--orange); }

  .faq summary {
    transition: color 0.3s;
  }
  .faq summary:hover { color: var(--orange); }

  .nav-mobile a {
    transition: color 0.25s;
  }
  .nav-mobile a:hover { color: var(--orange); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger, .reveal-scale, .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
  .hero.is-ready .hero__copy > *,
  .hero.is-ready .hero__stage,
  .hero.is-ready .hero__bg,
  .hero.is-ready .hero__card { animation: none; opacity: 1; transform: none; }
  .screen__bezel { transform: none; }
}
