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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  font-family: 'Inter', sans-serif;
  background: #070707;
  color: #F0EBE0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Design Tokens ─────────────────────────────────────────────── */
:root {
  --black: #070707;
  --bg-1: #0F0F0F;
  --bg-2: #151515;
  --bg-3: #1D1D1D;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #BFFF00;
  --text: #F0EBE0;
  --muted: #888;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --container: 1280px;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

/* ─── Utility ───────────────────────────────────────────────────── */
.mono {
  font-family: var(--font-mono);
}

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

.text-xs {
  font-size: 0.72rem;
}

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

.tracking-wide {
  letter-spacing: 0.1em;
}

.tracking-widest {
  letter-spacing: 0.18em;
}

/* ─── Grain Overlay ─────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
}

.grain svg {
  width: 100%;
  height: 100%;
}

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

/* ─── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  transition: color 0.25s ease;
}

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

.logo:hover .logo-mark {
  filter: drop-shadow(0 0 6px rgba(191, 255, 0, 0.55));
}

.logo-mark {
  width: 26px;
  height: 26px;
  transition: filter 0.25s ease;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(7, 7, 7, 0.97);
  border-top: 1px solid var(--border);
  padding: 1.5rem var(--pad-x);
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--text);
}

.mobile-link-cta {
  color: var(--accent);
  border-bottom: none;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 3px;
  cursor: pointer;
  transition: color 0.28s ease, border-color 0.28s ease, transform 0.2s ease, box-shadow 0.28s ease;
  border: none;
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
}

/* Sweep fill layer */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}

.btn:hover::before {
  transform: translateX(0);
}

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

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

.btn-sm {
  font-size: 0.8rem;
  padding: 0.58rem 1.2rem;
}

.btn-lg {
  font-size: 0.92rem;
  padding: 0.95rem 2.2rem;
}

.btn-full {
  width: 100%;
}

/* Accent — chartreuse fill, hover darkens */
.btn-accent {
  background: var(--accent);
  color: #070707;
  box-shadow: 0 0 0 0 rgba(191, 255, 0, 0);
}

.btn-accent::before {
  background: rgba(0, 0, 0, 0.15);
}

.btn-accent:hover {
  box-shadow: 0 6px 28px rgba(191, 255, 0, 0.22);
}

/* Outline — border brightens, fill sweeps in */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline::before {
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* Ghost — same as outline */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost::before {
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

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

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding-top: 68px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 6rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* ─── Left: text content ─── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(191, 255, 0, 0.22);
  border-radius: 2rem;
  margin-bottom: 2.2rem;
  font-size: 0.7rem;
  color: rgba(191, 255, 0, 0.8);
  letter-spacing: 0.1em;
  background: rgba(191, 255, 0, 0.04);
  width: fit-content;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(191, 255, 0, 0.3);
  animation: pulse-ring 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-line { display: block; }

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

.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #999;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  flex: 1;
  padding-right: 1.5rem;
}

.hero-stat-top {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.3rem;
}

.hero-stat-num {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.hero-stat-unit {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hero-stat-label {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stat-div {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin: 0 1.5rem 0 0;
  min-height: 48px;
}

/* ─── Right: bag visual ─── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.hero-visual-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 55%,
    rgba(191, 255, 0, 0.09) 0%,
    rgba(191, 255, 0, 0.03) 40%,
    transparent 70%);
  pointer-events: none;
}

.hero-bag-img {
  width: 100%;
  max-width: 440px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  mix-blend-mode: multiply;
  animation: float-bag 7s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(191,255,0,0.12));
}

@keyframes float-bag {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* Text content — sits above overlay */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 7rem) var(--pad-x);
}

/* License tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(191, 255, 0, 0.25);
  border-radius: 2rem;
  margin-bottom: 2.5rem;
  font-size: 0.7rem;
  color: rgba(191, 255, 0, 0.85);
  letter-spacing: 0.1em;
  background: rgba(191, 255, 0, 0.04);
}

/* Pulse dot */
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(191, 255, 0, 0.3);
  animation: pulse-ring 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(191, 255, 0, 0.8), transparent);
  animation: scroll-drop 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scroll-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ─── Sections (shared) ─────────────────────────────────────────── */
.section {
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.services {
  background: var(--bg-1);
}

.market {
  background: radial-gradient(circle at 100% 50%, rgba(191, 255, 0, 0.03) 0%, var(--bg-2) 40%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why {
  background: var(--bg-1);
}

.compliance-section {
  background: radial-gradient(circle at 0% 50%, rgba(191, 255, 0, 0.04) 0%, var(--bg-2) 50%);
}

.process-section {
  background: var(--bg-1);
}

.partner-section {
  background: var(--bg-2);
}

/* Section header */
.section-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1rem;
  color: #999;
  max-width: 560px;
  line-height: 1.75;
}

/* ─── Services Grid ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #8CC200);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover .card-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(191, 255, 0, 0.5));
}

.card-num {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.card-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
  transition: color 0.25s;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(191, 255, 0, 0.15);
  background: rgba(191, 255, 0, 0.03);
  border-radius: 4px;
  color: var(--muted);
}

/* ─── Market ────────────────────────────────────────────────────── */
.market-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.market-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 1rem 0 1.5rem;
}

.market-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
  padding-left: 4rem;
  padding-top: 2.5rem;
}

.market-stat {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.market-stat:first-child {
  padding-top: 0;
}

.market-num {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.market-label {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Why Orbit ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2.8rem 2.2rem;
  transition: background 0.3s, transform 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

.why-num {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}

.why-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1rem;
}

.why-desc {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.75;
}

/* ─── Compliance ────────────────────────────────────────────────── */
.compliance-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.compliance-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 1rem 0 1.5rem;
}

/* License card */
.license-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.lc-mark {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.lc-company {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.lc-type {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.lc-body {
  padding: 0 1.75rem;
}

.lc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.lc-row:last-child {
  border-bottom: none;
}

.lc-key {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.lc-val {
  font-size: 0.82rem;
  color: var(--text);
  text-align: right;
}

.lc-val.mono.accent {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
}

/* Compliance checklist */
.compliance-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(191, 255, 0, 0.12);
  border: 1px solid rgba(191, 255, 0, 0.3);
  color: var(--accent);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.check-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.check-item p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
}

/* ─── Process ───────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 1rem;
}

.process-step {
  padding: 0 2rem 0 0;
  position: relative;
}

.step-connector {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(191, 255, 0, 0.5), rgba(255, 255, 255, 0.1));
}

.step-line-last {
  background: transparent;
}

.step-num {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.7;
}

/* ─── Partner Form ──────────────────────────────────────────────── */
.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.partner-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 1rem 0 1.5rem;
}

.partner-note {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Form */
.partner-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.form-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-input::placeholder {
  color: #555;
}

.form-input:focus {
  border-color: rgba(191, 255, 0, 0.4);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #1a1a1a;
  color: var(--text);
}

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

.form-disclaimer {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2.5rem;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-license {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── Scroll Reveal — handled by GSAP ──────────────────────────── */
/* Initial hidden states set by GSAP fromTo; no CSS needed here */

/* ─── Mobile — hide video ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-inner>.btn-outline {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .market-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .market-stats {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 0;
  }

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

  .compliance-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .partner-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stat-div {
    display: none;
  }

  .hero-stat {
    padding-right: 0;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-license {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}