/* ============================================
   FSA — PAGE-SPECIFIC LAYOUTS v2
   Hero, Sliders, Founder, Team, Services, Contact
   ============================================ */

/* ════════════════ HOME HERO ════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 170px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(212,175,55,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(245,215,126,.04) 0%, transparent 65%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212,175,55,.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 70%);
  opacity: .55;
  z-index: 1;
}
.scroll-hint { display: none; }   /* free vertical space, hero already tall */
.hero-deco {
  position: absolute; top: 150px; left: 36px; right: 36px;
  display: flex; justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--steel);
  pointer-events: none; z-index: 4;
}
@media (max-width: 700px) { .hero-deco { display: none; } }

.hero-shape {
  position: absolute; pointer-events: none; z-index: 1;
  border: 1px solid var(--line-2);
  animation: float-y 6s ease-in-out infinite;
}
.hero-shape.s1 { top: 18%; left: 6%; width: 70px; height: 70px; border-radius: var(--r-md); animation-delay: 0s; }
.hero-shape.s2 { top: 30%; right: 8%; width: 54px; height: 54px; border-radius: 50%; animation-delay: 1.4s; }
.hero-shape.s3 { bottom: 22%; left: 12%; width: 38px; height: 38px; transform: rotate(45deg); animation-delay: .7s; background: rgba(212,175,55,.06); }
.hero-shape.s4 { bottom: 30%; right: 14%; width: 90px; height: 1px; background: var(--line-3); border: none; animation-delay: 2.1s; }
@media (max-width: 900px) { .hero-shape { display: none; } }

.hero-content { text-align: center; max-width: 1140px; margin: 0 auto; position: relative; z-index: 5; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: rgba(212,175,55,.07);
  border: 1px solid var(--line-2);
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 2.2px; text-transform: lowercase;
  color: var(--snow); margin-bottom: 38px;
  backdrop-filter: blur(10px);
}
.hero h1 { margin-bottom: 32px; }
.hero h1 .row {
  display: block;
  min-height: 1em;            /* reserve a fixed line so layout never jumps */
  line-height: .95;
}
.hero h1 .typed-wrap {
  color: var(--gold);
  position: relative;
  display: inline-block;
  white-space: nowrap;        /* never wrap → no row growing to 2 lines */
  min-width: 0.5ch;           /* always wider than zero so cursor shows */
}
.hero h1 .typed-wrap #typed { display: inline-block; }
.hero h1 .typed-wrap::after {
  content: '_'; color: var(--gold-hi); margin-left: 4px;
  animation: blink 1s infinite; font-weight: 300;
}
.hero h1 .typed-wrap.typed-static::after {
  display: none;
}
.hero h1 .hero-typed-row {
  display: block;
  min-height: 1.05em;
}
.hero h1 .hero-typed-row .typed-wrap {
  min-height: 1.2em;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .hero h1 .hero-typed-row {
    min-height: 2.65em;
  }
  .hero h1 .typed-wrap {
    white-space: normal !important;
    min-height: 2.65em;
    max-width: 100%;
    line-height: 1.12;
    text-align: center;
  }
}
@keyframes blink { 0%,49%{opacity:1;} 50%,100%{opacity:0;} }
.hero p.lead { max-width: 720px; margin: 0 auto 44px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 56px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--carbon); border: 1px solid var(--line);
  font-size: 12px; color: var(--fog);
  font-family: 'IBM Plex Mono', monospace; font-weight: 400;
  letter-spacing: .5px;
}
.trust-pill i { color: var(--gold); font-size: 11px; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 920px; margin: 0 auto;
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  padding: 24px 18px; border-radius: var(--r-md);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,215,126,.10) 0%, transparent 60%),
    linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  text-align: center; position: relative; overflow: hidden;
  box-shadow:
    0 1px 0 rgba(245,215,126,.05) inset,
    0 8px 22px rgba(0,0,0,.4);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow:
    0 1px 0 rgba(245,215,126,.10) inset,
    0 14px 32px rgba(212,175,55,.18),
    0 0 0 1px var(--line-2);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  height: 1px; width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 1.6s cubic-bezier(.2,.9,.4,1);
}
.stat-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(245,215,126,.0), transparent 60%);
  transition: background var(--t-base);
  pointer-events: none;
}
.stat-card:hover::after { background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(245,215,126,.18), transparent 65%); }
.stat-card.in::before { width: 100%; }
.stat-card > * { position: relative; z-index: 2; }
.stat-num {
  font-family: 'Syne','Sora', sans-serif; font-weight: 800;
  font-size: clamp(32px, 4.4vw, 52px); line-height: 1;
}
.stat-num span.sym { font-size: .65em; }
.stat-lbl {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
  color: var(--steel); margin-top: 10px;
}

.scroll-hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--steel);
}
.scroll-hint i { animation: hint 2s ease-in-out infinite; }
@keyframes hint { 0%,100%{transform:translateY(0);opacity:.5;} 50%{transform:translateY(6px);opacity:1;} }

/* ════════════════ BRAND SLIDER ════════════════ */
.brand-slider {
  position: relative; padding: 12px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-track {
  display: flex; gap: 56px; width: max-content;
  animation: brandscroll 38s linear infinite;
  align-items: center;
}
.brand-slider:hover .brand-track { animation-play-state: paused; }
@keyframes brandscroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }
.brand-item {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Syne','Sora',sans-serif; font-weight: 700; font-size: 22px;
  color: var(--steel); letter-spacing: -.3px;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.brand-item i { color: var(--gold); font-size: 22px; transition: transform var(--t-fast); }
.brand-item:hover { color: var(--snow); }
.brand-item:hover i { transform: rotate(-8deg) scale(1.1); }

/* ════════════════ WHY GRID ════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-grid .card { padding: 28px 26px; }
.why-grid .card-num {
  position: static; display: block; margin-bottom: 8px;
  font-size: 11px; letter-spacing: 3px;
}
.why-grid h3 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 600; font-size: 19px;
  color: var(--snow); margin: 22px 0 10px; letter-spacing: -.3px;
}
.why-grid p { color: var(--fog); font-size: 14px; font-weight: 300; line-height: 1.65; }

/* ════════════════ SERVICES PREVIEW ════════════════ */
.svc-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .svc-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-preview-grid { grid-template-columns: 1fr; } }
.svc-preview-grid .card {
  padding: 32px 28px;
  display: flex; flex-direction: column;
  min-height: 300px;
}
.svc-preview-grid .card .card-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 6px; }
.svc-preview-grid .card h3 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 600; font-size: 21px;
  color: var(--snow); margin: 24px 0 10px; letter-spacing: -.3px;
}
.svc-preview-grid .card p { color: var(--fog); font-size: 13.5px; font-weight: 300; line-height: 1.65; margin-bottom: 14px; }
.svc-preview-grid .card .card-link { margin-top: auto; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; margin-bottom: 18px; }
.svc-tags span {
  font-family: 'IBM Plex Mono', monospace; font-size: 9.5px;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(212,175,55,.06); border: 1px solid var(--line);
  color: var(--fog);
}

.card-link {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap var(--t-fast), color var(--t-fast);
}
.card-link:hover { gap: 14px; color: var(--gold-hi); }

.svc-preview-grid .card.featured {
  background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(10,8,5,.92));
  border-color: var(--line-2);
}

/* ════════════════ HOME FOUNDER ════════════════ */
.home-founder {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 64px; align-items: center;
}
@media (max-width: 1000px) { .home-founder { grid-template-columns: 1fr; gap: 44px; } }
.hf-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--carbon);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.hf-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.6) 100%);
  z-index: 1; pointer-events: none;
}
.hf-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.hf-photo:hover img { transform: scale(1.04); }
.hf-photo .badge-floating {
  position: absolute; left: 22px; bottom: 22px; right: 22px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--r-md);
  background: rgba(8,7,10,.7); backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
}
.hf-photo .badge-floating i { color: var(--gold); }
.hf-photo .badge-floating div h5 { font-family: 'Syne','Sora',sans-serif; font-size: 14px; color: var(--snow); font-weight: 600; }
.hf-photo .badge-floating div span { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 1.8px; text-transform: uppercase; }

.hf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.hf-stats > div {
  padding: 18px 14px; text-align: center;
  background: var(--carbon); border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t-base);
}
.hf-stats > div:hover { border-color: var(--line-2); }
.hf-stats .n { font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 26px; color: var(--gold); }
.hf-stats .l { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 1.8px; color: var(--steel); margin-top: 5px; text-transform: uppercase; }

.hf-quote {
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 22px 26px;
  font-style: italic; color: var(--snow); font-size: 15.5px; line-height: 1.7;
  margin: 22px 0;
  position: relative;
}

/* ════════════════ HOME TEAM ════════════════ */
.home-team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
@media (max-width: 900px) { .home-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .home-team-grid { grid-template-columns: repeat(2, 1fr); } }
.tm-card {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245,215,126,.07) 0%, transparent 60%),
    linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
  text-align: center;
  transition: all var(--t-base);
  box-shadow: 0 1px 0 rgba(245,215,126,.04) inset, 0 8px 20px rgba(0,0,0,.35);
}
.tm-card:hover { border-color: var(--line-2); transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.tm-card .av {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(212,175,55,.04));
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne','Sora',sans-serif; font-weight: 700; font-size: 22px;
  color: var(--gold);
  margin: 0 auto 14px;
  transition: all var(--t-base);
}
.tm-card:hover .av { background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo)); color: #1C1408; transform: scale(1.05); }
.tm-card.more .av { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #1C1408; }
.tm-card h4 { font-family: 'Syne','Sora',sans-serif; font-size: 14px; font-weight: 600; color: var(--snow); }
.tm-card .role { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* ════════════════ TEAM SLIDER (4 per view on tablet+, compact cards ~60% scale) ════════════════ */
.ts-wrap { position: relative; margin-top: 12px; }
.ts-viewport { overflow: hidden; margin: 0 -10px; padding: 8px 10px 4px; }
.ts-track {
  display: flex; gap: 14px;
  transition: transform .75s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}
.ts-card {
  flex: 0 0 calc(25% - 10.5px);
  background:
    radial-gradient(ellipse 85% 45% at 50% 0%, rgba(245, 215, 126, .09) 0%, transparent 58%),
    linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), border-color var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 1px 0 rgba(245, 215, 126, .04) inset, 0 8px 20px rgba(0, 0, 0, .35);
}
.ts-card:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .42);
}
.ts-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0b08;
  border-bottom: 1px solid var(--line);
}
.ts-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter .55s ease, transform .65s cubic-bezier(.16, 1, .3, 1);
}
.ts-card:hover .ts-photo img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.ts-body {
  padding: 13px 12px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ts-name {
  font-family: 'Syne', 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--snow);
  margin: 0;
  line-height: 1.25;
  text-rendering: optimizeLegibility;
}
.ts-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  color: var(--gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 6px 0 0;
  max-width: 220px;
}
.ts-bio {
  margin: 8px 0 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--fog);
  max-width: 240px;
  text-rendering: optimizeLegibility;
}
.ts-wrap .rs-controls {
  justify-content: center;
  gap: 28px;
  margin-top: 26px;
  flex-wrap: wrap;
}
/* 720px and up: 4 cards per row. Narrow mobile: one full-width card, photo not cropped. */
@media (max-width: 719px) {
  .ts-card {
    flex: 0 0 100%;
    max-width: min(340px, 100%);
    margin: 0 auto;
  }
  .ts-photo {
    aspect-ratio: 4 / 5;
    max-height: none;
    min-height: 220px;
  }
  .ts-photo img {
    object-fit: cover;
    object-position: center 18%;
  }
  .ts-body { padding: 14px 16px 18px; }
  .ts-bio {
    font-size: 12.5px;
    max-width: 100%;
    line-height: 1.45;
    margin-top: 8px;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .ts-name { font-size: 0.95rem; }
  .ts-role { font-size: 8.5px; letter-spacing: 1.15px; max-width: none; margin-top: 6px; }
  #crew.section-pad-sm { padding: 34px 0; }
  .ts-wrap .rs-controls { margin-top: 18px; }
  .ts-viewport { padding-left: 12px; padding-right: 12px; }
}

/* ════════════════ REVIEW SLIDER ════════════════ */
.rs-wrap { position: relative; }
.rs-viewport {
  overflow: hidden;
  margin: 0 -10px;
  padding: 8px 10px 24px;
}
.rs-track {
  display: flex; gap: 20px;
  transition: transform 1s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.rs-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(245,215,126,.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(212,175,55,.05) 0%, transparent 60%),
    linear-gradient(180deg, #1B150D 0%, #0A0805 100%);
  border: 1px solid rgba(212, 175, 55, .14);
  border-radius: var(--r-lg);
  padding: 34px 30px 28px;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1200px) translateZ(0);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  transition:
    transform .7s cubic-bezier(.22, 1, .36, 1),
    border-color .45s ease,
    box-shadow .55s ease,
    background .55s ease,
    outline-color .45s ease;
  outline: 1px solid transparent;
  outline-offset: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 -1px 0 rgba(0,0,0,.4) inset,
    0 16px 40px rgba(0,0,0,.42),
    0 0 0 1px rgba(212,175,55,.04);
  display: flex; flex-direction: column;
}
@media (max-width: 1000px) { .rs-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 600px)  { .rs-card { flex: 0 0 100%; } }

/* Big gold quote glyph in background */
.rs-card::before {
  content: '\201C';
  position: absolute; top: -22px; left: 16px;
  font-family: 'Syne', 'Sora', serif; font-weight: 800;
  font-size: 140px; line-height: 1;
  color: rgba(212,175,55,.07);
  pointer-events: none; z-index: 1;
  transition: color .5s, transform .5s;
}
/* Top hairline */
.rs-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .5s;
  z-index: 3;
}
.rs-card:hover {
  border-color: var(--line-2);
  outline-color: rgba(212, 175, 55, .14);
  transform: perspective(1200px) translateY(-10px) rotateX(2.5deg) rotateY(-2.5deg) translateZ(8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 -1px 0 rgba(0,0,0,.5) inset,
    0 0 0 1px var(--line-2),
    0 26px 60px rgba(0,0,0,.55),
    0 8px 26px rgba(212,175,55,.18);
}
.rs-card:hover::before { color: rgba(212,175,55,.16); transform: scale(1.05); }
.rs-card:hover::after  { opacity: 1; }

.rs-card > * { position: relative; z-index: 2; }

.rs-card .stars { display: flex; gap: 3px; margin-bottom: 16px; }
.rs-card .stars i { color: var(--gold); font-size: 13px; filter: drop-shadow(0 0 4px rgba(212,175,55,.4)); }

.rs-card .quote {
  color: var(--paper); font-size: 14.5px; font-weight: 300; line-height: 1.75;
  margin-bottom: 24px; min-height: 130px;
  font-style: italic;
}
.rs-card .quote b { color: var(--gold-hi); font-weight: 600; font-style: normal; }

.rs-card .author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; margin-top: auto;
  border-top: 1px dashed var(--line-2);
}
.rs-card .av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold), var(--gold-lo));
  display: flex; align-items: center; justify-content: center;
  color: #1C1408; font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 14px;
  flex-shrink: 0;
  box-shadow:
    0 4px 14px rgba(212,175,55,.35),
    0 0 0 2px var(--carbon-2),
    0 0 0 3px var(--line-2);
}
.rs-card .author h4 { font-family: 'Syne','Sora',sans-serif; font-size: 14.5px; font-weight: 700; color: var(--snow); letter-spacing: -.2px; }
.rs-card .author p { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 1.2px; color: var(--gold); margin-top: 3px; text-transform: uppercase; }

/* Platform pill — gold themed brand badge */
.rs-card .platform {
  position: absolute; top: 20px; right: 20px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, rgba(245,215,126,.16), rgba(212,175,55,.05));
  border: 1px solid var(--line-2);
  font-family: 'IBM Plex Mono', monospace; font-size: 9.5px;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-hi); font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all var(--t-fast);
}
.rs-card .platform i { font-size: 12px; color: var(--gold); }
.rs-card:hover .platform {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  color: #1C1408; border-color: transparent;
  box-shadow: 0 6px 18px rgba(212,175,55,.4);
}
.rs-card:hover .platform i { color: #1C1408; }

/* Verified pill — clearly below platform pill */
.rs-card .verified {
  position: absolute; top: 62px; right: 20px;
  font-family: 'IBM Plex Mono', monospace; font-size: 8.5px;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--mint);
  display: inline-flex; align-items: center; gap: 5px;
  z-index: 3;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(111,224,180,.12);
  border: 1px solid rgba(111,224,180,.3);
  backdrop-filter: blur(8px);
}
.rs-card .verified i { font-size: 9px; }
/* Push card content top down so it doesn't clash with the pills */
.rs-card .stars { padding-top: 56px; }

.rs-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.rs-arrows { display: flex; gap: 10px; }
.rs-btn {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--carbon); border: 1px solid var(--line-2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer;
  transition: all var(--t-fast);
}
.rs-btn:hover { background: var(--gold); color: #1C1408; border-color: var(--gold); transform: translateY(-2px); }
.rs-btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.rs-dots { display: flex; gap: 8px; }
.rs-dot {
  width: 24px; height: 4px; border-radius: var(--r-pill);
  background: var(--carbon-3); border: none; cursor: pointer;
  transition: all var(--t-fast);
}
.rs-dot.active { background: var(--gold); width: 40px; }

@media (prefers-reduced-motion: no-preference) {
  @keyframes rsCardSettle {
    from {
      opacity: 0;
      transform: perspective(1200px) translateZ(0) translateY(16px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: perspective(1200px) translateZ(0) translateY(0) scale(1);
    }
  }
  .rs-track .rs-card {
    animation: rsCardSettle 0.75s cubic-bezier(.22, 1, .36, 1) backwards;
  }
  .rs-track .rs-card:nth-child(1)  { animation-delay: .04s; }
  .rs-track .rs-card:nth-child(2)  { animation-delay: .08s; }
  .rs-track .rs-card:nth-child(3)  { animation-delay: .12s; }
  .rs-track .rs-card:nth-child(4)  { animation-delay: .16s; }
  .rs-track .rs-card:nth-child(5)  { animation-delay: .2s; }
  .rs-track .rs-card:nth-child(6)  { animation-delay: .24s; }
  .rs-track .rs-card:nth-child(7)  { animation-delay: .28s; }
  .rs-track .rs-card:nth-child(8)  { animation-delay: .32s; }
  .rs-track .rs-card:nth-child(9)  { animation-delay: .36s; }
  .rs-track .rs-card:nth-child(10) { animation-delay: .40s; }
}

.review-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 13px 22px; border-radius: var(--r-pill);
  background: var(--carbon); border: 1px solid var(--line);
  margin-top: 26px;
}
.review-pill .stars { display: flex; gap: 3px; }
.review-pill .stars i { color: var(--gold); font-size: 13px; }
.review-pill .num { font-family: 'Syne','Sora',sans-serif; font-weight: 700; color: var(--snow); font-size: 17px; }
.review-pill .meta { font-size: 12px; color: var(--fog); font-family: 'IBM Plex Mono', monospace; }

/* ════════════════ PAGE HERO ════════════════ */
.page-hero {
  padding: 200px 0 80px;
  text-align: center; position: relative;
}
.page-hero::before {
  content: ''; position: absolute; left: 50%; top: 60%;
  transform: translateX(-50%);
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.07) 0%, transparent 65%);
  pointer-events: none; z-index: -1;
}
.page-hero h1 { margin: 28px 0 24px; }
.page-hero p { max-width: 700px; margin: 0 auto; }
.bread {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--steel);
}
.bread a { color: var(--gold); transition: color var(--t-fast); }
.bread a:hover { color: var(--gold-hi); }
.bread span { color: var(--steel); }

/* ════════════════ CAPABILITIES ════════════════ */
.cap-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
@media (max-width: 1000px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-list { display: flex; flex-direction: column; gap: 26px; }
.cap-bar { display: flex; flex-direction: column; gap: 10px; }
.cap-bar .top { display: flex; justify-content: space-between; font-size: 14px; }
.cap-bar .top span:first-child { color: var(--fog); }
.cap-bar .top span:last-child { font-family: 'IBM Plex Mono', monospace; color: var(--gold); font-weight: 500; }
.cap-bar .track { height: 4px; background: var(--carbon-3); border-radius: var(--r-pill); overflow: hidden; }
.cap-bar .fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-hi));
  transition: width 1.8s cubic-bezier(.2,.9,.4,1);
  border-radius: var(--r-pill);
  box-shadow: 0 0 12px rgba(212,175,55,.4);
}

.ring-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 28px; }
.ring-wrap { width: 200px; height: 200px; position: relative; margin-bottom: 18px; }
.ring-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-wrap .center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-wrap .pct { font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 42px; }
.ring-wrap .lbl { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--steel); margin-top: 6px; }

/* ════════════════ TIMELINE ════════════════ */
.tline { position: relative; max-width: 920px; margin: 0 auto; }
.tline::before {
  content: ''; position: absolute; left: 26px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 18%, var(--gold-deep) 82%, transparent);
}
@media (min-width: 900px) { .tline::before { left: 50%; transform: translateX(-.5px); } }
.tstep { position: relative; padding-left: 70px; margin-bottom: 56px; }
.tstep::before {
  content: ''; position: absolute; left: 26px; top: 6px;
  transform: translate(-50%, 0);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.15), 0 0 12px var(--gold-glow);
}
.tstep .label { color: var(--gold); margin-bottom: 6px; }
.tstep h3 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 600; font-size: 24px;
  color: var(--snow); margin-bottom: 8px; letter-spacing: -.4px;
}
.tstep p { color: var(--fog); font-size: 14px; font-weight: 300; line-height: 1.7; }
@media (min-width: 900px) {
  .tstep { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-left: 0; }
  .tstep::before { left: 50%; }
  .tstep:nth-child(odd) > .content { text-align: right; padding-right: 36px; }
  .tstep:nth-child(even) > .content { padding-left: 36px; order: 2; }
  .tstep:nth-child(even) > .empty { order: 0; }
}

/* ════════════════ SERVICES PAGE ════════════════ */
.svc-disc-head {
  display: flex; align-items: baseline; gap: 22px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.svc-disc-head .label { color: var(--gold); }
.svc-disc-head h3 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 700;
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--snow); letter-spacing: -.5px;
}
.svc-disc-head .line { flex: 1; height: 1px; background: var(--line); min-width: 40px; }

.svc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .svc-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid-4 { grid-template-columns: 1fr; } }
.svc-grid-4 h3 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 600; font-size: 18px;
  color: var(--snow); margin: 22px 0 10px; letter-spacing: -.3px;
}
.svc-grid-4 p { color: var(--fog); font-size: 13.5px; font-weight: 300; line-height: 1.65; }

.svc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .svc-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid-3 { grid-template-columns: 1fr; } }

.svc-card {
  display: flex; flex-direction: column;
  padding: 30px 28px; min-height: 320px; position: relative;
}
.svc-card .badge { position: absolute; top: 22px; right: 22px; }
.svc-card h3 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 600; font-size: 20px;
  color: var(--snow); margin: 22px 0 10px; letter-spacing: -.3px;
}
.svc-card p { color: var(--fog); font-size: 13.5px; font-weight: 300; line-height: 1.65; margin-bottom: 16px; }
.svc-card ul { list-style: none; margin-bottom: 20px; }
.svc-card ul li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--fog); padding: 5px 0;
}
.svc-card ul li i { color: var(--gold); font-size: 11px; flex-shrink: 0; }
.svc-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: flex-end; padding-top: 14px; border-top: 1px dashed var(--line); }
.svc-card .price { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 1px; }
.svc-card.featured {
  background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(10,8,5,.92));
  border-color: var(--line-2);
}

.svc-row {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
}
.svc-row .card-icon { width: 50px; height: 50px; font-size: 18px; }
.svc-row h4 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 600; font-size: 16px;
  color: var(--snow); margin-bottom: 4px; letter-spacing: -.2px;
}
.svc-row p { color: var(--fog); font-size: 12.5px; font-weight: 300; line-height: 1.55; }
.svc-row .num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--steel); }

.process-flow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  position: relative;
}
@media (max-width: 1000px) { .process-flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-flow { grid-template-columns: 1fr; } }
.proc-step {
  background: var(--carbon); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 24px 20px;
  text-align: center; position: relative;
  transition: all var(--t-base);
}
.proc-step:hover { border-color: var(--line-2); transform: translateY(-4px); }
.proc-step .num {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  color: #1C1408; font-family: 'Syne','Sora',sans-serif; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 14px;
  box-shadow: 0 6px 16px rgba(212,175,55,.35);
}
.proc-step h4 { font-family: 'Syne','Sora',sans-serif; font-size: 15px; color: var(--snow); margin-bottom: 6px; }
.proc-step p { font-size: 12.5px; color: var(--fog); line-height: 1.55; font-weight: 300; }

/* ════════════════ FOUNDER PAGE ════════════════ */
.founder-hero {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 72px; align-items: center;
  padding: 200px 0 100px;
}
@media (max-width: 1000px) {
  .founder-hero { grid-template-columns: 1fr; gap: 52px; padding: 160px 0 80px; }
}
.founder-frame {
  background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(212,175,55,.02));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 12px;
  position: relative;
}
.founder-frame::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--r-xl);
  pointer-events: none;
  background: conic-gradient(from var(--ang2,0deg), transparent 0deg, var(--gold-hi) 70deg, var(--gold) 130deg, transparent 200deg, transparent 360deg);
  z-index: -1;
  animation: rot2 10s linear infinite;
  opacity: .55;
}
@property --ang2 { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes rot2 { to { --ang2: 360deg; } }

.founder-portrait {
  aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
  background: var(--carbon);
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.founder-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.06) brightness(1.04);
  transition: transform .8s cubic-bezier(.2,.9,.4,1);
}
.founder-portrait:hover img { transform: scale(1.04); }
.founder-portrait::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none; z-index: 1;
}
.founder-portrait .pf-name {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
}
.founder-portrait .pf-name h4 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 700; font-size: 18px;
  color: var(--snow); letter-spacing: -.3px;
}
.founder-portrait .pf-name span {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}

.founder-bio h1 { margin-bottom: 12px; }
.founder-bio .role {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; font-weight: 500;
}
.founder-bio p {
  color: var(--paper); font-size: 16px; font-weight: 300;
  line-height: 1.75; margin-bottom: 18px;
}
.founder-bio p b { color: var(--snow); font-weight: 500; }

.founder-mini {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0;
}
.founder-mini > div {
  text-align: center; padding: 18px 12px;
  background: var(--carbon); border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t-base);
}
.founder-mini > div:hover { border-color: var(--line-2); }
.founder-mini .n { font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 26px; color: var(--gold); }
.founder-mini .l { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--steel); margin-top: 6px; }

.founder-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.quote-box {
  background: linear-gradient(180deg, var(--carbon), rgba(20,16,10,.5));
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 22px 28px;
  margin: 26px 0;
  font-style: italic;
  color: var(--snow); font-size: 16px;
  line-height: 1.7;
  position: relative;
}
.quote-box::before {
  content: '\201C'; position: absolute;
  top: -10px; left: 18px;
  font-family: 'Syne','Sora',sans-serif; font-size: 60px;
  color: var(--gold); opacity: .3;
  line-height: 1;
}

/* ════════════════ TEAM ════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { text-align: left; }
.team-avatar {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(212,175,55,.02));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne','Sora',sans-serif; font-weight: 700; font-size: 32px;
  color: var(--gold);
  position: relative; overflow: hidden;
  transition: all var(--t-base);
  margin-bottom: 14px;
}
.team-card:hover .team-avatar {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(212,175,55,.18);
}
.team-card h4 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 600; font-size: 15px;
  color: var(--snow); margin-bottom: 5px; letter-spacing: -.2px;
}
.team-card .role {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.team-avatar.more {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1C1408;
}
.team-avatar.more div { text-align: center; }
.team-avatar.more div .big { font-size: 32px; font-weight: 800; }
.team-avatar.more div .sm { font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 2px; margin-top: 6px; }

/* Culture row */
.culture-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .culture-grid { grid-template-columns: 1fr; } }
.culture-card {
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--t-base);
}
.culture-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.culture-card .ic {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.04));
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px; margin-bottom: 18px;
}
.culture-card h4 { font-family: 'Syne','Sora',sans-serif; font-size: 18px; color: var(--snow); margin-bottom: 10px; letter-spacing: -.3px; }
.culture-card p { color: var(--fog); font-size: 13.5px; font-weight: 300; line-height: 1.7; }

/* ════════════════ OFFICES ════════════════ */
.office-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .office-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .office-grid { grid-template-columns: 1fr; } }
.office {
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: all var(--t-base);
}
.office:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--sh-card); }
.office::before {
  content: attr(data-pin); position: absolute;
  top: -22px; right: 14px;
  font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 100px;
  color: rgba(212,175,55,.045);
  pointer-events: none; line-height: 1;
}
.office .top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.office .top i { color: var(--gold); }
.office h3 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 600; font-size: 22px;
  color: var(--snow); margin-bottom: 8px; letter-spacing: -.3px;
}
.office p { color: var(--fog); font-size: 13.5px; font-weight: 300; line-height: 1.6; margin-bottom: 14px; }
.office a.phone {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--t-fast);
}
.office a.phone:hover { color: var(--gold-hi); }

.office.cta {
  background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(10,8,5,.92));
  border-color: var(--line-2);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
}
.office.cta i.big { font-size: 36px; color: var(--gold); margin-bottom: 14px; }

/* ════════════════ FAQ ════════════════ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.acc {
  background: var(--carbon);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden; margin-bottom: 12px;
  transition: border-color var(--t-base);
}
.acc:hover { border-color: var(--line-2); }
.acc.open { border-color: var(--line-2); }
.acc-btn {
  width: 100%; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: none; border: none;
  color: var(--snow);
  font-family: 'Syne','Sora',sans-serif; font-size: 15.5px; font-weight: 600;
  text-align: left; letter-spacing: -.2px;
}
.acc-btn i {
  color: var(--gold); transition: transform var(--t-base); font-size: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(212,175,55,.1); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.acc.open .acc-btn i { transform: rotate(135deg); color: var(--gold-hi); background: rgba(212,175,55,.2); }
.acc-content { max-height: 0; overflow: hidden; transition: max-height var(--t-base); }
.acc.open .acc-content { max-height: 360px; }
.acc-content > div {
  padding: 0 24px 22px;
  color: var(--fog); font-size: 14px; font-weight: 300; line-height: 1.7;
}
.acc-content b { color: var(--snow); font-weight: 500; }

/* ════════════════ TRUST BAR ════════════════ */
.trust-bar {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px;
}
@media (max-width: 900px) { .trust-bar { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .trust-bar { grid-template-columns: repeat(2, 1fr); } }
.trust-item { text-align: center; padding: 12px; }
.trust-item i { font-size: 26px; color: var(--gold); margin-bottom: 12px; display: block; }
.trust-item span {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px;
  letter-spacing: 1.5px; color: var(--snow); display: block;
}

/* ════════════════ CONTACT ════════════════ */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 28px; }
@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: all var(--t-base);
}
.info-card:hover { border-color: var(--line-2); transform: translateX(5px); }
.info-card .ic {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: rgba(212,175,55,.1);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.info-card.mint .ic {
  background: rgba(111,224,180,.08);
  border-color: rgba(111,224,180,.25);
  color: var(--mint);
}
.info-card h4 {
  font-family: 'Syne','Sora',sans-serif; font-size: 15px; font-weight: 600;
  color: var(--snow); margin-bottom: 5px; letter-spacing: -.2px;
}
.info-card a, .info-card p {
  color: var(--fog); font-size: 13.5px; line-height: 1.55;
  display: block;
  word-break: break-word;
}
.info-card a:hover { color: var(--gold); }

.form-card {
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-card h2 {
  font-family: 'Syne','Sora',sans-serif; font-weight: 700; font-size: 28px;
  color: var(--snow); margin-bottom: 8px; letter-spacing: -.4px;
}
.form-card .sub {
  color: var(--fog); font-size: 14px; margin-bottom: 28px; font-weight: 300;
}
.form-card .btn { width: 100%; margin-top: 8px; }
.form-foot {
  text-align: center; color: var(--steel); font-size: 11px;
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace; letter-spacing: .5px;
}

/* ════════════════ ABOUT VALUES ════════════════ */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}
.value-card .num {
  font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 60px;
  color: rgba(212,175,55,.08); line-height: .9;
  position: absolute; top: 12px; right: 22px;
  pointer-events: none;
}
.value-card:hover { border-color: var(--line-2); transform: translateY(-5px); box-shadow: var(--sh-card); }
.value-card:hover .num { color: rgba(212,175,55,.18); }
.value-card .ic {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.04));
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 22px;
  margin-bottom: 22px;
}
.value-card h3 {
  font-family: 'Syne','Sora',sans-serif; font-size: 20px; color: var(--snow);
  margin-bottom: 10px; letter-spacing: -.3px; font-weight: 600;
}
.value-card p { color: var(--fog); font-size: 14px; font-weight: 300; line-height: 1.7; }

/* ════════════════ FOUNDER PHILOSOPHY ════════════════ */
.philosophy-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
@media (max-width: 900px) { .philosophy-grid { grid-template-columns: 1fr; } }
.philosophy-card {
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: all var(--t-base);
}
.philosophy-card:hover { border-color: var(--line-2); }
.philosophy-card h3 {
  font-family: 'Syne','Sora',sans-serif; font-size: 22px; color: var(--snow);
  margin-bottom: 14px; letter-spacing: -.3px; font-weight: 600;
}
.philosophy-card p { color: var(--fog); font-size: 14.5px; font-weight: 300; line-height: 1.75; }

/* ════════════════ FOUNDER TIMELINE (PROFILE TIMELINE) ════════════════ */
.profile-timeline {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 760px; margin: 0 auto;
}
.pt-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 22px;
  padding: 22px;
  background: var(--carbon); border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.pt-row:hover { border-color: var(--line-2); transform: translateX(4px); }
.pt-year {
  font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 22px;
  color: var(--gold); align-self: start; line-height: 1.1;
}
.pt-row h4 {
  font-family: 'Syne','Sora',sans-serif; font-size: 16px; color: var(--snow);
  margin-bottom: 6px; letter-spacing: -.2px;
}
.pt-row p { font-size: 13.5px; color: var(--fog); font-weight: 300; line-height: 1.65; }
@media (max-width: 600px) {
  .pt-row { grid-template-columns: 1fr; gap: 8px; }
  .pt-year { font-size: 18px; }
}

/* leftover orphan rule cleaned */
.value-card .num {
  font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 60px;
  color: rgba(212,175,55,.08); line-height: .9;
  position: absolute; top: 12px; right: 22px;
  pointer-events: none;
}
.value-card:hover { border-color: var(--line-2); transform: translateY(-5px); box-shadow: var(--sh-card); }
.value-card:hover .num { color: rgba(212,175,55,.18); }
.value-card .ic {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.04));
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 22px;
  margin-bottom: 22px;
}
.value-card h3 {
  font-family: 'Syne','Sora',sans-serif; font-size: 20px; color: var(--snow);
  margin-bottom: 10px; letter-spacing: -.3px; font-weight: 600;
}
.value-card p { color: var(--fog); font-size: 14px; font-weight: 300; line-height: 1.7; }

/* ════════════════ FOUNDER PHILOSOPHY ════════════════ */
.philosophy-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
@media (max-width: 900px) { .philosophy-grid { grid-template-columns: 1fr; } }
.philosophy-card {
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: all var(--t-base);
  box-shadow: 0 1px 0 rgba(245,215,126,.04) inset, 0 10px 24px rgba(0,0,0,.4);
}
.philosophy-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.philosophy-card h3 {
  font-family: 'Syne','Sora',sans-serif; font-size: 22px; color: var(--snow);
  margin-bottom: 14px; letter-spacing: -.3px; font-weight: 600;
}
.philosophy-card p { color: var(--fog); font-size: 14.5px; font-weight: 300; line-height: 1.75; }

/* ════════════════ FOUNDER PROFILE TIMELINE ════════════════ */
.profile-timeline {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 760px; margin: 0 auto;
}
.pt-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 22px;
  padding: 22px;
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.pt-row:hover { border-color: var(--line-2); transform: translateX(4px); }
.pt-year {
  font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 22px;
  color: var(--gold); align-self: start; line-height: 1.1;
}
.pt-row h4 {
  font-family: 'Syne','Sora',sans-serif; font-size: 16px; color: var(--snow);
  margin-bottom: 6px; letter-spacing: -.2px;
}
.pt-row p { font-size: 13.5px; color: var(--fog); font-weight: 300; line-height: 1.65; }
@media (max-width: 600px) {
  .pt-row { grid-template-columns: 1fr; gap: 8px; }
  .pt-year { font-size: 18px; }
}

/* ════════════════════════════════════════════════
   SHOPIFY SHOWCASE — flagship hero section
   ════════════════════════════════════════════════ */
.shopify-hero {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,175,55,.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--void), var(--carbon));
}
.shopify-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212,175,55,.10) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: .5;
}
.sh-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 64px; align-items: center;
}
@media (max-width: 1000px) { .sh-grid { grid-template-columns: 1fr; gap: 48px; } }

.sh-text .badge-row { display: inline-flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.sh-text h2 { font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -.03em; margin-bottom: 22px; }
.sh-text .lead { color: var(--paper); font-size: 17px; margin-bottom: 28px; }

.sh-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
@media (max-width: 600px) { .sh-feats { grid-template-columns: 1fr; } }
.sh-feat {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: rgba(212,175,55,.04);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.sh-feat:hover { border-color: var(--line-2); background: rgba(212,175,55,.08); transform: translateX(3px); }
.sh-feat i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.sh-feat div { font-size: 13px; color: var(--paper); line-height: 1.45; }
.sh-feat div b { color: var(--snow); font-weight: 600; }

/* Visual mockup card */
.sh-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background:
    linear-gradient(155deg, rgba(212,175,55,.16) 0%, transparent 45%),
    linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line-2);
  padding: 40px 32px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(245,215,126,.08) inset,
    0 30px 70px rgba(0,0,0,.55);
}
.sh-visual::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--r-xl);
  background: conic-gradient(from var(--ang3,0deg), transparent 0deg, var(--gold-hi) 60deg, var(--gold) 130deg, transparent 200deg, transparent 360deg);
  z-index: -1;
  animation: shopRot 14s linear infinite;
  opacity: .6;
}
@property --ang3 { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes shopRot { to { --ang3: 360deg; } }

.sh-logo {
  width: 90px; height: 90px; margin: 0 auto 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #95BF47, #5E8E3E);
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; color: #fff;
  box-shadow: 0 14px 36px rgba(149,191,71,.35), 0 0 0 6px rgba(149,191,71,.08);
  position: relative;
  animation: shopFloat 4s ease-in-out infinite;
}
@keyframes shopFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-10px) rotate(3deg); }
}

.sh-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.sh-stat {
  text-align: center; padding: 18px 14px;
  border-radius: var(--r-md);
  background: rgba(212,175,55,.04);
  border: 1px solid var(--line);
}
.sh-stat .n { font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 32px; color: var(--gold); line-height: 1.1; }
.sh-stat .l { font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--steel); margin-top: 6px; }

.sh-bullet-list { list-style: none; }
.sh-bullet-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 13px; color: var(--paper);
  border-bottom: 1px dashed var(--line);
}
.sh-bullet-list li:last-child { border-bottom: 0; }
.sh-bullet-list li i { color: var(--gold); font-size: 11px; flex-shrink: 0; }

.sh-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Shopify — phone-only infographic; desktop / tablet keep .sh-visual card */
.sh-mobile-hero-only { display: none; }

/* ════════════════════════════════════════════════
   WHY-FSA WITH CHESS VISUAL — split layout
   ════════════════════════════════════════════════ */
.why-split {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 56px; align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 1000px) { .why-split { grid-template-columns: 1fr; gap: 36px; } }
.why-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  aspect-ratio: auto;
}
.why-visual__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line-2);
  box-shadow:
    0 1px 0 rgba(245,215,126,.06) inset,
    0 30px 70px rgba(0,0,0,.55);
}
.why-visual__media::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--r-xl);
  background: conic-gradient(from var(--ang4,0deg), transparent 0deg, var(--gold-hi) 70deg, var(--gold) 130deg, transparent 200deg, transparent 360deg);
  z-index: -1;
  animation: whyrot 16s linear infinite;
  opacity: .55;
  pointer-events: none;
}
@property --ang4 { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes whyrot { to { --ang4: 360deg; } }
.why-visual__media .why-chess-art,
.why-visual__media .why-chess-art img {
  display: block;
  width: 100%;
  height: 100%;
}
.why-visual__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.why-visual:hover .why-visual__media img { transform: scale(1.03); }
.why-visual__ribbon {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(8,7,10,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  position: relative;
  z-index: 2;
}
.why-visual__ribbon i { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.why-visual__ribbon h5 {
  font-family: 'Syne','Sora',sans-serif;
  font-size: 14px; color: var(--snow); font-weight: 600;
  margin: 0; line-height: 1.2;
}
.why-visual__ribbon span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--gold);
  letter-spacing: 1.8px; text-transform: uppercase;
  display: block; margin-top: 4px;
}
.why-visual__media .why-fallback {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 36px; z-index: 2;
  background: #0A0805;
}
.why-visual__media .why-fallback h3 {
  font-family: 'Syne','Sora',sans-serif; font-size: 22px;
  color: var(--snow); margin: 18px 0 10px;
}
.why-visual__media .why-fallback p { color: var(--fog); font-size: 14px; }
.why-visual__media .why-fallback code {
  background: rgba(212,175,55,.1); border: 1px solid var(--line-2);
  padding: 2px 8px; border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace; color: var(--gold);
  font-size: 11px;
}
.why-visual.no-img .why-visual__media .why-chess-art { display: none; }
.why-visual.no-img .why-visual__media .why-fallback { display: flex; }
@media (max-width: 700px) {
  .why-visual__media img { object-position: center 32%; }
  .why-visual__ribbon { margin-top: 20px; padding: 12px 14px; }
  .why-visual__ribbon h5 { font-size: 13px; }
}
.why-text .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .why-text .why-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════
   SERVICES HEX FLOW — infographic showcase
   ════════════════════════════════════════════════ */
.hex-flow {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212,175,55,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--carbon), var(--void));
  overflow: hidden;
}
.hex-flow .img-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 1px 0 rgba(245,215,126,.06) inset;
  padding: 14px;
}
.hex-flow .img-wrap img {
  width: 100%; height: auto;
  border-radius: var(--r-lg);
  display: block;
}

/* ════════════════════════════════════════════════
   SHOWREEL VIDEO — cinematic block
   ════════════════════════════════════════════════ */
.showreel {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,175,55,.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--void), var(--carbon));
}
.showreel-frame {
  position: relative;
  max-width: 1100px; margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--void);
  box-shadow:
    0 1px 0 rgba(245,215,126,.06) inset,
    0 40px 80px rgba(0,0,0,.6);
  aspect-ratio: 16/9;
}
.showreel-frame::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--r-xl);
  background: conic-gradient(from var(--ang5,0deg), transparent 0deg, var(--gold-hi) 80deg, var(--gold) 160deg, transparent 240deg, transparent 360deg);
  z-index: -1;
  animation: srRot 20s linear infinite;
  opacity: .5;
}
@property --ang5 { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes srRot { to { --ang5: 360deg; } }
.showreel-frame video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  background: var(--void);
}
.showreel-pill {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(8,7,10,.78); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--snow);
}
.showreel-pill i { color: var(--rose); animation: redPulse 1.6s ease-in-out infinite; }
@keyframes redPulse { 0%,100%{opacity:.6;} 50%{opacity:1;} }

/* ════════════════════════════════════════════════
   BRAND-TRUE REVIEW AVATARS (per-brand color cues)
   ════════════════════════════════════════════════ */
.rs-card .av { color: #1C1408; }
.rs-card .av[data-brand="kfc"]    { background: linear-gradient(135deg,#E4002B,#9C0019); color:#fff; box-shadow:0 4px 14px rgba(228,0,43,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(228,0,43,.35); }
.rs-card .av[data-brand="cardinal"]{ background: linear-gradient(135deg,#1F3A6E,#0E2549); color:#fff; box-shadow:0 4px 14px rgba(31,58,110,.45),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(31,58,110,.4); }
.rs-card .av[data-brand="zalmi"]   { background: linear-gradient(135deg,#FFD600,#FFA000); color:#1C1408; box-shadow:0 4px 14px rgba(255,214,0,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(255,214,0,.35); }
.rs-card .av[data-brand="msg"]     { background: linear-gradient(135deg,#0EA5E9,#0369A1); color:#fff; box-shadow:0 4px 14px rgba(14,165,233,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(14,165,233,.35); }
.rs-card .av[data-brand="apiya"]   { background: linear-gradient(135deg,#F97316,#C2410C); color:#fff; box-shadow:0 4px 14px rgba(249,115,22,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(249,115,22,.35); }
.rs-card .av[data-brand="sky"]     { background: linear-gradient(135deg,#3B82F6,#1D4ED8); color:#fff; box-shadow:0 4px 14px rgba(59,130,246,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(59,130,246,.35); }
.rs-card .av[data-brand="oneworld"]{ background: linear-gradient(135deg,#0F766E,#134E4A); color:#fff; box-shadow:0 4px 14px rgba(15,118,110,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(15,118,110,.35); }
.rs-card .av[data-brand="houbb"]   { background: linear-gradient(135deg,#7C3AED,#4C1D95); color:#fff; box-shadow:0 4px 14px rgba(124,58,237,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(124,58,237,.35); }
.rs-card .av[data-brand="mediabuzz"]{ background: linear-gradient(135deg,#EC4899,#9D174D); color:#fff; box-shadow:0 4px 14px rgba(236,72,153,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(236,72,153,.35); }
.rs-card .av[data-brand="attock"]  { background: linear-gradient(135deg,#16A34A,#14532D); color:#fff; box-shadow:0 4px 14px rgba(22,163,74,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(22,163,74,.35); }
.rs-card .av[data-brand="almakkah"]{ background: linear-gradient(135deg,#059669,#064E3B); color:#fff; box-shadow:0 4px 14px rgba(5,150,105,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(5,150,105,.35); }
.rs-card .av[data-brand="fruit"]   { background: linear-gradient(135deg,#FACC15,#A16207); color:#1C1408; box-shadow:0 4px 14px rgba(250,204,21,.4),0 0 0 2px var(--carbon-2),0 0 0 3px rgba(250,204,21,.35); }
/* Person avatars (gradient gold rings only) */
.rs-card .av[data-brand="person"]  { background: linear-gradient(135deg,var(--gold-hi),var(--gold-lo)); color: #1C1408; }

/* ════════════════════════════════════════════════
   INLINE SVG ART — chess + hex flow scaling
   ════════════════════════════════════════════════ */
.why-chess-art {
  display: block; width: 100%; height: 100%;
}
.why-chess-art svg {
  width: 100%; height: 100%;
  display: block;
  border-radius: var(--r-xl);
}

.hex-flow-art {
  width: 100%; height: auto;
  display: block;
  border-radius: var(--r-lg);
}
@media (max-width: 700px) {
  .hex-flow .img-wrap { padding: 8px; }
}

/* ════════════════════════════════════════════════
   REAL PROFILE PHOTOS in review cards
   ════════════════════════════════════════════════ */
.rs-card .av img,
.rs-card .av picture {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
  display: block;
}
.rs-card .av {
  overflow: hidden; padding: 0;
  position: relative;
}
.rs-card .av .initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne','Sora',sans-serif; font-weight: 800; font-size: 14px;
  z-index: 1;
}
.rs-card .av img { position: relative; z-index: 2; background: transparent; }
.rs-card .av img[src=""] { display: none; }
/* Brand logos in review avatars — contain inside circle */
.rs-card .av:not([data-brand="person"]) img {
  object-fit: contain;
  object-position: center;
  padding: 4px;
  background: #fff;
  box-sizing: border-box;
}

.svc-inline-banner {
  background: linear-gradient(180deg, transparent, rgba(20, 16, 10, .4), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-inline-row {
  display: grid;
  grid-template-columns: 1fr minmax(180px, min(100%, 360px));
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
}
.svc-inline-copy { min-width: 0; }
.svc-inline-copy .h-2 { color: var(--snow); font-family: 'Syne', 'Sora', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.svc-inline-visual {
  width: 100%;
  max-width: 360px;
  justify-self: end;
}
.svc-inline-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--carbon);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
}
.svc-inline-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  vertical-align: middle;
}
@media (max-width: 820px) {
  .svc-inline-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .svc-inline-visual {
    justify-self: center;
    max-width: min(320px, 100%);
  }
  .svc-inline-copy .eyebrow { justify-content: center; }
  .svc-inline-copy .btn { margin-left: auto; margin-right: auto; }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — top-down hardening for all breakpoints
   ════════════════════════════════════════════════════════════════ */

/* Lock viewport — no horizontal scroll anywhere */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, canvas, picture { max-width: 100%; height: auto; }

/* PROMO + NAV — fixed header stack on all viewports (nav always visible while scrolling) */
@media (max-width: 900px) {
  .promo-bar {
    position: fixed !important;
    top: 0 !important;
    z-index: 101 !important;
    height: auto !important;
    min-height: 36px !important;
    max-height: none !important;
    padding: 8px 44px 8px 10px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    align-items: center !important;
    line-height: 1.35 !important;
    left: 0 !important;
    right: 0 !important;
  }
  .promo-bar__inner {
    flex-wrap: wrap !important;
    justify-content: center !important;
    row-gap: 4px;
    column-gap: 8px;
    max-width: calc(100vw - 52px) !important;
  }
  .promo-bar .pb-close {
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .nav {
    position: fixed !important;
    top: 38px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    z-index: 100 !important;
  }
  body.promo-on {
    padding-top: 38px !important;
  }
  body.promo-off .nav {
    top: 0 !important;
  }
  .nav-inner {
    min-height: 54px;
    padding: 10px 14px !important;
    gap: 8px !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand-mark {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
  }
  .brand-text {
    min-width: 0;
    overflow: hidden;
  }
  .brand-text .name {
    max-width: min(200px, 38vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px !important;
  }
  .brand-text .sub { display: none !important; }
  .nav-links { display: none !important; }
  .nav-cta {
    flex: 0 0 auto;
    gap: 6px !important;
  }
  .nav-cta .btn-mint,
  .nav-cta .btn-primary { display: none !important; }
  .menu-btn {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 15px !important;
  }
}
@media (max-width: 400px) {
  .promo-bar > .promo-bar__inner span:not(.pb-tag) { font-size: 9.5px !important; }
  .promo-bar a { display: none !important; }
  .brand-text .name {
    max-width: calc(100vw - 108px);
    font-size: 12px !important;
  }
  .brand-mark {
    width: 28px !important;
    height: 28px !important;
  }
}

/* HERO — phone padding */
@media (max-width: 700px) {
  .hero { padding: 130px 0 60px; min-height: auto; }
  .hero-content { padding: 0 4px; }
  .hero h1 { margin-bottom: 22px; }
  .hero h1 .row { line-height: 1.0; }
  .hero h1 .typed-wrap {
    white-space: normal !important;        /* allow wrap on small */
    word-break: break-word;
  }
  .hero p.lead { margin-bottom: 30px; font-size: 14.5px; }
  .hero-ctas { margin-bottom: 36px; gap: 10px; }
  .hero-ctas .btn { width: 100%; padding: 14px; }
  .trust-row { gap: 6px; margin-bottom: 32px; }
  .trust-pill { padding: 6px 12px; font-size: 10.5px; }
  .stats-row { gap: 10px; }
  .stat-card { padding: 18px 10px; }
  .stat-num { font-size: 32px; }
  .stat-lbl { font-size: 9px; letter-spacing: 1.6px; }
  .hero-deco, .hero-shape { display: none !important; }
}

/* SECTION PADDING — tighter on phones */
@media (max-width: 700px) {
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }
  .wrap, .wrap-narrow { padding: 0 16px; }
  .h-x { font-size: clamp(34px, 9vw, 56px) !important; }
  .h-1 { font-size: clamp(28px, 7vw, 42px) !important; }
  .h-2 { font-size: clamp(22px, 5.6vw, 32px) !important; }
  .lead { font-size: 14.5px; }
  .section-head { margin: 0 auto 38px; }
  .section-head p { font-size: 14.5px; }
}

/* WHY FSA SPLIT */
@media (max-width: 700px) {
  .why-split { grid-template-columns: 1fr; gap: 26px; margin-bottom: 36px; }
  .why-text .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-visual { max-width: min(100%, 400px); margin: 0 auto; }
  .why-visual__media { border-radius: var(--r-lg); }
}

/* HOME FOUNDER */
@media (max-width: 1000px) { .home-founder { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 700px) {
  .hf-photo { aspect-ratio: 4/5; max-width: 320px; margin: 0 auto; }
  .hf-stats { gap: 8px; }
  .hf-stats > div { padding: 14px 8px; }
  .hf-stats .n { font-size: 22px; }
  .hf-stats .l { font-size: 9px; letter-spacing: 1.4px; }
  .hf-quote { padding: 18px 20px; font-size: 14px; }
}

/* TEAM grid */
@media (max-width: 560px) {
  .home-team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tm-card { padding: 14px; }
  .tm-card .av { width: 60px; height: 60px; font-size: 18px; }
  .tm-card h4 { font-size: 12.5px; }
  .tm-card .role { font-size: 9px; letter-spacing: 1.2px; }
}

@media (max-width: 900px) {
  #services-preview .section-head {
    margin-bottom: 32px;
  }
  #services-preview .section-head > p {
    margin-top: 14px;
  }
}

/* SERVICES PREVIEW grid */
@media (max-width: 700px) {
  .svc-preview-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-preview-grid .card {
    padding: 20px 20px 22px;
    min-height: auto;
  }
  .svc-preview-grid .card .card-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 4px;
  }
  .svc-preview-grid .card h3 {
    margin: 10px 0 8px;
    font-size: 19px;
  }
  .svc-preview-grid .card.featured h3 {
    margin-top: 12px !important;
  }
  /* Home “Everything under one roof” — rhythm: more air above, less hollow gap before cards */
  #services-preview.section-pad {
    padding-top: 76px;
    padding-bottom: 56px;
  }
  #services-preview .section-head {
    margin-bottom: 18px;
  }
  #services-preview .section-head .eyebrow {
    margin-bottom: 12px;
  }
  #services-preview .section-head .h-1 {
    margin-top: 12px !important;
  }
  #services-preview .section-head > p {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .svc-grid-3, .svc-grid-4 { gap: 14px; }
}

/* WHY GRID base */
@media (max-width: 700px) {
  .why-grid .card { padding: 22px 20px; }
  .why-grid h3 { font-size: 17px; }
  .why-grid p { font-size: 13.5px; }
}

/* CARDS — reduce 3D tilt on phones (avoids overlap) */
@media (max-width: 900px) {
  .card:hover {
    transform: translateY(-4px);
  }
  .rs-card:hover {
    transform: translateY(-4px);
  }
}

/* REVIEW SLIDER — smoother phone view */
@media (max-width: 700px) {
  .rs-card { padding: 26px 22px 22px; }
  .rs-card .quote { font-size: 13.5px; min-height: auto; margin-bottom: 18px; }
  .rs-card .stars { padding-top: 64px; }
  .rs-card .platform { font-size: 9.5px; padding: 5px 10px; top: 16px; right: 16px; }
  .rs-card .verified { top: 50px; right: 16px; font-size: 8px; }
  .rs-controls { flex-direction: column-reverse; gap: 14px; align-items: center; }
}

/* SHOPIFY HERO */
@media (max-width: 1000px) { .sh-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 768px) {
  .sh-mobile-hero-only {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 0;
  }
  .sh-mobile-hero-only img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow:none;
    vertical-align: top;
  }
  .shopify-hero .sh-visual { display: none !important; }
}
@media (max-width: 700px) {
  .shopify-hero {
    padding: 52px 0 60px;
    background:
      radial-gradient(ellipse 95% 42% at 50% 0%, rgba(212, 175, 55, .06) 0%, transparent 58%),
      linear-gradient(180deg, var(--void), var(--carbon));
  }
  .shopify-hero::before { opacity: 0.25; }
  .sh-text h2 { font-size: clamp(28px, 7vw, 42px); }
  .sh-feats { grid-template-columns: 1fr; gap: 8px; }
  .sh-feat { padding: 10px 12px; font-size: 12.5px; }
  .sh-visual {
    padding: 26px 18px 24px;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: auto;
    background:
      linear-gradient(155deg, rgba(212, 175, 55, .07) 0%, transparent 48%),
      linear-gradient(180deg, #14110d 0%, #0A0805 100%);
    box-shadow:
      0 1px 0 rgba(245, 215, 126, .05) inset,
      0 18px 44px rgba(0, 0, 0, .42);
  }
  .sh-visual::after { opacity: 0.32; animation-duration: 22s; }
  .sh-logo {
    width: 68px;
    height: 68px;
    font-size: 36px;
    margin-bottom: 22px;
    box-shadow: 0 10px 26px rgba(149, 191, 71, .22), 0 0 0 4px rgba(149, 191, 71, .07);
    animation: none;
  }
  .sh-stats { gap: 10px; margin-bottom: 22px; }
  .sh-stat {
    padding: 14px 12px;
    min-width: 0;
  }
  .sh-stat .n {
    font-size: clamp(20px, 5.4vw, 26px);
    letter-spacing: -0.04em;
    line-height: 1.05;
    word-break: normal;
  }
  .sh-stat .l {
    font-size: 8px;
    letter-spacing: 1.15px;
    margin-top: 5px;
    line-height: 1.25;
    hyphens: none;
  }
  .sh-bullet-list li { font-size: 12.5px; padding: 8px 0; }
  .sh-cta-row { flex-direction: column; }
  .sh-cta-row .btn { width: 100%; }
}

/* HEX FLOW — scale-down on tablet, swap to vertical card-list on mobile */
.hex-pic { display: block; width: 100%; }
.hex-pic source, .hex-pic img { display: block; width: 100%; height: auto; border-radius: var(--r-lg); }
@media (max-width: 700px) {
  .hex-flow { padding: 50px 0; }
  .hex-flow .img-wrap { padding: 6px; }
  .hex-flow-art { min-height: 220px; }
}

/* SHOWREEL */
@media (max-width: 700px) {
  .showreel { padding: 60px 0; }
  .showreel-frame { aspect-ratio: 16/10; border-radius: var(--r-lg); }
  .showreel-pill { font-size: 9px; padding: 6px 10px; top: 12px; left: 12px; }
}

/* PAGE HERO */
@media (max-width: 700px) {
  .page-hero { padding: 130px 0 50px; }
  .page-hero .hero-ctas .btn { padding: 12px 18px; font-size: 11px; flex: 1 1 auto; min-width: 0; }
}

/* FOUNDER PAGE */
@media (max-width: 700px) {
  .founder-hero { padding: 130px 0 50px; gap: 32px; }
  .founder-frame { padding: 8px; max-width: 92%; margin: 0 auto; }
  .founder-bio h1 { font-size: clamp(34px, 9vw, 54px) !important; }
  .founder-mini { gap: 8px; }
  .founder-mini > div { padding: 14px 8px; }
  .founder-mini .n { font-size: 22px; }
  .founder-mini .l { font-size: 9px; letter-spacing: 1.4px; }
  .founder-actions { gap: 8px; }
  .founder-actions .btn { width: 100%; flex: 1 1 100%; }
  .quote-box { font-size: 14px; padding: 18px 22px; }
}

/* TEAM */
@media (max-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-avatar { font-size: 22px; }
  .team-card h4 { font-size: 13px; }
  .team-card .role { font-size: 9px; }
}

/* OFFICES */
@media (max-width: 700px) {
  .office { padding: 22px; }
  .office h3 { font-size: 18px; }
  .office::before { font-size: 70px; }
}

/* CULTURE */
@media (max-width: 700px) {
  .culture-card { padding: 26px 22px; }
  .culture-card h4 { font-size: 16px; }
}

/* CONTACT */
@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .form-card { padding: 24px 20px; }
  .form-card h2 { font-size: 22px; }
  .info-card { padding: 18px; }
  .info-card .ic { width: 42px; height: 42px; font-size: 16px; }
  .info-card h4 { font-size: 14px; }
  .info-card a, .info-card p { font-size: 13px; }
  .field input, .field select, .field textarea { font-size: 13px; padding: 12px 14px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
}

/* FAQ */
@media (max-width: 700px) {
  .acc-btn { padding: 18px 20px; font-size: 14px; gap: 10px; }
  .acc-content > div { padding: 0 20px 18px; font-size: 13px; }
}

/* ABOUT VALUES */
@media (max-width: 700px) {
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-card { padding: 28px 22px; }
  .value-card .num { font-size: 46px; }
  .value-card h3 { font-size: 18px; }
}

/* TIMELINE on mobile */
@media (max-width: 900px) {
  .tline::before { left: 18px; }
  .tstep { padding-left: 50px; }
  .tstep::before { left: 18px; }
  .tstep h3 { font-size: 19px; }
  .pt-row { grid-template-columns: 1fr; gap: 6px; padding: 18px; }
  .pt-year { font-size: 18px; }
}

/* CTA BANNER */
@media (max-width: 700px) {
  .cta-banner { padding: 60px 0; }
  .cta-banner .btn { width: 100%; }
  .cta-banner > .wrap > div { flex-direction: column !important; gap: 10px !important; }
}

/* MARQUEE — slightly faster on phones */
@media (max-width: 700px) {
  .marquee { padding: 24px 0; }
  .marquee-track { gap: 40px; animation-duration: 32s; }
  .marquee-track > * { font-size: clamp(28px, 8vw, 48px); }
}

/* BRAND SLIDER — tighten */
@media (max-width: 700px) {
  .brand-slider { padding: 8px 0; }
  .brand-track { gap: 36px; }
  .brand-item { font-size: 16px; }
  .brand-item i { font-size: 16px; }
}

/* PROCESS FLOW */
.process-flow-wrap { position: relative; }
/* Laptops / desktops: horizontal connector through step numbers (5-up layout) @1024+ */
@media (min-width: 1001px) {
  .process-flow-wrap::after {
    content: '';
    position: absolute;
    left: 5%;
    right: 5%;
    top: 43px;
    height: 0;
    border-top: 2px dashed rgba(212, 175, 55, 0.32);
    z-index: 0;
    pointer-events: none;
  }
  .process-flow { position: relative; z-index: 1; }
  .proc-step {
    z-index: 1;
    background: var(--carbon);
  }
  .proc-step .num {
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 560px) {
  .process-flow-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px dashed rgba(212, 175, 55, 0.35);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
  }
  .process-flow { position: relative; z-index: 1; gap: 16px; }
  .proc-step {
    z-index: 1;
    box-shadow: 0 0 0 1px rgba(10, 8, 5, 0.65);
  }
}
@media (max-width: 700px) {
  .proc-step { padding: 20px 16px; }
  .proc-step h4 { font-size: 14px; }
  .proc-step p { font-size: 12px; }
}

/* CAPABILITIES */
@media (max-width: 1000px) { .cap-grid { grid-template-columns: 1fr; gap: 18px; } }
@media (max-width: 700px) {
  .cap-list { gap: 18px; }
  .ring-wrap { width: 178px; height: 178px; margin-bottom: 14px; }
  .ring-wrap .center {
    padding: 0 14px;
    box-sizing: border-box;
    justify-content: center;
  }
  .ring-wrap .pct {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
  }
  .ring-wrap .lbl {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-top: 5px;
    max-width: 6.8rem;
    line-height: 1.25;
    text-align: center;
  }
}

/* TRUST BAR */
@media (max-width: 700px) {
  .trust-bar { gap: 14px; }
  .trust-item i { font-size: 22px; }
  .trust-item span { font-size: 9.5px; letter-spacing: 1.2px; }
}

/* FOOTER */
@media (max-width: 700px) {
  footer { padding: 60px 0 24px; }
  .foot-grid { gap: 28px; margin-bottom: 32px; }
  footer h4 { font-size: 12px; }
  footer a { font-size: 13px; }
  .foot-about p { font-size: 13px; }
  .foot-bottom p { font-size: 10px; }
}

/* WhatsApp + back-to-top — smaller on phones */
@media (max-width: 600px) {
  .wa-float { width: 48px; height: 48px; bottom: 18px; left: 18px; font-size: 19px; }
  .back-top { width: 42px; height: 42px; bottom: 18px; right: 18px; }
}

/* TOAST mobile */
@media (max-width: 600px) {
  .toast { right: 12px; left: 12px; max-width: none; }
}

/* PARTICLES — fewer on phones (lighter perf) */
@media (max-width: 700px) {
  #particles-canvas { opacity: .6; }
}

/* MMENU on phones */
@media (max-width: 700px) {
  .mmenu { width: min(360px, 94vw); padding: 22px 20px; }
  .mmenu-head { margin-bottom: 24px; }
  .mmenu nav a { padding: 14px 0; font-size: 12px; }
}

/* CTA banner 2-button row — wrap properly */
@media (max-width: 700px) {
  .cta-banner > .wrap { padding: 0 16px; }
  .cta-banner .h-1 { font-size: clamp(30px, 8vw, 44px) !important; }
}


/* ════════════════════════════════════════════════════════════════
   HORIZONTAL SERVICES — text left, image right (replaces hex SVG)
   ════════════════════════════════════════════════════════════════ */
.svc-h-grid {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 56px; align-items: center;
}
@media (max-width: 1000px) { .svc-h-grid { grid-template-columns: 1fr; gap: 40px; } }

.svc-h-bullets {
  list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px;
}
.svc-h-bullets li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(212,175,55,.06), rgba(212,175,55,.02));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  font-size: 14.5px; color: var(--paper);
}
.svc-h-bullets li:hover {
  border-color: var(--line-2);
  transform: translateX(4px);
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.03));
}
.svc-h-bullets li i {
  color: var(--gold); font-size: 16px; flex-shrink: 0;
  width: 24px; text-align: center;
}
.svc-h-bullets li b { color: var(--snow); font-weight: 600; }

.svc-h-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #1A140C 0%, #0A0805 100%);
  border: 1px solid var(--line-2);
  aspect-ratio: 4/5;
  box-shadow:
    0 1px 0 rgba(245,215,126,.08) inset,
    0 30px 70px rgba(0,0,0,.55);
}
.svc-h-frame::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--r-xl); pointer-events: none;
  background: conic-gradient(from var(--ang6,0deg), transparent 0deg, var(--gold-hi) 70deg, var(--gold) 130deg, transparent 200deg, transparent 360deg);
  z-index: -1;
  animation: shfRot 14s linear infinite;
  opacity: .55;
}
@property --ang6 { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes shfRot { to { --ang6: 360deg; } }
.svc-h-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  position: relative; z-index: 2;
  border-radius: var(--r-xl);
}
.svc-h-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 32px;
  z-index: 1;
}
.svc-h-fallback h3 {
  font-family: 'Syne','Sora',sans-serif; font-size: 22px;
  color: var(--snow); margin: 18px 0 10px; letter-spacing: -.3px;
}
.svc-h-fallback p { color: var(--fog); font-size: 13px; max-width: 240px; }
.svc-h-fallback code {
  background: rgba(212,175,55,.1); border: 1px solid var(--line-2);
  padding: 2px 8px; border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace; color: var(--gold);
  font-size: 11px;
}
.svc-h-frame.no-img .svc-h-fallback { z-index: 3; }

/* HORIZONTAL SVC mobile */
@media (max-width: 700px) {
  .svc-h-frame { aspect-ratio: 4/5; max-width: 360px; margin: 0 auto; }
  .svc-h-bullets li { padding: 10px 14px; font-size: 13.5px; }
  .svc-h-bullets li i { font-size: 14px; }
}

.service-strip {
  padding: 70px 0;
  background:
    linear-gradient(180deg, rgba(8,7,10,.20), rgba(22,17,10,.88), rgba(8,7,10,.20));
  overflow: hidden;
}
.service-strip .svc-h-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  grid-template-areas:
    "intro frame"
    "rest frame";
  gap: 40px;
  align-items: start;
}
.svc-h-intro { grid-area: intro; }
.svc-h-rest { grid-area: rest; }
.service-strip .svc-h-frame { grid-area: frame; align-self: center; }
.svc-h-headline {
  text-wrap: balance;
  line-height: 1.18;
  font-size: clamp(1.55rem, 2.75vw, 2.85rem) !important;
  letter-spacing: -0.02em;
  max-width: min(22em, 100%);
}
.svc-h-headline .svc-h-line { display: inline; }
.svc-h-headline .svc-h-line.gold-shimmer { margin-left: 0.12em; }
.svc-h-copy { min-width: 0; padding-right: clamp(8px, 2.5vw, 28px); }
@media (max-width: 900px) {
  .svc-h-headline {
    max-width: none;
    font-size: clamp(1.45rem, 5.2vw, 2.2rem) !important;
  }
  .svc-h-headline .svc-h-line { display: block; }
  .svc-h-headline .svc-h-line.gold-shimmer { margin-left: 0; margin-top: 0.08em; }
  .svc-h-copy { padding-right: 0; }
  .service-strip .svc-h-grid { align-items: start; }
}
.service-strip .svc-h-bullets { max-width: 640px; }
.service-strip .svc-h-frame {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  aspect-ratio: 16 / 12;
  padding: 10px;
  background: #0A0805;
  border-radius: var(--r-lg);
}
.service-strip .svc-h-frame.svc-h-frame--infographic {
  aspect-ratio: auto;
  height: auto;
  max-width: min(100%, 720px);
  margin-top: 20px;
}
.service-strip .svc-h-frame.svc-h-frame--infographic img {
  width: 100%;
  height: auto;
  max-height: none;
  vertical-align: middle;
  object-fit: contain;
  background: #0A0805;
  border-radius: calc(var(--r-lg) - 6px);
}
.tm-card .av {
  overflow: hidden;
  position: relative;
}
.tm-card .av .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.tm-card .av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.rs-wrap,
.ts-wrap {
  max-width: 100%;
  overflow: hidden;
  contain: paint;
}

@media (max-width: 700px) {
  .service-strip { padding: 52px 0; }
  .service-strip .svc-h-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "frame"
      "rest";
    gap: 28px;
    row-gap: 28px;
  }
  .svc-h-intro {
    padding-bottom: 4px;
    margin-bottom: 2px;
  }
  .svc-h-intro .svc-h-headline {
    margin-top: 12px !important;
    line-height: 1.22 !important;
  }
  .service-strip .svc-h-frame {
    justify-self: center;
    max-width: min(100%, 390px);
    aspect-ratio: 16 / 13;
    padding: 8px;
    margin-top: 4px;
  }
  .service-strip .svc-h-frame.svc-h-frame--infographic {
    max-width: 100%;
    aspect-ratio: auto;
    margin-top: 20px;
  }
  .service-strip .svc-h-bullets li {
    align-items: flex-start;
    gap: 10px;
  }
  .rs-viewport,
  .ts-viewport {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 128px 0 64px;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .hero-badge {
    max-width: 100%;
    margin-bottom: 26px;
    padding: 8px 14px;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }
  .hero .h-x {
    font-size: clamp(26px, 6.9vw, 34px) !important;
    line-height: 1.07 !important;
    letter-spacing: -0.02em !important;
    min-height: 0;
    margin-bottom: 18px;
  }
  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    overflow: visible;
  }
  .hero h1 .row:not(.hero-typed-row) {
    min-height: 1.12em;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }
  .hero h1 .hero-typed-row {
    min-height: 2.65em;
  }
  .hero h1 .typed-wrap {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    min-height: 2.65em;
    line-height: 1.12;
    text-align: center;
  }
  .hero p.lead {
    max-width: 100%;
    margin-bottom: 32px;
    font-size: 14.5px;
    line-height: 1.65;
  }
  .hero-ctas {
    gap: 10px;
    margin-bottom: 28px;
  }
  .trust-row {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
    justify-content: center;
  }
  .trust-pill { font-size: 10px; padding: 6px 12px; }
  .hero-ctas .btn {
    width: 100%;
    max-width: 350px;
    min-height: 48px;
    padding: 13px 18px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .hero .h-x {
    font-size: clamp(24px, 6.5vw, 30px) !important;
    min-height: 0;
  }
  .hero-content { padding: 0 18px; }
  .hero p.lead {
    font-size: 14px;
    overflow-wrap: anywhere;
  }
}

/* ════════════════════════════════════════════════
   HOMEPAGE POLISH PASS — header, sections, mobile
   ════════════════════════════════════════════════ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.mmenu-open {
  overflow: hidden;
}

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

.promo-bar,
.nav,
.hero,
.service-strip,
.shopify-hero,
#crew {
  max-width: 100%;
}

.promo-bar {
  overflow: hidden;
}

.promo-bar__inner {
  flex-wrap: nowrap;
  min-width: 0;
  width: min(100%, 980px);
}

.promo-bar__inner > span:not(.pb-tag) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .nav-dropdown {
    position: relative;
  }

  .nav-dropmenu {
    top: calc(100% + 14px);
    left: 50%;
    right: auto;
    width: min(460px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    transform: translateX(-50%) translateY(-8px) scale(.98);
  }

  .nav-dropdown:hover .nav-dropmenu,
  .nav-dropdown.open .nav-dropmenu {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .nav-inner {
    max-width: 100%;
  }

  .nav-links {
    display: none !important;
  }

  .menu-btn {
    display: inline-flex !important;
    flex: 0 0 auto;
  }
}

@media (max-width: 900px) {
  .nav-cta .btn {
    display: none !important;
  }
}

@media (max-width: 700px) {
  body.promo-on {
    padding-top: 34px;
  }

  .promo-bar {
    min-height: 34px;
    height: 34px;
    padding: 6px 38px 6px 12px;
    font-size: 9.5px;
    letter-spacing: .2px;
    line-height: 1;
  }

  .promo-bar__inner {
    justify-content: flex-start;
    gap: 7px;
    max-width: 100%;
  }

  .promo-bar .pb-tag {
    flex: 0 0 auto;
    margin-right: 0;
    padding: 2px 6px;
    font-size: 8.5px;
    letter-spacing: 1px;
  }

  .promo-bar a {
    margin-left: 4px;
  }

  .promo-bar .pb-close {
    right: 7px;
    width: 26px;
    height: 26px;
    font-size: 15px;
  }

  .nav {
    top: 34px;
  }

  body.promo-off .nav {
    top: 0;
  }

  .nav-inner {
    padding: 12px 16px;
    min-height: 70px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 54px);
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text .name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    letter-spacing: 0;
  }

  .brand-text .sub {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 8px;
    letter-spacing: 2px;
  }

  .nav-cta {
    margin-left: auto;
    gap: 0;
  }

  .menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .mmenu {
    width: min(390px, 100vw);
    max-width: 100vw;
    padding: max(18px, env(safe-area-inset-top, 0px) + 10px) 18px 24px;
  }

  .mmenu-head {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .nav-inner {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text .name {
    font-size: 16px;
  }

  .brand-text .sub {
    font-size: 7.5px;
    letter-spacing: 1.4px;
  }
}

@media (max-width: 350px) {
  .brand-text .sub {
    display: none;
  }

  .brand-text .name {
    font-size: 14px;
  }
}

.hero,
.hero-content,
.hero h1,
.hero .h-x,
.hero h1 .row,
.hero h1 .typed-wrap {
  max-width: 100%;
}

.hero .h-x,
.hero h1,
.shopify-hero h2,
.svc-h-headline,
.section-head h2,
.ts-name {
  letter-spacing: 0 !important;
}

@media (max-width: 700px) {
  .hero {
    padding: 132px 0 68px;
  }

  .hero-content {
    padding: 0 18px;
  }

  .hero .h-x {
    font-size: 38px !important;
    line-height: 1.08 !important;
  }

  .hero h1 .row:not(.hero-typed-row),
  .hero h1 .typed-wrap {
    white-space: normal !important;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-top: 124px;
  }

  .hero .h-x {
    font-size: 31px !important;
    line-height: 1.1 !important;
  }

  .hero p.lead {
    max-width: 34rem;
  }
}

.service-strip {
  position: relative;
  padding: 82px 0;
}

.service-strip .svc-h-grid {
  gap: clamp(28px, 5vw, 74px);
}

.service-strip .svc-h-frame.svc-h-frame--infographic {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1024 / 546 !important;
  height: auto !important;
  max-width: min(100%, 720px);
  margin-top: 30px;
  padding: 10px;
}

.service-strip .svc-h-frame.svc-h-frame--infographic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--r-lg) - 6px);
  background: #050403;
}

.svc-h-frame:not(.no-img) .svc-h-fallback {
  display: none !important;
}

.svc-h-frame.no-img {
  min-height: 320px;
}

@media (max-width: 700px) {
  .service-strip {
    padding: 58px 0;
  }

  .service-strip .svc-h-grid {
    row-gap: 24px;
  }

  .service-strip .svc-h-frame.svc-h-frame--infographic {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    padding: 6px;
  }

  .service-strip .svc-h-bullets {
    display: grid;
    gap: 10px;
  }

  .service-strip .svc-h-bullets li {
    width: 100%;
    min-width: 0;
  }
}

.sh-mobile-hero-only {
  display: none !important;
}

.shopify-hero .sh-visual {
  display: block !important;
}

.shopify-hero .sh-grid {
  align-items: center;
}

.sh-text,
.sh-visual {
  min-width: 0;
}

.sh-feat,
.sh-stat,
.sh-bullet-list li {
  min-width: 0;
}

@media (max-width: 1000px) {
  .shopify-hero {
    padding: 74px 0;
  }

  .shopify-hero .sh-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .shopify-hero .sh-visual {
    justify-self: center;
    width: min(100%, 620px);
  }
}

@media (max-width: 700px) {
  .shopify-hero {
    padding: 58px 0 64px;
  }

  .sh-text h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .sh-text .lead {
    font-size: 15px;
    line-height: 1.68;
  }

  .sh-feats {
    grid-template-columns: 1fr;
  }

  .sh-visual {
    padding: 22px 16px;
    border-radius: var(--r-lg);
  }

  .sh-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sh-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

#crew .section-head {
  margin-bottom: 34px;
}

.ts-wrap {
  max-width: 100%;
  overflow: hidden;
}

.ts-viewport {
  overflow: hidden;
  margin: 0;
  padding: 8px 0 6px;
}

.ts-track {
  gap: 14px;
  align-items: stretch;
}

.ts-card {
  min-width: 0;
}

@media (min-width: 720px) {
  .ts-card {
    flex: 0 0 calc((100% - 42px) / 4);
    max-width: calc((100% - 42px) / 4);
    margin: 0;
  }
}

@media (max-width: 719px) {
  #crew {
    padding: 58px 0;
  }

  .ts-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }

  .ts-photo {
    aspect-ratio: 4 / 3 !important;
    min-height: 0 !important;
    max-height: 300px !important;
  }

  .ts-photo img {
    object-fit: contain;
    object-position: center top;
    filter: grayscale(0);
  }

  .ts-body {
    padding: 14px 16px 18px;
  }

  .ts-name {
    font-size: 20px;
    line-height: 1.15;
  }

  .ts-role {
    margin-top: 4px;
  }

  .ts-bio {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .ts-controls {
    margin-top: 18px;
  }
}

/* Performance hardening with same visual design */
@media (max-width: 900px) {
  .rs-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@supports (content-visibility: auto) {
  .section-pad,
  .section-pad-sm,
  .showreel,
  .service-strip,
  .shopify-hero {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

@media (max-width: 700px) {
  .section-pad {
    padding: 64px 0;
  }

  .section-pad-sm {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .wa-float,
  .back-top {
    width: 58px;
    height: 58px;
    bottom: max(18px, env(safe-area-inset-bottom, 0px) + 18px);
  }

  .wa-float {
    left: 18px;
  }

  .back-top {
    right: 18px;
  }
}
