﻿:root {
  --bg: #06070b;
  --surface: #0f121c;
  --surface-soft: #171b29;
  --text: #f5f7ff;
  --muted: #adb3c9;
  --line: rgba(255, 255, 255, 0.16);
  --accent-blue: #4e78ff;
  --accent-pink: #ff4ea2;
  --header-h: 78px;
  --axis-col: 88px;
  --radius: 18px;
  --container: min(1220px, 92vw);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-pink) var(--bg);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff4ea2 0%, #ff72b8 60%, #4e78ff 100%);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff4ea2;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% 20%, #141a2b 0%, var(--bg) 36%) fixed;
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

main[data-page] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

body.page-ready main[data-page] {
  opacity: 1;
  transform: translateY(0);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  pointer-events: none;
}

.loader-inner {
  width: min(420px, 72vw);
  position: relative;
  z-index: 1;
}

.loader-logo {
  width: clamp(180px, 40vw, 260px);
  margin: 0 auto 28px;
}

.loader-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
  animation: loadbar 1.1s ease-in-out infinite;
}

@keyframes loadbar {
  0% {
    transform: scaleX(0.05);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(0.75);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.6;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(6, 7, 11, 0.75);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(118px, 16vw, 156px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: rgba(222, 230, 170, 0.9);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  min-width: 0;
}

.nav-link {
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d5daeb;
  transition: color 0.3s var(--ease-out);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 7px 10px;
  cursor: pointer;
}

.lang-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.menu-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 4px;
}

.menu-social a,
.footer-socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(78, 120, 255, 0.44), rgba(255, 78, 162, 0.34));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  opacity: 1;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.menu-social a:hover,
.footer-socials a:hover,
.menu-social a:focus-visible,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), 0 0 14px rgba(78, 120, 255, 0.24);
}

.menu-social img,
.footer-socials img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1) contrast(1.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  place-items: center;
  cursor: pointer;
  color: #fff;
  flex: 0 0 auto;
  margin-left: auto;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.menu-toggle .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
}

body.nav-open .menu-toggle .material-symbols-outlined {
  transform: rotate(90deg);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: calc(var(--header-h) + 52px) 0 clamp(18px, 3vw, 34px);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05) brightness(0.48);
}

.hero-static {
  background:
    radial-gradient(circle at 18% 30%, rgba(78, 120, 255, 0.28), transparent 46%),
    radial-gradient(circle at 82% 75%, rgba(255, 78, 162, 0.22), transparent 45%),
    #05060b;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 7, 11, 0.95) 10%, rgba(6, 7, 11, 0.2) 58%),
    linear-gradient(to right, rgba(6, 7, 11, 0.7) 0%, rgba(6, 7, 11, 0.1) 58%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(920px, 94vw);
}

.hero-kicker {
  margin: 0;
  color: #d0d6eb;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.hero-title {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 8vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.accent-line {
  display: block;
  width: min(220px, 48vw);
  height: 2px;
  margin: 22px 0 20px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
}

.hero-subtitle {
  max-width: 680px;
  margin: 0;
  color: #d5daeb;
  font-size: clamp(0.95rem, 2.1vw, 1.2rem);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(92deg, rgba(78, 120, 255, 0.26), rgba(255, 78, 162, 0.2));
}

.btn-outline,
.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: #e6ebff;
}

.btn-outline:hover,
.btn-ghost:hover,
.btn-outline:focus-visible,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
}

.scroll-indicator {
  position: absolute;
  left: min(4vw, 46px);
  bottom: 30px;
  margin: 0;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 18px;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 1px;
  height: 18px;
  background: linear-gradient(var(--accent-blue), var(--accent-pink));
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
}

.section {
  padding: clamp(56px, 8vw, 112px) 0;
}

.section-title {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.section-text {
  margin: 0;
  color: var(--muted);
}

.kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: #ced4eb;
}

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

.highlight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  min-height: 148px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

.highlight-card p {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
}

.editorial {
  display: grid;
  gap: clamp(22px, 4vw, 52px);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.editorial-copy .btn {
  margin-top: 22px;
}

.media-frame {
  border-radius: var(--radius);
  min-height: clamp(260px, 46vw, 480px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(78, 120, 255, 0.18), rgba(255, 78, 162, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.media-frame img[data-fit="contain"] {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

[data-fallback-media].is-broken {
  opacity: 0;
}

.axis-wrap {
  padding-top: clamp(20px, 3vw, 56px);
  margin-top: 0;
}

.axis-wrap .axis-section {
  min-height: 0;
  align-items: start;
  padding: 0 0 clamp(34px, 5vw, 68px);
}

.axis-wrap .axis-section:first-of-type {
  padding-top: 0;
}

.axis-wrap .axis-section:first-of-type.reveal {
  opacity: 1;
  transform: none;
}

.axis-story {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  --dotY: 120px;
  --axis-x-offset: 0px;
  --axis-sticky-bottom-gap: 36px;
}

.axis-sticky {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  height: calc(100svh - var(--header-h) - var(--axis-sticky-bottom-gap));
  margin-bottom: calc(-1 * (100svh - var(--header-h) - var(--axis-sticky-bottom-gap)));
  pointer-events: none;
  z-index: 2;
}

.axis-line {
  display: none;
  position: absolute;
  left: calc(50% + var(--axis-x-offset));
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(78, 120, 255, 0.5), rgba(255, 78, 162, 0.5));
}

.axis-dot {
  position: absolute;
  left: calc(50% + var(--axis-x-offset) - 6.5px);
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(140deg, var(--accent-blue), var(--accent-pink));
  transform: translate3d(0, var(--dotY), 0);
  box-shadow: 0 0 0 9px rgba(255, 78, 162, 0.12), 0 0 16px rgba(78, 120, 255, 0.35);
  transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

@media (min-width: 901px) {
  .axis-story {
    --axis-x-offset: 24px;
    --axis-sticky-bottom-gap: 88px;
  }
}

.axis-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--axis-col) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  min-height: max(62vh, 420px);
  min-width: 0;
}

.axis-media {
  grid-column: 1;
  min-width: 0;
}

.axis-media .media-frame {
  min-height: 0;
  aspect-ratio: 3 / 4;
  min-height: clamp(520px, 72vh, 860px);
  max-height: none;
}

.career-highlights {
  padding-top: 0;
  padding-bottom: 0;
}

.axis-content {
  grid-column: 3;
  min-width: 0;
}

.axis-section.reverse .axis-media {
  grid-column: 3;
}

.axis-section.reverse .axis-content {
  grid-column: 1;
}

.axis-year {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.22);
}

.axis-title {
  margin: 12px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.12rem, 2vw, 1.62rem);
}

.axis-text {
  margin: 0;
  color: var(--muted);
}

.axis-list {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
}

.axis-list li {
  color: #e6ebff;
}

.axis-list li::marker {
  color: var(--accent-pink);
}

.axis-note {
  margin: 14px 0 0;
  color: #cbd2ea;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.mini-panel,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: clamp(20px, 3vw, 34px);
}

.mini-panel h2,
.panel h2 {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.3vw, 1.52rem);
  letter-spacing: 0.07em;
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.mini-list li::marker {
  color: var(--accent-blue);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.cards-stack {
  display: grid;
  gap: 12px;
}

.soft-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.015);
}

.soft-card h3 {
  margin: 0 0 7px;
  text-transform: uppercase;
  font-size: 0.93rem;
  letter-spacing: 0.08em;
}

.soft-card p {
  margin: 0;
  color: var(--muted);
}

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

.testimonial {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.01);
}

.testimonial p {
  margin: 0 0 12px;
  color: #e8ecfa;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-placeholder {
  text-align: center;
  min-height: 200px;
  display: grid;
  place-items: center;
}

.booking-placeholder p {
  margin: 0;
  color: var(--muted);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
}

.stat-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 16px);
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(14px, 2vw, 20px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.stat-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #cfd6ef;
}

.stat-value {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.stat-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.sponsor-logos {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.sponsor-logos img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.cta-band {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-form {
  display: grid;
  gap: 9px;
}

.contact-form label {
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d6dcef;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  padding: 12px 13px;
  font: inherit;
}

.contact-form select option {
  color: #000;
  background: #fff;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: rgba(78, 120, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(78, 120, 255, 0.18);
}

.check-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0 6px;
}

.check-wrap input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.logo-card {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pivot-icon {
  width: 34px;
  height: 34px;
}

.contact-portrait-panel {
  padding: 12px;
}

.contact-portrait {
  aspect-ratio: 3 / 4;
  min-height: clamp(420px, 54vw, 760px);
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 20px;
  max-width: min(440px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(8, 10, 16, 0.96);
  color: #e9edff;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  z-index: 100;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast a {
  color: #9fb4ff;
  text-decoration: underline;
}

.submit-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.72);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.submit-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.submit-modal-card {
  width: min(520px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(8, 11, 23, 0.98), rgba(15, 18, 32, 0.98));
  padding: clamp(22px, 3vw, 30px);
}

.submit-modal-text {
  margin: 0 0 16px;
  color: #e8ecfa;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding: 32px 0 24px;
  background: rgba(3, 4, 8, 0.9);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-top p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #7f869f;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9aa3c0;
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-powered .pivot-icon {
  width: 36px;
  height: 36px;
}

.footer-powered:hover,
.footer-powered:focus-visible {
  color: #cfd8f8;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(340px, 90vw);
    height: calc(100svh - var(--header-h));
    background: rgba(6, 7, 11, 0.98);
    border-left: 1px solid var(--line);
    transform: translateX(101%);
    transition: transform 0.38s var(--ease-out);
    padding: 26px 24px;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .menu-social {
    display: flex;
    gap: 16px;
    margin-top: auto;
  }

  .hero {
    padding-bottom: clamp(18px, 4vw, 30px);
  }

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

  .editorial,
  .two-col,
  .metrics-grid,
  .testimonial-grid,
  .stat-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  :root {
    --axis-col: 34px;
  }

  .axis-line {
    display: block;
    left: 17px;
    transform: none;
  }

  .axis-dot {
    left: calc(17px - 6.5px);
  }

  .axis-story {
    width: 100%;
    max-width: 100%;
  }

  .axis-section,
  .axis-section.reverse {
    min-height: auto;
    padding: 22px 0;
    grid-template-columns: var(--axis-col) minmax(0, 1fr);
    align-items: start;
    width: 100%;
    min-width: 0;
  }

  .axis-media,
  .axis-content,
  .axis-section.reverse .axis-media,
  .axis-section.reverse .axis-content {
    grid-column: 2;
  }

  .axis-media {
    margin-bottom: 12px;
    width: 100%;
  }

  .axis-media .media-frame {
    width: min(100%, 360px);
    margin-inline: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: min(70svh, 560px);
  }

  .scroll-indicator {
    left: 22px;
    bottom: 20px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: clamp(92px, 24vw, 118px);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .axis-media .media-frame {
    width: min(100%, 320px);
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: min(66svh, 500px);
  }
}

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

  main[data-page],
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
