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

:root {
  --ink:       #1d1d1f;
  --ink-2:     #1d1d1f;
  --mid:       #6e6e73;
  --muted:     #86868b;
  --rule:      #E8E5E0;
  --rule-lt:   #F0EDE8;
  --bg:        #FFFFFF;
  --bg-alt:    #FFFFFF;
  --white:     #FFFFFF;
  --violet:    #7B6EF6;
  --violet-d:  #5B4ED6;
  --blue:      #3D9BF5;
  --amber:     #F0A020;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --radius-card: 16px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  scroll-snap-type: y proximity;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
}
.btn-primary:hover { background: #333; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  color: var(--mid);
  padding: 14px 22px;
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.04);
  color: var(--ink);
  border-color: rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.btn-pulse {
  flex-shrink: 0;
  align-self: flex-start;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1.5px solid var(--rule);
  color: var(--ink);
  background: var(--white);
  white-space: nowrap;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.btn-pulse:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-pulse svg { transition: transform 0.2s; }
.btn-pulse:hover svg { transform: translateX(3px); }

/* ── Scroll reveal ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.22,1,0.36,1),
    transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: url('bg.avif') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Frosted glass overlay — lets image breathe while keeping text crisp */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 248, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 20px;
  margin-bottom: 0;
  /* No pill — just bare text + dot */
}

.eyebrow-text {
  opacity: 0.7;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 0 rgba(123,110,246,0.7);
  animation: pulse-dot 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(123,110,246,0.8); background: var(--violet); }
  50%  { box-shadow: 0 0 0 10px rgba(123,110,246,0); background: rgba(150,130,255,1); }
  100% { box-shadow: 0 0 0 0 rgba(123,110,246,0); background: var(--violet); }
}

.hero-title {
  font-size: clamp(64px, 11vw, 140px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-bottom: 20px;
}


.hero-headline {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  max-width: 560px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Hero inline stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 36px;
}

.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--rule);
  flex-shrink: 0;
}

.hstat-n {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.hstat-l {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   INTRO — light, centered
═══════════════════════════════════════════════ */
.intro {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.intro-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 24px;
}

.intro-headline {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 60px;
}

.intro-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
  text-align: left;
}

.intro-col p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
}

.intro-stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-top: 1px solid var(--rule);
  padding-top: 48px;
}

.intro-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  text-align: center;
}

.intro-stat-div {
  width: 1px;
  background: var(--rule);
  flex-shrink: 0;
}

.stat-n {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.stat-l {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 180px;
}

/* ═══════════════════════════════════════════════
   PULSE SECTIONS — light, centered
═══════════════════════════════════════════════ */
.pulse {
  position: relative;
  padding: 104px 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #000;
  overflow: hidden;
  text-align: center;
}

.pulse--alt { background: var(--bg-alt); }

/* Pulsing live dot on pulse labels */
.pulse-dot-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 0 rgba(123,110,246,0.5);
  animation: live-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,255,0,0.7); }
  60%  { box-shadow: 0 0 0 10px rgba(232,255,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,255,0,0); }
}

/* Pulse label */
.pulse-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.pulse-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.pulse-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--rule);
}

.pulse-word {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Centered pulse body (no button) */
.pulse-body--center {
  justify-content: center;
  max-width: 680px;
}

.pulse-body--center .pulse-desc {
  text-align: center;
  max-width: 100%;
}

/* Pulse title */
.pulse-title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 auto 36px;
  max-width: 720px;
}

/* Pulse body: description + button inline */
.pulse-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: left;
}

.pulse-desc {
  flex: 1;
  font-size: 15px;
  line-height: 1.82;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════
   GALLERY STRIP — accordion expand on hover
═══════════════════════════════════════════════ */
.gallery-strip {
  display: flex;
  gap: 10px;
  height: 400px;
  padding: 0 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 72px;
}

.gcard {
  position: relative;
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition:
    flex 0.52s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: block;
  text-decoration: none;
}

/* Featured card starts slightly larger */
.gcard--featured {
  flex: 1.7;
}

/* On hover the hovered card expands */
.gallery-strip:has(.gcard:hover) .gcard { flex: 0.75; }
.gallery-strip:has(.gcard:hover) .gcard--featured { flex: 0.75; }
.gallery-strip .gcard:hover { flex: 2.4 !important; box-shadow: 0 8px 40px rgba(0,0,0,0.14); }

.gcard-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

.gcard:hover .gcard-img {
  transform: scale(1.04);
}

/* Overlay — always visible at bottom, more prominent on hover */
.gcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.18) 38%,
    transparent 65%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gcard:hover .gcard-overlay { opacity: 1; }

.gcard-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: normal;
}

/* ═══════════════════════════════════════════════
   PULSE GALLERY — accordion photo strip
═══════════════════════════════════════════════ */
.pulse-gallery {
  display: flex;
  gap: 10px;
  height: 540px;
  padding: 0 40px 96px;
  max-width: 1160px;
  margin: 0 auto;
}

/* Desktop: wrapper is invisible to flex layout */
.pgcard-wrap {
  display: contents;
}
.pgcard-caption {
  display: none;
}

.pgcard {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background: url('bg.avif') center / cover no-repeat;
  transition: flex 0.56s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

/* Individual backgrounds per card */
.pgcard--1 { background-image: url('Pictures/SnapInsta.to_658556203_17905419027390944_8936147460288951722_n.jpg'); background-position: center; }
.pgcard--2 { background-image: url('Pictures/SnapInsta.to_657379492_17903033766409928_6952806103606657872_n.jpg'); background-position: center; }
.pgcard--3 { background-image: url('Pictures/Screenshot 2026-04-13 at 13.41.05.png'); background-position: center; }

/* Accordion: shrink siblings when one is hovered */
.pulse-gallery:has(.pgcard:hover) .pgcard { flex: 0.55; }
.pulse-gallery .pgcard:hover {
  flex: 2.8 !important;
  box-shadow: 0 20px 64px rgba(0,0,0,0.4);
}

/* Gradient overlay — always on, darkens at bottom */
.pgcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.18) 50%,
    rgba(0,0,0,0.02) 100%
  );
  transition: background 0.45s;
  z-index: 0;
}

.pgcard:hover .pgcard-overlay {
  background: rgba(0,0,0,0.82);
}

/* Corner info — always visible, bottom-right */
.pgcard-corner {
  position: absolute;
  bottom: 24px;
  right: 24px;
  text-align: right;
  z-index: 2;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s;
}

.pgcard:hover .pgcard-corner {
  transform: translateY(-160px);
  opacity: 0;
}

.pgcard-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

.pgcard-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0281a;
  animation: live-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
  margin-right: 8px;
  vertical-align: middle;
}
.pgcard--2 .pgcard-dot { animation-delay: 0.7s; }
.pgcard--3 .pgcard-dot { animation-delay: 1.4s; }

.pgcard-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  max-width: none;
  margin-left: auto;
  text-align: right;
}

/* Expanded info — hidden until hover */
.pgcard-expanded {
  position: absolute;
  bottom: 32px;
  left: 28px;
  right: 28px;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.38s cubic-bezier(0.22,1,0.36,1),
              transform 0.38s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0s;
}

.pgcard:hover .pgcard-expanded {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.pgcard-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.pgcard-data {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.38);
  margin-bottom: 24px;
  font-style: italic;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pgcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 11px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: background 0.25s, border-color 0.25s, gap 0.2s, box-shadow 0.25s;
}

.pgcard:hover .pgcard-cta:hover {
  gap: 14px;
  background: rgba(123,110,246,0.32);
  border-color: rgba(123,110,246,0.55);
  box-shadow: 0 6px 28px rgba(123,110,246,0.35), inset 0 1px 0 rgba(255,255,255,0.22);
}

.pgcard-cta svg { transition: transform 0.22s; }
.pgcard-cta:hover svg { transform: translateX(3px); }

/* Four-card variant: slightly shorter to fit */
.gallery-strip--four {
  height: 440px;
}

/* Always-visible overlay with structured text */
.gcard-overlay--always {
  opacity: 1;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
  padding: 20px;
  text-align: right;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.45) 50%,
    transparent 80%
  );
}

.gcard-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}

.gcard-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gcard-body {
  display: block;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  /* hidden until hover */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s;
  opacity: 0;
}

.gcard:hover .gcard-body {
  max-height: 160px;
  opacity: 1;
}

/* Intel / 4th card */
.gcard--intel {
  background: var(--ink);
  flex: 1;
  cursor: pointer;
}
.gcard--intel:hover { flex: 2 !important; }

.gcard-intel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 24px;
  text-align: right;
}

/* List — hidden by default, revealed on hover */
.gcard-intel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
  pointer-events: none;
}

.gcard-intel-list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  text-align: right;
  /* hidden until hover */
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s cubic-bezier(0.22,1,0.36,1),
    transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

/* stagger each item */
.gcard-intel-list li:nth-child(1) { transition-delay: 0.04s; }
.gcard-intel-list li:nth-child(2) { transition-delay: 0.10s; }
.gcard-intel-list li:nth-child(3) { transition-delay: 0.16s; }
.gcard-intel-list li:nth-child(4) { transition-delay: 0.22s; }

.gcard--intel:hover .gcard-intel-list li {
  opacity: 1;
  transform: translateY(0);
}

/* Pulsing bullet dot per list item */
.intel-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(123,110,246,0.6);
}

.gcard--intel:hover .intel-pulse-dot {
  opacity: 1;
  animation: intel-dot-pulse 2s ease-in-out infinite;
}

.gcard-intel-list li:nth-child(1) .intel-pulse-dot { animation-delay: 0s; }
.gcard-intel-list li:nth-child(2) .intel-pulse-dot { animation-delay: 0.4s; }
.gcard-intel-list li:nth-child(3) .intel-pulse-dot { animation-delay: 0.8s; }
.gcard-intel-list li:nth-child(4) .intel-pulse-dot { animation-delay: 1.2s; }

@keyframes intel-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,110,246,0.7); background: var(--violet); }
  50%  { box-shadow: 0 0 0 6px rgba(123,110,246,0); background: rgba(160,140,255,1); }
  100% { box-shadow: 0 0 0 0 rgba(123,110,246,0); background: var(--violet); }
}

/* Glassmorphic CTA button */
.gcard-intel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  padding: 13px 22px;
  border-radius: 100px;
  flex-shrink: 0;
  /* Glassmorphic */
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition: background 0.3s, box-shadow 0.3s, transform 0.25s;
}

.gcard-intel-cta svg {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

.gcard--intel:hover .gcard-intel-cta {
  background: rgba(123,110,246,0.28);
  border-color: rgba(123,110,246,0.6);
  box-shadow:
    0 8px 32px rgba(123,110,246,0.4),
    inset 0 1px 0 rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

.gcard--intel:hover .gcard-intel-cta svg {
  transform: translateX(4px);
}

/* accent glows — subtle, positioned outside container */
.pulse-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  top: -60px;
  right: -160px;
  opacity: 0.1;
}
.pulse--alt .pulse-accent { right: auto; left: -160px; }
.pulse-accent--violet { background: var(--violet); }
.pulse-accent--blue   { background: var(--blue); }
.pulse-accent--amber  { background: var(--amber); }

/* ═══════════════════════════════════════════════
   UNLOCK CTA — closing glassmorphism pill
═══════════════════════════════════════════════ */
.unlock-cta {
  position: relative;
  padding: 160px 40px;
  background: url('bg.avif') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Dark vignette over bg */
.unlock-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 16, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 0;
}

/* Violet ambient glow */
.unlock-cta::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,110,246,0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.unlock-cta-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}

.unlock-cta-headline {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  max-width: 560px;
}

.unlock-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 52px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  /* Glassmorphism */
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow:
    0 8px 48px rgba(0,0,0,0.45),
    0 0 0 0 rgba(123,110,246,0),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.28s;
}

.unlock-pill:hover {
  background: rgba(123,110,246,0.22);
  border-color: rgba(123,110,246,0.6);
  box-shadow:
    0 16px 64px rgba(0,0,0,0.5),
    0 0 0 6px rgba(123,110,246,0.12),
    inset 0 1px 0 rgba(255,255,255,0.28);
  transform: translateY(-3px);
}

.unlock-pill svg {
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}
.unlock-pill:hover svg { transform: translateX(5px); }

/* ═══════════════════════════════════════════════
   BRANDS CAROUSEL — light
═══════════════════════════════════════════════ */
.brands {
  background: var(--bg-alt);
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  text-align: center;
}

.brands-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
}

.carousel-mask {
  overflow: hidden;
  position: relative;
}
.carousel-mask::before,
.carousel-mask::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.carousel-mask::before { left: 0;  background: linear-gradient(to right, var(--bg-alt), transparent); }
.carousel-mask::after  { right: 0; background: linear-gradient(to left,  var(--bg-alt), transparent); }

.carousel-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 72px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rule);
  border-right: 1px solid var(--rule-lt);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.25s;
}
.brand-item:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #000;
  border-top: none;
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-nav a:hover { color: rgba(255,255,255,0.8); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-socials a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: rgba(255,255,255,0.8); }

.footer-base {
  padding-top: 20px;
  padding-bottom: 24px;
}

.footer-base p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════
   HERO — dark full-bleed, sticky so stats covers it
═══════════════════════════════════════════════ */
.mbsec {
  position: relative;
  height: 100vh;
  background: #fff;
  color: #1d1d1f;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  scroll-snap-align: start;
}

/* ── Hero background stack — looping blurred images ── */
#heroBgStack {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hbs {
  position: absolute;
  width: 280px;
  height: 360px;
  object-fit: cover;
  border-radius: 0;
  filter: blur(3px);
  opacity: 0;
  top: 50%;
  left: 50%;
}

.hbs:nth-child(1) { transform: translate(-50%, -50%) rotate(-6deg); animation: hbs-cycle 8s ease-in-out 0s infinite; top: 34%; }
.hbs:nth-child(2) { transform: translate(-50%, -50%) rotate( 3deg); animation: hbs-cycle 8s ease-in-out -1s infinite; top: 34%; }
.hbs:nth-child(3) { transform: translate(-50%, -50%) rotate(-2deg); animation: hbs-cycle 8s ease-in-out -2s infinite; top: 34%; }
.hbs:nth-child(4) { transform: translate(-50%, -50%) rotate( 5deg); animation: hbs-cycle 8s ease-in-out -3s infinite; top: 34%; }
.hbs:nth-child(5) { transform: translate(-50%, -50%) rotate(-4deg); animation: hbs-cycle 8s ease-in-out -4s infinite; top: 34%; }
.hbs:nth-child(6) { transform: translate(-50%, -50%) rotate( 2deg); animation: hbs-cycle 8s ease-in-out -5s infinite; top: 34%; }
.hbs:nth-child(7) { transform: translate(-50%, -50%) rotate(-5deg); animation: hbs-cycle 8s ease-in-out -6s infinite; top: 34%; }
.hbs:nth-child(8) { transform: translate(-50%, -50%) rotate( 4deg); animation: hbs-cycle 8s ease-in-out -7s infinite; top: 34%; }

/* Each image stays visible for ~40% of cycle so 3-4 overlap at once (stacked look) */
@keyframes hbs-cycle {
  0%   { opacity: 0; }
  8%   { opacity: 0.5; }
  45%  { opacity: 0.5; }
  55%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ── Hero photo orbs — blurred circular photos fading in/out ── */
#heroPhotoOrbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Light scrim — very subtle, no extra blur */
#heroScrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255,255,255,0.2);
  pointer-events: none;
}

.hpo {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  filter: blur(12px);
  opacity: 0;
  will-change: opacity;
}

/* Individual positions + sizes + fade cycles */
.hpo--1 {
  width: 220px; height: 220px;
  top: 4%; left: 3%;
  animation: hpo-fade 14s ease-in-out -2s infinite;
}
.hpo--2 {
  width: 200px; height: 200px;
  top: 6%; left: 30%;
  animation: hpo-fade 18s ease-in-out -8s infinite;
}
.hpo--3 {
  width: 240px; height: 240px;
  top: 3%; right: 4%;
  animation: hpo-fade 12s ease-in-out -4s infinite;
}
.hpo--4 {
  width: 210px; height: 210px;
  top: 42%; left: 2%;
  animation: hpo-fade 16s ease-in-out -11s infinite;
}
.hpo--5 {
  width: 230px; height: 230px;
  top: 38%; right: 3%;
  animation: hpo-fade 15s ease-in-out -6s infinite;
}
.hpo--6 {
  width: 200px; height: 200px;
  bottom: 8%; left: 12%;
  animation: hpo-fade 20s ease-in-out -14s infinite;
}
.hpo--7 {
  width: 220px; height: 220px;
  bottom: 6%; left: 42%;
  animation: hpo-fade 13s ease-in-out -3s infinite;
}
.hpo--8 {
  width: 210px; height: 210px;
  bottom: 7%; right: 4%;
  animation: hpo-fade 17s ease-in-out -9s infinite;
}

@keyframes hpo-fade {
  0%   { opacity: 0; }
  18%  { opacity: 0.75; }
  55%  { opacity: 0.75; }
  75%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ── Hero insight ticker — in-flow ── */
.mb-hero-ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 13px 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.mb-hero-ticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 200s linear infinite;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.02em;
  gap: 0;
}

.mb-hero-ticker {
  color: rgba(255,255,255,0.45);
}
.mb-hero-ticker .ht-stat {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Circle image separator */
.mb-hero-ticker .ht-sep {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.8;
  flex-shrink: 0;
  margin: 0 14px;
  vertical-align: middle;
}

/* ── Intro overlay — full-screen, plays on load ── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}
#intro-overlay.done {
  opacity: 0;
  pointer-events: none;
}

.intro-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.intro-stack img {
  position: absolute;
  width: 480px;
  height: 620px;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.4s ease;
  /* All stacked at centre — each slightly rotated */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Stacked in centre with slight rotation offsets */
.intro-stack img:nth-child(1) { transform: translate(-50%, -50%) rotate(-6deg);  }
.intro-stack img:nth-child(2) { transform: translate(-50%, -50%) rotate( 3deg);  }
.intro-stack img:nth-child(3) { transform: translate(-50%, -50%) rotate(-2deg);  }
.intro-stack img:nth-child(4) { transform: translate(-50%, -50%) rotate( 5deg);  }
.intro-stack img:nth-child(5) { transform: translate(-50%, -50%) rotate(-4deg);  }
.intro-stack img:nth-child(6) { transform: translate(-50%, -50%) rotate( 2deg);  }
.intro-stack img:nth-child(7) { transform: translate(-50%, -50%) rotate(-5deg);  }
.intro-stack img:nth-child(8) { transform: translate(-50%, -50%) rotate( 4deg);  }

.intro-line {
  position: absolute;
  width: min(720px, 90vw);
  text-align: center;
  color: #1d1d1f;
  line-height: 1.45;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.025em;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

/* Dark glow behind first line on white bg */
#il1 {
  text-shadow:
    0 0 30px rgba(255,255,255,0.95),
    0 0 60px rgba(255,255,255,0.7);
}
.intro-line.visible { opacity: 1; }
.intro-line--final {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
}

/* ── Proof strip section ── */
.mb-proof {
  position: relative;
  z-index: 2;
  background: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 80px;
  text-align: center;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 0 rgba(255,255,255,0.08), 0 -32px 80px rgba(0,0,0,0.9);
}

/* ── Nav — logo only, not fixed ── */
.mb-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  background: transparent;
}

.mb-nav-logo { display: none; }

.mb-nav-brand {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mb-nav-actions { display: none; }

/* ── Buttons under title ── */
.mb-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.mb-nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.18s;
}

.mb-nav-btn--ghost { display: none; }
.mb-nav-btn--pill  { display: none; }

/* Hero buttons — glassmorphism (light) */
.mb-nav-btn--bold {
  color: rgba(0,0,0,0.8);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 4px 20px rgba(0,0,0,0.08);
}
.mb-nav-btn--bold:hover {
  background: rgba(255,255,255,0.75);
  border-color: rgba(0,0,0,0.2);
}

.mb-nav-btn--outline {
  color: rgba(0,0,0,0.7);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mb-nav-btn--outline:hover { background: rgba(255,255,255,0.8); }

/* ── Hero headline + body — centred in remaining space ── */
.mb-hero-head {
  text-align: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding: 0 48px;
}

.mb-hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  gap: 12px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Headline near top, body pushed below image stack */
.mb-hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: calc(18vh + 58px);
}

/* Sub/CTA pushed below the image stack bottom */
.mb-hero-body {
  margin-top: calc(10vh + 120px);
  padding-bottom: 4vh;
}

/* ── CTA text link ── */
.mb-cta-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0,0,0,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.mb-cta-link:hover { color: rgba(0,0,0,0.72); }

/* ── Note below CTA ── */
.mb-cta-note {
  font-size: 13px;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
  margin-top: -8px;
}

/* ── Stats strip — sits between content and cards ── */
.mb-stats-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── Image cards row ── */
.mb-card-row {
  display: flex;
  gap: 10px;
  padding: 16px 24px 0;
  align-items: flex-start;
  overflow: hidden;
  height: 170px;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.mb-card-row .mb-card {
  flex: 0 0 188px;
  width: 188px;
  height: 188px;
  border-radius: 50% !important;
  overflow: hidden;
  cursor: default;
  transition: none;
  border: none;
}
.mb-card-row .mb-card:hover { width: 188px; box-shadow: none; }

.mb-card-row .mb-card--1 { background: linear-gradient(155deg, #1e2d44 0%, #0d1829 100%); }
.mb-card-row .mb-card--2 { background: linear-gradient(155deg, #2d1e3e 0%, #1a1028 100%); }
.mb-card-row .mb-card--3 { background: linear-gradient(155deg, #1a2d1e 0%, #0e1a10 100%); }
.mb-card-row .mb-card--4 { background: linear-gradient(155deg, #2d2214 0%, #1a1508 100%); }
.mb-card-row .mb-card--5 { background: linear-gradient(155deg, #14243a 0%, #0a1524 100%); }
.mb-card-row .mb-card--6 { background: linear-gradient(155deg, #2a1820 0%, #180e14 100%); }

/* ── No intro animation — everything visible immediately ── */

/* ── Second line: scroll-triggered reveal ── */

/* Headline */
.mb-headline {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  color: #1d1d1f;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  text-align: center;
}

.mb-hl-static {
  display: inline;
}

/* Second line: always holds its space, first line never moves */
.mb-hl-animated {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mb-hl-animated.mb-hl-visible {
  opacity: 1;
  transform: translateY(0);
}

.mb-hl-animated strong {
  font-weight: 700;
}

.mb-hl-light {
  font-weight: 300;
}

/* Pulsing red live dot in subheading */
.live-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0281a;
  margin: 0 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  animation: live-dot-pulse 1.4s ease-in-out infinite;
}

@keyframes live-dot-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; box-shadow: 0 0 0 0 rgba(224,40,26,0.5); }
  50%       { transform: scale(1.3); opacity: 1; box-shadow: 0 0 0 5px rgba(224,40,26,0); }
}

/* Trending arrow — intro overlay only */
.trend-arrow-wrap {
  display: inline-flex;
  align-items: center;
  margin: 0 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.trend-arrow {
  width: 0.75em;
  height: 0.75em;
  color: #e0281a;
  overflow: visible;
}

/* Paths start invisible (fully dashed) */
.trend-arrow-path,
.trend-arrow-tip {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

/* Draw animation triggers when #il3 becomes visible */
#il3.visible .trend-arrow-path {
  animation: draw-path 0.7s ease-out 0.1s forwards;
}
#il3.visible .trend-arrow-tip {
  animation: draw-path 0.35s ease-out 0.75s forwards;
}

@keyframes draw-path {
  to { stroke-dashoffset: 0; }
}

/* ── Floating image cards ── */
.mb-float-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mb-fi {
  position: absolute;
  left: var(--x, 0);
  top: var(--y, 0);
  width: 108px;
  height: 108px;
  border-radius: 14px;
  background: url('bg.avif') center/cover;
  opacity: 0;
  animation: fi-fade var(--t, 8s) ease-in-out var(--d, 0s) infinite;
}

.mb-fi--r {
  left: auto !important;
  right: var(--rx, 0);
}

@keyframes fi-fade {
  0%   { opacity: 0; transform: scale(0.95); }
  15%  { opacity: 1; transform: scale(1); }
  83%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.97); }
}

/* ── Intro stats — flex row inside mb-stats-bottom ── */
.mb-intro-stats {
  display: flex;
  align-items: center;
}

.mb-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 52px;
}
.mb-intro-num {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.mb-intro-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.mb-intro-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── Live data section ── */
.mb-live {
  width: 100%;
  padding: 0 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mb-live-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.mb-live-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E8FF00;
  box-shadow: 0 0 0 0 rgba(232,255,0,0.7);
  animation: live-pulse-yellow 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse-yellow {
  0%   { box-shadow: 0 0 0 0 rgba(232,255,0,0.7); }
  60%  { box-shadow: 0 0 0 12px rgba(232,255,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,255,0,0); }
}

.mb-live-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.mb-live-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
}

.mb-live-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.mb-live-num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.mb-live-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* ── Stats ticker ── */
.mb-stats-ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.mb-stats-ticker {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.mb-stat-sep {
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  font-size: 0.7em;
}

/* ── Community names ticker ── */
.mb-ticker-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
}

.mb-ticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 42s linear infinite;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
}

.ticker-sep {
  margin: 0 16px;
  color: rgba(255,255,255,0.2);
}

.ticker-avatar {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff !important;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hero pgallery accordion ── */
.mb-pgallery {
  display: flex;
  gap: 10px;
  height: 400px;
  width: 100%;
}
.mb-pgallery:has(.pgcard:hover) .pgcard { flex: 0.55; }
.mb-pgallery .pgcard:hover {
  flex: 2.8 !important;
  box-shadow: 0 20px 64px rgba(0,0,0,0.4);
}

/* ── Sliding accordion gallery ── */
.mb-gallery-outer {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}
.mb-gallery-outer:active { cursor: grabbing; }

.mb-gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

/* Base card */
.mb-card {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  border: 1px solid rgba(255,255,255,0.08);
}

.mb-card:hover {
  width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

/* Card backgrounds */
.mb-card--1 { background: linear-gradient(155deg, #1a0533, #4B21A0); }
.mb-card--2 { background: linear-gradient(155deg, #0a1628, #1e4fa8); }
.mb-card--3 { background: linear-gradient(155deg, #0d1f0d, #1a5c1a); }
.mb-card--4 { background: linear-gradient(155deg, #1a1400, #7a5c00); }
.mb-card--5 { background: linear-gradient(155deg, #1a0a00, #7a2e00); }

/* Subtle noise/grain overlay */
.mb-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  border-radius: inherit;
}

/* Default visible state — number + title bottom-left */
.mb-card-default {
  position: absolute;
  bottom: 24px;
  left: 22px;
  right: 22px;
  z-index: 2;
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.mb-card:hover .mb-card-default {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.mb-card-num {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.mb-card-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  animation: live-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

.mb-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

/* Expanded info — fades in on hover */
.mb-card-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.38s cubic-bezier(0.22,1,0.36,1),
              transform 0.38s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0.12s;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}

.mb-card:hover .mb-card-info {
  opacity: 1;
  transform: translateY(0);
}

.mb-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
}

.mb-card-data {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mb-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  align-self: flex-start;
  transition: background 0.22s, border-color 0.22s;
}
.mb-card-cta:hover {
  background: rgba(123,110,246,0.32);
  border-color: rgba(123,110,246,0.5);
}

/* ── Bottom-right sub copy ── */
.mb-bottom-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 36px;
}

.mb-sub {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
  max-width: 560px;
  text-align: center;
}

.mb-place-link {
  color: #1d1d1f;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
  transition: color 0.18s;
}
.mb-place-link:hover { color: rgba(0,0,0,0.55); }

/* ══════════════════════════════════════════════
   PROCESS SCROLL SECTION
═══════════════════════════════════════════════ */
.process-scroll-container {
  height: 450vh;
  position: relative;
}

.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 0 80px;
  text-align: center;
  overflow: hidden;
}

.process-steps-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 56px;
}

.process-step-nav {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.process-step-nav.active {
  color: #E8FF00;
}

.process-content {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-panel {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.process-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.process-num {
  display: block;
  font-size: clamp(80px, 10vw, 130px);
  font-weight: 800;
  color: #E8FF00;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.process-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #fff;
}

.process-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Adobe's Pulses section header ── */
.adobes-pulses-title {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 0;
}

.adobes-pulses-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── Pulse section: full-screen snap ── */
#pulse-1 {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  scroll-snap-align: start;
}

#pulse-1 .container {
  text-align: center;
  margin-bottom: 48px;
}

#pulse-1 .pulse-gallery {
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
  flex: 1;
  max-height: 480px;
}

/* ── Mobile Gate ────────────────────────────────── */
#mobile-gate {
  display: none;
}
@media (max-width: 860px) {
  #mobile-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: fixed;
    inset: 0;
    background: #0e0e0e;
    z-index: 9999;
    padding: 40px 32px;
    text-align: center;
  }
  .mobile-gate-logo {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }
  .mobile-gate-msg {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    color: #fff;
    letter-spacing: -0.02em;
    max-width: 280px;
  }
  body > *:not(#mobile-gate) { display: none !important; }
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 860px) {
  .intro-body { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .intro-stats-row { flex-direction: column; gap: 28px; padding-top: 32px; align-items: center; }
  .intro-stat-div { display: none; }
  .intro-stat { padding: 0; }

  /* ── Hero ── */
  .mbsec { height: auto; min-height: 0; }
  .mb-hero { padding: 32px 24px 0; }
  .mb-hero-body { padding: 24px 24px 36px; }
  .mb-actions { flex-direction: column; gap: 12px; width: 100%; }
  .mb-nav-btn, .mb-cta-link { width: 100%; text-align: center; justify-content: center; box-sizing: border-box; }
  .mb-sub { font-size: 15px; }

  /* ── Ticker ── */
  .ht-sep { display: none; }

  /* ── Pulses / Cards ── */
  #pulse-1 {
    height: auto !important;
    min-height: unset !important;
    padding: 52px 0 0;
  }
  #pulse-1 .pulse-gallery {
    max-height: none !important;
  }
  .pulse { padding: 52px 0 0; }
  .pulse-body { flex-direction: column; align-items: flex-start; padding: 0 24px 24px; }
  .adobes-pulses-title { font-size: clamp(22px, 6vw, 30px); }
  .adobes-pulses-sub { font-size: 14px; }
  .btn-pulse { width: 100%; justify-content: center; }
  .pulse-gallery {
    flex-direction: column;
    height: auto;
    padding: 0 20px 48px;
    gap: 24px;
  }
  /* Mobile: wrapper becomes a real flex column */
  .pgcard-wrap {
    display: flex !important;
    flex-direction: column;
  }
  .pgcard {
    flex: none !important;
    height: 260px !important;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }
  .pulse-gallery:has(.pgcard:hover) .pgcard { flex: none !important; }
  .pgcard-corner { opacity: 1; transform: none !important; bottom: 16px; top: auto; left: 16px; right: auto; text-align: left; }
  .pgcard-expanded { display: none !important; }
  .pgcard-overlay { background: rgba(0,0,0,0.15) !important; }
  /* Mobile caption below image */
  .pgcard-caption {
    display: block;
    background: #eeede9;
    border-radius: 0 0 16px 16px;
    padding: 14px 18px 18px;
  }
  .pgcard-caption-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
  }
  .pgcard-caption-text {
    font-size: 13px;
    color: rgba(0,0,0,0.48);
    line-height: 1.55;
    letter-spacing: -0.005em;
  }

  /* ── Gallery strip ── */
  .gallery-strip { flex-direction: column; height: auto; gap: 12px; padding-bottom: 48px; }
  .gcard { flex: none; height: 240px; }
  .gcard--featured { flex: none; }
  .gallery-strip:has(.gcard:hover) .gcard { flex: none; }
  .gcard:hover { flex: none !important; }
  .gcard-overlay { opacity: 1; }

  /* ── Hero stats ── */
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stat-div { width: 100%; height: 1px; }
  .hero-stat { padding: 16px 24px; }

  /* ── Deliverables section ── */
  .del-section { padding: 64px 24px; }
  .del-section-inner { flex-direction: column; gap: 40px; }
  .del-section-left { position: static; flex: none; }
  .del-cta-btn { width: 100%; justify-content: center; }

  /* ── Final CTA ── */
  .final-cta { padding: 80px 24px 100px; }
  .final-cta-headline { font-size: clamp(28px, 8vw, 40px); margin-bottom: 20px; }
  .final-cta-sub { font-size: 15px; margin-bottom: 40px; }
  .final-cta-btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 11px; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; gap: 32px; padding-bottom: 36px; }
  .footer-right { align-items: flex-start; }
  .footer-links { align-items: flex-start; }
  .footer-socials { justify-content: flex-start; }

  /* ── Misc ── */
  .unlock-cta { padding: 100px 24px; }
  .unlock-pill { padding: 18px 36px; font-size: 12px; }
  .mbsec { padding: 80px 24px 60px; }
  .mb-icon--2, .mb-icon--3, .mb-icon--8, .mb-icon--9, .mb-icon--12 { display: none; }
  .mb-stat { letter-spacing: -0.035em; }
  .mb-nav { gap: 20px; }
  .mb-nav-links { gap: 16px; }
}

/* ── Deliverables Section ──────────────────────── */
.del-section {
  background: #f5f4f1;
  padding: 100px 40px;
}
.del-section-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.del-section-left {
  flex: 0 0 340px;
  position: sticky;
  top: 80px;
}
.del-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
  margin-bottom: 20px;
}
.del-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e0281a;
  flex-shrink: 0;
  animation: pulse-dot-red 1.4s ease-in-out infinite;
}
@keyframes pulse-dot-red {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224,40,26,0.5); }
  50%  { transform: scale(1.35); box-shadow: 0 0 0 5px rgba(224,40,26,0); }
}
.del-heading {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #111;
  margin-bottom: 14px;
}
.del-sub {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.38);
  margin-bottom: 36px;
  letter-spacing: -0.005em;
}
.del-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #111;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.del-cta-btn:hover {
  background: #2e3330;
  transform: translateY(-1px);
}
.del-section-right {
  flex: 1;
}
.del-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.09);
}
.del-list .del {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.del-list .del-left {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.del-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e0281a;
  line-height: 1;
}
.del-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.del-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.02em;
}
.del-desc {
  font-size: 13px;
  color: rgba(0,0,0,0.38);
  letter-spacing: -0.005em;
  line-height: 1.55;
}

/* ── Final CTA ─────────────────────────────────── */
.final-cta {
  background: #000;
  color: #fff;
  padding: 140px 40px 160px;
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 40px;
}
.final-cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e0281a;
  animation: live-dot-pulse 1.4s ease-in-out infinite;
}
.final-cta-headline {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 32px;
}
.final-cta-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  margin-bottom: 52px;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #2e3330;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
  transition: background 0.2s, transform 0.15s;
}
.final-cta-btn:hover {
  background: #3a3f3c;
  transform: translateY(-1px);
}
.final-cta-link {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.final-cta-link:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── How It Works ──────────────────────────────── */
.hiw-section {
  background: #fff;
  color: #1d1d1f;
  padding: 0 40px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 96px 0;
}

/* Left nav */
.hiw-nav {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 96px;
  padding-right: 48px;
  align-self: flex-start;
}
.hiw-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
  margin-bottom: 16px;
  padding-left: 4px;
}
.hiw-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}
.hiw-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 9px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
}
.hiw-menu-item.active {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,1);
}
.hiw-menu-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.2);
  transition: color 0.2s;
  min-width: 20px;
}
.hiw-menu-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.35);
  transition: color 0.2s;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hiw-menu-item.active .hiw-menu-num { color: #e0281a; }
.hiw-menu-item.active .hiw-menu-text { color: #1d1d1f; font-weight: 600; }
.hiw-menu-item:hover:not(.active) { background: rgba(0,0,0,0.03); }
.hiw-menu-item:hover:not(.active) .hiw-menu-text { color: rgba(0,0,0,0.6); }

/* Right content */
.hiw-content {
  flex: 1;
  padding-left: 72px;
}
.hiw-block {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hiw-block:last-child { border-bottom: none; }
.hiw-block-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e0281a;
  margin-bottom: 16px;
}
.hiw-block-title {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hiw-block-sub {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin-bottom: 20px;
  line-height: 1.3;
}
.hiw-block-body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: rgba(0,0,0,0.5);
  max-width: 540px;
  margin-bottom: 24px;
}
.hiw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  margin-bottom: 24px;
}
.hiw-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.6;
  color: rgba(0,0,0,0.55);
}
/* Two-column label / description layout */
.hiw-list--cols li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 20px;
  align-items: baseline;
}
.hiw-list--cols li::before { display: none; }
.hiw-li-label {
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.5;
}
.hiw-li-desc {
  font-size: clamp(13px, 1vw, 14px);
  color: rgba(0,0,0,0.45);
  line-height: 1.5;
}

.hiw-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e0281a;
  flex-shrink: 0;
  margin-top: 8px;
}
.hiw-list li strong { color: #1d1d1f; font-weight: 600; }
.hiw-block-aside {
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.65;
  color: rgba(0,0,0,0.38);
  max-width: 500px;
  border-left: 2px solid #e0281a;
  padding-left: 16px;
  margin-top: 8px;
}
.hiw-block-aside strong { color: #1d1d1f; font-weight: 700; }
.hiw-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hiw-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,0.8);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 4px 20px rgba(0,0,0,0.08);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.hiw-cta-btn:hover {
  background: rgba(255,255,255,0.75);
  border-color: rgba(0,0,0,0.2);
  transform: translateY(-1px);
}
.hiw-cta-btn--dark {
  color: #fff;
  background: #111;
  border-color: #111;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.hiw-cta-btn--dark:hover {
  background: #222;
  border-color: #222;
  transform: translateY(-1px);
}
.hiw-cta-link {
  font-size: 13px;
  color: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.hiw-cta-link:hover { color: #1d1d1f; border-color: rgba(0,0,0,0.4); }

/* ── How It Works — Mobile (must come AFTER desktop styles) ── */
@media (max-width: 860px) {
  .hiw-section { padding: 0; }
  .hiw-inner { flex-direction: column !important; gap: 0; padding: 0 0 48px; }
  .hiw-nav {
    position: static !important;
    width: 100%;
    flex-shrink: unset;
    padding: 32px 24px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    align-self: auto;
  }
  .hiw-nav-label { margin-bottom: 12px; }
  .hiw-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .hiw-menu-item {
    padding: 7px 12px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 999px;
    flex-direction: row;
    gap: 5px;
    background: rgba(0,0,0,0.03);
  }
  .hiw-menu-item.active {
    background: #1d1d1f;
    border-color: #1d1d1f;
    box-shadow: none;
  }
  .hiw-menu-item.active .hiw-menu-num { color: rgba(255,255,255,0.5); }
  .hiw-menu-item.active .hiw-menu-text { color: #fff; }
  .hiw-menu-num { font-size: 10px; min-width: auto; }
  .hiw-menu-text { font-size: 12px; }
  .hiw-content { padding-left: 0; }
  .hiw-block {
    min-height: unset;
    padding: 32px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .hiw-block-num { font-size: 10px; margin-bottom: 10px; }
  .hiw-block-sub { font-size: 17px; line-height: 1.3; margin-bottom: 14px; }
  .hiw-block-body { font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
  .hiw-list { gap: 8px; margin-bottom: 14px; }
  .hiw-list li { font-size: 14px; }
  .hiw-list--cols li { grid-template-columns: 1fr; gap: 3px; }
  .hiw-li-desc { font-size: 13px; }
  .hiw-block-aside { font-size: 13px; }
  .hiw-cta-row { margin-top: 20px; }
  .hiw-cta-btn { font-size: 13px; padding: 11px 20px; }
}
.hiw-block-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 24px 28px;
  background: #f8f8f8;
  border-radius: 10px;
  max-width: 420px;
}
.hiw-stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #1d1d1f;
  white-space: nowrap;
}
.hiw-stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,0.4);
}
