/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS — Kaliber Systems (logo: black + gold)
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Client palette — Gold-Black gradient theme */
  --gold: #B87E2E;
  --gold-hover: #9a6826;
  --gold-light: #D4AF37;
  --gold-glow: rgba(184, 126, 46, 0.35);
  /* Black scale */
  --black: #000000;
  --black-soft: #0d0d0d;
  --black-elevated: #141414;
  --black-card: #111111;
  --gradient-gold-black: linear-gradient(135deg, #000000 0%, #1a1206 45%, #B87E2E 100%);
  --gradient-gold-black-soft: linear-gradient(180deg, #000000 0%, #0a0804 50%, #141008 100%);
  /* Aliases (legacy class names) */
  --navy: var(--black-soft);
  --navy-mid: var(--black-elevated);
  --dark: #f2f2f2;
  --white: #ffffff;
  --gray: rgba(255, 255, 255, 0.55);
  --gray-light: rgba(255, 255, 255, 0.38);
  --light-gray: var(--black-elevated);
  --marquee-muted: rgba(184, 126, 46, 0.22);
  --border-gold: rgba(184, 126, 46, 0.35);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --display-font: "Lora", Georgia, serif;
  --ui-font: "DM Sans", system-ui, sans-serif;
  --header-h: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto; }
body {
  font-family: var(--ui-font);
  font-size: 16px;
  color: var(--dark);
  background: var(--black);
  background-image: var(--gradient-gold-black-soft);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ═══ CUSTOM CURSOR ═══ */
html.custom-cursor,
html.custom-cursor body,
html.custom-cursor a,
html.custom-cursor button,
html.custom-cursor .p-card,
html.custom-cursor .review-card {
  cursor: none !important;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hidden { opacity: 0 !important; }

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, background 0.35s ease, width 0.35s ease, height 0.35s ease;
}

.cursor-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ui-font);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

/* Dark sections */
.cursor[data-mode="dark"] .cursor-ring {
  border-color: rgba(255, 255, 255, 0.75);
}
.cursor[data-mode="dark"] .cursor-dot {
  background: var(--gold-light);
}

/* Links & buttons */
.cursor[data-mode="hover"] .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--gold);
  background: rgba(184, 126, 46, 0.12);
}
.cursor[data-mode="hover"] .cursor-dot {
  width: 7px;
  height: 7px;
}

/* Cards — view */
.cursor[data-mode="view"] .cursor-ring {
  width: 68px;
  height: 68px;
  border-color: var(--gold);
  background: rgba(184, 126, 46, 0.08);
}
.cursor[data-mode="view"] .cursor-label {
  opacity: 1;
}

/* Sliders / marquees */
.cursor[data-mode="slider"] .cursor-ring {
  width: 76px;
  height: 44px;
  border-radius: 999px;
  border-color: var(--gold);
  background: rgba(184, 126, 46, 0.1);
}
.cursor[data-mode="slider"] .cursor-dot {
  opacity: 0;
}
.cursor[data-mode="slider"] .cursor-label {
  opacity: 1;
}

/* Hero — subtle large ring */
.cursor[data-mode="hero"] .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.6);
}
.cursor[data-mode="hero"] .cursor-dot {
  background: var(--gold-light);
}

@media (max-width: 1024px), (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
  html.custom-cursor,
  html.custom-cursor body,
  html.custom-cursor a,
  html.custom-cursor button {
    cursor: auto !important;
  }
}
.reduce-motion .cursor { display: none !important; }
.reduce-motion.custom-cursor,
.reduce-motion.custom-cursor body {
  cursor: auto !important;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ═══ HEADER ═══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 48px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: transform 0.45s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s, opacity 0.45s;
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: var(--border-gold);
}
/* Header hides when scrolling down (after hero section) */
.header--hidden {
  transform: translateY(-110%);
  opacity: 0;
}

/* Logo — true center column */
.logo {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}
.logo-img-wrap { display: flex; align-items: center; }
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.25s, transform 0.3s;
}
.logo-img:hover { opacity: 0.88; transform: scale(1.03); }

/* Main nav — left column */
.main-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-start;
}
.nav-link {
  font-family: var(--ui-font);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

/* Right actions — right column */
.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.header-cta {
  padding: 10px 24px;
  font-size: 0.78rem;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,42,0.06);
}

/* Mobile toggle — hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.menu-toggle:hover { opacity: 0.65; }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ═══ SIDE NAV ═══ */
.side-nav { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.side-nav.open { pointer-events: auto; }
.side-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}
.side-nav.open .side-nav-overlay { opacity: 1; }
.side-nav-content {
  position: absolute;
  left: 0;
  top: 0;
  width: min(400px, 92vw);
  height: 100%;
  background: var(--black-soft);
  padding: 72px 36px 40px;
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.08);
}
.side-nav.open .side-nav-content { transform: translateX(0); }
.side-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.side-nav-close:hover { opacity: 1; }
.side-nav-links { margin-top: 24px; }
.side-nav-links li { margin-bottom: 20px; }
.side-nav-links a {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}
.side-nav-close { color: var(--white); }
.side-nav-links a:hover { color: var(--gold); transform: translateX(4px); }

/* ═══ HERO ═══ */
.hero { padding-top: 0; }
.hero-pin-spacer {
  height: 220vh;
  position: relative;
}
.hero-image-wrapper {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  width: calc(100% - 80px);
  height: calc(100vh - var(--header-h) - 40px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  will-change: width, height, border-radius;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transition: none;
}
.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══ HERO OVERLAY TEXT ═══ */
.hero-overlay-text {
  position: absolute;
  bottom: 52px;
  left: 52px;
  right: 52px;
  z-index: 4;
  color: var(--white);
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-main-title {
  font-family: var(--display-font);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.3s, color 0.3s;
}
.hero-link:hover { gap: 12px; color: var(--gold-light); }

/* ═══ CAPTION ═══ */
.hero-caption {
  text-align: center;
  padding: 48px 24px 32px;
  background: var(--black);
}
.hero-caption h6 {
  font-family: var(--ui-font);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ═══ MARQUEE (large bold serif — reference) ═══ */
.marquee-section {
  text-align: center;
  padding: 32px 20px 72px;
  background: var(--black);
}
.marquee-heading {
  font-family: var(--display-font);
  font-size: clamp(2.75rem, 7.5vw, 6.25rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.marquee-line {
  display: block;
}
.marquee-line + .marquee-line { margin-top: 0.08em; }
.marquee-img {
  display: inline-block;
  width: clamp(72px, 12vw, 120px);
  height: clamp(44px, 7vw, 70px);
  object-fit: cover;
  border-radius: var(--radius-md);
  vertical-align: middle;
  margin: 0 0.15em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ═══ SHARED TYPO ═══ */
.label {
  display: block;
  font-family: var(--ui-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.label.light { color: rgba(212, 174, 80, 0.75); }
.center-label { text-align: center; }

.section-title {
  font-family: var(--display-font);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--white);
}
.section-title.light {
  color: var(--white);
  font-style: normal;
}
.section-title.center { text-align: center; }

/* ═══ ABOUT ═══ */
.about {
  padding: 64px 56px 100px;
  background: var(--black-soft);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: center;
  width: 100%;
}
/* ─── About Images Grid ─── */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.about-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.about-img:hover img { transform: scale(1.07); }

/* Hover overlay */
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.about-img-overlay span {
  color: var(--white);
  font-family: var(--ui-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
}
.about-img:hover .about-img-overlay { opacity: 1; }

/* Main tall image — left column, spans both rows */
.about-img--main {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 560px;
  min-height: 560px;
  transform: translateY(28px);
}

/* Right column stack */
.about-img-stack {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-img--top  { height: 258px; min-height: 258px; }
.about-img--bottom { height: 258px; min-height: 258px; transform: translateX(18px); }

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: -6px;
  left: 38%;
  background: var(--gold);
  color: var(--black);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 28px rgba(196,154,42,0.35);
  z-index: 3;
  min-width: 84px;
}
.about-badge-num {
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-label {
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}
.about-desc { color: var(--gray); margin-bottom: 20px; font-size: 1.05rem; }
.about-content .check-list li { color: rgba(255, 255, 255, 0.78); }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.btn-gold {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  margin-top: 5px;
  box-shadow: 0 8px 24px rgba(184, 126, 46, 0.3);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184, 126, 46, 0.45);
}

/* ═══ STATS ═══ */
.stats {
  padding: 0 0 20px;
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.stat {
  position: relative;
  padding: 32px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-gold);
}
.stat-num {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(5.5rem, 11vw, 9.5rem);
  font-weight: 700;
  font-style: normal;
  color: rgba(184, 126, 46, 0.18);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  will-change: transform;
}
.stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══ SERVICES — horizontal rows, copy always visible (reference) ═══ */
/* ═══ SERVICES ═══ */
.services {
  background: var(--navy);
  color: var(--white);
  padding: 100px 48px 120px;
  overflow: hidden;
}
.services-inner { max-width: 1280px; margin: 0 auto; }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.services-header .section-title.light {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-style: normal;
  margin-bottom: 0;
  max-width: 560px;
  line-height: 1.15;
}

/* ── Split layout ── */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

/* ── Service list (left) ── */
.service-list { position: relative; }

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 52px;
  align-items: start;
  gap: 0 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.4s var(--ease-out);
  overflow: hidden;
}

/* Gold left border indicator */
.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0%;
  background: var(--gold);
  transition: height 0.5s var(--ease-out);
}
.service-row.active::before,
.service-row:hover::before { height: 100%; }

.service-row:hover { padding-left: 10px; }
.service-row.active { padding-left: 10px; }

.service-num {
  font-family: var(--ui-font);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  padding-top: 6px;
  letter-spacing: 0.04em;
  transition: color 0.35s;
}
.service-row.active .service-num,
.service-row:hover .service-num { color: var(--gold); }

.service-main { min-width: 0; }

.service-title {
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  font-style: normal;
  color: rgba(255,255,255,0.55);
  margin: 0 0 0 0;
  line-height: 1.25;
  transition: color 0.35s;
}
.service-row.active .service-title,
.service-row:hover .service-title { color: var(--white); }

/* Desc + tags — hidden by default, reveal on active */
.service-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease-out), opacity 0.4s, margin 0.4s;
}
.service-row.active .service-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s 0.1s var(--ease-out), opacity 0.4s 0.1s, margin 0.4s;
}
.service-row.active .service-tags {
  max-height: 60px;
  opacity: 1;
  margin-top: 16px;
}
.service-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(196,154,42,0.4);
  border-radius: 999px;
  color: var(--gold-light);
}

.service-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  margin-top: 4px;
  transition: border-color 0.35s, background 0.35s, color 0.35s, transform 0.5s var(--ease-out);
}
.service-row.active .service-arrow,
.service-row:hover .service-arrow {
  border-color: var(--gold);
  background: rgba(196,154,42,0.12);
  color: var(--gold);
  transform: rotate(45deg);
}

/* ── Preview panel (right) ── */
.service-preview {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
}

.service-preview-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0s;
  transform: scale(1.06);
}
.service-preview-img.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
  transition: opacity 0.65s ease, transform 0.9s var(--ease-out);
}
.service-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-preview-img--contain {
  background: #000;
}
.service-preview-img--contain img {
  object-fit: contain;
  object-position: center;
}
.service-preview-img--contain::after {
  background: linear-gradient(160deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.5) 100%);
}
.service-preview-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.82) 100%);
}

.service-preview-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--display-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s 0.25s ease, transform 0.5s 0.25s ease;
}
.service-preview-img.active .service-preview-label {
  opacity: 1;
  transform: translateY(0);
}

/* Progress dots */
.service-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.4s, transform 0.4s;
}
.service-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-preview { position: relative; top: 0; height: 340px; order: -1; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 768px) {
  .services { padding: 56px 20px 64px; }
  .services-header { margin-bottom: 36px; padding-bottom: 28px; }
  .services-header .section-title.light { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .service-preview { height: 240px; border-radius: 14px; }
  .service-row {
    grid-template-columns: 36px 1fr 40px;
    gap: 0 12px;
    padding: 22px 0;
  }
  .service-num { font-size: 0.72rem; }
  .service-title { font-size: clamp(1.1rem, 4vw, 1.4rem); }
  .service-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    align-self: center;
  }
  /* On mobile, keep desc/tags readable */
  .service-row.active .service-desc { font-size: 0.92rem; line-height: 1.7; }
  .service-tags span { font-size: 0.68rem; padding: 4px 10px; }
}
@media (max-width: 480px) {
  .service-preview { height: 200px; }
  .service-row { grid-template-columns: 30px 1fr 36px; gap: 0 10px; padding: 18px 0; }
  /* Hide preview on very small screens — content speaks for itself */
  .service-preview { display: none; }
  .services-layout { gap: 0; }
}

/* ═══ REVIEWS / TESTIMONIALS ═══ */
.reviews {
  background: var(--black);
  padding: 108px 0 120px;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  display: none !important;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 72px;
  padding: 0 56px;
}
.reviews-header-left .label { margin-bottom: 12px; }
.reviews-header-left .section-title {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
}
.reviews-sub {
  max-width: 320px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 8px;
}

/* ── Marquee rows ── */
.reviews-row {
  position: relative;
  display: flex;
  overflow: hidden;
  margin-bottom: 16px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.reviews-row:last-child { margin-bottom: 0; }

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  align-items: stretch;
}

/* ── Review card ── */
.review-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--black-card);
  border-radius: 20px;
  padding: 0;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  cursor: default;
  position: relative;
}
.review-card:hover {
  box-shadow: 0 14px 48px rgba(0,0,0,0.5), 0 0 0 1.5px var(--border-gold);
  transform: translateY(-5px);
}

/* Gold top accent bar */
.review-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  flex-shrink: 0;
}

/* Alt — gold-accent card */
.review-card--alt {
  background: var(--black-elevated);
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(184, 126, 46, 0.08);
}
.review-card--alt:hover {
  box-shadow: 0 14px 48px rgba(0,0,0,0.28), 0 0 0 1.5px rgba(196,154,42,0.3);
}
.review-card--alt::before {
  background: linear-gradient(90deg, var(--gold) 0%, rgba(196,154,42,0.35) 100%);
}

/* Card inner padding wrapper */
.review-card-body {
  padding: 28px 30px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Large watermark quote behind the text */
.review-card-body::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--display-font);
  font-size: 9rem;
  line-height: 1;
  color: rgba(196,154,42,0.11);
  pointer-events: none;
  user-select: none;
}
.review-card--alt .review-card-body::before {
  color: rgba(196,154,42,0.18);
}

/* Stars at top */
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.review-text {
  font-family: var(--display-font);
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.review-card--alt .review-text { color: rgba(255,255,255,0.78); }

/* Author row */
.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.review-card--alt .review-author { border-top-color: rgba(255,255,255,0.1); }

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(196,154,42,0.3);
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.review-name {
  font-family: var(--ui-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}
.review-card--alt .review-name { color: #fff; }
.review-role {
  font-family: var(--ui-font);
  font-size: 0.78rem;
  color: var(--gray-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}
.review-card--alt .review-role { color: rgba(255,255,255,0.42); }

/* Remove old qmark svg — replaced by CSS watermark */
.review-qmark { display: none; }

@media (max-width: 768px) {
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 24px; }
  .reviews-sub { max-width: 100%; }
  .review-card { width: 300px; }
  .review-card-body { padding: 22px 22px 20px; }
}

/* ═══ PRODUCTS / CAPABILITIES ═══ */
.products {
  background: var(--navy);
  color: var(--white);
  padding: 100px 56px 110px;
  position: relative;
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}
.products-inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}

.products-header {
  margin-bottom: 52px;
  max-width: 640px;
}
.products-header .section-title {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.12;
}
.products-sub {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  max-width: 520px;
}

.products-bento {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  /* Equal row heights so tall left card aligns with right 2×2 grid */
  grid-template-rows: 1fr 1fr;
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
  min-height: clamp(520px, 68vh, 880px);
}

.p-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  min-height: 240px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.p-card:hover {
  border-color: rgba(196,154,42,0.35);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}
.p-large {
  grid-row: span 2;
  height: 100%;
  min-height: 0;
}

.p-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.p-card:hover img { transform: scale(1.06); }

/* Focal points — keeps subjects centered / readable per card slot */
.products-bento > .p-large img { object-position: 50% 42%; }
.products-bento > .p-card:not(.p-large):nth-of-type(2) img { object-position: 50% 22%; }
.products-bento > .p-card:not(.p-large):nth-of-type(3) img { object-position: 50% 55%; }
.products-bento > .p-card:not(.p-large):nth-of-type(4) img { object-position: 50% 45%; }
.products-bento > .p-card:not(.p-large):nth-of-type(5) img { object-position: 50% 38%; }

.p-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.92) 100%
  );
  transition: background 0.5s ease;
  z-index: 1;
}
.p-card:hover .p-card-overlay {
  background: linear-gradient(
    165deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.5) 35%,
    rgba(0,0,0,0.94) 100%
  );
}

.p-card-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--display-font);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  /* Was 0.07 — too faint on bright imagery (looked like “04” was missing) */
  color: rgba(255,255,255,0.16);
  text-shadow: 0 2px 28px rgba(0,0,0,0.55), 0 0 1px rgba(0,0,0,0.4);
  z-index: 2;
  transition: color 0.45s ease, transform 0.45s ease;
  user-select: none;
  pointer-events: none;
}
.p-card:hover .p-card-num {
  color: rgba(196,154,42,0.2);
  transform: translateY(-3px);
}

.p-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.p-card-tag {
  display: inline-block;
  font-family: var(--ui-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196,154,42,0.4);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 12px;
}

.p-card-title {
  font-family: var(--display-font);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0;
  line-height: 1.25;
}

.p-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--ui-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s, gap 0.3s;
}
.p-card:hover .p-card-link {
  color: var(--gold);
  gap: 10px;
}
.p-card-link svg { transition: transform 0.3s; }
.p-card:hover .p-card-link svg { transform: translateX(2px); }

/* ═══ TESTIMONIALS ═══ */
.testimonials {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 72px;
  text-align: center;
}
.testimonials-inner { max-width: 720px; margin: 0 auto; position: relative; }
.testimonial-slides {
  position: relative;
  margin-bottom: 28px;
  /* height is set by JS to match tallest slide; fallback below */
  min-height: 160px;
}
.t-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  padding-bottom: 4px;
}
.t-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.t-slide p {
  font-family: var(--display-font);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}
.t-slide h4 {
  font-family: var(--ui-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.t-role {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 4px;
  display: block;
}
.t-avatars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.t-av {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.38;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}
.t-av.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.08);
}
.t-next {
  color: var(--white);
  padding: 10px;
  border-radius: 50%;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}
.t-next:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}

/* ═══ BESTSELLERS + hover overlay (reference Woo layout) ═══ */
/* ═══ OUR APPROACH ═══ */
.approach {
  padding: 100px 48px 110px;
  background: var(--black-soft);
}

.approach-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto 52px;
}
.approach-header .section-title { margin-bottom: 0; }

.view-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s, gap 0.3s;
}
.view-more:hover { color: var(--gold); gap: 14px; }

/* ── Cards grid ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.approach-card {
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  /* Subtle scale on hover via transform */
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.approach-card:hover { transform: scale(1.015); }

/* Full-bleed background image */
.approach-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.approach-card:hover .approach-card-bg { transform: scale(1.07); }

/* Dark gradient overlay */
.approach-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.15) 100%
  );
  transition: background 0.5s ease;
}
.approach-card:hover .approach-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.22) 100%
  );
}

/* Step number — large watermark */
.approach-num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--display-font);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  transition: color 0.45s, transform 0.45s;
  z-index: 2;
  user-select: none;
}
.approach-card:hover .approach-num {
  color: rgba(196,154,42,0.22);
  transform: scale(1.1) translateY(-4px);
}

/* Content at the bottom */
.approach-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 30px;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.approach-tag {
  display: inline-block;
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196,154,42,0.45);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.approach-title {
  font-family: var(--display-font);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0;
  line-height: 1.3;
}

/* Desc + CTA hidden by default, slides up on hover */
.approach-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s, margin 0.4s;
}
.approach-card:hover .approach-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

.approach-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s 0.06s var(--ease-out), opacity 0.4s 0.1s, margin 0.4s;
}
.approach-card:hover .approach-cta {
  max-height: 40px;
  opacity: 1;
  margin-top: 16px;
}
.approach-cta:hover { color: var(--gold-light); gap: 10px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-card:last-child { grid-column: span 2; height: 380px; }
}
@media (max-width: 640px) {
  .approach { padding: 72px 20px 80px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { height: 400px; }
  .approach-card:last-child { grid-column: span 1; height: 400px; }
  .approach-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ═══ CONTACT ═══ */
.contact {
  padding: 88px 40px;
  text-align: center;
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
}
.contact-inner { max-width: 900px; margin: 0 auto; }
.contact-sub { color: var(--gray); margin-bottom: 40px; font-style: normal; font-family: var(--ui-font); }
.contact-boxes { display: flex; gap: 20px; }
.c-box {
  flex: 1;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: left;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.35s;
  box-shadow: 0 4px 0 transparent;
}
.c-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--border-gold);
}
.c-icon { margin-bottom: 22px; color: var(--gold); opacity: 0.95; }
.c-box h4 {
  font-family: var(--ui-font);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.c-box p { color: var(--gray); font-size: 1.2rem; }

/* ═══ TICKER ═══ */
.ticker {
  overflow: hidden;
  padding: 56px 0 64px;
  background: var(--black-soft);
  border-top: 1px solid var(--border-subtle);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--display-font);
  font-size: clamp(3.25rem, 8vw, 7rem);
  font-weight: 700;
  font-style: normal;
  color: var(--marquee-muted);
  flex-shrink: 0;
  padding-right: 0.35em;
}

/* ═══ COLLABORATE / NEWSLETTER ═══ */
.newsletter {
  position: relative;
  background: var(--black-elevated);
  padding: 110px 56px 120px;
  overflow: hidden;
  color: var(--white);
  border-top: 1px solid var(--border-gold);
}

/* Subtle dot-grid background */
.nl-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(196,154,42,0.22) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.newsletter-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  z-index: 1;
}

.nl-top {
  text-align: center;
  margin-bottom: 52px;
}

.nl-eyebrow {
  display: inline-block;
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 24px;
  background: rgba(196,154,42,0.12);
}

.nl-title {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.nl-title em {
  font-style: italic;
  color: var(--gold);
}

.nl-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

/* CTA row */
.nl-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nl-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 620px;
  flex-wrap: wrap;
}

.nl-input-wrap {
  flex: 1;
  min-width: 240px;
  position: relative;
  display: flex;
  align-items: center;
}
.nl-input-icon {
  position: absolute;
  left: 18px;
  color: var(--gray-light);
  pointer-events: none;
  flex-shrink: 0;
}
.nl-form input {
  width: 100%;
  padding: 16px 18px 16px 46px;
  background: var(--black-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--ui-font);
  font-size: 0.9rem;
  outline: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nl-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.nl-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,42,0.12);
}

.nl-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.nl-submit svg { transition: transform 0.3s; }
.nl-submit:hover svg { transform: translateX(4px); }

/* Trust indicators */
.nl-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.nl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray);
}
.nl-trust-item svg { opacity: 0.55; flex-shrink: 0; color: var(--gold-hover); }

@media (max-width: 768px) {
  .newsletter { padding: 80px 24px 90px; }
  .nl-form { flex-direction: column; }
  .nl-input-wrap { min-width: 100%; }
  .nl-submit { width: 100%; justify-content: center; }
  .nl-trust { gap: 16px; }
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  /* Gold top accent */
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
}

/* Main 4-column grid */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 56px 72px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo img {
  height: 95px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,42,0.1);
}

/* Nav columns */
.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-col-title {
  font-family: var(--ui-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196,154,42,0.2);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

/* Contact column */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.footer-contact-list a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-cta {
  display: inline-block;
  margin-top: 6px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ui-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
  align-self: flex-start;
}
.footer-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 56px;
  background: rgba(0,0,0,0.2);
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-credit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}
.footer-credit span { color: rgba(255,255,255,0.42); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px 48px; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 16px; }
}

/* ── old footer refs kept for transition ── */
.f-copy { display: none; }
.f-links { display: none; }
.f-right { display: none; }
.f-contact-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  font-weight: 600;
  font-size: 0.82rem;
}
.f-contact-bar a { transition: color 0.25s; }
.f-contact-bar a:hover { color: var(--gold); }

/* ═══ SCROLL TOP ═══ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  box-shadow: 0 8px 24px rgba(184, 126, 46, 0.45);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* ═══ REDUCED MOTION (class from JS) ═══ */
.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile · Tablet · Laptop · Desktop
   ═══════════════════════════════════════════════ */

/* ── Laptop / small desktop (≤ 1280px) ── */
@media (max-width: 1280px) {
  .about-inner { max-width: 100%; gap: 56px; }
  .footer-main { gap: 40px; padding: 72px 40px 60px; }
  .services { padding: 80px 36px 100px; }
  .approach { padding: 80px 36px 90px; }
  .newsletter { padding: 90px 40px 100px; }
  .reviews-header { padding: 0 40px; }
}

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  :root { --header-h: 76px; }

  /* Header */
  .header { padding: 0 28px; }
  .logo-img { height: 62px; }
  .nav-link { font-size: 0.82rem; padding: 8px 10px; }
  .header-cta { display: none; }

  /* Hero */
  .hero-pin-spacer { height: 200vh; }
  .hero-image-wrapper {
    width: calc(100% - 56px);
    height: calc(100vh - var(--header-h) - 32px);
    top: calc(var(--header-h) + 16px);
  }
  .hero-overlay-text { bottom: 40px; left: 40px; right: 40px; }
  .hero-main-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }

  /* About */
  .about { padding: 60px 36px 90px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; max-width: 100%; }
  .about-img--main { height: 460px; min-height: 460px; }

  /* Stats */
  .stats-row { max-width: 100%; }

  /* Services */
  .services { padding: 80px 36px 90px; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-preview { position: relative; top: 0; height: 360px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Products */
  .products { padding: 80px 36px 90px; }
  .products-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr auto;
    align-items: stretch;
    min-height: clamp(420px, 56vh, 760px);
  }
  .p-large { grid-row: span 2; height: 100%; min-height: 0; }

  /* Reviews */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 52px; padding: 0 36px; }

  /* Approach */
  .approach { padding: 80px 36px 90px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-card:last-child { grid-column: span 2; height: 380px; }
  .approach-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Contact */
  .contact { padding: 72px 36px; }

  /* Newsletter */
  .newsletter { padding: 80px 36px 90px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 36px 48px; }
  .footer-bottom { padding: 18px 36px; }
}

/* ── Tablet portrait (≤ 768px) ── */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* Header — hamburger */
  .header { grid-template-columns: auto 1fr auto; padding: 0 20px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; grid-column: 1; }
  .logo { grid-column: 2; padding: 0 8px; }
  .logo-img { height: 52px; }
  .header-actions { grid-column: 3; }
  .header-cta { display: none; }

  /* Hero */
  .hero-pin-spacer { height: 180vh; }
  .hero-image-wrapper {
    width: calc(100% - 28px);
    border-radius: 14px;
    top: calc(var(--header-h) + 10px);
    height: calc(100vh - var(--header-h) - 24px);
  }
  .hero-overlay-text { bottom: 28px; left: 28px; right: 28px; }
  .hero-main-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hero-tag { font-size: 0.65rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* About */
  .about { padding: 48px 20px 80px; }
  .about-inner { gap: 40px; }
  .about-images { grid-template-columns: 1fr; gap: 12px; }
  .about-img--main { grid-column: 1; grid-row: auto; height: 280px; min-height: 280px; transform: none; }
  .about-img-stack { grid-column: 1; flex-direction: row; gap: 10px; }
  .about-img--top, .about-img--bottom { height: 180px; min-height: 180px; }
  .about-img--bottom { transform: none; }
  .about-badge { left: 50%; transform: translateX(-50%); bottom: -18px; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: clamp(3.2rem, 16vw, 5.5rem); }
  .stat:nth-child(2)::after { display: none; }
  .stat { padding: 24px 12px 32px; }

  /* Services */
  .services { padding: 64px 20px 72px; }
  .service-row { grid-template-columns: 40px 1fr 36px; gap: 0 12px; padding: 24px 0; }
  .service-preview { height: 260px; border-radius: 12px; }

  /* Products */
  .products { padding: 64px 20px 72px; }
  .products-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .p-large { grid-row: span 1; min-height: 340px; }
  .p-card { min-height: 260px; }
  .p-card-num { font-size: 2.5rem; }

  /* Reviews */
  .reviews { padding: 72px 0 80px; }
  .reviews-header { padding: 0 20px; margin-bottom: 40px; gap: 12px; }
  .reviews-sub { max-width: 100%; }
  .review-card { width: 300px; }
  .review-card-body { padding: 22px 20px 20px; }

  /* Approach */
  .approach { padding: 64px 20px 72px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { height: 380px; }
  .approach-card:last-child { grid-column: span 1; height: 380px; }
  .approach-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }

  /* Testimonials */
  .testimonials { padding: 56px 20px 56px; }
  .testimonial-slides { min-height: 0; }
  .t-slide p { font-size: 1rem; line-height: 1.8; }
  .t-av { width: 48px; height: 48px; }
  .t-avatars { gap: 8px; }

  /* Contact */
  .contact { padding: 56px 20px; }
  .contact-boxes { flex-direction: column; }

  /* Ticker */
  .ticker { padding: 40px 0 48px; }

  /* Marquee heading */
  .marquee-heading { gap: 12px; }

  /* Newsletter */
  .newsletter { padding: 64px 20px 72px; }
  .nl-top { align-items: flex-start; text-align: left; }
  .nl-form { flex-direction: column; }
  .nl-input-wrap { min-width: 100%; }
  .nl-submit { width: 100%; justify-content: center; }
  .nl-trust { gap: 14px; justify-content: flex-start; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px 40px; }
  .footer-bottom { padding: 16px 20px; flex-wrap: wrap; gap: 10px; }
  .footer-logo img { height: 48px; }
}

/* ── Mobile large (≤ 600px) ── */
@media (max-width: 600px) {
  /* Section padding normalise */
  .about, .services, .products, .approach, .testimonials,
  .reviews, .contact, .newsletter { padding-left: 16px; padding-right: 16px; }

  /* Hero text smaller */
  .hero-main-title { font-size: clamp(1.4rem, 6vw, 2rem); line-height: 1.25; }
  .hero-sub { font-size: 0.85rem; }

  /* About badge hidden on very small layout */
  .about-badge { display: none; }

  /* Stats single row on very small, else 2-col */
  .stat-num { font-size: clamp(2.8rem, 17vw, 5rem); }

  /* Services */
  .service-row { grid-template-columns: 36px 1fr 32px; gap: 0 10px; padding: 20px 0; }
  .service-preview { height: 220px; }

  /* Reviews card smaller */
  .review-card { width: 270px; }

  /* Approach cards */
  .approach-card { height: 340px; }
  .approach-num { font-size: 3.5rem; }

  /* Contact */
  .c-box h4 { font-size: 1.5rem; }
  .c-box p { font-size: 1rem; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 16px 32px; }
  .footer-bottom { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 14px; }
}

/* ── Mobile small (≤ 420px) ── */
@media (max-width: 420px) {
  :root { --header-h: 62px; }

  .logo-img { height: 44px; }

  .hero-main-title { font-size: clamp(1.2rem, 6.5vw, 1.7rem); }
  .hero-overlay-text { bottom: 20px; left: 16px; right: 16px; }
  .hero-image-wrapper { width: calc(100% - 20px); }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: clamp(2.4rem, 18vw, 4rem); }

  .section-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  .review-card { width: 250px; }

  .footer-logo img { height: 40px; }
  .footer-main { padding: 36px 16px 28px; }
}

/* ═══ ABOUT US PAGE ═══ */
.about-page-body .about-page {
  padding-top: var(--header-h);
}

/* Hero */
.about-page-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}
.about-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
}
.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 48%, rgba(10, 10, 10, 0.78) 100%),
    linear-gradient(to top, var(--black) 0%, transparent 42%);
}
.about-page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(184, 126, 46, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 126, 46, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
}
.about-page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 920px;
  width: 100%;
}
.about-page-breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 20px;
}
.about-page-breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s;
}
.about-page-breadcrumb a:hover { color: var(--gold); }
.about-page-breadcrumb span { margin: 0 0.4em; opacity: 0.5; }
.about-page-title {
  font-family: var(--display-font);
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.about-title-accent {
  display: block;
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 55%, #e8c878 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-page-lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin-bottom: 32px;
}
.about-page-hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-page-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.about-page-pill:hover {
  background: rgba(184, 126, 46, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Stats on about page */
.about-page-stats {
  padding: 0;
  border-bottom: 1px solid var(--border-subtle);
}
.about-page-stats .stats-row {
  max-width: 1200px;
  margin: 0 auto;
}
.about-page-stats .stat-value--suffix {
  margin-bottom: 14px;
  line-height: 0.9;
}
.about-page-stats .stat-value--suffix .stat-num {
  display: inline;
  margin-bottom: 0;
}
.about-page-stats .stat-suffix {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: rgba(184, 126, 46, 0.18);
  margin-left: 0.06em;
}

.about-page-section {
  padding: clamp(64px, 8vw, 96px) 48px;
  background: var(--black);
}
.about-page-section--alt {
  background: var(--black-soft);
}
.about-page-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.about-section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.about-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin: 0;
}
.about-section-desc.center { margin: 0 auto; }

.about-page-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 20px;
}
.about-page-text strong { color: var(--white); }
.about-page-text a { color: var(--gold-light); text-decoration: underline; }
.about-page-text a:hover { color: var(--gold); }
.about-page-emphasis {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

/* Mission intro */
.about-page-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.about-page-intro-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 5;
}
.about-page-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page-intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.about-page-intro-badge-num {
  display: block;
  font-family: var(--display-font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-page-intro-badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.about-highlight {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.about-highlight:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}
.about-highlight-icon {
  flex-shrink: 0;
  font-family: var(--ui-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 4px;
}
.about-highlight h3 {
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-highlight p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
}

/* Pillars */
.about-page-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-pillar {
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.about-pillar:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(184, 126, 46, 0.08);
}
.about-pillar-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.about-pillar-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, transparent 55%);
  pointer-events: none;
}
.about-pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out);
}
.about-pillar:hover .about-pillar-img img { transform: scale(1.06); }
.about-pillar-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-family: var(--ui-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(6px);
}
.about-pillar-body { padding: 22px 24px 26px; }
.about-pillar h2 {
  font-family: var(--display-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.about-pillar p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

/* Gallery marquee */
.about-page-gallery {
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}
.about-page-gallery-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.about-page-gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}
.about-page-gallery-track img {
  flex-shrink: 0;
  width: clamp(260px, 28vw, 380px);
  height: clamp(160px, 18vw, 240px);
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

/* K2 platform */
.about-k2-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 8px;
}
.about-k2-intro {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}

.about-k2-capabilities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-k2-cap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 72px;
  padding: 18px 20px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, background 0.3s;
}
.about-k2-cap:hover {
  border-color: var(--border-gold);
  background: rgba(184, 126, 46, 0.06);
}
.about-k2-cap-icon {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 126, 46, 0.2);
}
.about-k2-cap-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.about-k2-stages { display: flex; flex-direction: column; gap: 20px; }
.about-k2-stages-label {
  font-family: var(--ui-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-subtle);
}

.about-k2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.about-k2-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 26px 26px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.about-k2-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}
.about-k2-ver {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 5px 11px;
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184, 126, 46, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  margin-bottom: 18px;
}
.about-k2-card h3 {
  font-family: var(--display-font);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.about-k2-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
  margin-top: auto;
}

.about-k2-note,
.about-page-note {
  margin-bottom: 0;
  padding: 24px 28px;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(184, 126, 46, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

@media (min-width: 900px) {
  .about-k2-capabilities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .about-k2-cap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 108px;
    padding: 20px 18px;
  }
  .about-k2-cap-icon { margin-top: 0; }
  .about-k2-cap-text { font-size: 0.84rem; }
}

/* Why it matters */
.about-page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.about-callouts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.about-callout {
  padding: 18px 22px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.about-callout strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}
.about-callout span {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
}
.about-page-split-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.about-page-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-split-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
}

.about-leaders {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}
.about-leader {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 36px;
  align-items: start;
  padding: 36px 32px;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(184, 126, 46, 0.05) 0%, transparent 55%),
    var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.35s, box-shadow 0.35s;
}
.about-leader:hover {
  border-color: var(--border-gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.about-leader--reverse {
  grid-template-columns: 1fr minmax(200px, 260px);
}
.about-leader--reverse .about-leader-photo { order: 2; }
.about-leader--reverse .about-leader-body { order: 1; }
.about-leader-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(184, 126, 46, 0.45);
  aspect-ratio: 3 / 4;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.about-leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-leader-body { min-width: 0; }
.about-leader-head {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.about-leader-head h3 {
  font-family: var(--ui-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.about-leader-name {
  font-family: var(--display-font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-leader-role {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}
.about-leader .about-page-text:last-child { margin-bottom: 0; }

/* Founder */
.about-founder-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.about-founder-intro .section-title { margin-bottom: 16px; }
.about-founder-quote {
  position: relative;
  margin: 0;
  padding: 40px 44px 36px;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(184, 126, 46, 0.08) 0%, transparent 55%),
    var(--black-card);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.about-founder-quote-mark {
  position: absolute;
  top: 12px;
  right: 28px;
  font-family: var(--display-font);
  font-size: 5rem;
  line-height: 1;
  color: rgba(184, 126, 46, 0.15);
  pointer-events: none;
}
.about-founder-quote p {
  font-family: var(--display-font);
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}
.about-founder-quote p:last-of-type { margin-bottom: 28px; }
.about-founder-quote footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--ui-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.about-founder-quote footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
}
.about-founder-quote footer em {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  font-style: normal;
  color: var(--gold-light);
  margin-top: 2px;
}

/* FAQ */
.about-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.about-faq-header { margin-bottom: 0; }
.about-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-faq-item {
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.about-faq-item[open] { border-color: var(--border-gold); }
.about-faq-item summary {
  padding: 20px 24px;
  font-family: var(--ui-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.about-faq-item summary::-webkit-details-marker { display: none; }
.about-faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
}
.about-faq-item[open] summary::after { content: "−"; }
.about-faq-item p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
  margin: 0;
}
.about-faq-item p a { color: var(--gold-light); }

.about-page-cta {
  position: relative;
  padding: clamp(72px, 10vw, 100px) 48px;
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
}
.about-page-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(184, 126, 46, 0.12) 0%, transparent 55%),
    var(--black-elevated);
}
.about-page-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}
.about-page-cta-inner .section-title { margin-bottom: 16px; }
.about-page-cta-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
}
.about-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.about-page-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s, gap 0.25s;
}
.about-page-cta-link:hover {
  color: var(--gold);
  gap: 12px;
}

@media (max-width: 1024px) {
  .about-page-intro-grid,
  .about-founder-layout,
  .about-faq-layout { grid-template-columns: 1fr; }
  .about-page-pillars,
  .about-k2-grid,
  .about-k2-capabilities { grid-template-columns: 1fr; }
  .about-page-split { grid-template-columns: 1fr; gap: 32px; }
  .about-page-split-img { aspect-ratio: 16/10; order: -1; }
  .about-leader,
  .about-leader--reverse {
    grid-template-columns: 200px 1fr;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .about-page-hero {
    min-height: auto;
    padding: 100px 20px 56px;
    align-items: flex-end;
  }
  .about-page-section,
  .about-page-cta { padding-left: 20px; padding-right: 20px; }
  .about-page-hero-nav { gap: 8px; }
  .about-page-pill { padding: 8px 14px; font-size: 0.7rem; }
  .about-founder-quote {
    padding: 28px 24px;
    border-radius: var(--radius-md);
  }
  .about-founder-quote-mark { font-size: 3.5rem; right: 16px; }
  .about-leader,
  .about-leader--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  .about-leader--reverse .about-leader-photo,
  .about-leader--reverse .about-leader-body { order: unset; }
  .about-leader-photo {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ═══ DEVELOPMENT PAGE ═══ */
.development-page .about-page-hero-bg img {
  object-position: center center;
}

.development-page .about-section-head { margin-bottom: 48px; }

/* Intro split */
.dev-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}
.dev-intro-copy .section-title { margin-bottom: 16px; }
.dev-intro-copy .about-section-desc { margin-bottom: 28px; }
.dev-principles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dev-principle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.dev-principle:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}
.dev-principle-num {
  flex-shrink: 0;
  font-family: var(--ui-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 2px;
}
.dev-principle p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.dev-media-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
}

/* Featured K2 V3 animation — main development page content */
.dev-feature-video {
  padding: 72px 24px 88px;
  background: linear-gradient(180deg, var(--black) 0%, #0f0c06 50%, var(--black) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.dev-feature-video-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.dev-feature-video-frame {
  margin: 0 auto;
  max-width: min(960px, 92vw);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(184, 126, 46, 0.08);
  background: var(--black-soft);
}

.dev-feature-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 4;
  object-fit: cover;
  vertical-align: middle;
  background: var(--black);
}

.dev-feature-video-caption {
  padding: 16px 24px 18px;
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.5);
}

.dev-intro-grid--solo {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}

.dev-intro-copy--wide {
  text-align: center;
}

.dev-intro-copy--wide .dev-principles {
  align-items: stretch;
}

@media (max-width: 768px) {
  .dev-feature-video {
    padding: 56px 16px 64px;
  }
  .dev-feature-video-frame {
    max-width: 100%;
  }
}

.dev-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dev-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, transparent 100%);
}

/* K2 version timeline */
.dev-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.dev-timeline-line {
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(184, 126, 46, 0.15));
  transform-origin: top center;
  pointer-events: none;
  z-index: 0;
}
.dev-version {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  align-items: start;
  padding: 8px 0;
}
.dev-version-marker {
  display: flex;
  justify-content: center;
  padding-top: 36px;
  position: relative;
  z-index: 1;
}
.dev-version-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--ui-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(184, 126, 46, 0.18);
}
.dev-version-panel {
  visibility: hidden;
  padding: 32px 34px 28px;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(184, 126, 46, 0.06) 0%, transparent 55%),
    var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
}
.dev-timeline.is-ready .dev-version-panel {
  visibility: visible;
}
.dev-version-panel:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.dev-version-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-bottom: 18px;
}
.dev-version-title {
  font-family: var(--display-font);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.dev-version-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 16px 0 8px;
}
.dev-version-panel .about-page-text { margin-bottom: 16px; }
.dev-version-panel .about-page-list { margin-bottom: 18px; }
.dev-version-outcome {
  margin: 0;
  padding: 16px 18px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid var(--gold);
  background: rgba(184, 126, 46, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Integration cards */
.dev-integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.dev-integration-card {
  position: relative;
  padding: 28px 26px 26px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.dev-integration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
  transition: opacity 0.35s;
}
.dev-integration-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}
.dev-integration-card:hover::before { opacity: 1; }
.dev-integration-index {
  display: block;
  font-family: var(--ui-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}
.dev-integration-card h3 {
  font-family: var(--display-font);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 10px;
}
.dev-integration-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* Architecture roadmap */
.dev-arch-visual {
  margin-bottom: 40px;
  padding: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(184, 126, 46, 0.08) 0%, transparent 70%),
    var(--black-card);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
}
.dev-arch-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}
.dev-arch-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.dev-roadmap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
.dev-roadmap-step {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  padding: 24px 18px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  transition: border-color 0.35s, box-shadow 0.35s;
}
.dev-roadmap-step:hover {
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.dev-roadmap-step--future {
  opacity: 0.9;
  border-style: dashed;
  border-top-color: rgba(255, 255, 255, 0.25);
}
.dev-roadmap-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 11px;
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 100px;
}
.dev-roadmap-badge--muted {
  color: var(--gray);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
}
.dev-roadmap-step h3 {
  font-family: var(--display-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 0 0 12px;
  min-height: 2.7em;
}
.dev-roadmap-step--future h3 {
  min-height: 0;
}
.dev-roadmap-step .about-page-list {
  margin-bottom: 0;
  flex: 1;
}
.dev-roadmap-step .about-page-list li {
  font-size: 0.86rem;
}
.dev-roadmap-step .about-page-text {
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
}
.dev-roadmap-arrow {
  flex: 0 0 20px;
  align-self: center;
  width: 20px;
  min-width: 20px;
  height: 2px;
  margin: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  position: relative;
}
.dev-roadmap-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--gold-light);
}
.dev-roadmap-arrow--muted {
  background: rgba(255, 255, 255, 0.2);
}
.dev-roadmap-arrow--muted::after {
  border-left-color: rgba(255, 255, 255, 0.35);
}

.dev-arch-extra {
  width: 100%;
  box-sizing: border-box;
  padding: 28px 32px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
}
.dev-arch-extra-label {
  display: block;
  font-family: var(--ui-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.dev-arch-extra h3 {
  font-family: var(--display-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.dev-arch-extra .about-page-text { margin-bottom: 0; }

/* Platform structure hierarchy */
.dev-hierarchy-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.dev-hierarchy-intro {
  max-width: 720px;
}
.dev-hierarchy-intro .section-title { margin-bottom: 16px; }
.dev-hierarchy-intro .about-section-desc { margin-bottom: 28px; }
.dev-hierarchy-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.dev-hierarchy-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--gray);
}
.dev-hierarchy-legend-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dev-hierarchy-legend-dot--req {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 126, 46, 0.25);
}
.dev-hierarchy-legend-dot--opt {
  background: transparent;
  border: 2px solid var(--gold-light);
}

.dev-hierarchy-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.dev-hierarchy-tier {
  width: 100%;
}
.dev-hierarchy-tier-label {
  display: block;
  width: 100%;
  font-family: var(--ui-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 16px;
}
.dev-hierarchy-tier--base {
  margin-top: 0;
}
.dev-hierarchy-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: 100%;
}
.dev-hierarchy-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  margin: 4px 0;
}
.dev-hierarchy-bridge-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.dev-hierarchy-bridge-text {
  display: block;
  font-family: var(--ui-font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}

.dev-hierarchy-layer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 0;
  padding: 22px 20px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.35s, box-shadow 0.35s;
}
.dev-hierarchy-layer--opt:hover {
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.dev-hierarchy-layer--opt {
  border-style: dashed;
  border-color: rgba(184, 126, 46, 0.25);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(184, 126, 46, 0.04) 0%, transparent 70%),
    var(--black-card);
}
.dev-hierarchy-layer--base {
  flex-direction: row;
  align-items: center;
  gap: 28px;
  width: 100%;
  height: auto;
  padding: 32px 36px;
  border-style: solid;
  border-color: var(--border-gold);
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(184, 126, 46, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, rgba(184, 126, 46, 0.06) 0%, var(--black-card) 50%);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(184, 126, 46, 0.15);
}
.dev-hierarchy-layer--base:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(184, 126, 46, 0.2);
}
.dev-hierarchy-layer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  background: rgba(184, 126, 46, 0.1);
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}
.dev-hierarchy-layer-icon--base {
  width: 64px;
  height: 64px;
  color: var(--gold);
  background: rgba(184, 126, 46, 0.15);
}
.dev-hierarchy-layer-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.dev-hierarchy-layer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 10px;
}
.dev-hierarchy-layer-num {
  font-family: var(--ui-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.dev-hierarchy-layer h3 {
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 0 0 8px;
  min-height: 2.7em;
}
.dev-hierarchy-layer--base h3 {
  font-size: 1.35rem;
  min-height: 0;
  margin-bottom: 10px;
}
.dev-hierarchy-layer p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
  flex: 1;
}
.dev-hierarchy-layer--base p {
  font-size: 0.95rem;
  max-width: none;
  flex: none;
}
.dev-hierarchy-tag {
  flex-shrink: 0;
  padding: 4px 10px;
  font-family: var(--ui-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 100px;
}
.dev-hierarchy-tag--opt {
  color: var(--gold-light);
  background: rgba(184, 126, 46, 0.12);
  border: 1px solid var(--border-gold);
}

@media (max-width: 1100px) {
  .dev-roadmap {
    flex-wrap: wrap;
    gap: 16px;
  }
  .dev-roadmap-step {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
  .dev-roadmap-arrow { display: none; }
  .dev-roadmap-step--future {
    flex: 1 1 100%;
    min-width: 100%;
  }
}
@media (max-width: 1024px) {
  .dev-intro-grid { grid-template-columns: 1fr; }
  .dev-media-wrap { order: -1; }
  .dev-hierarchy-tier-grid { grid-template-columns: 1fr; }
  .dev-hierarchy-layer h3 { min-height: 0; }
}
@media (max-width: 900px) {
  .dev-hierarchy-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dev-hierarchy-tier-grid .dev-hierarchy-layer:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .dev-integration-grid { grid-template-columns: 1fr; }
  .dev-roadmap { flex-direction: column; }
  .dev-roadmap-step {
    flex: 1 1 auto;
    min-width: 0;
  }
  .dev-roadmap-step--future { flex: 1 1 auto; }
  .dev-timeline-line { left: 19px; }
  .dev-version {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .dev-version-step { width: 34px; height: 34px; font-size: 0.65rem; }
  .dev-version-panel { padding: 24px 20px; }
  .dev-hierarchy-tier-grid { grid-template-columns: 1fr; }
  .dev-hierarchy-tier-grid .dev-hierarchy-layer:last-child { grid-column: auto; }
  .dev-hierarchy-layer--base {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }
  .dev-hierarchy-bridge {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .dev-hierarchy-bridge-line { display: none; }
  .dev-hierarchy-bridge-text {
    white-space: normal;
    padding: 8px 0;
  }
}

/* K2 White Paper */
.dev-whitepaper-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.dev-whitepaper-subtitle {
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 16px !important;
}

.dev-whitepaper-download {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.dev-whitepaper-doc {
  padding: 32px 28px;
  background: rgba(184, 126, 46, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  text-align: center;
}

.dev-whitepaper-doc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
}

.dev-whitepaper-doc h3 {
  font-family: var(--display-font);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.dev-whitepaper-doc p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}

.dev-whitepaper-doc .btn-gold {
  width: 100%;
  margin-top: 0;
}

.dev-whitepaper-contact {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dev-whitepaper-contact:hover {
  color: var(--white);
}

.dev-whitepaper-summary {
  padding: 36px 40px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}

.dev-whitepaper-summary h3 {
  font-family: var(--display-font);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.dev-whitepaper-summary p + p {
  margin-top: 16px;
}

.dev-whitepaper-sections {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dev-whitepaper-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.dev-whitepaper-item summary {
  padding: 20px 24px;
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s, background 0.25s;
}

.dev-whitepaper-item summary::-webkit-details-marker {
  display: none;
}

.dev-whitepaper-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.dev-whitepaper-item[open] summary::after {
  content: "\2212";
}

.dev-whitepaper-item summary:hover {
  color: var(--gold-light);
  background: rgba(184, 126, 46, 0.05);
}

.dev-whitepaper-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--border-subtle);
}

.dev-whitepaper-body p,
.dev-whitepaper-body li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.dev-whitepaper-body p + p,
.dev-whitepaper-body ul,
.dev-whitepaper-body ol {
  margin-top: 14px;
}

.dev-whitepaper-body h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-family: var(--display-font);
  font-size: 1rem;
  color: var(--gold-light);
}

.dev-whitepaper-body ul,
.dev-whitepaper-body ol {
  padding-left: 20px;
}

.dev-whitepaper-body li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .dev-whitepaper-header {
    grid-template-columns: 1fr;
  }
  .dev-whitepaper-download {
    position: static;
  }
  .dev-whitepaper-summary {
    padding: 28px 24px;
  }
}

/* ═══ VISION PAGE ═══ */
.vision-page .about-page-hero-bg img {
  object-position: center 40%;
}

.vision-prose-block {
  max-width: 820px;
  margin: 0 auto;
}

.vision-prose-inner {
  margin-top: 32px;
}

.vision-prose-inner .about-page-text + .about-page-text {
  margin-top: 20px;
}

.vision-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.vision-principle {
  position: relative;
  padding: 32px 28px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 126, 46, 0.15);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.vision-principle:hover {
  border-color: rgba(184, 126, 46, 0.4);
  background: rgba(184, 126, 46, 0.04);
}

.vision-principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--gold);
  border: 1px solid rgba(184, 126, 46, 0.25);
  border-radius: 50%;
}

.vision-principle-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(184, 126, 46, 0.35);
}

.vision-principle h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.vision-principle p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.vision-statement {
  max-width: 780px;
  margin: 0 auto;
}

.vision-statement-body {
  margin-top: 28px;
}

.vision-statement-body .about-page-text + .about-page-text {
  margin-top: 18px;
}

.vision-commitments {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vision-commitments li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.vision-commitments li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.vision-split-reverse {
  direction: rtl;
}

.vision-split-reverse > * {
  direction: ltr;
}

.vision-split-img img {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.4);
}

.vision-horizon-card {
  padding: 48px 56px;
  background: linear-gradient(135deg, rgba(184, 126, 46, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%);
  border: 1px solid rgba(184, 126, 46, 0.2);
  border-radius: 4px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.vision-horizon-card .section-title {
  margin: 12px 0 24px;
}

.vision-horizon-card .about-page-text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.vision-horizon-close {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .vision-principles {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .vision-horizon-card {
    padding: 32px 24px;
  }
  .vision-split-reverse {
    direction: ltr;
  }
}

/* ═══ INVESTOR RELATIONS PAGE ═══ */
.ir-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ir-why-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 126, 46, 0.15);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ir-why-card:hover {
  border-color: rgba(184, 126, 46, 0.35);
  background: rgba(184, 126, 46, 0.04);
}

.ir-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--gold);
  border: 1px solid rgba(184, 126, 46, 0.25);
  border-radius: 50%;
}

.ir-why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.ir-why-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.ir-focus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.ir-market-chart {
  padding: 32px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(184, 126, 46, 0.12);
  border-radius: 4px;
}

.ir-market-bar + .ir-market-bar {
  margin-top: 24px;
}

.ir-market-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.ir-market-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
}

.ir-market-pct {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.ir-market-pct--tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ir-market-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.ir-market-fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--gold), #e8c56a);
  border-radius: 4px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ir-market-chart.is-animated .ir-market-fill {
  transform: scaleX(1);
}

.ir-market-fill--aero {
  background: linear-gradient(90deg, #8b7355, var(--gold));
}

.ir-market-fill--defense {
  background: linear-gradient(90deg, #4a4a4a, #8b7355);
}

.ir-market-caption {
  margin-top: 28px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.ir-focus-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ir-focus-item {
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.02);
}

.ir-focus-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.ir-focus-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.ir-focus-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.ir-focus-summary {
  max-width: 720px;
  margin: 40px auto 0;
}

.ir-reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ir-report-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 126, 46, 0.12);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.ir-report-card:hover {
  border-color: rgba(184, 126, 46, 0.4);
  background: rgba(184, 126, 46, 0.05);
  transform: translateY(-3px);
}

.ir-report-type {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ir-report-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.ir-report-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
}

.ir-report-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--gold);
}

.ir-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(184, 126, 46, 0.12);
}

.ir-stat {
  text-align: center;
}

.ir-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
}

.ir-stat .stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.ir-stat .stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.ir-inquiries-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.ir-inquiry-block + .ir-inquiry-block {
  margin-top: 36px;
}

.ir-inquiry-block--investor {
  padding: 24px;
  background: rgba(184, 126, 46, 0.06);
  border: 1px solid rgba(184, 126, 46, 0.2);
  border-radius: 4px;
}

.ir-inquiry-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin: 8px 0 12px;
}

.ir-email-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.05rem;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 126, 46, 0.4);
  transition: color 0.25s, border-color 0.25s;
}

.ir-email-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.ir-email-link--gold {
  color: var(--gold);
  border-color: var(--gold);
}

.ir-address {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.ir-form {
  padding: 36px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(184, 126, 46, 0.15);
  border-radius: 4px;
}

.ir-form-row {
  margin-bottom: 20px;
}

.ir-form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.ir-form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--ui-font);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s;
}

.ir-form-input:focus {
  border-color: rgba(184, 126, 46, 0.5);
}

/* Custom inquiry-type dropdown (native select uses OS white popup on Windows) */
.ir-custom-select {
  position: relative;
  width: 100%;
}

.ir-custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-family: var(--ui-font);
  font-size: 0.95rem;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 126, 46, 0.35);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.ir-custom-select-trigger:hover,
.ir-custom-select.is-open .ir-custom-select-trigger {
  border-color: rgba(184, 126, 46, 0.65);
  background: rgba(184, 126, 46, 0.06);
}

.ir-custom-select-trigger:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 126, 46, 0.2);
}

.ir-custom-select-value.is-placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.ir-custom-select-chevron {
  display: flex;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.ir-custom-select.is-open .ir-custom-select-chevron {
  transform: rotate(180deg);
}

.ir-custom-select-menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #111111;
  border: 1px solid rgba(184, 126, 46, 0.35);
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.ir-custom-select-menu[hidden] {
  display: none;
}

.ir-custom-select-option {
  padding: 12px 16px;
  font-family: var(--ui-font);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ir-custom-select-option:hover,
.ir-custom-select-option.is-focused {
  background: rgba(184, 126, 46, 0.12);
  color: var(--white);
}

.ir-custom-select-option.is-selected {
  background: rgba(184, 126, 46, 0.18);
  color: var(--gold);
}

.ir-custom-select.is-invalid .ir-custom-select-trigger {
  border-color: #c45c5c;
}

.ir-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.ir-form-submit {
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .ir-why-grid,
  .ir-reports-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .ir-focus-layout,
  .ir-inquiries-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ir-stats {
    flex-direction: column;
    gap: 32px;
  }
  .ir-form {
    padding: 24px 20px;
  }
}

/* ═══ FX & INTERACTIVE POLISH ═══ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10001;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  box-shadow: 0 0 12px var(--gold-glow);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.35;
  box-shadow: 0 0 12px var(--gold-glow);
}

.hero-particles span:nth-child(1) { top: 18%; left: 12%; }
.hero-particles span:nth-child(2) { top: 42%; left: 78%; width: 6px; height: 6px; opacity: 0.5; }
.hero-particles span:nth-child(3) { top: 68%; left: 22%; }
.hero-particles span:nth-child(4) { top: 28%; left: 55%; width: 3px; height: 3px; }
.hero-particles span:nth-child(5) { top: 82%; left: 65%; opacity: 0.25; }
.hero-particles span:nth-child(6) { top: 55%; left: 8%; width: 5px; height: 5px; }

.hero-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(184, 126, 46, 0.06) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: heroShine 8s ease-in-out infinite;
}

@keyframes heroShine {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -100% 0; }
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hero-line-inner {
  display: inline-block;
  will-change: transform;
}

.hero-main-title {
  line-height: 1.12;
}

.section-ambient {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 50%, rgba(184, 126, 46, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(184, 126, 46, 0.05), transparent 65%);
  z-index: 0;
}

.marquee-section {
  position: relative;
  overflow: hidden;
}

.marquee-heading {
  position: relative;
  z-index: 1;
}

.marquee-img {
  transition: transform 0.6s var(--ease-out), box-shadow 0.5s ease;
}

.marquee-section:hover .marquee-img {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 12px 40px rgba(184, 126, 46, 0.25);
}

/* Homepage stats — clean cards, no glow sweep */
.stats--refined {
  padding: 56px 24px 64px;
  background:
    linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}

.stats--refined .stats-row {
  gap: 0;
}

.stats--refined .stat {
  padding: 28px 20px 32px;
  margin: 0 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color 0.35s ease, background 0.35s ease;
}

.stats--refined .stat:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(184, 126, 46, 0.2);
}

.stats--refined .stat-index {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(184, 126, 46, 0.45);
  margin-bottom: 12px;
}

.stats--refined .stat-value {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.stats--refined .stat-num {
  color: var(--gold);
  text-shadow: none;
  margin-bottom: 0;
}

.stats--refined .stat-line {
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 10px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.stats--refined .stat-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}

.btn-gold:hover::before {
  transform: translateX(120%);
}

.btn-gold > * {
  position: relative;
  z-index: 1;
}

.btn-magnetic {
  will-change: transform;
}

.service-preview {
  overflow: hidden;
}

.service-preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(184, 126, 46, 0.5), transparent 40%, rgba(184, 126, 46, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

.service-preview:hover::before {
  opacity: 1;
}

.p-card,
.approach-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.p-card::after,
.approach-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(184, 126, 46, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 4;
}

.p-card:hover::after,
.approach-card:hover::after {
  opacity: 1;
}

.review-card {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(184, 126, 46, 0.2);
}

.c-box {
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
}

.c-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(184, 126, 46, 0.12);
  border-color: rgba(184, 126, 46, 0.35);
}

.newsletter .nl-bg-grid {
  animation: nlGridPulse 12s ease-in-out infinite;
}

@keyframes nlGridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.about-img {
  transition: transform 0.6s var(--ease-out), box-shadow 0.5s ease;
}

.about-img:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.about-badge {
  animation: badgeFloat 5s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.testimonials-inner {
  position: relative;
}

.testimonials-inner::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 60%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(184, 126, 46, 0.07), transparent 70%);
  pointer-events: none;
}

/* Subpage hero polish */
.about-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(184, 126, 46, 0.04) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.about-page-hero-grid {
  animation: heroGridDrift 20s linear infinite;
}

@keyframes heroGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.vision-principle,
.ir-why-card,
.dev-principle {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.vision-principle:hover,
.ir-why-card:hover,
.dev-principle:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

html.reduce-motion .hero-shine,
html.reduce-motion .about-badge,
html.reduce-motion .newsletter .nl-bg-grid,
html.reduce-motion .about-page-hero-grid {
  animation: none;
}

html.reduce-motion .scroll-progress {
  display: none;
}

/* ═══ MARS BIOSPHERE (client design) ═══ */
.biosphere-feature {
  padding: 88px 24px 96px;
  background: linear-gradient(180deg, var(--black) 0%, #0f0c06 50%, var(--black) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.biosphere-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.biosphere-feature-head {
  margin-bottom: 40px;
}

.biosphere-feature-lead {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--gray);
  font-size: 1rem;
}

.biosphere-figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  background: var(--black-soft);
}

.biosphere-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.biosphere-caption {
  padding: 18px 24px 20px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.45);
}

.biosphere-figure--page {
  max-width: 960px;
  margin: 0 auto;
}

.biosphere-feature-cta {
  text-align: center;
  margin-top: 36px;
}
