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

:root {
  --lime: #c8f031;
  --lime-dark: #a0ca00;
  --black: #101010;
  --dark: #202020;
  --mid: #23282d;
  --white: #ffffff;
  --gray: #dddddd;
  --muted: #aaaaaa;
  --dimmed: #666666;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

/* Anchor offset so fixed nav doesn't cover section headings */
#positioning, #audience, #process, #work, #testimonials, #offer, #founder, #cta {
  scroll-margin-top: calc(var(--nav-h) + 8px);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

/* ── NAV (header only — footer uses <nav class="footer-nav"> and must not be fixed) ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  min-height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(16,16,16,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: min-height 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--lime); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  margin: 0;
  padding: 0;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(220, 220, 220, 0.78);
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.is-active {
  color: var(--white);
}
.nav-link.is-active::after {
  transform: scaleX(1);
}
.nav-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--lime-dark); }

/* ── Mobile toggle (hamburger) ── */
.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover {
  border-color: rgba(200, 240, 49, 0.5);
  background: rgba(200, 240, 49, 0.04);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.nav-toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.28s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
    opacity 0.2s ease, background 0.2s ease;
}
.nav-toggle-bar:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.nav-toggle-bar:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.nav-toggle.is-open .nav-toggle-bar { background: var(--lime); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-block; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 24px 32px;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.28s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
      opacity 0.22s ease,
      visibility 0s linear 0.28s;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: transform 0.32s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
      opacity 0.22s ease,
      visibility 0s linear 0s;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-link {
    display: block;
    padding: 16px 4px;
    font-size: 13px;
    letter-spacing: 0.14em;
  }
  .nav-link::after {
    bottom: 8px;
    left: 4px;
    right: auto;
    width: 18px;
  }
  .nav-cta {
    margin-top: 22px;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
  }
}

/* ── SECTIONS ── */
section { position: relative; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: min(100vh, 1080px);
  display: flex;
  align-items: center;
  background: var(--black);
  padding: clamp(104px, 16vh, 152px) clamp(24px, 5vw, 64px) clamp(64px, 10vh, 112px);
  overflow: hidden;
}
.hero-main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}
/* Copy column + dominant visual: text stays readable; image gets remaining width */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, min(38rem, 100%)) minmax(300px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  width: 100%;
}
.hero-left {
  padding-right: clamp(0px, 2vw, 16px);
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 240, 49, 0.78);
  margin-bottom: clamp(18px, 2.5vw, 26px);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: clamp(22px, 3vw, 34px);
  color: var(--white);
}
.hero-h1 em {
  font-style: normal;
  color: var(--lime);
  display: block;
}
.hero-sub {
  font-size: clamp(16px, 1.35vw, 18px);
  color: rgba(170, 170, 170, 0.96);
  line-height: 1.72;
  max-width: 36rem;
  margin-bottom: clamp(32px, 4vw, 44px);
}
.hero-sub strong { color: rgba(255, 255, 255, 0.94); font-weight: 600; }
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.hero-cta-note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(140, 140, 140, 0.98);
  max-width: 26rem;
}
.hero-secondary-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(230, 230, 230, 0.92);
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  background: transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.hero-secondary-cta:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.hero-secondary-cta:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.btn-primary {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-1px); }
.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
}
.hero-visual-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(102, 102, 102, 0.98);
  margin-bottom: 14px;
}
.hero-product {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.hero-product-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--dark);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.hero-product img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-product-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(136, 136, 136, 0.98);
  padding: 16px 8px 0;
  margin: 0;
  line-height: 1.45;
  text-align: center;
}
.hero-panel {
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 36px);
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  padding: 0;
  margin: 0;
  border: none;
}
.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-metric:last-child {
  padding-right: 0;
  border-right: none;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lime);
}
.hero-metric-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160, 160, 160, 0.92);
  line-height: 1.45;
  max-width: 16em;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  padding-top: clamp(18px, 2.5vw, 22px);
  margin-top: clamp(18px, 2.5vw, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(98, 98, 98, 0.98);
}
.hero-trust-sep {
  opacity: 0.4;
  user-select: none;
}

@media (max-width: 1024px) {
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
  }
  .hero-metric {
    padding-right: 0;
    border-right: none;
  }
}

@media (max-width: 640px) {
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }
}

/* ── POSITIONING (What we do) ── */
#positioning {
  padding: 72px 40px 120px;
  background: var(--dark);
}
.positioning-inner {
  max-width: 880px;
  margin: 0 auto;
}
.positioning-header {
  margin-bottom: 56px;
}
.positioning-headline {
  max-width: 18ch;
}
.positioning-lede {
  margin-top: 28px;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--muted);
}
.capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(0, 0, 0, 0.25) 55%
  );
  overflow: hidden;
}
.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 28px 26px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.28s ease;
}
.capability-item:last-child {
  border-bottom: none;
}
@media (hover: hover) and (pointer: fine) {
  .capability-item:hover {
    background: rgba(200, 240, 49, 0.05);
  }
}
.capability-num {
  flex-shrink: 0;
  min-width: 2em;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--lime);
  padding-top: 5px;
  opacity: 0.95;
}
.capability-text {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: var(--white);
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--lime);
}
/* ── AUDIENCE ── */
#audience {
  padding: 72px 40px 120px;
  background: var(--black);
}
.audience-inner { max-width: 1080px; margin: 0 auto; }
.audience-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.section-h2 span { color: var(--lime); }
.audience-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 8px;
}
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.audience-card {
  background: var(--dark);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--lime);
  opacity: 0;
  transition: opacity 0.3s;
}
.audience-card:hover::before { opacity: 1; }
.audience-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: rgba(200,240,49,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.audience-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--white);
}
.audience-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PROCESS ── */
#process {
  padding: 72px 40px 120px;
  background: var(--mid);
}
.process-inner { max-width: 1080px; margin: 0 auto; }
.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.process-timeline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}
.process-timeline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step {
  background: var(--black);
  padding: 40px 28px;
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.step-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.step-deliverable {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CASE STUDIES ── */
#work {
  padding: 72px 40px 120px;
  background: var(--black);
}
.work-inner { max-width: 1080px; margin: 0 auto; }
.work-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.work-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 8px;
}
.work-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.work-cat {
  background: var(--dark);
  padding: 48px 40px;
  position: relative;
}
.work-cat.featured {
  grid-column: span 2;
  background: var(--mid);
  border-left: 3px solid var(--lime);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.work-cat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.work-cat-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.work-cat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.work-cat-stat {
  text-align: right;
}
.work-cat-stat .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.work-cat-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 32px;
  cursor: pointer;
}
.gallery-grid.single { grid-template-columns: 1fr; }
.work-cat.featured .gallery-grid { margin-bottom: 0; }
.gallery-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--white);
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: stretch;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.gallery-thumb .img-placeholder {
  align-self: stretch;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.04),
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px,
    transparent 12px
  );
  transition: background 0.2s;
}
.gallery-thumb:hover .img-placeholder {
  background: repeating-linear-gradient(
    45deg,
    rgba(200, 240, 49, 0.08),
    rgba(200, 240, 49, 0.08) 1px,
    transparent 1px,
    transparent 12px
  );
}
.img-placeholder-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(200,240,49,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder-icon::before {
  content: '⊕';
  color: rgba(200,240,49,0.4);
  font-size: 20px;
}
.img-placeholder-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
}
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16,16,16,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.04em;
  pointer-events: none;
}
.gallery-thumb:hover .gallery-more-overlay {
  background: rgba(16,16,16,0.68);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.gallery-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: none;
  border: 1px solid rgba(200,240,49,0.25);
  padding: 8px 16px;
  cursor: pointer;
  margin-top: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.gallery-open-btn:hover { border-color: var(--lime); background: rgba(200,240,49,0.06); }

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
.lb-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px)) 16px max(20px, env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
}
.lb-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}
.lb-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.lb-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 20px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.lb-close:hover { border-color: var(--lime); color: var(--lime); background: rgba(200,240,49,0.06); }
.lb-stage {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 900px;
  padding: 100px 80px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}
.lb-img-wrap {
  width: fit-content;
  max-width: min(900px, calc(100vw - 160px));
  max-height: calc(100vh - 240px);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.lb-img-wrap .lb-main-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(900px, calc(100vw - 160px));
  max-height: calc(100vh - 240px);
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.28s ease;
}
.lb-img-wrap .lb-main-img.lb-fade-out {
  opacity: 0;
}
.lb-thumb-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(16,16,16,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  width: 48px;
  height: 48px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  z-index: 2;
}
.lb-nav:hover { border-color: var(--lime); color: var(--lime); }
.lb-prev { left: -64px; }
.lb-next { right: -64px; }
.lb-nav:disabled { opacity: 0.2; cursor: default; }
.lb-nav:disabled:hover { border-color: rgba(255,255,255,0.12); color: var(--white); }
.lb-thumbnails {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 30;
  padding: 16px 80px max(16px, env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: 8px;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(16,16,16,0.92);
  backdrop-filter: blur(10px);
}
  .lb-thumb {
    width: 64px;
    height: 48px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    appearance: none;
  }
.lb-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lb-thumb.active { border-color: var(--lime); opacity: 1; }
.lb-thumb:hover { opacity: 0.85; }
.lb-caption {
  position: absolute;
  bottom: 76px;
  left: 0; right: 0;
  z-index: 25;
  pointer-events: none;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── TESTIMONIALS CAROUSEL ── */
#testimonials {
  padding: 72px 40px 120px;
  background: var(--mid);
  overflow: hidden;
}
.testimonials-inner { max-width: 1080px; margin: 0 auto; }
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.carousel-btn:hover { border-color: var(--lime); color: var(--lime); background: rgba(200,240,49,0.06); }
.carousel-btn:disabled { opacity: 0.2; cursor: default; }
.carousel-btn:disabled:hover { border-color: rgba(255,255,255,0.15); color: var(--white); background: none; }
.carousel-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  min-width: 40px;
  text-align: center;
}
.carousel-track-wrap {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 2px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial {
  background: var(--black);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  flex: 0 0 calc(33.333% - 2px);
  min-width: calc(33.333% - 2px);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: rgba(200,240,49,0.1);
  line-height: 1;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 32px;
  justify-content: center;
}
  .carousel-dot {
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
    border: none;
    padding: 0;
    display: block;
  }
.carousel-dot.active {
  background: var(--lime);
  width: 40px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,240,49,0.25);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  position: relative;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-avatar .initials {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
}
.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: var(--mid);
}
.avatar-placeholder-icon {
  font-size: 20px;
  color: rgba(200,240,49,0.3);
  line-height: 1;
}
.avatar-placeholder-label {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}

/* ── FOUNDER PHOTO ── */
/* Shrink-wrap frame to image — no pillarboxing; bg matches #founder */
.founder-photo-wrap {
  width: fit-content;
  max-width: min(100%, 260px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--dark);
  overflow: hidden;
}
.founder-photo-wrap img {
  display: block;
  max-width: 100%;
  max-height: min(42vh, 340px);
  width: auto;
  height: auto;
}
.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--mid);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.015),
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 14px
  );
}
.founder-photo-placeholder .icon {
  font-size: 28px;
  color: rgba(200,240,49,0.3);
}
.founder-photo-placeholder .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.founder-photo-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dimmed);
  margin-top: -24px;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testimonial-product {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ── OFFER ── */
#offer {
  padding: 72px 40px 120px;
  background: var(--lime);
}
.offer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.offer-left .section-label { color: rgba(0,0,0,0.5); }
.offer-left .section-label::after { background: rgba(0,0,0,0.3); }
.offer-h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 40px;
}
.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: var(--dark); transform: translateY(-1px); }
.offer-right { padding-top: 16px; }
.deliverable-list { list-style: none; }
.deliverable-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
}
.deliverable-list li::before {
  content: '✓';
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--black);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FOUNDER ── */
#founder {
  padding: 72px 40px 120px;
  background: var(--dark);
}
.founder-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.founder-left {
  justify-self: center;
  width: 100%;
  max-width: 400px;
}
.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 40px;
}
.cred-item {
  background: var(--black);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cred-icon {
  width: 6px;
  height: 6px;
  background: var(--lime);
  flex-shrink: 0;
}
.cred-text {
  font-size: 14px;
  color: var(--muted);
}
.cred-text strong { color: var(--white); font-weight: 600; }
.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
}
.founder-quote em {
  font-style: normal;
  color: var(--lime);
}
.founder-sig {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.founder-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── FINAL CTA ── */
#cta {
  padding: 72px 40px 120px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.cta-h2 span { color: var(--lime); }
.cta-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.cta-note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.55;
}
#offer .cta-note {
  color: rgba(0, 0, 0, 0.48);
  max-width: 24rem;
}
#cta .cta-note {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 26rem;
  color: rgba(140, 140, 140, 0.96);
  text-align: center;
}

/* ── FOOTER ── */
footer {
  padding: 18px clamp(20px, 4vw, 40px);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 20px;
}
.footer-logo {
  flex-shrink: 0;
  justify-self: start;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.footer-logo span {
  color: var(--lime);
}
@media (hover: hover) and (pointer: fine) {
  .footer-logo:hover {
    color: rgba(255, 255, 255, 0.92);
  }
}
.footer-logo:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 2px;
}
.footer-nav {
  position: static;
  inset: auto;
  z-index: auto;
  display: block;
  min-height: 0;
  padding: 0;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  justify-self: center;
  grid-column: 2;
  background: transparent !important;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px 0;
}
.footer-links li {
  display: inline-flex;
  align-items: center;
}
.footer-links li + li::before {
  content: '·';
  margin: 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(100, 103, 108, 0.95);
  user-select: none;
  pointer-events: none;
}
/* Match .nav-link typography and underline interaction */
.footer-link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(220, 220, 220, 0.78);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.footer-link:hover {
  color: var(--white);
}
.footer-link:hover::after {
  transform: scaleX(1);
}
.footer-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 2px;
}
.footer-link--btn {
  background: transparent;
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.footer-copy {
  margin: 0;
  justify-self: end;
  grid-column: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(100, 103, 108, 0.98);
  line-height: 1.4;
  white-space: nowrap;
  text-align: right;
}

/* ── Legal modal (Privacy / Terms) ── */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: max(24px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px))
    max(24px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
}
.legal-modal.is-open {
  display: flex;
}
.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.legal-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  animation: legal-modal-in 0.35s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) both;
}
@keyframes legal-modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.legal-modal-header {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 16, 16, 0.6);
}
.legal-modal-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
  padding-top: 2px;
}
.legal-modal-title span {
  color: var(--lime);
}
.legal-modal-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.legal-modal-close:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200, 240, 49, 0.08);
}
.legal-modal-close:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}
.legal-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 28px 28px;
  -webkit-overflow-scrolling: touch;
}
.legal-prose {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(200, 200, 200, 0.95);
}
.legal-prose p {
  margin: 0 0 1em;
}
.legal-prose p:last-child {
  margin-bottom: 0;
}
.legal-prose h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 1.75em 0 0.65em;
}
.legal-prose h3:first-of-type {
  margin-top: 0.5em;
}
.legal-prose strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .legal-modal-panel {
    animation: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  #hero, #positioning, #audience, #process, #work, #testimonials, #offer, #founder, #cta { padding-left: 24px; padding-right: 24px; }
  .positioning-header { margin-bottom: 40px; }
  .capability-item {
    padding: 22px 20px;
    gap: 16px;
  }
  .hero-main {
    gap: 40px;
  }
  .hero-grid, .audience-header, .audience-cards, .steps, .work-categories, .work-cat.featured, .offer-inner, .founder-inner, .work-header, .testimonials-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-actions-row .btn-primary,
  .hero-actions-row .hero-secondary-cta {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .hero-panel {
    padding: 20px 18px;
  }
  .hero-metric-lbl {
    max-width: none;
  }
  .work-cat.featured { grid-column: span 1; }
  footer {
    padding: 14px 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }
  .footer-logo {
    white-space: normal;
    justify-self: center;
  }
  .footer-nav {
    justify-self: stretch;
    width: 100%;
    grid-column: auto;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .footer-copy {
    grid-column: auto;
    justify-self: center;
    text-align: center;
    white-space: normal;
  }
  .process-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .process-timeline { text-align: left; }
    .hero-metric-val { font-size: clamp(26px, 8vw, 36px); }
    .work-cat-stat { text-align: left; }
    .founder-left {
      max-width: none;
      justify-self: stretch;
    }
    .founder-photo-wrap {
      max-width: min(100%, 260px);
    }
    .founder-photo-wrap img {
      max-height: min(38vh, 300px);
    }
    .testimonial {
      flex: 0 0 calc(100% - 2px);
      min-width: calc(100% - 2px);
    }
    .lb-stage {
      padding: 88px 24px 120px;
    }
    .lb-img-wrap,
    .lb-img-wrap .lb-main-img {
      max-width: calc(100vw - 48px);
    }
    .lb-img-wrap {
      max-height: calc(100vh - 220px);
    }
    .lb-img-wrap .lb-main-img {
      max-height: calc(100vh - 220px);
    }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-thumbnails {
      padding: 12px 16px max(12px, env(safe-area-inset-bottom, 0px));
      flex-wrap: wrap;
    }
  }
/* ── Motion layer: scroll reveals, parallax, hero ambience ─────────────── */
/* Respects prefers-reduced-motion at end of file */

:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-duration: 0.75s;
}

/* ── Nav: tighten on scroll ── */
html[data-nav-scrolled='true'] {
  --nav-h: 60px;
}
html[data-nav-scrolled='true'] .site-nav {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition:
    opacity var(--reveal-duration) var(--ease-out-expo),
    transform var(--reveal-duration) var(--ease-out-expo),
    filter 0.6s var(--ease-out-expo);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal-group] > .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-out-expo),
    transform 0.65s var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 0.07s);
}

[data-reveal-group].is-visible > .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-only variant (no blur — better for long text) */
[data-reveal='fade'] {
  filter: none;
  transform: translateY(20px);
}

[data-reveal='fade'].is-visible {
  transform: translateY(0);
}

/* ── Hero ambience ── */
.hero-section {
  position: relative;
  isolation: isolate;
  /* Cursor-linked spotlight (updated via JS on mousemove) */
  --hero-x: 58%;
  --hero-y: 40%;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-backdrop-inner {
  position: absolute;
  inset: -15%;
  will-change: transform;
  transition: transform 0.35s var(--ease-out-expo);
}

/* Animated mesh — restrained for calmer hero */
.hero-mesh {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(200, 240, 49, 0.09), transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 75%, rgba(90, 130, 220, 0.05), transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(200, 240, 49, 0.04), transparent 48%),
    radial-gradient(ellipse 60% 50% at 75% 15%, rgba(55, 85, 140, 0.05), transparent 58%);
  filter: blur(72px);
  opacity: 0.48;
  animation: hero-mesh-drift 36s ease-in-out infinite alternate;
}

@keyframes hero-mesh-drift {
  0% {
    transform: translate(-0.8%, 0.4%) rotate(-0.6deg) scale(1);
  }
  50% {
    transform: translate(1%, -0.8%) rotate(0.4deg) scale(1.015);
  }
  100% {
    transform: translate(-0.4%, 1%) rotate(0.6deg) scale(1.01);
  }
}

/* Slow-moving aurora sheen */
.hero-aurora {
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(200, 240, 49, 0.035) 22%,
    transparent 42%,
    rgba(70, 110, 200, 0.04) 58%,
    transparent 78%,
    rgba(200, 240, 49, 0.028) 100%
  );
  background-size: 280% 280%;
  animation: hero-aurora-flow 40s linear infinite;
  mix-blend-mode: overlay;
  opacity: 0.28;
}

@keyframes hero-aurora-flow {
  0% {
    background-position: 0% 40%;
  }
  100% {
    background-position: 100% 60%;
  }
}

/* Micro diagonal rhythm — follows spotlight mask */
.hero-beams {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -22deg,
    transparent,
    transparent 88px,
    rgba(200, 240, 49, 0.014) 88px,
    rgba(200, 240, 49, 0.014) 89px
  );
  mask-image: radial-gradient(
    ellipse 95% 85% at var(--hero-x) var(--hero-y),
    rgba(0, 0, 0, 0.45) 0%,
    transparent 78%
  );
  opacity: 0.22;
  animation: hero-beams-breathe 18s ease-in-out infinite;
}

@keyframes hero-beams-breathe {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.24;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
  opacity: 0.32;
  animation: orb-float 22s ease-in-out infinite;
}

.hero-orb--a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle at 30% 30%, rgba(200, 240, 49, 0.22), transparent 72%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb--b {
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  background: radial-gradient(circle at 70% 70%, rgba(80, 120, 200, 0.08), transparent 68%);
  bottom: 5%;
  left: -10%;
  animation-delay: -6s;
  animation-duration: 26s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3%, -4%) scale(1.05);
  }
  66% {
    transform: translate(-4%, 3%) scale(0.98);
  }
}

/* Interactive glow — position driven by --hero-x / --hero-y */
.hero-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle min(90vw, 720px) at var(--hero-x) var(--hero-y),
    rgba(200, 240, 49, 0.055) 0%,
    rgba(200, 240, 49, 0.018) 38%,
    transparent 65%
  );
  mix-blend-mode: screen;
  opacity: 0.55;
  transition:
    opacity 0.4s ease,
    background 0.15s ease;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 85% 75% at var(--hero-x) var(--hero-y),
    black 14%,
    transparent 82%
  );
  opacity: 0.22;
  animation: grid-pulse 18s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%,
  100% {
    opacity: 0.16;
  }
  50% {
    opacity: 0.26;
  }
}

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

.hero-grid > * {
  position: relative;
  z-index: 1;
}

/* ── CTA watermark (parallax target) ── */
#cta {
  overflow: hidden;
}

#cta .cta-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 300px);
  font-weight: 800;
  color: rgba(200, 240, 49, 0.045);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
  z-index: 0;
  will-change: transform;
}

.cta-inner,
#cta .btn-primary {
  position: relative;
  z-index: 1;
}

/* ── Parallax layers ── */
[data-parallax] {
  will-change: transform;
}

/* ── Magnetic hover on primary CTAs (subtle) ── */
@media (hover: hover) and (pointer: fine) {
  .btn-primary,
  .btn-dark,
  .nav-cta {
    transition:
      transform 0.35s var(--ease-out-expo),
      background 0.2s;
  }

  .btn-primary:hover,
  .btn-dark:hover {
    transform: translateY(-2px) scale(1.02);
  }
}

/* ── Offer section: depth overlay ── */
#offer {
  position: relative;
}

#offer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 0, 0, 0.08), transparent 55%);
  pointer-events: none;
}

#offer .offer-inner {
  position: relative;
  z-index: 1;
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  [data-reveal-group] > .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .hero-orb,
  .hero-grid-overlay,
  .hero-mesh,
  .hero-aurora,
  .hero-beams {
    animation: none !important;
  }

  .hero-mesh {
    transform: none !important;
    opacity: 0.42;
  }

  .hero-aurora {
    opacity: 0.22;
    background-position: 50% 50%;
  }

  .hero-beams {
    opacity: 0.25;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  }

  .hero-spotlight {
    opacity: 0.45;
    background: radial-gradient(
      circle min(90vw, 720px) at 50% 42%,
      rgba(200, 240, 49, 0.07) 0%,
      transparent 58%
    );
  }


  .motion-disabled .hero-backdrop-inner {
    transform: none !important;
  }
}
