:root {
  --ink: #0a0a09;
  --charcoal: #121110;
  --surface: #161513;
  --surface-2: #1c1a17;
  --line: #262421;
  --line-soft: #322f2a;
  --chalk: #f7f6f3;
  --muted: #928f88;
  --muted-2: #635f59;
  --amber: #f86215;
  --amber-light: #ffab66;
  --amber-dim: rgba(248, 98, 21, 0.09);
  --border-accent: #f8621522;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --cursor-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23ffd9b3'/%3E%3Cstop offset='1' stop-color='%23f86215'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23b8430a'/%3E%3Cstop offset='1' stop-color='%237a2d07'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M6 2 L2 26 L14 20 Z' fill='url(%23a)' stroke='%230a0a09' stroke-width='1.2' stroke-linejoin='round'/%3E%3Cpath d='M6 2 L14 20 L26 24 Z' fill='url(%23b)' stroke='%230a0a09' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") 6 2;
}

html { cursor: var(--cursor-img), auto; }

@property --mx {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --my {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -30%;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.scroll-locked { overflow: hidden; }

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

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

ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 3.15rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

p { line-height: 1.68; }

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 3rem;
}

.amber-word { color: var(--amber); }

/* ---------- Fixed background layer ---------- */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #0a0a09;
}

.bg-fixed-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aurora {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.82);
}

/* Static background — no motion */
.blob { display: none; }

.grain {
  position: absolute;
  inset: -10%;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .site-header, .site-footer { position: relative; z-index: 2; }
section[id], #top { scroll-margin-top: 110px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 24px 0;
}

.header-row {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 690px;
  padding: 8px 40px;
  border-radius: 999px;
  background: rgba(18, 17, 15, 0.6);
  border: 1px solid rgba(248, 98, 21, 0.3);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 44px -26px rgba(0, 0, 0, 0.75);
  transition: background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}
.site-header.scrolled .nav {
  background: rgba(14, 13, 11, 0.78);
  border-color: rgba(248, 98, 21, 0.4);
}

.logo { display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0; margin-left: 8px; position: relative; }
.logo-img { height: 18px; width: auto; display: block; }
.footer-brand .logo-img { height: 26px; }
.logo-arrow-overlay {
  position: absolute;
  left: 81.9%;
  width: 9.6%;
  top: 1.9%;
  height: 96.3%;
  background-color: var(--amber);
  -webkit-mask: url("assets/arrow-icon.png") center / contain no-repeat;
  mask: url("assets/arrow-icon.png") center / contain no-repeat;
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--chalk);
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  color: rgba(247, 246, 243, 0.72);
  transition: color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.nav-links a.active {
  color: rgba(247, 246, 243, 0.72);
  background: transparent;
}

.nav-chevron { width: 9px; height: 9px; transition: transform 0.3s var(--ease-soft); }
.nav-item-dropdown { position: relative; padding-bottom: 16px; margin-bottom: -16px; }
.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown.open .nav-chevron { transform: rotate(180deg); }

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  max-width: 80vw;
  padding: 22px 22px 20px;
  margin-top: 14px;
  border-radius: 20px;
  background: rgba(16, 15, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-soft), visibility 0.28s;
}
.nav-item-dropdown:hover .services-dropdown,
.nav-item-dropdown.open .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.services-dropdown-col { display: flex; flex-direction: column; gap: 4px; }
.services-dropdown-heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.services-dropdown a {
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 0.86rem;
  color: rgba(247, 246, 243, 0.78);
  transition: background 0.25s var(--ease-soft), color 0.25s var(--ease-soft);
}
.services-dropdown a:hover { background: rgba(255, 255, 255, 0.06); color: var(--chalk); }
.nav-links a:hover {
  color: var(--amber);
  background: rgba(248, 98, 21, 0.12);
}

.nav-indicator {
  position: absolute;
  bottom: 6px;
  left: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--amber) 20%, var(--amber) 50%, var(--amber) 80%, transparent);
  box-shadow: 0 0 8px rgba(248, 98, 21, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: left 0.35s var(--ease), width 0.35s var(--ease), opacity 0.25s var(--ease-soft);
}
.nav-indicator.visible { opacity: 1; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  white-space: nowrap;
  cursor: var(--cursor-img), pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
}
.btn:hover { transform: translateY(-1px); }

.nav-cta { min-width: 240px; padding: 15px 40px; font-size: 0.78rem; margin-right: 24px; }

/* Premium glass surface shared by every "Book a Call" CTA */
.btn-glass {
  color: var(--chalk);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px -22px rgba(0, 0, 0, 0.7);
}
.btn-glass.btn-solid {
  background:
    radial-gradient(120% 140% at 20% -20%, rgba(255, 171, 102, 0.35), transparent 55%),
    linear-gradient(155deg, rgba(248, 98, 21, 0.26), rgba(248, 98, 21, 0.06));
  border-color: rgba(248, 98, 21, 0.32);
}
.nav-cta.btn-glass.btn-solid,
.hero-cta.btn-glass.btn-solid {
  background: linear-gradient(180deg, rgba(20, 19, 17, 0.85), rgba(10, 10, 9, 0.92));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--chalk);
}
.btn-glass:hover {
  border-color: rgba(248, 98, 21, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 46px -22px rgba(248, 98, 21, 0.2);
}

/* Roaming light that traces the border, following the cursor */
.btn-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.3px;
  background: conic-gradient(
    from 180deg at var(--mx) var(--my),
    transparent 0deg,
    rgba(255, 171, 102, 0.95) 28deg,
    rgba(248, 98, 21, 0.5) 58deg,
    transparent 108deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, --mx 0.55s var(--ease), --my 0.55s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .btn-glass:hover::before { opacity: 1; }
}
@media (hover: none), (pointer: coarse) {
  .btn-glass::before { opacity: 0.3; }
}

/* CTA: a bright segment continuously revolves around the border ring. */
@property --beam-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.nav-cta.btn-glass .btn-label,
.hero-cta.btn-glass .btn-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-glass.btn-solid::before { content: none; }
.btn-glass.btn-solid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg 220deg,
    rgba(248, 98, 21, 0.12) 240deg,
    rgba(248, 98, 21, 0.5) 260deg,
    var(--amber) 285deg,
    var(--amber) 345deg,
    rgba(248, 98, 21, 0.5) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 1;
  filter: drop-shadow(0 0 3px rgba(248, 98, 21, 0.38));
  pointer-events: none;
  transition: opacity 0.4s var(--ease-soft);
  animation: beam-spin 5.2s linear infinite;
}
.btn-glass.btn-solid:hover::after { opacity: 1; }
@keyframes beam-spin {
  to { --beam-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-glass.btn-solid::after { animation: none; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: var(--cursor-img), pointer;
  padding: 6px;
}
.hamburger span { width: 22px; height: 2px; background: var(--chalk); display: block; transition: 0.3s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 1160px;
  margin-top: 10px;
  border-radius: 22px;
  background: rgba(14, 13, 11, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.75);
  padding: 8px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 16px; align-self: flex-start; }

.mobile-services-toggle {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chalk);
  cursor: var(--cursor-img), pointer;
}
.mobile-services-toggle .nav-chevron { transition: transform 0.3s var(--ease-soft); }
.mobile-services-toggle.open .nav-chevron { transform: rotate(180deg); }
.mobile-services-list {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0 10px 14px;
  border-bottom: 1px solid var(--line);
}
.mobile-services-list.open { display: flex; }
.mobile-services-list a {
  padding: 9px 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.mobile-services-list a:hover { color: var(--amber); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}
.hero-bg-col {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hero-bg-col video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .hero-bg { grid-template-columns: repeat(2, 1fr); }
  .hero-bg-col:nth-child(n+3) { display: none; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 50% 38%, rgba(8, 8, 9, 0.35) 0%, rgba(8, 8, 9, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.82) 0%, rgba(8, 8, 9, 0.58) 30%, rgba(8, 8, 9, 0.88) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1020px;
  padding: 140px 24px 0 clamp(24px, 7vw, 100px);
  transform: translateY(-5vh);
}
.eyebrow-rule {
  width: 44px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin: 0 0 22px;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 246, 243, 0.55);
  margin-bottom: 26px;
}
.hero-title {
  font-size: clamp(3.2rem, 7.5vw, 5.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.hero-title .amber-word { display: inline-flex; flex-wrap: wrap; justify-content: flex-start; align-items: center; gap: 0.28em; }
.w-letter-word { display: inline-flex; align-items: center; }
.hero-title .w-letter {
  display: inline-block;
  height: 0.85em;
  width: 0.78em;
  margin-right: -0.04em;
  background-color: var(--amber);
  -webkit-mask: url("assets/arrow-icon.png") center / contain no-repeat;
  mask: url("assets/arrow-icon.png") center / contain no-repeat;
  filter:
    drop-shadow(0.7px 0 0 var(--amber))
    drop-shadow(-0.7px 0 0 var(--amber))
    drop-shadow(0 0.7px 0 var(--amber))
    drop-shadow(0 -0.7px 0 var(--amber));
}
.hero-actions {
  width: 100vw;
  position: relative;
  left: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-cta { padding: 14px 34px; font-size: 0.72rem; }
.arrow-icon { height: 0.62em; width: auto; display: inline-block; }
.hero-sub {
  color: rgba(247, 246, 243, 0.62);
  margin: 10px 0 0;
  font-size: clamp(0.68rem, 0.84vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}
.scroll-indicator {
  position: absolute;
  bottom: 38px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 246, 243, 0.45);
}
.scroll-indicator span {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollpulse 3s ease-in-out infinite;
}
@keyframes scrollpulse { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.85; } }

.glass-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 60px -40px rgba(0, 0, 0, 0.8);
}

/* ---------- Liquid bubble stat bar ---------- */
.stat-bar-section {
  position: relative;
  margin-top: 34px;
}
.stat-bar-inner {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.stat-bar {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 8px;
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.7);
  border: 1px solid rgba(248, 98, 21, 0.22);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 30px 70px -32px rgba(0, 0, 0, 0.85);
}
.stat-bubble {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: var(--bubble-w, 25%);
  border-radius: 999px;
  background: linear-gradient(155deg, rgba(248, 98, 21, 0.24), rgba(248, 98, 21, 0.06));
  border: 1.5px solid rgba(248, 98, 21, 0.7);
  box-shadow:
    0 0 0 1px rgba(248, 98, 21, 0.1),
    0 0 22px rgba(248, 98, 21, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -14px 22px -12px rgba(0, 0, 0, 0.6);
  transform: translateX(var(--bubble-x, 0px)) scaleX(var(--bubble-stretch, 1));
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}
.stat-bubble::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(120% 100% at 18% 14%, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}
.stat-item {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 16px;
  text-align: center;
  color: rgba(247, 246, 243, 0.48);
  transition: color 0.35s var(--ease-soft);
}
.stat-item-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: inherit;
  transition: color 0.35s var(--ease-soft), text-shadow 0.35s var(--ease-soft);
}
.stat-item-unit { font-size: 0.42em; font-weight: 600; letter-spacing: -0.01em; opacity: 0.85; }
.stat-item-label {
  font-size: clamp(0.7rem, 0.85vw, 0.82rem);
  color: rgba(247, 246, 243, 0.36);
  letter-spacing: -0.005em;
  transition: color 0.35s var(--ease-soft);
}
.stat-item.active { color: var(--chalk); }
.stat-item.active .stat-item-value { text-shadow: 0 0 20px rgba(248, 98, 21, 0.3); }
.stat-item.active .stat-item-label { color: rgba(255, 187, 138, 0.82); }

/* ---------- Problem ---------- */
.hero-showcase { padding: 60px 0 10.4vh; }
.hero-showcase .section-inner { max-width: 1360px; }
.hero-showcase-frame {
  max-width: 918px;
  margin: 0 auto;
  position: relative;
  transform: translateY(10vh);
}
.hero-showcase-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 22px;
  background: rgba(248, 98, 21, 0.65);
  filter: blur(24px);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
}
.hero-showcase .placeholder-frame {
  aspect-ratio: 16/9;
  position: relative;
  border: 2px solid rgba(248, 98, 21, 0.85);
}
.problem { position: relative; height: 218vh; margin-top: 10vh; padding: 0; }
.problem-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  box-sizing: border-box;
  padding: clamp(72px, 12vh, 150px) 0 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.problem-copy p { color: var(--muted); margin-bottom: 20px; font-size: 1.03rem; line-height: 1.7; }
.problem-emphasis { color: var(--chalk) !important; font-weight: 600; font-size: 1.1rem !important; }

.placeholder-frame {
  aspect-ratio: 16/7;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #151310, #0d0c0a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 24px;
}
.placeholder-frame-side { aspect-ratio: auto; height: 100%; min-height: 320px; }

/* ---------- Work ---------- */
.work { padding: 80px 0; }
.work-toprow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}
.work-sub { color: var(--muted); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tab {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: var(--cursor-img), pointer;
  transition: color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.filter-tab:hover { color: var(--chalk); border-color: var(--line-soft); }
.filter-tab.active { background: var(--amber); color: #0a0a09; border-color: var(--amber); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.work-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: var(--cursor-img), pointer;
  background: #111;
  transition: border-color 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.work-card:hover { border-color: var(--line-soft); transform: translateY(-2px); }
.work-card video, .work-card img { width: 100%; height: 100%; object-fit: cover; }
.work-card.landscape { aspect-ratio: 16/9; }
.work-card.landscape video { object-fit: contain; }
.work-card-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(10, 10, 9, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.work-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}
.work-card.hidden { display: none; }

.work-portfolio-link { text-align: center; margin-top: 44px; }
.work-portfolio-link a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--chalk);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-soft);
}
.work-portfolio-link a:hover { color: var(--amber); }
.work-portfolio-link span { display: inline-block; transition: transform 0.3s var(--ease-soft); }
.work-portfolio-link a:hover span { transform: translateX(4px); }

/* ---------- Services: stacked scroll carousel ---------- */
.services { position:relative; height:180vh; padding:0; }
.services > .section-inner { position:sticky; top:0; min-height:100vh; padding-top:clamp(74px,10vh,126px); padding-bottom:34px; display:flex; flex-direction:column; justify-content:center; }
.services-heading { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:30px; }
.services-heading h2 { margin:0; }
.services-heading .section-sub { margin:12px 0 0; }
.services-counter { color:var(--muted); font-size:.8rem; letter-spacing:.12em; white-space:nowrap; }
.services-counter span { color:var(--amber); }
.services-list { position:relative; width:min(1240px,94vw); height:min(460px,60vh); margin:0 auto; perspective:1800px; }
.service-row { position:absolute; left:50%; top:50%; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; text-align:left; width:min(770px,66vw); height:440px; padding:54px 48px; overflow:hidden; border:1px solid rgba(255,255,255,.16); border-radius:31px; background:linear-gradient(112deg,rgba(255,255,255,.145) 0%,rgba(255,255,255,.07) 45%,rgba(11,9,8,.76) 100%); box-shadow:inset 0 1px 0 rgba(255,255,255,.20),inset 0 -1px 0 rgba(0,0,0,.3),0 34px 72px rgba(0,0,0,.52); backdrop-filter:blur(24px) saturate(120%); -webkit-backdrop-filter:blur(24px) saturate(120%); opacity:0; transform:translate(-50%,-50%) translate3d(0,0,-460px) rotateY(-58deg) scale(.72); transform-origin:center; transition:opacity .32s ease,transform .58s cubic-bezier(.22,.85,.24,1),filter .32s ease; pointer-events:none; }
.service-row::before { content:""; position:absolute; inset:0; background:radial-gradient(92% 128% at 86% -12%,rgba(248,98,21,.34),transparent 53%); pointer-events:none; }
.service-row::after { content:none; }
.service-row.active { opacity:1; transform:translate(-50%,-50%) translate3d(0,0,120px) rotateY(0) scale(1); z-index:3; filter:none; }
.service-row.previous { opacity:.30; transform:translate(-103%,-50%) translate3d(0,0,-210px) rotateY(20deg) scale(.77); z-index:1; filter:saturate(.65) brightness(.72); }
.service-row.next { opacity:.32; transform:translate(3%,-50%) translate3d(0,0,-190px) rotateY(-20deg) scale(.77); z-index:1; filter:saturate(.65) brightness(.72); }
.service-index { position:absolute; top:31px; right:37px; color:var(--amber); font-size:.72rem; letter-spacing:.14em; }
.service-title-wrap { position:relative; z-index:1; align-self:flex-start; width:100%; padding:0; text-align:left; }
.service-title-wrap h3 { max-width:520px; margin:0; font-family:var(--font-display); font-size:clamp(2.8rem,4.5vw,4.45rem); font-weight:700; line-height:.94; letter-spacing:-.065em; }
.service-title-nowrap { white-space:nowrap; }
.service-tag { align-self:flex-start; display:block; width:100%; margin:0 0 18px -6px; color:var(--amber); font-family:var(--font-body); font-size:.72rem; font-weight:600; letter-spacing:.22em; text-align:left; text-transform:uppercase; }
.service-desc { position:relative; z-index:1; align-self:flex-start; max-width:460px; margin:23px 0 0; color:rgba(247,246,243,.62); font-family:var(--font-body); font-size:1rem; line-height:1.5; text-align:left; }
.services-dots { display:flex; justify-content:center; gap:9px; margin-top:24px; }
.services-dot { width:25px; height:2px; background:rgba(255,255,255,.17); transition:background .35s var(--ease-soft),width .35s var(--ease-soft); }
.services-dot.active { width:48px; background:var(--amber); }
.services-note { margin:16px auto 0; color:var(--muted); text-align:center; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; }

/* ---------- How it works ---------- */
.how { padding: 100px 0; }
.how-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.how-steps { margin-top: 44px; display: flex; flex-direction: column; gap: 32px; }
.how-step { display: flex; gap: 22px; }
.how-step-num {
  font-family: var(--font-body);
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
  width: 32px;
}
.how-step h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 7px; letter-spacing: -0.01em; }
.how-step p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

/* ---------- Why ---------- */
.why { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.why-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.why-card:hover { border-color: var(--line-soft); transform: translateY(-2px); }
.why-card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 11px; letter-spacing: -0.01em; }
.why-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

/* ---------- Proof / testimonials ---------- */
.proof { padding: 80px 0; }

.proof-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.proof-video-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: var(--cursor-img), pointer;
  background: var(--surface);
  transition: border-color 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.proof-video-card:hover { border-color: var(--line-soft); transform: translateY(-2px); }
.proof-video-card video { width: 100%; height: 100%; object-fit: cover; }
.proof-video-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.proof-play-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(10, 10, 9, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  transition: background 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.proof-play-icon svg { width: 16px; height: 16px; color: var(--chalk); }
.proof-video-card:hover .proof-play-icon { background: rgba(248, 98, 21, 0.85); transform: translate(-50%, -50%) scale(1.08); }
.proof-video-card:hover .proof-play-icon svg { color: #0a0a09; }
.proof-video-name {
  position: absolute; bottom: 14px; left: 16px;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--chalk);
}

.proof-quote-grid {
  columns: 3 260px;
  column-gap: 20px;
}
.proof-quote-card {
  break-inside: avoid;
  margin: 0 0 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--chalk);
  box-shadow: 0 20px 40px -28px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
}
.proof-quote-card:hover { transform: translateY(-2px); border-color: rgba(248, 98, 21, 0.3); }
.proof-quote-card img { width: 100%; height: auto; display: block; }

/* ---------- FAQ ---------- */
.faqs { padding: 80px 0; }
.faq-list { border-top: 1px solid var(--line); max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--chalk);
  text-align: left;
  padding: 25px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: var(--cursor-img), pointer;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  transition: color 0.3s var(--ease-soft);
}
.faq-question:hover { color: var(--amber-light); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--amber);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-item.open .faq-answer { padding: 0 4px 25px; }

/* ---------- CTA ---------- */
.cta { padding: 120px 0 150px; }
.cta-inner { text-align: center; max-width: 720px; }
.cta-inner p { color: var(--muted); margin: 22px auto 40px; font-size: 1.03rem; line-height: 1.68; }
.cta-footnote { margin-top: 30px !important; font-size: 0.85rem !important; color: var(--muted-2); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 60px 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-brand p { color: var(--muted); margin-top: 11px; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--muted); font-size: 0.9rem; transition: color 0.3s var(--ease-soft); }
.footer-links a:hover { color: var(--amber); }
.footer-meta { color: var(--muted-2); font-size: 0.85rem; text-align: right; }
.footer-meta p { margin-bottom: 9px; }
.footer-meta a { color: var(--muted); transition: color 0.3s var(--ease-soft); }
.footer-meta a:hover { color: var(--amber); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(10, 10, 9, 0.96);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox video { max-height: 88vh; max-width: 100%; border-radius: 14px; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  color: var(--chalk); font-size: 2.2rem;
  cursor: var(--cursor-img), pointer; line-height: 1;
  transition: color 0.3s var(--ease-soft);
}
.lightbox-close:hover { color: var(--amber); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-title {
    font-size: clamp(2.1rem, 9.5vw, 3.4rem);
    text-wrap: balance;
  }
  .problem { height: auto; padding: 72px 0 0; }
  .problem-stage { position: relative; min-height: 0; padding: 0 0 40px; }
  .stat-bar-section { height: auto; padding: 40px 24px 0; }
  .stat-bar-inner { position: relative; height: auto; padding: 0; transform: none; }
  .stat-bar { padding: 6px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .stat-bar::-webkit-scrollbar { display: none; }
  .stat-item { min-width: 150px; padding: 18px 14px; scroll-snap-align: start; }
  .nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .header-row {
    background: rgba(10, 9, 8, 0.88);
    border: 2px solid rgba(248, 98, 21, 0.45);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border-radius: 999px;
    padding: 8px 8px 8px 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 44px -26px rgba(0, 0, 0, 0.75);
    transition: background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
  }
  .site-header.scrolled .header-row {
    background: rgba(8, 7, 6, 0.94);
    border-color: rgba(248, 98, 21, 0.55);
  }
  .problem-grid, .how-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-desc { grid-column: 2; }
  .services { height:auto; padding:72px 0; }
  .services > .section-inner { position:relative; min-height:0; padding:0; }
  .services-heading { align-items:start; }
  .services-list { width:100%; height:auto; display:grid; gap:12px; perspective:none; }
  .service-row, .service-row.active, .service-row.previous, .service-row.next { position:relative; left:auto; top:auto; width:100%; height:auto; min-height:190px; transform:none; opacity:1; filter:none; pointer-events:auto; }
  .services-dots, .services-note { display:none; }
  .why-grid { grid-template-columns: 1fr; }
  .proof-video-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-quote-grid { columns: 2 220px; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-meta { text-align: left; }
}
@media (max-width: 560px) {
  .stat-item { min-width: 132px; padding: 16px 12px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-video-grid { grid-template-columns: 1fr; }
  .proof-quote-grid { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
  .reveal { transition: opacity 0.4s ease; transform: none; }
  .scroll-indicator span { animation: none; }
}
