/* ── Reset & Tokens ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050505;
  --surface: #0a0a0a;
  --surface-2: #0f0f0f;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ececec;
  --text-muted: #7a7a7a;
  --text-dim: #444;
  --accent: #fdb913;
  --accent-bright: #ffc933;
  --accent-hover: #c99500;
  --accent-dim: rgba(253, 185, 19, 0.08);
  --accent-glow: rgba(253, 185, 19, 0.22);
  --accent-border: rgba(253, 185, 19, 0.35);
  --font: 'Gotham', 'Gotham Bold', 'Montserrat', -apple-system, sans-serif;
  --layout-pad: clamp(24px, 5vw, 80px);
  --side-w: clamp(48px, 6vw, 88px);
  --content-gutter: calc(var(--layout-pad) + var(--side-w));
  --accent-pad: 28px;
  --text-gutter: calc(var(--layout-pad) + var(--side-w) + var(--accent-pad));
  --block-gap: 20px;
  --cta-gap: 28px;
  --intro-gap: 40px;
  --header-h: 56px;
  --marquee-h: 32px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-weight: 700;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: default;
}

body.is-loading {
  overflow: hidden;
}

body.is-loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader-logo {
  width: 64px;
  height: auto;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--border);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--accent);
  animation: preloaderLoad 1.2s var(--ease-out) infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes preloaderLoad {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(350%); }
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  z-index: 101;
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 0.08s linear;
}

/* ── Particles ── */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ── Back to Top ── */
.back-top {
  position: fixed;
  bottom: 32px;
  right: var(--layout-pad);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  background: rgba(5, 5, 5, 0.9);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(8px);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ── Status Badge ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 7px 12px;
}

.status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── Hero Mesh ── */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(253, 185, 19, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(253, 185, 19, 0.04) 0%, transparent 50%);
  animation: meshShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes meshShift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* ── Accent blocks (yellow left border) ── */
.accent-block {
  border-left: 2px solid var(--accent-border);
  padding-left: var(--accent-pad);
  width: 100%;
}

.hero-block {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 185, 19, 0.14) 0%, rgba(253, 185, 19, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* ── Background Logo ── */
.bg-logo-wrap {
  position: fixed;
  top: calc(var(--header-h) + var(--marquee-h));
  right: 0;
  bottom: 0;
  width: min(56vw, 680px);
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px var(--content-gutter) 12px 0;
  overflow: hidden;
}

.bg-logo {
  height: calc(100vh - var(--header-h) - var(--marquee-h) - 24px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: 0.14;
  filter: none;
  animation: bgLogoPulse 8s ease-in-out infinite;
}

@keyframes bgLogoPulse {
  0%, 100% { opacity: 0.11; }
  50% { opacity: 0.16; }
}

/* ── Side Decorations ── */
.side-decor {
  position: fixed;
  top: calc(var(--header-h) + var(--marquee-h));
  bottom: 0;
  width: var(--side-w);
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.side-left {
  left: 0;
  border-right: 1px solid var(--border);
}

.side-right {
  right: 0;
  border-left: 1px solid var(--border);
}

.side-rail {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rail-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent-border) 20%, var(--accent-border) 80%, transparent);
  opacity: 0.5;
}

.rail-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  animation: railTravel 8s var(--ease-out) infinite;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes railTravel {
  0%, 100% { top: 5%; opacity: 1; }
  50% { top: 92%; opacity: 0.4; }
}

.side-ticks {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.side-ticks span {
  display: block;
  width: 12px;
  height: 1px;
  background: var(--border-strong);
  animation: tickPulse 3s ease-in-out infinite;
}

.side-ticks span:nth-child(odd) { width: 18px; }
.side-ticks span:nth-child(1) { animation-delay: 0s; }
.side-ticks span:nth-child(2) { animation-delay: 0.3s; }
.side-ticks span:nth-child(3) { animation-delay: 0.6s; }
.side-ticks span:nth-child(4) { animation-delay: 0.9s; }
.side-ticks span:nth-child(5) { animation-delay: 1.2s; }
.side-ticks span:nth-child(6) { animation-delay: 1.5s; }
.side-ticks span:nth-child(7) { animation-delay: 1.8s; }
.side-ticks span:nth-child(8) { animation-delay: 2.1s; }
.side-ticks span:nth-child(9) { animation-delay: 2.4s; }
.side-ticks span:nth-child(10) { animation-delay: 2.7s; }

@keyframes tickPulse {
  0%, 100% { background: var(--border-strong); transform: scaleX(1); }
  50% { background: var(--accent); transform: scaleX(1.3); }
}

.side-orbit-cluster {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: var(--side-w);
  z-index: 2;
  pointer-events: none;
}

.side-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
}

.side-orbit-labels {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.side-orbit-labels-top {
  bottom: calc(50% + 36px);
}

.side-orbit-labels-bottom {
  top: calc(50% + 36px);
}

.side-orbit-labels span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}

.orbit-1 { animation-duration: 14s; }
.orbit-2 {
  inset: 8px;
  animation-duration: 10s;
  animation-direction: reverse;
  border-color: rgba(253, 185, 19, 0.15);
}
.orbit-3 {
  inset: 16px;
  animation-duration: 8s;
  border-style: dashed;
  border-color: rgba(253, 185, 19, 0.2);
}

.orbit::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--accent-glow);
}

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

.side-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent-dim), transparent);
  opacity: 0;
  animation: sideScan 6s ease-in-out infinite;
}

.side-scan-left { animation-delay: 0s; }
.side-scan-right { animation-delay: 3s; }

@keyframes sideScan {
  0% { top: -80px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── Layout ── */
.layout {
  width: 100%;
  padding-left: max(var(--content-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--content-gutter), env(safe-area-inset-right, 0px));
}

.content-block {
  width: 100%;
  text-align: left;
}

.full-bleed-list {
  width: 100%;
}

.main-grid {
  position: relative;
  z-index: 1;
}

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

/* ── Marquee ── */
.marquee-wrap {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--marquee-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.marquee .dot {
  color: var(--accent);
  font-size: 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
  box-shadow: 0 0 16px var(--accent-glow);
}

.btn-text,
.btn-arrow {
  position: relative;
}

.btn-arrow {
  transition: transform 0.35s var(--ease-spring);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-sm {
  padding: 10px 16px;
}

.btn-lg {
  padding: 14px 22px;
}

.btn-label-short {
  display: none;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + var(--marquee-h) + 48px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy {
  display: block;
}

.hero-headline {
  font-size: clamp(1.375rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 var(--block-gap);
  max-width: 100%;
}

.split-lines .line {
  display: block;
  overflow: hidden;
}

.split-lines .line-inner {
  display: block;
  max-width: 100%;
  transform: translateY(110%);
  animation: lineReveal 0.8s var(--ease-out) forwards;
}

.split-lines .line:nth-child(1) .line-inner { animation-delay: 0.15s; }
.split-lines .line:nth-child(2) .line-inner { animation-delay: 0.28s; }
.split-lines .line:nth-child(3) .line-inner { animation-delay: 0.41s; }

@keyframes lineReveal {
  to { transform: translateY(0); }
}

.hero-sub {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 var(--cta-gap);
}

.hero-aside {
  width: 100%;
  position: relative;
}

.stat-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--surface);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.stat-item:hover {
  background: var(--surface-2);
  border-bottom-color: var(--accent);
}

.stat-val {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.stat-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.corner-bracket {
  display: none;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: calc(var(--layout-pad) + var(--side-w));
  right: calc(var(--layout-pad) + var(--side-w));
  height: 1px;
  background: linear-gradient(90deg, var(--accent-border), transparent 60%);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 var(--block-gap);
  max-width: 720px;
}

.section-desc {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.section-intro {
  margin-bottom: var(--intro-gap);
}

/* ── Why Us ── */

.why-us-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 820px;
}

/* ── Services ── */
.services-list {
  width: 100%;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.4s var(--ease-out), background 0.3s ease;
  cursor: default;
  width: 100%;
}

.service-row:first-child {
  border-top: 1px solid var(--border);
}

.service-row:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, var(--accent-dim), transparent 50%);
}

.service-num {
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 3px;
}

.service-body h3 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.service-body p {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 820px;
}

.service-arrow {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: transform 0.35s var(--ease-spring), color 0.3s ease;
  padding-top: 2px;
}

.service-row:hover .service-arrow {
  transform: translate(2px, -2px);
  color: var(--accent);
}

/* ── Partners ── */
.partners-stack {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
}

.partner-row {
  position: relative;
  padding: 28px;
  background: var(--surface);
  transition: background 0.3s ease;
}

.partner-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(253, 185, 19, 0.15);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.partner-row:hover {
  background: var(--surface-2);
}

.partner-row:hover::before {
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.partner-row:active::before {
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.partner-stealth {
  background: #080808;
}

.partner-stealth:hover {
  background: #0a0a0a;
}

.partner-id {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.partner-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  padding: 3px 8px;
}

.partner-tag.stealth {
  color: var(--text-dim);
  border-color: var(--border);
}

.partner-name {
  font-size: 0.8125rem;
  font-weight: 700;
}

.partner-name.dim {
  color: var(--text-dim);
}

.partner-quote {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.55;
  border: none;
  margin-bottom: 8px;
}

.partner-cite {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-dim);
  font-style: normal;
  letter-spacing: 0.04em;
}

.partner-detail {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing-stack {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
}

.pricing-row {
  position: relative;
  padding: 28px;
  background: var(--surface);
  transition: background 0.3s ease;
}

.pricing-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(253, 185, 19, 0.15);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.pricing-row:hover {
  background: var(--surface-2);
}

.pricing-row:hover::before {
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.pricing-row:active::before {
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.pricing-header {
  margin-bottom: 10px;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-row h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.pricing-sub {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-row p:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
}

/* ── Footer ── */
.footer {
  padding: 80px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-block {
  margin-bottom: var(--intro-gap);
}

.footer-headline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 var(--block-gap);
  max-width: 640px;
}

.footer-sub {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 var(--cta-gap);
  max-width: 560px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
  width: 100%;
}

.footer-bio {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 640px;
}

.footer-social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  width: 100%;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface);
  transition: background 0.3s ease, color 0.3s ease, padding-left 0.35s var(--ease-out);
}

.social-link:hover {
  background: var(--accent-dim);
  color: var(--text);
  padding-left: var(--accent-pad);
}

.social-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: currentColor;
  opacity: 0.65;
}

.social-link:hover .social-icon {
  opacity: 1;
}

.social-arrow {
  color: var(--text-dim);
  transition: transform 0.35s var(--ease-spring), color 0.3s ease;
}

.social-link:hover .social-arrow {
  transform: translate(2px, -2px);
  color: var(--accent);
}

.footer-copy {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  :root {
    --content-gutter: var(--layout-pad);
    --text-gutter: calc(var(--layout-pad) + var(--accent-pad));
  }

  .section::before {
    left: var(--content-gutter);
    right: var(--content-gutter);
  }

  .side-decor,
  .side-orbit-cluster {
    display: none;
  }

  .status-badge {
    display: none;
  }

  .bg-logo-wrap {
    display: flex;
    width: min(68vw, 300px);
    padding-right: var(--content-gutter);
  }

  .bg-logo {
    height: min(52vh, 360px);
    opacity: 0.08;
  }

  .hero {
    align-items: flex-start;
    min-height: auto;
    padding: calc(var(--header-h) + var(--marquee-h) + 40px) 0 64px;
  }

  .hero-headline {
    font-size: clamp(1.25rem, 5.4vw, 1.75rem);
  }

  .hero-sub {
    font-size: 0.8125rem;
  }

  .partners-stack,
  .pricing-stack {
    grid-template-columns: 1fr;
  }

  .stat-stack,
  .footer-social {
    grid-template-columns: 1fr;
  }

  .back-top {
    right: var(--content-gutter);
  }
}

@media (max-width: 600px) {
  .marquee {
    font-size: 0.5625rem;
    gap: 24px;
  }

  .header .btn-sm {
    padding: 9px 12px;
    font-size: 0.625rem;
    letter-spacing: 0.04em;
  }

  .hero {
    padding: calc(var(--header-h) + var(--marquee-h) + 32px) 0 56px;
  }

  .hero-headline {
    font-size: clamp(1.1875rem, 6.2vw, 1.5rem);
    line-height: 1.24;
  }

  :root {
    --cta-gap: 24px;
    --intro-gap: 32px;
  }

  .hero-sub {
    line-height: 1.6;
  }

  .section {
    padding: 64px 0;
  }

  .service-row {
    padding: 24px 0;
  }

  .service-row:hover {
    padding-left: 12px;
  }

  .partner-row,
  .pricing-row {
    padding: 24px;
  }

  .footer {
    padding: 64px 0 40px;
  }
}

@media (max-width: 400px) {
  .btn-label-long {
    display: none;
  }

  .btn-label-short {
    display: inline;
  }

  .header .btn-sm {
    padding: 10px 14px;
  }
}

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

  .marquee,
  .rail-dot,
  .side-scan,
  .orbit,
  .side-ticks span {
    animation: none !important;
  }

  .bg-logo {
    animation: none !important;
  }

  .split-lines .line-inner {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }

  .preloader,
  .particles {
    display: none;
  }

  body.is-loading {
    overflow: auto;
  }
}
