/* ═══════════════════════════════════════════════════════════════
   GLOBAL RESET
   border-box everywhere: width/padding never overflow. Prevents the
   content-box class of responsive overflow bugs.
   ═══════════════════════════════════════════════════════════════ */

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

/* ═══════════════════════════════════════════════════════════════
   HERO CAROUSEL COMPONENT
   ═══════════════════════════════════════════════════════════════ */

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  /* clip (not hidden): stops horizontal scroll without turning body into a
     scroll container — hidden + height:100% breaks window scroll & sticky */
  overflow-x: clip;
  background: var(--surface-canvas);
}

.hero-carousel {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--surface-canvas);
}

/* ── Slides ── */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s linear;
}

.hero-slide.active img {
  transform: scale(1.05);
  /* Slow zoom effect while active */
}

/* Gradient overlay to ensure nav points are visible against light/busy images */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  z-index: 3;
  pointer-events: none;
}

/* ── Hero Content ── */
.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 10;
  color: #ffffff;
  /* Must remain white as it overlays images */
  max-width: 600px;
  opacity: 0;
  margin-top: var(--space-8);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.2s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  margin-top: 0;
}

.hero-content h2 {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-h1);
  margin: 0 0 var(--space-4) 0;

  /* Apple-Inspired Smooth Sweep using STRICT Global Tokens */
  background: linear-gradient(90deg,
      var(--color-brand-dim) 0%,
      var(--color-brand-bright) 25%,
      var(--color-brand) 50%,
      var(--color-brand-dim) 75%,
      var(--color-brand-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Subtle shadow from tokens to separate from background */
  filter: drop-shadow(0 2px 12px var(--glass-shadow-color));
}

.hero-content p {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  margin: 0 0 var(--space-8) 0;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* ── Navigation Controls ── */
.hero-nav {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: min(1100px, calc(100% - var(--space-8)));
  gap: var(--space-3);
  z-index: 10;
}

.nav-btn {
  height: 56px;
  padding: var(--space-1) var(--space-6);
  border-radius: var(--radius-overlay);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  cursor: pointer;
  background: var(--glass-l00-fill);
  backdrop-filter: blur(var(--glass-l00-blur));
  -webkit-backdrop-filter: blur(var(--glass-l00-blur));
  border: 1px solid var(--glass-l00-border);
  /* GSAP owns transform — only transition visual props */
  will-change: transform;
  transform: translateZ(0);
  transition:
    background    var(--duration-base) var(--ease-out),
    border-color  var(--duration-base) var(--ease-out),
    box-shadow    var(--duration-base) var(--ease-out),
    backdrop-filter var(--duration-base) var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-l00-shadow);
}

/* Inner rim for premium glass feel */
.nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow:
    0 1px 0 0 var(--glass-rim-top-mode) inset,
    0 -1px 0 0 var(--glass-rim-bottom-mode) inset,
    1px 0 0 0 var(--glass-rim-left-mode) inset;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.nav-icon-wrapper {
  width: 44px;
  height: 44px;
  background: var(--surface-canvas);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glass-l00-shadow);
  z-index: 3;
}

.nav-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--text-primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--duration-base) var(--ease-out);
  z-index: 3;
}

.nav-btn span {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  opacity: 0.9;
  transition: all var(--duration-fast);
  white-space: nowrap;
  z-index: 3;
}

/* Hover State */
.nav-btn:hover {
  background: var(--glass-l00-fill);
  box-shadow: var(--glass-l00-shadow);
}

.nav-btn:hover svg {
  transform: scale(1.1);
}

/* Active State */
.nav-btn.active {
  background: var(--glass-l00-fill);
  border-color: var(--color-brand);
  box-shadow:
    0 0 0 2px var(--color-brand-tint-20),
    var(--glass-l00-shadow),
    0 0 30px -10px var(--color-brand-tint-30);
}

.nav-btn.active svg {
  stroke: var(--color-brand);
  stroke-width: 2;
}

.nav-btn.active span {
  color: var(--color-brand-deep);
  font-weight: var(--weight-bold);
  opacity: 1;
}

/* Active Shimmer */
.nav-btn.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, var(--glass-band-top)), transparent);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Progress Bar */
.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--color-brand);
  z-index: 4;
  border-radius: 0 2px 2px 0;
}

/* When active, the progress animates linearly via JS */
.nav-btn.active .nav-progress {
  transition: width 0.1s linear;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: var(--type-h2);
  }

  .hero-content p {
    font-size: var(--type-body);
  }

  /* Hero nav: dot indicators on mobile */
  .hero-nav {
    bottom: clamp(16px, 4vw, 28px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    width: auto;
    max-width: calc(100% - 32px);
  }

  .nav-btn {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    min-width: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.40);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background var(--duration-base), width var(--duration-base), border-radius var(--duration-base);
  }

  .nav-btn::before { display: none; }

  .nav-btn span,
  .nav-btn svg,
  .nav-icon-wrapper { display: none; }

  .nav-btn.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: var(--color-brand);
    border-color: transparent;
    box-shadow: none;
  }

  .nav-btn.active::after { display: none; }

  .nav-progress { display: none; }
}

/* ── Header Variation: Strict Glass Overlay ── */
.site-header {
  position: fixed;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--space-8));
  max-width: var(--layout-max-width);
  z-index: var(--z-sticky);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-overlay);
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: var(--space-6);
}

.header-nav a {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  color: var(--color-white);
  text-decoration: none;
  font-weight: var(--weight-medium);
  opacity: 0.85;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  transition: all var(--duration-fast);
}

.header-nav a:hover {
  opacity: 1;
  color: var(--color-brand);
}

/* ── Hamburger Toggle Button (Mobile) ── */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  z-index: calc(var(--z-sticky) + 10);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  transition: background 240ms cubic-bezier(0.32, 0.72, 0, 1);
}

.mobile-menu-toggle:hover {
  background: rgba(0, 170, 170, 0.12);
}

.mobile-menu-toggle:active {
  transform: scale(0.94);
}

/* 2-line morphing icon */
.ham-icon {
  width: 22px;
  height: 14px;
  position: relative;
  pointer-events: none;
}

.ham-line {
  display: block;
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.32, 0.72, 0, 1);
}

.ham-line-top {
  top: 0;
}

.ham-line-bot {
  bottom: 0;
}

.mobile-menu-toggle.is-active .ham-line-top {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.is-active .ham-line-bot {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 900px) {

  .header-nav,
  .header-actions {
    display: none;
  }

  .site-header {
    top: var(--space-3);
    width: calc(100% - 32px);
    padding: var(--space-2) var(--space-3);
    padding-right: var(--space-2);
    border-radius: var(--radius-card);
    /* Inherit glass-l00 utility (fill + blur + border + shadow) — no custom override. */
  }

  .header-logo img {
    height: 28px;
  }

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

/* ── Radial Reveal Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-sticky) + 5);
  background: rgba(8, 20, 20, 0.94);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  clip-path: circle(0px at var(--mx, 100%) var(--my, 0));
  transition: clip-path 720ms cubic-bezier(0.32, 0.72, 0, 1);
  will-change: clip-path;
  pointer-events: none;
  overflow: hidden;
}

.mobile-menu.is-open {
  clip-path: circle(150% at var(--mx) var(--my));
  pointer-events: auto;
}

/* Origin glow */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 480px at var(--mx, 100%) var(--my, 0),
      rgba(0, 170, 170, 0.22) 0%,
      rgba(0, 170, 170, 0.08) 35%,
      transparent 70%);
  opacity: 0;
  transition: opacity 1200ms ease-out;
  pointer-events: none;
  z-index: 0;
}

.mobile-menu.is-open::before {
  opacity: 1;
}

/* Grain overlay */
.mobile-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Content wrapper */
.mobile-menu-content {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--space-5) var(--layout-margin-mob);
  z-index: 1;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 280ms ease-out, filter 280ms ease-out;
  transition-delay: 0ms;
  overflow: hidden;
}

.mobile-menu.is-open .mobile-menu-content {
  opacity: 1;
  filter: blur(0);
  transition-delay: 380ms;
}

/* Topbar */
.mm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mm-eyebrow {
  font-family: var(--font-mono, ui-monospace, 'SF Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  cursor: pointer;
  transition: background 240ms cubic-bezier(0.32, 0.72, 0, 1), color 240ms;
}

.mobile-menu-close:hover {
  background: rgba(0, 170, 170, 0.12);
  color: var(--color-brand);
}

/* Numbered nav */
.mm-nav {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.mm-link {
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity 520ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 520ms cubic-bezier(0.32, 0.72, 0, 1),
    filter 520ms cubic-bezier(0.32, 0.72, 0, 1),
    color 220ms ease;
}

.mm-link:last-child {
  border-bottom: none;
}

.mm-num {
  font-family: var(--font-mono, ui-monospace, 'SF Mono', monospace);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 6px;
  transition: color 220ms ease;
}

.mm-label {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7.5vw, 4rem);
  font-weight: var(--weight-extrabold);
  line-height: 1.02;
  letter-spacing: -0.02em;
  min-width: 0;
  overflow: hidden;
  text-overflow: clip;
}

.mm-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 280ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 280ms cubic-bezier(0.32, 0.72, 0, 1),
    color 220ms;
}

/* Staggered reveal */
.mobile-menu.is-open .mm-link {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.mobile-menu.is-open .mm-link:nth-child(1) {
  transition-delay: 420ms, 420ms, 420ms, 0ms;
}

.mobile-menu.is-open .mm-link:nth-child(2) {
  transition-delay: 500ms, 500ms, 500ms, 0ms;
}

.mobile-menu.is-open .mm-link:nth-child(3) {
  transition-delay: 580ms, 580ms, 580ms, 0ms;
}

/* Magnetic hover */
.mm-link:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.mm-link:hover .mm-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--color-brand);
}

.mm-link:hover .mm-num {
  color: var(--color-brand);
}

/* Footer CTA */
.mm-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(0, 170, 170, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 480ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 480ms cubic-bezier(0.32, 0.72, 0, 1);
}

.mobile-menu.is-open .mm-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 680ms;
}

.mm-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 14px 14px 24px;
  border-radius: 999px;
  background: var(--color-brand, #00AAAA);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  min-height: 48px;
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1),
    background 240ms ease;
}

.mm-cta:hover {
  transform: translateY(-1px);
  background: #00bdbd;
}

.mm-cta:active {
  transform: scale(0.98);
}

.mm-cta-arrow {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1),
    background 240ms ease;
}

.mm-cta:hover .mm-cta-arrow {
  transform: translate(2px, -2px) scale(1.05);
  background: rgba(255, 255, 255, 0.28);
}

.mm-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono, ui-monospace, 'SF Mono', monospace);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Watermark */
.mm-watermark {
  position: absolute;
  bottom: -8vw;
  left: -2vw;
  right: -2vw;
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.025);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    clip-path: none;
    opacity: 0;
    transition: opacity 200ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
  }

  .mobile-menu::before {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   OPTION 4: EDITORIAL SPLIT
═══════════════════════════════════════════════════════════════ */
.section-editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 150vh;
  background: var(--surface-base);
}

.split-left {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.split-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-20) var(--space-12);
}

.split-content {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .section-editorial-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-left {
    position: relative;
    height: 60vh;
  }

  .split-right {
    padding: var(--space-12) var(--space-6);
  }
}

/* ═══════════════════════════════════════════════════════════════
   OPTION 5: GLASS DECK
═══════════════════════════════════════════════════════════════ */
.section-glass-deck {
  position: relative;
  min-height: 250vh;
}

.deck-container {
  position: relative;
}

.deck-card {
  position: sticky;
  top: var(--space-32);
  padding: var(--space-12);
  margin-bottom: var(--space-8);
  border-radius: var(--radius-card);
  box-shadow: var(--glass-l2-shadow);
  backdrop-filter: blur(var(--glass-l2-blur)) saturate(var(--glass-l2-sat));
  -webkit-backdrop-filter: blur(var(--glass-l2-blur)) saturate(var(--glass-l2-sat));
  background: var(--surface-glass-hero);
  border: 1px solid var(--surface-border-glass);
  transition: transform var(--duration-base);
}

.deck-card:nth-child(1) {
  top: calc(var(--space-32) + 0px);
  z-index: 1;
}

.deck-card:nth-child(2) {
  top: calc(var(--space-32) + 40px);
  z-index: 2;
}

.deck-card:nth-child(3) {
  top: calc(var(--space-32) + 80px);
  z-index: 3;
}

/* ═══════════════════════════════════════════════════════════════
   OPTION 6: HORIZONTAL SCROLL GALLERY
═══════════════════════════════════════════════════════════════ */
.section-horizontal {
  height: 400vh;
  background: var(--surface-base);
  margin-top: var(--space-20);
}

.horizontal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.horizontal-track {
  display: flex;
  gap: var(--space-12);
  padding: 0 var(--space-20);
  height: 70vh;
  align-items: center;
  /* JS will handle horizontal transform for cross-browser support */
  will-change: transform;
}

.hz-item {
  flex-shrink: 0;
}

.hz-text {
  width: 60vw;
  max-width: 800px;
}

.hz-image {
  width: 45vw;
  height: 60vh;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--glass-l2-shadow);
}

.hz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hz-text {
    width: 85vw;
  }

  .hz-image {
    width: 80vw;
    height: 50vh;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL COLLECTION 3D SECTIONS
═══════════════════════════════════════════════════════════════ */
.collection-showcase {
  /* Height comes from the pinned sticky (100vh) + ScrollTrigger pin spacer */
  position: relative;
  background: var(--surface-canvas);
  z-index: 10;
}

.showcase-sticky {
  /* Pinned via GSAP ScrollTrigger (sticky fails inside ScrollSmoother's transform) */
  position: relative;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 var(--space-4);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  max-width: var(--layout-max-width);
  width: 100%;
  align-items: center;
}

/* Reverse layout */
.showcase-grid.reverse .showcase-visual {
  order: -1;
}

/* Content Area */
.showcase-content {
  /* Smooth entrance mapped to early scroll */
  opacity: calc(var(--scroll-progress, 0) * 3);
  transform: translateY(calc(40px - var(--scroll-progress, 0) * 40px));
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

.showcase-content h2 {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-h1);
  margin: 0 0 var(--space-4) 0;
  background: linear-gradient(90deg, var(--text-primary) 0%, var(--color-brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-content p {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  margin: 0 0 var(--space-8) 0;
}

/* Visual 3D Area */
.showcase-visual {
  perspective: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-tile-wrapper {
  position: relative;
  /* Dimensions and aspect-ratio now handled via inline styles for precise control */
  opacity: var(--scroll-progress, 0);
  transform: translateY(calc(80px - var(--scroll-progress, 0) * 80px));
}

.showcase-tile-wrapper canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Let clicks pass through if needed */
  outline: none;
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }

  .showcase-grid.reverse .showcase-visual {
    order: -1;
  }

  .showcase-visual {
    order: -1;
  }

  .showcase-tile-wrapper {
    /* Mobile overrides to ensure it fits screen */
    width: min(70%, 50vh) !important;
  }

  .showcase-content {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT US: ORBIT LAYOUT
═══════════════════════════════════════════════════════════════ */
.section-orbit-about {
  position: relative;
  padding: var(--space-20) var(--space-4);
  background: var(--surface-canvas);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Background Marquee */
.f-marquee-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg) scale(1.2);
  width: 120vw;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.theme-dark .f-marquee-container {
  opacity: 0.02;
}

.f-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
}

.f-marquee-track.reverse {
  animation: marqueeScrollReverse 50s linear infinite;
}

.f-marquee-text {
  font-family: var(--font-display);
  font-size: 8vw;
  font-weight: var(--weight-extrabold);
  text-transform: uppercase;
  padding-right: 2vw;
  color: var(--text-primary);
}

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

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

@keyframes marqueeScrollReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Orbit Glass Wrapper */
.orbit-glass-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--layout-max-width);
  padding: var(--space-12) var(--space-8);
  border-radius: var(--radius-panel);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin: 0 auto;
}

.orbit-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orbit-header .type-overline {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.orbit-header .type-overline::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-brand);
}

.orbit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* Left: Orbit Visual */
.orbit-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-ring {
  position: absolute;
  width: 90%;
  height: 90%;
  border: 1.5px dashed var(--surface-border-glass);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}

.theme-dark .orbit-ring {
  border-color: rgba(255, 255, 255, 0.15);
}

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

.orbit-center-image {
  position: relative;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--glass-l2-shadow);
  border: 6px solid var(--surface-canvas);
}

.orbit-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-satellites-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 60s linear infinite;
  z-index: 3;
}

.orbit-satellite {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotate(var(--angle));
}

.orbit-satellite-inner {
  position: absolute;
  top: calc(5% - 35px);
  /* To sit on the 90% ring edge */
  left: 50%;
  margin-left: -35px;
  /* Half of width */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--surface-canvas);
  box-shadow: var(--glass-l1-shadow);
  animation: counter-spin 60s linear infinite;
}

@keyframes counter-spin {
  from {
    transform: rotate(calc(-1 * var(--angle)));
  }

  to {
    transform: rotate(calc(-360deg - var(--angle)));
  }
}

.orbit-satellite-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right: Content */
.orbit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.orbit-overline {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-brand);
  margin-bottom: var(--space-4);
  border-radius: 2px;
}

.orbit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.orbit-list li {
  position: relative;
  padding-left: var(--space-6);
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  line-height: var(--leading-body);
}

.orbit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
}

.orbit-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.stat-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--surface-border-subtle);
  position: relative;
}

.stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  background: var(--color-brand);
}

.stat-value {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.stat-desc {
  flex: 1;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  color: var(--text-secondary);
  max-width: 250px;
  line-height: var(--leading-body);
}

@media (max-width: 900px) {
  .orbit-grid {
    grid-template-columns: 1fr;
  }

  .orbit-glass-wrapper {
    padding: var(--space-6) var(--space-4);
    gap: var(--space-8);
  }

  .orbit-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .orbit-header h2 {
    font-size: var(--type-h2);
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAN CARD SLIDER
═══════════════════════════════════════════════════════════════ */
.fc-section {
  padding: var(--space-24) 0 var(--space-20) 0;
  background: var(--surface-canvas);
  overflow: hidden;
}

.fc-header {
  padding: 0 var(--space-16);
  margin-bottom: var(--space-12);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: var(--layout-max-width);
  margin-left: auto;
  margin-right: auto;
}

.fc-overline {
  font-family: var(--font-body);
  font-size: var(--type-overline);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0 0 var(--space-2) 0;
}

.fc-title {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-h1);
  color: var(--text-primary);
  margin: 0;
}

.fc-nav-btns {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.fc-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--surface-border-glass);
  background: var(--surface-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* GSAP owns transform */
  will-change: transform;
  transform: translateZ(0);
  transition: background 0.28s ease, border-color 0.28s ease;
}

.fc-nav-btn:hover {
  background: var(--color-brand-tint-20);
  border-color: var(--color-brand);
}

.fc-nav-btn.is-hovered {
  background: var(--color-brand-tint-20);
  border-color: var(--color-brand);
}

.fc-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Stage: all cards share the same bottom-center anchor */
.fc-stage {
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* Base card — invisible until JS adds a position class */
.fc-card {
  position: absolute;
  width: 460px;
  height: 460px;
  left: calc(50% - 230px);
  bottom: 70px;
  border-radius: var(--radius-panel);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transform-origin: bottom center;
  transform: rotate(0deg) scale(1);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition:
    transform 0.65s cubic-bezier(0.34, 0.86, 0.44, 1),
    opacity 0.65s cubic-bezier(0.34, 0.86, 0.44, 1);
}

/* Position classes */
.fc-pos--far-left {
  transform: rotate(-20deg) scale(0.82);
  opacity: 0.40;
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}

.fc-pos--left {
  transform: rotate(-10deg) scale(0.90);
  opacity: 0.65;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.fc-pos--center {
  transform: rotate(0deg) scale(1.00);
  opacity: 1.00;
  z-index: 5;
  pointer-events: auto;
  cursor: default;
}

.fc-pos--right {
  transform: rotate(10deg) scale(0.90);
  opacity: 0.65;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.fc-pos--far-right {
  transform: rotate(20deg) scale(0.82);
  opacity: 0.40;
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}

.fc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s linear;
}

.fc-pos--center img {
  transform: scale(1.05);
}

.fc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.20) 50%,
      transparent 100%);
  pointer-events: none;
}

.fc-badge {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  font-family: var(--font-body);
  font-size: var(--type-overline);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-badge);
  text-transform: uppercase;
  color: #fff;
  background: var(--color-brand);
  padding: 4px 10px;
  border-radius: var(--radius-tag);
}

.fc-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.fc-card-size {
  font-family: var(--font-mono);
  font-size: var(--type-spec);
  letter-spacing: var(--tracking-spec);
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.fc-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-h2);
  color: #fff;
  margin: 0;
}

.fc-card-desc {
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: var(--leading-body);
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 var(--space-3) 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA visible only on center card */
.fc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--type-ui);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fc-pos--center .fc-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.fc-card-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.fc-pos--center:hover .fc-card-cta svg {
  transform: translate(3px, -3px);
}

.fc-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.fc-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.20);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.fc-dot--active {
  width: 24px;
  background: var(--color-brand);
}

.fc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-brand);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  width: 0%;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .fc-stage {
    height: 440px;
  }

  .fc-card {
    width: 320px;
    height: 320px;
    left: calc(50% - 160px);
    bottom: 50px;
  }

  .fc-header {
    padding: 0 var(--layout-margin-mob);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  padding: var(--space-24) var(--space-4) var(--space-8) var(--space-4);
  background: var(--surface-canvas);
  overflow: hidden;
  margin-top: var(--space-20);
}

/* Dramatic Ambient Glow behind footer */
.footer-ambient-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 60vh;
  background: radial-gradient(ellipse at bottom, var(--surface-blob-1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.footer-bg-text {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 28vw;
  font-weight: var(--weight-extrabold);
  color: var(--text-primary);
  opacity: 0.02;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 0.75;
  letter-spacing: -0.05em;
}

.theme-dark .footer-bg-text {
  opacity: 0.015;
}

/* Upgraded to L2 glass for maximum premium feel */
.footer-card {
  position: relative;
  z-index: 10;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: var(--space-16) var(--space-16) var(--space-10) var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.footer-brand-mission {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-brand-mission p {
  margin: 0;
  max-width: 320px;
}

/* Script accent for luxury feel */
.footer-script-accent {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

/* Premium glass circular social buttons */
.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: var(--surface-glass-flat);
  border: 1px solid var(--surface-border-subtle);
  transition: all var(--duration-base) var(--ease-out);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--glass-l0-fill);
  border-color: var(--color-brand);
  color: var(--color-brand-deep);
  transform: translateY(-3px);
  box-shadow: var(--glass-l1-shadow), 0 0 15px var(--color-brand-tint-20);
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--duration-base);
}

.footer-social-btn:hover svg {
  transform: scale(1.1);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--type-overline);
  letter-spacing: var(--tracking-overline);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Small brand dash before headers */
.footer-col-title::before {
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background: var(--color-brand);
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-links li {
  margin: 0;
}

.footer-col-links a {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: all var(--duration-base);
  display: inline-block;
}

/* Premium hover sweep */
.footer-col-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-brand);
  transition: width var(--duration-base) var(--ease-out);
}

.footer-col-links a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-col-links a:hover::after {
  width: 100%;
}

/* Beautiful bottom divider */
.footer-divider {
  height: 1px;
  background: var(--divider-color);
  width: 100%;
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-4);
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: var(--type-spec);
  color: var(--text-muted);
  letter-spacing: var(--tracking-spec);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-8);
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: var(--type-spec);
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: var(--tracking-spec);
  transition: color var(--duration-fast);
  text-transform: uppercase;
}

.footer-legal a:hover {
  color: var(--color-brand);
}

@media (max-width: 900px) {
  .footer-card {
    padding: var(--space-10) var(--space-6);
    gap: var(--space-10);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: var(--space-6);
  }
}

@media (max-width: 500px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col-title {
    justify-content: center;
  }

  .footer-col-title::before,
  .footer-col-title::after {
    display: none;
  }

  .footer-col-links a:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SISAM STRENGTH — BENTO GRID
═══════════════════════════════════════════════════════════════ */
.section-strength {
  position: relative;
  padding: var(--space-16) var(--space-4);
  background: var(--surface-canvas);
  overflow: hidden;
  box-sizing: border-box;
}

.strength-wrap {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* ── Header Row ── */
.strength-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-8);
  margin-bottom: var(--space-4);
}

.strength-header h2 {
  margin: 0;
}

.strength-header-desc {
  max-width: 300px;
  text-align: right;
}

/* ── Middle Bento Grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

.bento-card {
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  position: relative;
  /* GSAP controls transform */
  will-change: transform;
  transform: translateZ(0);
  transition: box-shadow 0.38s ease;
}

.bento-card:hover {
  box-shadow: var(--glass-l1-shadow), 0 0 20px var(--color-brand-tint-10);
}

.bento-card.is-hovered {
  box-shadow: var(--glass-l1-shadow), 0 0 32px var(--color-brand-tint-15);
}

/* Text cards with colored left border */
.bento-text-card {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-3);
  border-left: 4px solid var(--color-brand-tint-30);
}

.bento-text-card h3 {
  font-family: var(--font-display);
  font-size: var(--type-h3);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin: 0;
  line-height: var(--leading-h3);
}

.bento-text-card .bento-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.bento-text-card .bento-link:hover {
  color: var(--color-brand);
}

.bento-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--surface-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base);
}

.bento-link:hover .bento-arrow {
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.bento-link:hover .bento-arrow svg {
  stroke: white;
}

.bento-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
}

/* Image cards */
.bento-img-card {
  position: relative;
  min-height: 180px;
}

.bento-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.bento-img-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--type-spec);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  background: var(--glass-l0-fill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: var(--space-1) var(--space-3);
}

.bento-img-badge svg {
  width: 14px;
  height: 14px;
}

.bento-img-title {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--type-h3);
  font-weight: var(--weight-bold);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.bento-img-arrow {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-img-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
}

/* Spanning: center image spans 2 rows */
.bento-center {
  grid-row: 1 / 3;
}

/* ── Bottom CTA Card ── */
.bento-cta-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-brand-tint-10);
  transition: transform var(--duration-base) var(--ease-out);
}

.bento-cta-card:hover {
  transform: translateY(-2px);
}

.bento-cta-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.bento-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-cta-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--duration-base), background var(--duration-base);
}

.bento-cta-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

.bento-cta-play svg {
  width: 22px;
  height: 22px;
  fill: var(--color-brand-deep);
}

.bento-cta-tags {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.bento-cta-tag {
  font-family: var(--font-mono);
  font-size: var(--type-spec);
  color: white;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-tag);
}

.bento-cta-content {
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}

.bento-cta-content h2 {
  margin: 0;
}

.bento-cta-content p {
  margin: 0;
  max-width: 400px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .strength-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .strength-header-desc {
    text-align: left;
    max-width: 100%;
  }

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

  .bento-center {
    grid-row: auto;
  }

  .bento-cta-card {
    grid-template-columns: 1fr;
  }

  .bento-cta-img {
    min-height: 220px;
  }
}

@media (max-width: 500px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-cta-content {
    padding: var(--space-6);
  }
}

/* ═══════════════════════════════════════════════════════════════
   EXTRACTED INLINE STYLES — utilities + per-instance classes
   ═══════════════════════════════════════════════════════════════ */

.text-brand { color: var(--color-brand); }
.text-secondary { color: var(--text-secondary); }
.btn-start { align-self: flex-start; }

.btn-icon { width: 16px; height: 16px; margin-left: var(--space-2); }
.btn-icon-sm { width: 14px; height: 14px; margin-left: var(--space-1); }

/* Orbit / About Company section */
.orbit-header-title { margin-top: var(--space-2); margin-bottom: var(--space-4); }
.orbit-header-desc { max-width: 600px; margin: 0 auto; color: var(--text-secondary); }
.orbit-satellite-1 { --angle: 45deg; }
.orbit-satellite-2 { --angle: 135deg; }
.orbit-satellite-3 { --angle: 225deg; }
.orbit-satellite-4 { --angle: 315deg; }
.orbit-content-title { margin-bottom: var(--space-4); }
.orbit-content-desc { margin-bottom: var(--space-6); color: var(--text-secondary); }
.stat-value-num { font-weight: var(--weight-black); }
.orbit-cta { margin-top: var(--space-8); align-self: flex-start; }

/* Collection showcase */
.showcase-cta { margin-top: var(--space-4); }
.showcase-tile-1 { width: min(85%, 40vh); aspect-ratio: 1/2; }
.showcase-tile-2 { width: min(85%, 65vh); aspect-ratio: 4/5; }

/* Bento */
.bento-text-card--brand { border-left-color: var(--color-brand-dim); }

/* ═══════════════════════════════════════════════════════════════
   OUR PROCESS — native horizontal-scroll stepper
   ═══════════════════════════════════════════════════════════════ */

.process {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.process-wrap {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--space-16);
}

.process-header {
  max-width: 640px;
  margin: 0 0 var(--space-12);
  text-align: left;
}

.process-header .type-h1 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
}

/* Native horizontal scroll container (snap) */
.process-track-viewport {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--space-2);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.process-track-viewport::-webkit-scrollbar { display: none; }

.process-track {
  position: relative;
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: var(--space-6);
  padding: var(--space-16) var(--space-2) var(--space-6);
}

/* Dashed connector behind the nodes */
.process-line {
  position: absolute;
  top: calc(var(--space-16) + 28px);
  left: 0;
  right: 0;
  height: 0;
  border-top: 2px dashed var(--color-brand-tint-30);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  flex: 0 0 clamp(280px, 30vw, 360px);
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  padding-top: var(--space-10);
  border-radius: var(--radius-card);
  scroll-snap-align: center;
  /* GSAP controls transform */
  will-change: transform;
  transform: translateZ(0);
  transition: box-shadow 0.4s ease;
}

/* Numbered node sitting on the line */
.ps-node {
  position: absolute;
  top: calc(-1 * (28px + var(--space-8)) + 2px);
  left: var(--space-8);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: var(--text-on-brand);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px var(--bg-page, transparent);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.ps-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-bottom: var(--space-4);
  color: var(--color-brand-dim);
}

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

.ps-index {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.ps-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  margin: var(--space-1) 0 var(--space-3);
}

.ps-desc {
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Active step highlight during scrub */
.process-step.is-active {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px var(--color-brand-tint-15);
}

.process-step.is-active .ps-node {
  background: var(--color-brand-bright);
  transform: scale(1.06);
  box-shadow: 0 0 0 6px var(--bg-page, transparent),
              0 0 22px var(--color-brand-tint-30);
}

.process-step.is-active .ps-icon { color: var(--color-brand); }

/* Mobile / tablet: vertical numbered timeline (native page scroll) */
@media (max-width: 900px) {
  .process { padding: var(--space-16) 0; }

  .process-wrap { padding: 0 var(--layout-margin-mob); }

  .process-track-viewport {
    width: auto;
    margin-left: 0;
    padding-left: 0;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .process-track {
    flex-direction: column;
    width: auto;
    gap: var(--space-8);
    padding: var(--space-2) 0 var(--space-2) var(--space-12);
  }

  /* Spine becomes vertical on the left */
  .process-line {
    top: 28px;
    bottom: 28px;
    left: calc(28px - 1px);
    right: auto;
    width: 0;
    height: auto;
    border-top: none;
    border-left: 2px dashed var(--color-brand-tint-30);
  }

  .process-step {
    flex: 1 1 auto;
    width: 100%;
    padding-top: var(--space-8);
  }

  .ps-node {
    top: var(--space-6);
    left: calc(-1 * var(--space-12) + 28px - 28px);
  }
}

/* Reduced motion: ensure static readable layout */
@media (prefers-reduced-motion: reduce) {
  .process-track { transform: none !important; }
  .process-step { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   APPLICATIONS — split list + crossfading preview
   ═══════════════════════════════════════════════════════════════ */

.apps {
  position: relative;
  padding: var(--space-24) 0;
}

.apps-wrap {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--space-16);
}

.apps-header {
  max-width: 640px;
  margin: 0 0 var(--space-12);
  text-align: left;
}

.apps-header .type-h1 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
}

.apps-split {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: var(--space-12);
  align-items: stretch;
}

/* ── Selector list ── */
.apps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.apps-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) var(--space-4);
  background: none;
  border: none;
  border-left: 2px solid transparent;
  cursor: pointer;
  text-align: left;
  color: var(--text-secondary);
  transition: color var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              padding-left var(--duration-base) var(--ease-out);
}

.apps-item:hover { color: var(--text-primary); }

.apps-item.is-current {
  color: var(--text-primary);
  border-left-color: var(--color-brand);
  padding-left: var(--space-6);
}

.ai-index {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.apps-item.is-current .ai-index { color: var(--color-brand); }

.ai-label {
  flex: 1;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3, 1.25rem);
}

.ai-arrow {
  display: inline-flex;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translateX(-6px);
  color: var(--color-brand);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.apps-item.is-current .ai-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Stage ── */
.apps-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--surface-canvas);
}

.apps-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow, 0.6s) var(--ease-out), visibility var(--duration-slow, 0.6s);
}

.apps-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.apps-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s linear;
}

.apps-slide.is-active img { transform: scale(1.08); }

.apps-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-8) var(--space-6) var(--space-6);
  color: var(--color-white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

.as-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3, 1.25rem);
}

.as-desc {
  font-family: var(--font-body);
  font-size: var(--type-body);
  opacity: 0.92;
}

/* ── Mobile: pill-chip row + image below ── */
@media (max-width: 900px) {
  .apps { padding: var(--space-16) 0; }

  .apps-wrap { padding: 0 var(--layout-margin-mob); }

  .apps-split {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .apps-list {
    flex-direction: row;
    gap: var(--space-2);
    overflow-x: auto;
    padding-bottom: var(--space-2);
    scrollbar-width: none;
  }

  .apps-list::-webkit-scrollbar { display: none; }

  .apps-item {
    flex: 0 0 auto;
    width: auto;
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.1));
    border-radius: var(--radius-pill);
  }

  .apps-item.is-current {
    padding-left: var(--space-4);
    border-color: var(--color-brand);
    background: var(--color-brand-tint-10);
  }

  .ai-index,
  .apps-item .ai-arrow { display: none; }

  .ai-label { font-size: var(--type-ui); }

  .apps-stage { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  .apps-slide,
  .apps-slide img { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — latest posts (featured + 2 small)
   ═══════════════════════════════════════════════════════════════ */

.blog {
  position: relative;
  padding: var(--space-24) 0;
}

.blog-wrap {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--space-16);
}

/* ── Split header (eyebrow + title | view-all) ── */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.blog-header-text .type-h1 { margin-top: var(--space-2); }

.blog-viewall {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: var(--type-ui);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-brand);
  text-decoration: none;
  transition: gap var(--duration-base) var(--ease-out);
}

.blog-viewall svg { width: 16px; height: 16px; }
.blog-viewall:hover { gap: var(--space-3); }

/* ── Grid: featured + side column ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-8);
  align-items: stretch;
}

.blog-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* ── Card base ── */
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--glass-l00-fill, transparent);
  border: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.08));
  text-decoration: none;
  color: var(--text-primary);
  /* GSAP controls transform */
  will-change: transform;
  transform: translateZ(0);
  transition:
    background   0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow   0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover {
  box-shadow: 0 18px 40px var(--color-brand-tint-15);
}

/* Glass materialises on hover */
.blog-card.is-hovered {
  background: var(--glass-l1-fill);
  border-color: var(--glass-l1-border);
  box-shadow: var(--glass-l1-shadow), 0 0 80px -20px var(--glass-glow-color);
}

.theme-dark .blog-card.is-hovered {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 210, 210, 0.30);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 0 60px -15px rgba(0, 170, 170, 0.12);
}

.blog-media {
  position: relative;
  overflow: hidden;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-media img { transform: scale(1.05); }

.blog-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.blog-cat {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brand);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-tag);
  background: var(--color-brand-tint-10);
}

.blog-date {
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  color: var(--text-muted);
}

.blog-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3);
  line-height: 1.25;
  margin: 0;
}

.blog-excerpt {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.blog-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--type-ui);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-brand);
  transition: gap var(--duration-base) var(--ease-out);
}

.blog-more svg { width: 16px; height: 16px; }
.blog-card:hover .blog-more { gap: var(--space-3); }

/* ── Featured: tall, big image on top ── */
.blog-card--featured .blog-media { aspect-ratio: 16 / 10; }
.blog-card--featured .blog-title { font-size: var(--type-h2); }
.blog-card--featured .blog-body { padding: var(--space-8); gap: var(--space-4); }

/* ── Small: image left, text right ── */
.blog-card--sm {
  flex-direction: row;
  flex: 1;
}

.blog-card--sm .blog-media {
  flex: 0 0 40%;
  min-height: 100%;
}

.blog-card--sm .blog-body {
  flex: 1;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-5);
}

.blog-card--sm .blog-more { display: none; }

/* ── Mobile / tablet: every card stacks full-width with complete content
   (image top + meta + title + excerpt + read-more) so each is clearly
   readable and obviously tappable. ── */
@media (max-width: 900px) {
  .blog { padding: var(--space-16) 0; }

  .blog-wrap { padding: 0 var(--layout-margin-mob); }

  .blog-grid { grid-template-columns: 1fr; gap: var(--space-6); }

  .blog-card--featured .blog-media { aspect-ratio: 16 / 9; }

  /* Small cards: drop the side-by-side layout, go full column */
  .blog-card--sm { flex-direction: column; flex: none; }

  .blog-card--sm .blog-media {
    flex: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .blog-card--sm .blog-body {
    justify-content: flex-start;
    gap: var(--space-3);
    padding: var(--space-6);
  }

  /* Restore the read-more affordance hidden on desktop compact cards */
  .blog-card--sm .blog-more { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-media img { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT — Let's work together (form + 3 addresses)
   ═══════════════════════════════════════════════════════════════ */

.contact {
  position: relative;
  padding: var(--space-24) 0;
}

.contact-wrap {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--space-16);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: start;
}

/* ── Header ── */
.contact-header { margin-bottom: var(--space-8); }
.contact-header .type-h1 { margin-top: var(--space-2); margin-bottom: var(--space-4); }
.contact-header .type-body-lg { max-width: 46ch; }

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cf-field label {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}

.cf-opt {
  font-weight: var(--weight-regular);
  color: var(--text-muted);
  text-transform: none;
}

.cf-field input,
.cf-field textarea {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-primary);
  background: var(--glass-l00-fill, rgba(255, 255, 255, 0.04));
  border: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.12));
  border-radius: var(--radius-btn);
  padding: var(--space-3) var(--space-4);
  transition: border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

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

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text-muted); }

.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-tint-20);
}

/* Invalid only after a submit attempt */
.contact-form.is-validated input:invalid,
.contact-form.is-validated textarea:invalid {
  border-color: #d6453d;
}

.cf-submit {
  align-self: flex-start;
  margin-top: var(--space-2);
}

.cf-success {
  margin: var(--space-2) 0 0;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-btn);
  background: var(--color-brand-tint-10);
  color: var(--color-brand-deep);
  font-family: var(--font-body);
  font-size: var(--type-body);
}
.cf-success.cf-status--error {
  background: rgba(200, 40, 40, 0.10);
  color: #b00020;
}

/* ── Addresses ── */
.contact-addresses {
  display: flex;
  flex-direction: column;
}

.addr {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.1));
}

.addr:first-child { padding-top: 0; border-top: none; }

.addr-unit {
  font-family: var(--font-body);
  font-size: var(--type-overline);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  color: var(--color-brand);
}

.addr-name {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3);
  margin: var(--space-2) 0 var(--space-3);
}

.addr-lines {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 var(--space-3);
}

.addr-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-1) 0;
  transition: color var(--duration-base) var(--ease-out);
}

.addr-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-brand); }
.addr-link:hover { color: var(--color-brand); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .contact { padding: var(--space-16) 0; }
  .contact-wrap { padding: 0 var(--layout-margin-mob); }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

@media (max-width: 540px) {
  .cf-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .cf-field input,
  .cf-field textarea,
  .addr-link { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER DROPDOWN (Corporate) — desktop
   ═══════════════════════════════════════════════════════════════ */

.nav-dd { position: relative; display: inline-flex; }

.nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--type-ui);
  color: var(--color-white);
  font-weight: var(--weight-medium);
  opacity: 0.85;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.nav-dd-toggle:hover,
.nav-dd-toggle[aria-expanded="true"] { opacity: 1; color: var(--color-brand); }

.nav-dd-toggle svg {
  width: 12px; height: 12px;
  transition: transform var(--duration-base) var(--ease-out);
}
.nav-dd-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-dd-menu {
  position: absolute;
  top: calc(100% + var(--space-3));
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  padding: var(--space-2);
  border-radius: var(--radius-card);
  background: rgba(10, 12, 14, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--surface-border-glass);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              visibility var(--duration-base);
  z-index: var(--z-sticky);
}

.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu,
.nav-dd-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-menu a {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--tracking-cta);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.nav-dd-menu a:hover,
.nav-dd-menu a[aria-current="page"] {
  background: var(--color-brand-tint-15);
  color: var(--color-brand);
}

/* ═══════════════════════════════════════════════════════════════
   SUB-PAGE SHELL (Corporate pages)
   ═══════════════════════════════════════════════════════════════ */

.subpage { background: var(--surface-canvas); }

.subpage-hero {
  position: relative;
  padding: calc(var(--space-24) + 64px) 0 var(--space-20);
  background: linear-gradient(150deg, var(--color-brand-deep) 0%, #04302f 55%, #021c1c 100%);
  color: var(--color-white);
  overflow: hidden;
}

.subpage-hero .corp-wrap { position: relative; z-index: 1; }

.subpage-hero .sph-eyebrow {
  font-family: var(--font-body);
  font-size: var(--type-overline);
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
  color: var(--color-brand-bright);
}

.subpage-hero h1 {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: var(--type-h1);
  line-height: var(--leading-h1);
  margin: var(--space-3) 0 var(--space-4);
}

.subpage-hero .sph-lead {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
}

.corp-wrap {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--space-16);
}

.corp-section { padding: var(--space-16) 0; }
.corp-section--tint { background: var(--color-brand-tint-10); }

/* Premium image + text intro */
.corp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.corp-intro-media {
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.corp-intro-media img { width: 100%; height: 100%; object-fit: cover; }
.corp-intro-text .type-h1 { margin: var(--space-2) 0 var(--space-5); }
@media (max-width: 900px) {
  .corp-intro-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .corp-intro-media { aspect-ratio: 16 / 10; }
}

.corp-section-head { max-width: 720px; margin: 0 0 var(--space-12); }
.corp-section-head .type-overline { color: var(--color-brand); }
.corp-section-head h2 { margin-top: var(--space-2); margin-bottom: var(--space-4); }

.corp-lead {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  max-width: 70ch;
}
.corp-lead + .corp-lead { margin-top: var(--space-4); }

/* Card grid (values / features) */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.corp-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-8);
  border-radius: var(--radius-card);
  background: var(--glass-l00-fill, rgba(255, 255, 255, 0.5));
  border: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.08));
}

.corp-card-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-card-sm);
  background: var(--color-brand-tint-10);
  color: var(--color-brand);
  margin-bottom: var(--space-2);
}
.corp-card-icon svg { width: 22px; height: 22px; }

.corp-card h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3);
  margin: 0;
}

.corp-card p {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Stats row */
.corp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.corp-stat-num {
  font-family: var(--font-display);
  font-weight: var(--weight-black, 800);
  font-size: var(--type-h1);
  color: var(--color-brand);
  line-height: 1;
}
.corp-stat-label {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-secondary);
}

/* Editorial letter (Director's Note) */
.letter {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.letter h2 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h2);
  margin: 0 0 var(--space-8);
}
.letter p {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: left;
  margin: 0 0 var(--space-5);
}
.letter-sign {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.1));
}
.letter-sign .ls-name {
  display: block;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--color-brand-deep);
}
.letter-sign .ls-role {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* CTA band */
.corp-cta { text-align: center; }
.corp-cta h2 { margin-bottom: var(--space-6); }
.corp-cta .btn { display: inline-flex; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .corp-wrap { padding: 0 var(--layout-margin-mob); }
  .subpage-hero { padding: calc(var(--space-20) + 56px) 0 var(--space-16); }
  .corp-section { padding: var(--space-16) 0; }
  .corp-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .corp-stats { grid-template-columns: 1fr; gap: var(--space-8); text-align: center; }
}

/* ── Mobile menu: Corporate expandable group ── */
.mm-group { display: block; }

/* Inherits .mm-link grid layout; just strip button chrome. */
.mm-grouptoggle {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font: inherit;
}

.mm-grouptoggle .mm-chev {
  width: 18px; height: 18px;
  justify-self: end;
  align-self: center;
  transition: transform var(--duration-base) var(--ease-out);
}
.mm-grouptoggle[aria-expanded="true"] .mm-chev { transform: rotate(180deg); }

.mm-sub {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows var(--duration-base) var(--ease-out);
}
.mm-sub.is-open { grid-template-rows: 1fr; }
.mm-sub > div { min-height: 0; }

.mm-sublink {
  display: block;
  padding: var(--space-3) 0 var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.mm-sublink:hover { color: var(--color-brand-bright); }

/* ═══════════════════════════════════════════════════════════════
   CORPORATE PAGES — motion (ScrollSmoother + GSAP)
   ═══════════════════════════════════════════════════════════════ */

/* ScrollSmoother wrapper */
#smooth-wrapper { position: relative; }

/* Reveal initial states (animated in by GSAP). */
[data-reveal] { opacity: 0; transform: translateY(42px); will-change: transform, opacity; }
[data-reveal-fade] { opacity: 0; }
.split-line { display: block; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-fade] { opacity: 1 !important; transform: none !important; }
}

/* ── Image-led hero ── */
.cphero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--color-white);
}

.cphero-media {
  position: absolute;
  inset: -12% 0 -12% 0;     /* extra bleed for parallax */
  z-index: 0;
}
.cphero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}
.cphero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(2,18,18,0.85) 0%, rgba(2,18,18,0.35) 45%, rgba(2,18,18,0.55) 100%);
}

.cphero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: var(--space-20);
}

.cphero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--color-brand-bright);
  display: inline-block;
  margin-bottom: var(--space-3);
}

.cphero h1 {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
}

.cphero-lead {
  margin-top: var(--space-6);
  max-width: 56ch;
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: rgba(255,255,255,0.8);
}

.cphero-scroll {
  position: absolute;
  bottom: var(--space-6);
  right: 0;
  z-index: 2;
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.cphero-scroll span { width: 1px; height: 38px; background: rgba(255,255,255,0.5); display: inline-block; }

/* ── Giant editorial display ── */
.cp-display {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: clamp(2.6rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  color: var(--text-primary);
}

.cp-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: end;
}
.cp-split .corp-lead { margin: 0; }

@media (max-width: 900px) {
  .cphero { min-height: 80vh; }
  .cp-split { grid-template-columns: 1fr; gap: var(--space-6); align-items: start; }
}

/* ═══════════════════════════════════════════════════════════════
   CORPORATE PAGES — footer transition (gradient bridge + overlap)
   ═══════════════════════════════════════════════════════════════ */

/* Closing CTA fades from tint into the footer canvas (no hard seam) */
.corp-section--outro {
  background: linear-gradient(180deg,
    var(--color-brand-tint-10) 0%,
    var(--color-brand-tint-10) 35%,
    var(--surface-canvas) 100%);
  padding-bottom: var(--space-24);
}

/* Footer lifts up over the fading section; glass card floats on the bridge */
.subpage .site-footer {
  margin-top: calc(-1 * var(--space-16));
  background: transparent;
}

/* Ambient glow bleeds upward behind the closing CTA to tie the zones together */
.subpage .footer-ambient-glow {
  bottom: auto;
  top: -36%;
  height: 90vh;
}

/* ── Corporate intro reverse (image on right) ── */
.corp-intro-grid--rev .corp-intro-media { order: 2; }
@media (max-width: 900px) {
  .corp-intro-grid--rev .corp-intro-media { order: 0; }
}

/* ── Director's Note: premium two-column letter ── */
.note-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-16);
  align-items: start;
}
.note-aside {
  position: sticky;
  top: calc(var(--space-16) + 64px);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.note-aside-media {
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.note-aside-media img { width: 100%; height: 100%; object-fit: cover; }
.note-aside .ls-name { font-family: var(--font-script); font-size: 2.4rem; color: var(--color-brand-deep); line-height: 1; }
.note-aside .ls-role { font-family: var(--font-body); font-size: var(--type-ui); letter-spacing: var(--tracking-cta); text-transform: uppercase; color: var(--text-muted); }

.note-body { position: relative; }
.note-quote {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--color-brand-tint-30);
  display: block;
  margin-bottom: var(--space-4);
}
.note-body p {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0 0 var(--space-5);
}
.note-body p:first-of-type { color: var(--text-primary); }

@media (max-width: 900px) {
  .note-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .note-aside { position: static; }
  .note-aside-media { aspect-ratio: 16 / 10; }
  .note-quote { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════════════
   EXPORT PAGE — globe hero, stat band, region grid, process steps
   ═══════════════════════════════════════════════════════════════ */

/* ── Globe hero ── */
.export-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--space-24) + var(--space-6)) 0 var(--space-16);
}
.export-hero-aura {
  position: absolute;
  left: 50%; bottom: -6%;
  width: 86vw; max-width: 820px; aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle at center,
    var(--color-brand-tint-20) 0%,
    var(--color-brand-tint-10) 38%,
    transparent 66%);
  z-index: 0;
  pointer-events: none;
}
.export-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-12);
}
.export-hero-text {
  min-width: 0;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero intro — pure CSS so it never depends on the JS/rAF state. */
[data-hero] { opacity: 0; transform: translateY(24px); animation: export-hero-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
[data-hero]:nth-child(1) { animation-delay: 0.05s; }
[data-hero]:nth-child(2) { animation-delay: 0.17s; }
[data-hero]:nth-child(3) { animation-delay: 0.29s; }
[data-hero]:nth-child(4) { animation-delay: 0.41s; }
@keyframes export-hero-rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  [data-hero] { opacity: 1; transform: none; animation: none; }
}

.export-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--color-brand-deep);
  display: inline-block;
  margin-bottom: var(--space-3);
}
.export-headline {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}
/* Rotating destination — clipped so the swap rises in/out of a mask. */
.export-rotator-mask {
  display: inline-flex;
  overflow: hidden;
  vertical-align: bottom;
  max-width: 100%;
}
.export-rotator {
  display: inline-block;
  color: var(--color-brand);
  white-space: nowrap;
  will-change: transform, opacity;
}
.export-lead {
  margin-top: var(--space-6);
  max-width: 60ch;
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: var(--text-secondary);
}
.export-hero-actions {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.export-link {
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brand-deep);
  border-bottom: 1px solid var(--color-brand-tint-30);
  padding-bottom: 2px;
  transition: border-color var(--dur-fast, 0.2s) ease, color var(--dur-fast, 0.2s) ease;
}
.export-link:hover { color: var(--color-brand); border-color: var(--color-brand); }

/* Globe stage + decorative orbit rings */
.export-hero-globe {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  aspect-ratio: 1;
}
.export-globe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  contain: layout paint;
  touch-action: pan-y;
}
.export-orbits {
  position: absolute;
  inset: -6%;
  z-index: 1;
  pointer-events: none;
}
.export-orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--color-brand-tint-15);
}
.export-orbit--1 { transform: rotate(0deg) scale(1); animation: export-spin 38s linear infinite; }
.export-orbit--2 {
  inset: 9%;
  border-style: dashed;
  border-color: var(--color-brand-tint-20);
  animation: export-spin 26s linear infinite reverse;
}
.export-orbit--3 { inset: 20%; border-color: var(--color-brand-tint-10); animation: export-spin 48s linear infinite; }
@keyframes export-spin { to { transform: rotate(360deg); } }

.export-scroll {
  position: relative;
  z-index: 1;
  margin-top: var(--space-10);
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.export-scroll span { width: 1px; height: 38px; background: var(--color-brand-tint-30); display: inline-block; }

/* ── Stat band ── */
.export-stats { grid-template-columns: repeat(4, 1fr); }
.export-stats > div { position: relative; padding-left: var(--space-5); }
.export-stats > div::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--color-brand-tint-20);
}

/* ── Region grid ── */
.export-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.export-region {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  border-radius: var(--radius-card);
  background: var(--glass-l00-fill, rgba(255, 255, 255, 0.5));
  border: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.08));
}
.export-region-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.export-region-tag {
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  color: var(--color-brand);
}
.export-region-head h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3);
  margin: 0;
}
.export-region-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.export-region-list li {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--text-secondary);
  padding-left: var(--space-4);
  position: relative;
}
.export-region-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-brand);
}
.export-region--cta {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--text-on-brand);
  justify-content: space-between;
}
.export-region--cta .export-region-tag,
.export-region--cta .export-region-head h3 { color: var(--text-on-brand); }
.export-region--cta p {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.export-region--cta .export-link {
  color: var(--text-on-brand);
  border-color: rgba(255, 255, 255, 0.45);
  align-self: flex-start;
}
.export-region--cta .export-link:hover { color: var(--text-on-brand); border-color: var(--text-on-brand); }

/* ── Process steps ── */
.export-process {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  counter-reset: export-step;
}
.export-step {
  position: relative;
  padding-top: var(--space-6);
  border-top: 2px solid var(--color-brand-tint-20);
}
.export-step-num {
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  color: var(--color-brand);
  display: block;
  margin-bottom: var(--space-3);
}
.export-step h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3);
  margin: 0 0 var(--space-2);
}
.export-step p {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .export-regions { grid-template-columns: repeat(2, 1fr); }
  .export-process { grid-template-columns: repeat(2, 1fr); }
  .export-stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-6); }
}
@media (max-width: 900px) {
  .export-hero { padding: calc(var(--space-24)) 0 var(--space-12); }
  .export-hero-grid { gap: var(--space-10); }
  .export-scroll { display: none; }
}
@media (max-width: 560px) {
  .export-regions { grid-template-columns: 1fr; }
  .export-process { grid-template-columns: 1fr; }
  .export-stats { grid-template-columns: 1fr 1fr; }
  .export-hero-globe { max-width: 320px; }
}

/* ═══════════════════════════════════════════════════════════════
   SUSTAINABILITY PAGE — eco hero, renewable energy, closed loops,
   circular-loop ring centerpiece, impact stats, durability + certs
   ═══════════════════════════════════════════════════════════════ */
.sus-energy, .sus-loops, .sus-loop-section, .sus-hero { --sus-leaf: #2FA98C; }

/* ── Hero ── */
.sus-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 82vh;
  padding: calc(var(--space-24) + var(--space-6)) 0 var(--space-16);
}
.sus-hero-rings {
  position: absolute;
  top: 50%; right: -8%;
  width: 52vw; max-width: 720px; aspect-ratio: 1;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
.sus-ring {
  position: absolute; inset: 0; margin: auto;
  border-radius: 50%;
  border: 1px solid var(--color-brand-tint-15);
}
.sus-ring--a { animation: export-spin 44s linear infinite; }
.sus-ring--b { inset: 12%; border-style: dashed; border-color: var(--color-brand-tint-20); animation: export-spin 30s linear infinite reverse; }
.sus-ring--c { inset: 26%; border-color: var(--color-brand-tint-10); animation: export-spin 56s linear infinite; }
.sus-leaf-glow {
  position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--color-brand-tint-20) 0%, transparent 70%);
}
.sus-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.sus-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--color-brand-deep);
  display: inline-block;
  margin-bottom: var(--space-3);
}
.sus-headline {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}
.sus-lead {
  margin-top: var(--space-6);
  max-width: 60ch;
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: var(--text-secondary);
}
.sus-hero-actions {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* ── Energy ── */
.sus-energy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.sus-energy-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-8);
  border-radius: var(--radius-card);
  background: var(--glass-l00-fill, rgba(255, 255, 255, 0.5));
  border: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.08));
}
.sus-energy-card--feature {
  background: linear-gradient(160deg, var(--color-brand) 0%, var(--color-brand-deep) 100%);
  border-color: transparent;
  color: var(--text-on-brand);
}
.sus-energy-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-card-sm);
  background: var(--color-brand-tint-10);
  color: var(--color-brand);
  margin-bottom: var(--space-2);
}
.sus-energy-icon svg { width: 24px; height: 24px; }
.sus-energy-card--feature .sus-energy-icon { background: rgba(255, 255, 255, 0.16); color: var(--text-on-brand); }
.sus-energy-card h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3);
  margin: 0;
}
.sus-energy-card p {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.sus-energy-card--feature p { color: rgba(255, 255, 255, 0.85); }
.sus-energy-stat {
  margin-top: auto;
  padding-top: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sus-energy-stat strong {
  font-family: var(--font-display);
  font-weight: var(--weight-black, 800);
  font-size: var(--type-h2);
  color: var(--color-brand);
  line-height: 1;
}
.sus-energy-card--feature .sus-energy-stat { color: rgba(255, 255, 255, 0.8); }
.sus-energy-card--feature .sus-energy-stat strong { color: var(--text-on-brand); }

.sus-energy-banner {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-10);
  border-radius: var(--radius-panel);
  background: var(--color-brand-tint-10);
  border: 1px solid var(--color-brand-tint-20);
}
.sus-energy-banner-num strong {
  font-family: var(--font-display);
  font-weight: var(--weight-black, 800);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--color-brand);
  line-height: 0.9;
}
.sus-energy-banner-text {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}
.sus-energy-banner-text strong { color: var(--text-primary); }

/* ── Closed-loop cards ── */
.sus-loop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.sus-loop-card {
  padding: var(--space-8);
  border-radius: var(--radius-card);
  background: var(--surface-canvas, #fff);
  border: 1px solid var(--glass-l00-border, rgba(0, 0, 0, 0.08));
}
.sus-loop-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brand-deep);
  background: var(--color-brand-tint-10);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}
.sus-loop-card h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3);
  margin: 0 0 var(--space-3);
}
.sus-loop-card p {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 var(--space-5);
}
.sus-flow {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}
.sus-flow li {
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  color: var(--text-primary);
  background: var(--color-brand-tint-10);
  padding: 4px 10px;
  border-radius: var(--radius-card-sm);
}
.sus-flow li:not(:last-child)::after {
  content: '→';
  margin-left: var(--space-2);
  color: var(--color-brand);
}

/* ── Circular-loop centerpiece ── */
.sus-loop-head { text-align: center; margin-inline: auto; }
.sus-loop-stage {
  position: relative;
  margin: var(--space-12) auto 0;
}
.sus-ring-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  aspect-ratio: 1;
}
.sus-ring-svg { width: 100%; height: 100%; overflow: visible; }
.sus-ring-track {
  fill: none;
  stroke: var(--color-brand-tint-20);
  stroke-width: 2;
}
.sus-ring-draw {
  fill: none;
  stroke: var(--color-brand);
  stroke-width: 3;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 280px 280px;
}
.sus-dot circle { fill: var(--color-brand); }
.sus-dot { transition: opacity 0.4s ease; }
.sus-ring-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.sus-ring-center-label {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-h3);
  color: var(--color-brand-deep);
  line-height: 1.1;
}
.sus-node {
  position: absolute;
  width: 210px;
  max-width: 40%;
}
.sus-node-num {
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  color: var(--color-brand);
}
.sus-node h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-body-lg);
  margin: 2px 0 var(--space-1);
  color: var(--text-primary);
}
.sus-node p {
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}
.sus-node--top { top: 0; left: 50%; transform: translateX(-50%); text-align: center; }
.sus-node--right { top: 50%; right: 0; transform: translateY(-50%); text-align: right; }
.sus-node--bottom { bottom: 0; left: 50%; transform: translateX(-50%); text-align: center; }
.sus-node--left { top: 50%; left: 0; transform: translateY(-50%); text-align: left; }

.sus-loop-steps { display: none; }
.sus-loop-branch {
  margin: var(--space-10) auto 0;
  max-width: 620px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

/* ── Impact stats (4) ── */
.sus-stats { grid-template-columns: repeat(4, 1fr); }

/* ── Durability + certs ── */
.sus-durability {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: center;
}
.sus-durability-text .type-h1 { margin: var(--space-2) 0 var(--space-5); }
.sus-certs {
  padding: var(--space-8);
  border-radius: var(--radius-card);
  background: var(--color-brand-tint-10);
  border: 1px solid var(--color-brand-tint-20);
}
.sus-certs-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--type-body-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-deep);
  margin-bottom: var(--space-4);
}
.sus-cert-list {
  list-style: none;
  margin: 0 0 var(--space-4); padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.sus-cert-list li {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-body);
  color: var(--text-primary);
  background: var(--surface-canvas, #fff);
  border: 1px solid var(--color-brand-tint-20);
  padding: 8px 16px;
  border-radius: 999px;
}
.sus-certs-note {
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  color: var(--text-secondary);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .sus-energy-grid { grid-template-columns: 1fr; }
  .sus-loop-cards { grid-template-columns: 1fr; }
  .sus-stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-6); }
  .sus-energy-banner { flex-direction: column; text-align: center; gap: var(--space-4); }
  .sus-durability { grid-template-columns: 1fr; gap: var(--space-8); }
}
@media (max-width: 860px) {
  .sus-ring-wrap { display: none; }
  .sus-loop-steps {
    display: block;
    max-width: 560px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    counter-reset: susstep;
  }
  .sus-loop-steps li {
    position: relative;
    padding: var(--space-5) 0 var(--space-5) var(--space-8);
    border-left: 2px solid var(--color-brand-tint-20);
  }
  .sus-loop-steps li:last-child { border-left-color: transparent; }
  .sus-loop-steps .sus-node-num {
    position: absolute;
    left: calc(-1 * var(--space-2)); top: var(--space-5);
    background: var(--surface-canvas, #fff);
    padding: 2px 0;
  }
  .sus-loop-steps h4 {
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    font-size: var(--type-body-lg);
    margin: 0 0 var(--space-1);
    color: var(--text-primary);
  }
  .sus-loop-steps p {
    font-family: var(--font-body);
    font-size: var(--type-body);
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
  }
}
@media (max-width: 560px) {
  .sus-stats { grid-template-columns: 1fr 1fr; }
  .sus-hero { min-height: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   SUSTAINABILITY — Cinematic Visual Strip
   ═══════════════════════════════════════════════════════════════ */
.sus-visual {
  width: 100%;
  overflow: hidden;
  line-height: 0; /* collapse inline gaps */
}

.sus-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 82vh;
  min-height: 520px;
  max-height: 760px;
  gap: 3px;
}

.sus-visual-cell {
  position: relative;
  overflow: hidden;
}

.sus-visual-cell--solar {
  grid-row: 1 / 3;
}

.sus-visual-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  display: block;
}

.sus-visual-cell:hover img {
  transform: scale(1.05);
}

/* Cinematic dark-to-transparent gradient */
.sus-visual-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.22) 40%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.sus-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  z-index: 2;
  line-height: normal;
}

.sus-visual-cell--solar .sus-visual-caption {
  padding: var(--space-10) var(--space-8);
}

.sus-visual-tag {
  display: block;
  font-family: var(--font-body);
  font-size: var(--type-ui);
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-brand-bright);
  margin-bottom: var(--space-1);
}

.sus-visual-caption p {
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.45;
  max-width: 36ch;
}

.sus-visual-cell--solar .sus-visual-caption p {
  font-size: var(--type-body-lg);
  max-width: 32ch;
}

@media (max-width: 768px) {
  .sus-visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    max-height: none;
    gap: 3px;
  }

  .sus-visual-cell--solar {
    grid-row: auto;
    height: 60vw;
    min-height: 240px;
    max-height: 380px;
  }

  .sus-visual-cell--wind,
  .sus-visual-cell--green {
    height: 50vw;
    min-height: 200px;
    max-height: 300px;
  }

  .sus-visual-cell--solar .sus-visual-caption {
    padding: var(--space-6);
  }

  .sus-visual-cell--solar .sus-visual-caption p {
    font-size: var(--type-body);
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE — slim hero above the reused form + addresses
   ═══════════════════════════════════════════════════════════════ */
.contact-hero {
  padding: calc(var(--space-24) + var(--space-8)) 0 var(--space-2);
}
.contact-hero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--color-brand-deep);
  display: inline-block;
  margin-bottom: var(--space-2);
}
.contact-hero-title {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}
.contact-hero-lead {
  margin-top: var(--space-4);
  max-width: 56ch;
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: var(--text-secondary);
}
/* Hero supplies the top space; trim the reused section's top padding. */
.contact-page { padding-top: var(--space-8); }
@media (max-width: 768px) {
  .contact-hero { padding-top: calc(var(--space-24)); }
}

/* ═══════════════════════════════════════════════════════════════
   HOME — Global Footprint section (stacked: title + copy + globe)
   ═══════════════════════════════════════════════════════════════ */
.gfp {
  position: relative;
  padding: var(--space-20) 0;
  overflow: hidden;
}
.gfp-wrap {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--space-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-12);
}
.gfp-head { max-width: 760px; display: flex; flex-direction: column; align-items: center; }
.gfp-head .type-h1 { margin: var(--space-2) 0 var(--space-4); }
.gfp-lead {
  max-width: 56ch;
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: var(--text-secondary);
}
.gfp-head .export-link { margin-top: var(--space-6); }
.gfp-globe { max-width: 460px; }
@media (max-width: 768px) {
  .gfp { padding: var(--space-16) 0; }
  .gfp-wrap { padding: 0 var(--layout-margin-mob); gap: var(--space-10); }
  .gfp-globe { max-width: 340px; }
}
