@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --brand: #d16c08;
  --brand-ink: #b45e07;
  --brand-deep: #8f4a05;
  --brand-tint: rgba(209, 109, 8, 0.06);
  --brand-tint-2: rgba(209, 109, 8, 0.14);
  --ink: #080808;
  --ink-70: #4a4746;
  --ink-55: #6b6866;
  --black: #000000;
  --white: #ffffff;
  --off: #f9fafa;
  --line: rgba(8, 8, 8, 0.1);
  --line-soft: rgba(8, 8, 8, 0.06);

  --font: 'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shell: 1240px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --pad: clamp(4.5rem, 9vw, 8.5rem);
  --r: 20px;
  --r-lg: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; line-height: 1.12; letter-spacing: -0.022em; }
p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--brand-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { width: min(100% - (var(--gut) * 2), var(--shell)); margin-inline: auto; }
.section { padding-block: var(--pad); position: relative; }
.section--tint { background: var(--off); }
.section--dark { background: var(--black); color: var(--white); }

.skip {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.85rem 1.4rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 0 0 12px 12px;
  font-weight: 500;
  transition: top 0.2s var(--ease);
}
.skip:focus { top: 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 0.44rem 0.95rem 0.44rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-tint);
  border: 1px solid rgba(209, 109, 8, 0.22);
  color: var(--brand-ink);
  font-size: 0.82rem;
  font-weight: 600;
}
.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
}
.js .kicker-dot { animation: kickerPulse 1.8s var(--ease) infinite; }
@keyframes kickerPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.7); opacity: 0.5; }
}
.section--dark .kicker {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.88);
}

.h-display { font-size: clamp(2.15rem, 6.6vw, 4.7rem); font-weight: 600; }
.h-section { font-size: clamp(1.95rem, 4vw, 3rem); }

.h-section { color: var(--ink); }
.section--dark .h-section, .closer .h-section { color: var(--white); }

.h-section .grad { position: relative; }
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .h-section .grad {
    background-image: linear-gradient(100deg, #080808 0%, var(--brand) 32%, #f7b26b 50%, var(--brand) 68%, #080808 100%);
    background-size: 230% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .section--dark .h-section .grad,
  .closer .h-section .grad {
    background-image: linear-gradient(100deg, #ffffff 0%, var(--brand) 32%, #fbbf7a 50%, var(--brand) 68%, #ffffff 100%);
  }
  .h-section.is-live .grad { animation: gradShift 9s linear infinite; }
}
@keyframes gradShift { to { background-position: 200% 50%; } }

.h-sub { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; }
.lede { font-size: clamp(1.02rem, 1.3vw, 1.14rem); color: var(--ink-70); max-width: 62ch; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn svg { flex: none; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--solid { background: var(--brand-ink); color: var(--white); }
.btn--solid:hover { background: var(--brand-deep); transform: translateY(-2px); }
.btn--line { border-color: var(--line); color: var(--ink); }
.btn--line:hover { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn--ghost {
  color: var(--brand-ink);
  border-color: rgba(180, 94, 7, 0.4);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--brand-ink);
  border-color: var(--brand-ink);
  color: var(--white);
  transform: translateY(-2px);
}
.section--dark .btn--ghost, .closer .btn--ghost {
  color: #f5a75c;
  border-color: rgba(245, 167, 92, 0.45);
}
.section--dark .btn--ghost:hover, .closer .btn--ghost:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn--onblack { background: var(--white); color: var(--ink); }
.btn--onblack:hover { background: var(--brand); color: var(--white); transform: translateY(-2px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 34px -24px rgba(8, 8, 8, 0.5);
  padding-block: 0.7rem;
}
.header-bar { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); }
.brand { flex: none; }
.brand img { width: 190px; height: 39px; }
.brand .logo-dark { display: none; }
.site-header.is-stuck .brand .logo-dark,
.nav-open .brand .logo-dark { display: block; }
.site-header.is-stuck .brand .logo-light,
.nav-open .brand .logo-light { display: none; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: clamp(0.4rem, 1.6vw, 1.5rem); }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.2rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.15rem;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link[aria-current='page']::after { transform: scaleX(1); }
.site-header.is-stuck .nav-link { color: var(--ink); }
.site-header.is-stuck .nav-link:hover { color: var(--brand-ink); }

.has-sub { position: relative; }
.sub-toggle { display: inline-grid; place-items: center; min-width: 26px; min-height: 26px; padding: 0; background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
.sub-toggle svg { transition: transform 0.3s var(--ease); }
.has-sub:hover .sub-toggle svg, .sub-toggle[aria-expanded='true'] svg { transform: rotate(180deg); }
.submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: -1rem;
  min-width: 246px;
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: 0 26px 60px -30px rgba(8, 8, 8, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.has-sub:hover .submenu, .submenu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block;
  padding: 0.62rem 0.9rem;
  border-radius: 10px;
  font-size: 0.93rem;
  color: var(--ink);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.submenu a:hover { background: var(--brand-tint); color: var(--brand-ink); }

.header-cta { display: flex; align-items: center; gap: 0.9rem; }
.nav > .btn, .nav > .social-row { display: none; }
.social-row { display: flex; gap: 0.35rem; }
.social-row a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.social-row a:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }
.site-header.is-stuck .social-row a { color: var(--ink); border-color: var(--line); }
.site-header.is-stuck .social-row a:hover { background: var(--brand-ink); border-color: var(--brand-ink); color: var(--white); }
.nav-toggle { display: none; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media-inner { position: absolute; inset: -8% 0; will-change: transform; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.74) 0%, rgba(8, 8, 8, 0.42) 32%, rgba(8, 8, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.66) 0%, rgba(8, 8, 8, 0.1) 70%);
}
.hero-glow {
  position: absolute;
  left: -14%;
  top: 8%;
  z-index: 1;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 109, 8, 0.42), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero.is-ready .hero-glow { opacity: 1; animation: drift 17s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate3d(-4%, -3%, 0) scale(1); }
  to { transform: translate3d(6%, 4%, 0) scale(1.14); }
}

.hero-body { position: relative; z-index: 2; width: 100%; color: var(--white); padding-block: 11rem 2.4rem; }
.hero h1 { max-width: 17ch; text-wrap: balance; }
.hero h1 .accent { color: #f5a75c; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }

.h-display .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.h-display .w-i { display: inline-block; }
.js .h-display .w-i {
  transform: translate3d(0, 108%, 0);
  transition: transform 0.95s var(--ease);
  transition-delay: calc(var(--i, 0) * 62ms);
}
.js .hero.is-ready .h-display .w-i { transform: none; }

.js .hero .anim {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms + 240ms);
}
.js .hero.is-ready .anim { opacity: 1; transform: none; }

.expertise-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.1rem;
}
.showcase { --art-line: rgba(255, 255, 255, 0.28); --art-soft: rgba(255, 255, 255, 0.56); --art-fill: rgba(255, 255, 255, 0.05); --art-panel: rgba(255, 255, 255, 0.11); --art-warm: #f5a75c; }

.showcase-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px 20px 0 0;
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  overflow: hidden;
}
.showcase-glow {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 109, 8, 0.3), transparent 62%);
  pointer-events: none;
}

.art {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.7rem, 2.4vw, 1.5rem);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.965);
  transition: opacity 0.55s var(--ease), transform 0.65s var(--ease), visibility 0.55s;
}
.art.is-on { opacity: 1; visibility: visible; transform: none; }
.art-svg { width: 100%; height: 100%; overflow: visible; }

.showcase-bar { display: block; height: 3px; background: rgba(255, 255, 255, 0.14); overflow: hidden; }
.showcase-fill { display: block; height: 100%; background: var(--brand); transform: scaleX(0); transform-origin: left; }
.js .showcase-fill.is-running { animation: sweep var(--dur, 5200ms) linear forwards; }
.showcase.is-paused .showcase-fill { animation-play-state: paused; }
@keyframes sweep { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.ex-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }
.ex-pills a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(8, 8, 8, 0.34);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pill-n { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; font-variant-numeric: tabular-nums; color: rgba(255, 255, 255, 0.42); transition: color 0.3s var(--ease); }
.ex-pills a:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }
.ex-pills li.is-active a { background: var(--brand); border-color: var(--brand); color: var(--white); }
.ex-pills li.is-active .pill-n { color: rgba(255, 255, 255, 0.75); }

@keyframes artPop { from { opacity: 0; transform: translateY(9px) scale(0.94); } to { opacity: 1; transform: none; } }
@keyframes artDot { from { opacity: 0; transform: scale(0.2); } to { opacity: 1; transform: none; } }
@keyframes artDraw { from { stroke-dashoffset: var(--len, 100); } to { stroke-dashoffset: 0; } }
@keyframes artSlideL { from { opacity: 0; transform: translateX(-26px); } to { opacity: 1; transform: none; } }
@keyframes artSlideR { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
@keyframes artRipple { from { opacity: 0.85; transform: scale(0.3); } to { opacity: 0; transform: scale(2.6); } }
@keyframes artFloat { 0% { opacity: 0; transform: translateY(16px) scale(0.7); } 30% { opacity: 1; transform: none; } 100% { opacity: 0.85; transform: translateY(-9px); } }
@keyframes artStar { 0% { opacity: 0; transform: scale(0.2) rotate(-45deg); } 60% { opacity: 1; transform: scale(1.22) rotate(6deg); } 100% { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes artBadge { 0% { opacity: 0; transform: scale(0.3); } 65% { transform: scale(1.16); } 100% { opacity: 1; transform: scale(1); } }
@keyframes artBar { from { opacity: 0.2; transform: scaleY(0.06); } to { opacity: 1; transform: none; } }
@keyframes artCursor { 0% { opacity: 0; transform: translate(196px, 158px); } 22% { opacity: 1; } 62% { transform: translate(74px, 152px); } 72% { transform: translate(74px, 152px) scale(0.82); } 82% { transform: translate(74px, 152px); } 100% { opacity: 1; transform: translate(74px, 152px); } }
@keyframes artSearch { 0% { opacity: 0; transform: translateX(-16px) rotate(-18deg); } 55% { opacity: 1; transform: translateX(4px) rotate(6deg); } 100% { opacity: 1; transform: none; } }
@keyframes artRank { 0% { opacity: 0; transform: translateY(56px); } 60% { opacity: 1; transform: translateY(-5px); } 100% { opacity: 1; transform: none; } }

.js .art .a-frame { opacity: 0; }
.js .art .a-pop, .js .art .a-dot, .js .art .a-slide-l, .js .art .a-slide-r,
.js .art .a-float, .js .art .a-star, .js .art .a-badge, .js .art .a-bar,
.js .art .a-cursor, .js .art .a-search, .js .art .a-rank, .js .art .a-ripple { opacity: 0; }
.js .art .a-stroke { stroke-dasharray: var(--len, 100); stroke-dashoffset: var(--len, 100); }

.js .art.is-on .a-frame { animation: artPop 0.6s var(--ease) both; }
.js .art.is-on .a-pop { animation: artPop 0.55s var(--ease) both; animation-delay: calc(var(--d, 0) * 68ms + 120ms); }
.js .art.is-on .a-dot { animation: artDot 0.4s var(--ease) both; animation-delay: calc(var(--d, 0) * 68ms + 200ms); }
.js .art.is-on .a-stroke { animation: artDraw 0.85s var(--ease) both; animation-delay: calc(var(--d, 0) * 68ms + 220ms); }
.js .art.is-on .a-slide-l { animation: artSlideL 0.7s var(--ease) both; animation-delay: calc(var(--d, 0) * 68ms + 160ms); }
.js .art.is-on .a-slide-r { animation: artSlideR 0.7s var(--ease) both; animation-delay: calc(var(--d, 0) * 68ms + 160ms); }
.js .art.is-on .a-float { animation: artFloat 2.6s var(--ease) infinite; animation-delay: calc(var(--d, 0) * 68ms + 200ms); }
.js .art.is-on .a-star { animation: artStar 0.6s var(--ease) both; animation-delay: calc(var(--d, 0) * 110ms + 160ms); transform-box: fill-box; transform-origin: center; }
.js .art.is-on .a-badge { animation: artBadge 0.7s var(--ease) both; animation-delay: calc(var(--d, 0) * 68ms + 200ms); transform-box: fill-box; transform-origin: center; }
.js .art.is-on .a-bar { animation: artBar 0.6s var(--ease) both; animation-delay: calc(var(--d, 0) * 90ms + 160ms); transform-box: fill-box; transform-origin: bottom; }
.js .art.is-on .a-ripple { animation: artRipple 1.9s var(--ease) infinite; animation-delay: calc(var(--d, 0) * 320ms); transform-box: fill-box; transform-origin: center; }
.js .art.is-on .a-cursor { animation: artCursor 2.4s var(--ease) both; animation-delay: 340ms; }
.js .art.is-on .a-search { animation: artSearch 0.8s var(--ease) both; animation-delay: calc(var(--d, 0) * 68ms + 200ms); transform-box: fill-box; transform-origin: center; }
.js .art.is-on .a-rank { animation: artRank 0.85s var(--ease) both; animation-delay: calc(var(--d, 0) * 68ms + 180ms); }

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.3s var(--ease);
}
.scroll-cue:hover { color: var(--white); }
.scroll-cue-track {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}
.scroll-cue-dot { position: absolute; left: -1px; top: 0; width: 3px; height: 13px; background: var(--brand); animation: cue 2.1s var(--ease) infinite; }
@keyframes cue {
  0% { transform: translateY(-14px); opacity: 0; }
  22% { opacity: 1; }
  78% { opacity: 1; }
  100% { transform: translateY(42px); opacity: 0; }
}

.logos { overflow: hidden; }
.logos-aura {
  position: absolute;
  left: 50%;
  bottom: -22%;
  width: min(120vw, 1180px);
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(209, 109, 8, 0.13), transparent 66%);
  pointer-events: none;
}
.logos .shell { position: relative; }

.logos-head { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.logos-head h2 { max-width: 20ch; text-wrap: balance; }


.logo-wall { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(8px, 1vw, 14px); }
.logo-cell figure {
  margin: 0;
  position: relative;
  aspect-ratio: 312 / 110;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.logo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.45s var(--ease), opacity 0.45s var(--ease), transform 0.6s var(--ease);
}
.logo-cell.is-lit figure,
.logo-cell:hover figure {
  transform: translateY(-6px);
  box-shadow: 0 0 0 2px rgba(209, 109, 8, 0.45), 0 22px 40px -24px rgba(209, 109, 8, 0.8);
}
.logo-cell.is-lit img,
.logo-cell:hover img { filter: none; opacity: 1; transform: scale(1.06); }

.js .logo-wall .logo-cell {
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--i, 0) * 42ms);
}
.js .logo-wall.in .logo-cell { opacity: 1; transform: none; }
.js .logo-wall.reveal { opacity: 1; transform: none; transition: none; }

.webdev-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  margin-bottom: clamp(3.4rem, 7vw, 6rem);
}
.webdev-copy h2 { margin-bottom: 1.5rem; text-wrap: balance; }
.webdev-copy .lede + .lede { margin-top: 1.15rem; }

.webdev-visual { position: relative; }
.webdev-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-lg);
}
.js .webdev-visual img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.04);
  transition: clip-path 1.05s var(--ease) 0.1s, transform 1.3s var(--ease) 0.1s;
}
.js .webdev-visual.in img { clip-path: inset(0 0 0 0); transform: none; }
.js .webdev-visual.reveal { opacity: 1; transform: none; transition: none; }
.webdev-panel {
  position: absolute;
  inset: 8% -5% -7% 9%;
  border-radius: var(--r-lg);
  background: var(--brand-tint-2);
  transform: rotate(-2.4deg);
  transition: transform 1s var(--ease);
}
.js .webdev-visual.in .webdev-panel { transform: rotate(-4.2deg); }

.stamp {
  position: absolute;
  z-index: 2;
  left: -7%;
  bottom: -13%;
  width: clamp(108px, 12vw, 148px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 20px 44px -20px rgba(8, 8, 8, 0.6);
}
.stamp-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: stampSpin 22s linear infinite;
}
.stamp-ring text {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  fill: var(--white);
}
.stamp-mark { position: relative; width: 34%; color: var(--brand); }
@keyframes stampSpin { to { transform: rotate(360deg); } }

.spec { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4.5rem); }
.spec li { position: relative; padding-top: 1.7rem; }
.spec-rule {
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
}
.js .spec.in .spec-rule { animation: ruleDraw 0.85s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 140ms); }
@keyframes ruleDraw { to { transform: scaleX(1); } }
.spec-ico {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(58px, 5.5vw, 70px);
  aspect-ratio: 1;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-ink);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.spec-ico svg { position: relative; z-index: 1; width: 56%; height: 56%; overflow: visible; }
.spec-ico::before, .spec-ico::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-ink);
  opacity: 0;
  transform: scale(0.72);
}
.section--dark .spec-ico, .closer .spec-ico {
  background: rgba(255, 255, 255, 0.08);
  color: #f5a75c;
}
.section--dark .spec-ico::before, .section--dark .spec-ico::after,
.closer .spec-ico::before, .closer .spec-ico::after { border-color: #f5a75c; }

.icon-list li:hover .spec-ico,
.icon-list li:focus-within .spec-ico {
  background: var(--brand-ink);
  color: var(--white);
  transform: translateY(-3px) rotate(-8deg) scale(1.06);
  box-shadow: 0 16px 30px -16px rgba(180, 94, 7, 0.65);
}
.js .icon-list li:hover .spec-ico::before,
.js .icon-list li:focus-within .spec-ico::before { animation: iconRing 1.1s var(--ease) infinite; }
.js .icon-list li:hover .spec-ico::after,
.js .icon-list li:focus-within .spec-ico::after { animation: iconRing 1.1s var(--ease) infinite 0.4s; }
@keyframes iconRing {
  0% { opacity: 0.55; transform: scale(0.72); }
  100% { opacity: 0; transform: scale(1.5); }
}

.js .icon-list .i-draw { stroke-dasharray: 100; stroke-dashoffset: 100; }
.js .icon-list .i-pop { opacity: 0; }
.js .icon-list.in .i-draw { animation: iDraw 0.75s var(--ease) forwards; animation-delay: calc((var(--i, 0) * 140ms) + (var(--d, 0) * 110ms) + 320ms); }
.js .icon-list.in .i-pop { animation: iPop 0.45s var(--ease) forwards; animation-delay: calc((var(--i, 0) * 140ms) + (var(--d, 0) * 110ms) + 320ms); transform-box: fill-box; transform-origin: center; }
@keyframes iDraw { to { stroke-dashoffset: 0; } }
@keyframes iPop { from { opacity: 0; transform: scale(0.2); } to { opacity: 1; transform: none; } }

.i-trace {
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 16 100;
  stroke-dashoffset: 100;
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.85));
  pointer-events: none;
}
.js .icon-list li:hover .i-trace,
.js .icon-list li:focus-within .i-trace {
  animation: iTrace 1.5s var(--ease) infinite;
  animation-delay: calc(var(--d, 0) * 90ms);
}
@keyframes iTrace {
  0% { opacity: 0; stroke-dashoffset: 100; }
  10% { opacity: 0.95; }
  85% { opacity: 0.95; }
  100% { opacity: 0; stroke-dashoffset: -100; }
}
.js .icon-list li:hover .i-pop,
.js .icon-list li:focus-within .i-pop {
  animation: iPopBeat 1.5s var(--ease) infinite;
  animation-delay: calc(var(--d, 0) * 90ms);
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes iPopBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.js .icon-list li .spec-ico, .js .icon-list li h3, .js .icon-list li p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 140ms + 160ms);
}
.js .icon-list li h3 { transition-delay: calc(var(--i, 0) * 140ms + 240ms); }
.js .icon-list li p { transition-delay: calc(var(--i, 0) * 140ms + 320ms); }
.js .icon-list.in li .spec-ico, .js .icon-list.in li h3, .js .icon-list.in li p { opacity: 1; transform: none; }
.icon-list h3 { margin-bottom: 0.55rem; }
.icon-list p { font-size: 0.97rem; color: var(--ink-70); max-width: 46ch; }
.js .icon-list.reveal { opacity: 1; transform: none; transition: none; }
.section--dark .icon-list p, .closer .icon-list p { color: rgba(255, 255, 255, 0.7); }

.svc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.2rem, 6vw, 5.5rem); align-items: center; }
.svc--flip .svc-visual { order: -1; }
.svc-copy h2 { margin-bottom: 1.4rem; text-wrap: balance; }
.svc-points { display: grid; gap: 1.1rem; margin-top: 2rem; }
.svc-points li + li { border-top: 1px solid var(--line-soft); padding-top: 1.1rem; }
.section--dark .svc-points li + li { border-top-color: rgba(255, 255, 255, 0.14); }
.svc-points li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 1rem; align-items: start; }
.svc-points .tick {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-ink);
}
.section--dark .svc-points .tick { background: rgba(240, 164, 92, 0.16); color: #f0a45c; }
.svc-points p { font-size: 0.97rem; color: var(--ink-70); margin: 0.3rem 0 0; }
.section--dark .svc-points p { color: rgba(255, 255, 255, 0.7); }
.section--dark .lede { color: rgba(255, 255, 255, 0.72); }
.svc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 2.3rem; }

.svc-visual { position: relative; }
.svc-visual img { width: 100%; border-radius: var(--r-lg); }
.svc-visual::before {
  content: '';
  position: absolute;
  inset: auto -18px -18px auto;
  width: 62%;
  height: 62%;
  border-radius: var(--r-lg);
  background: var(--brand-tint-2);
  z-index: -1;
}

.social-visual { display: flex; flex-direction: column; gap: 1.1rem; }
.social-visual::before { display: none; }
.social-visual img { transform: translateY(-22px); }

.social-strip {
  position: relative;
  padding: 1.4rem 1.6rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  box-shadow: 0 20px 40px -30px rgba(8, 8, 8, 0.35);
  overflow: hidden;
}

.cal-label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-55);
}

.engage-row { display: flex; }
.engage-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.5rem;
  text-align: center;
}
.engage-stat + .engage-stat { border-left: 1px solid var(--line-soft); }
.engage-ico { width: 20px; height: 20px; color: var(--brand-ink); }
.engage-num {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.engage-lbl { font-size: 0.72rem; color: var(--ink-55); }

.engage-chart { margin-top: 1.2rem; }
.engage-chart svg { display: block; width: 100%; height: auto; overflow: visible; }
.engage-line { fill: none; }
.engage-dot {
  fill: var(--brand);
  filter: drop-shadow(0 0 0 var(--brand-tint-2));
  offset-rotate: 0deg;
  offset-distance: 0%;
  opacity: 0;
}
.js .social-strip.is-live .engage-dot { animation: engageMove 3.6s ease-in-out infinite; }
@keyframes engageMove {
  0% { offset-distance: 0%; opacity: 0; filter: drop-shadow(0 0 0 var(--brand-tint-2)); }
  8% { opacity: 1; filter: drop-shadow(0 0 4px var(--brand-tint-2)); }
  90% { opacity: 1; filter: drop-shadow(0 0 4px var(--brand-tint-2)); }
  100% { offset-distance: 100%; opacity: 0; filter: drop-shadow(0 0 0 var(--brand-tint-2)); }
}

.mobileapp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.mobileapp-copy h2 { margin-bottom: 1.2rem; text-wrap: balance; }

.app-points { display: grid; gap: 1.3rem; margin: 2rem 0 2.3rem; }
.app-points li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.1rem; align-items: start; }
.app-points .spec-ico { margin-bottom: 0; width: clamp(50px, 4.6vw, 58px); }
.app-points h3 { margin-bottom: 0.4rem; }
.app-points p { font-size: 0.95rem; }

.mobileapp-visual { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }

.app-stage { position: relative; width: clamp(230px, 24vw, 296px); aspect-ratio: 1; --orbit-r: 118px; }
.app-stage::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--orbit-r) * 2 + 44px);
  height: calc(var(--orbit-r) * 2 + 44px);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.app-glow {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 109, 8, 0.32), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}
.phone-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
  overflow: visible;
}

.orbit { position: absolute; inset: 0; }
.app-stage.is-spinning .orbit { animation: orbitSpin 46s linear infinite; }
.orbit-arm { position: absolute; top: 50%; left: 50%; width: 0; height: 0; transform: rotate(var(--angle)); }
.orbit-pos { position: absolute; top: 0; left: 0; transform: translateX(var(--orbit-r)) translate(-50%, -50%); }
.orbit-chip {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #f5a75c;
  box-shadow: 0 12px 22px -14px rgba(0, 0, 0, 0.65);
}
.app-stage.is-spinning .orbit-chip { animation: orbitCounter 46s linear infinite; }
.orbit-chip svg { width: 17px; height: 17px; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitCounter { to { transform: rotate(-360deg); } }

.js .phone-svg .ph-pop { opacity: 0; }
.js .mobileapp-visual.in .phone-svg .ph-pop {
  animation: artPop 0.6s var(--ease) both;
  animation-delay: calc((var(--d, 0) * 60ms) + 260ms);
}

.ph-notif { transform: translateY(0); opacity: 0; }
.js .mobileapp-visual.in .ph-notif { animation: notifSlide 6.5s var(--ease) 1.4s infinite; }
@keyframes notifSlide {
  0% { transform: translateY(0); opacity: 0; }
  6% { opacity: 1; }
  16%, 74% { transform: translateY(72px); opacity: 1; }
  88% { transform: translateY(72px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.js .mobileapp-visual.reveal { opacity: 1; transform: none; transition: none; }

.js .chips li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.js .mobileapp-visual.in .chips li { opacity: 1; transform: none; }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chips li {
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.chips li:hover { border-color: var(--brand); background: var(--brand); color: var(--white); }

.stats-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: end; }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); margin-top: 3.4rem; }
.stat {
  padding: clamp(1.9rem, 3vw, 2.4rem) clamp(1.6rem, 2.6vw, 2.1rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  box-shadow: 0 22px 44px -36px rgba(8, 8, 8, 0.4);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(209, 109, 8, 0.3);
  box-shadow: 0 30px 56px -28px rgba(209, 109, 8, 0.38);
}
.stat-ring { position: relative; display: inline-grid; place-items: center; width: 68px; height: 68px; margin-bottom: 1.4rem; }
.stat-ring svg:first-child { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.stat-ring-bg { fill: none; stroke: var(--brand-tint-2); stroke-width: 5; }
.stat-ring-fg { fill: none; stroke: var(--brand); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; }
.stat-icon { position: relative; z-index: 1; width: 27px; height: 27px; color: var(--brand-ink); }
.stat .num { font-size: clamp(2.5rem, 5vw, 3.4rem); font-weight: 600; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stat .label { margin-top: 0.55rem; font-size: 0.95rem; color: var(--ink-55); }

.team-orbit { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 460px; margin-inline: auto; overflow: visible; }
.team-orbit::before { display: none; }
.team-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; overflow: visible; }
.team-line { stroke: var(--brand-ink); stroke-width: 0.45; stroke-linecap: round; opacity: 0.32; stroke-dasharray: 100; stroke-dashoffset: 100; }
.js .team-orbit.is-live .team-line { animation: teamLineDraw 1.1s var(--ease) forwards; animation-delay: calc(var(--ld, 0s) + 0.2s); }
@keyframes teamLineDraw { to { stroke-dashoffset: 0; } }

.team-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: clamp(110px, 24vw, 138px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-tint-2), transparent 70%);
  display: grid;
  place-items: center;
  color: var(--brand-ink);
}
.team-orbit-core svg { width: 46%; height: 46%; overflow: visible; }
.team-person { color: var(--brand-ink); transform-box: fill-box; transform-origin: center; }
.team-person--side { opacity: 0.65; }
.js .team-orbit.is-live .team-person:not(.team-person--side) { animation: personPopMain 0.5s var(--ease) both; }
.js .team-orbit.is-live .team-person--side { animation: personPopSide 0.5s var(--ease) both; }
.js .team-orbit.is-live .team-person--side:nth-of-type(2) { animation-delay: 0.12s; }
.js .team-orbit.is-live .team-person--side:nth-of-type(3) { animation-delay: 0.22s; }
@keyframes personPopMain {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes personPopSide {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 0.65; transform: scale(1); }
}
.team-orbit-core::before, .team-orbit-core::after {
  content: '';
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1.5px solid var(--brand-ink);
  opacity: 0;
}
.js .team-orbit.is-live .team-orbit-core::before { animation: iconRing 2.6s ease-out infinite; }
.js .team-orbit.is-live .team-orbit-core::after { animation: iconRing 2.6s ease-out infinite 1.3s; }

.team-badges { position: absolute; inset: 0; z-index: 2; }
.team-badge { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%); }
.team-badge-float {
  display: block;
  padding: 0.5rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 14px 28px -20px rgba(8, 8, 8, 0.4);
  white-space: nowrap;
}
.js .team-orbit.is-live .team-badge-float { animation: teamFloat 4.6s ease-in-out infinite; animation-delay: var(--d); }
@keyframes teamFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 700px) {
  .team-orbit { aspect-ratio: auto; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; padding-block: 0.5rem 0.2rem; }
  .team-lines { display: none; }
  .team-orbit-core { position: relative; left: auto; top: auto; transform: none; }
  .team-badges { position: static; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
  .team-badge { position: static; transform: none; }
  .js .team-orbit.is-live .team-badge-float { animation: none; }
}

.partner-showcase { margin-top: clamp(2.4rem, 5vw, 3.4rem); }
.partner-stage { position: relative; min-height: 260px; }
.partner-panel {
  display: none;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: center;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: 0 22px 50px -36px rgba(8, 8, 8, 0.4);
}
.partner-panel.is-on { display: grid; }
.js .partner-panel.is-on { animation: partnerIn 0.5s var(--ease) both; }
@keyframes partnerIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.partner-panel-logo {
  display: grid;
  place-items: center;
  width: clamp(84px, 12vw, 108px);
  aspect-ratio: 1;
  padding: 0.9rem;
  background: var(--off);
  border-radius: var(--r);
  flex: none;
}
.partner-panel-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-panel-body h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.partner-panel-body .partner-org { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; color: var(--brand-ink); margin-bottom: 0.7rem; }
.partner-panel-body p:last-child { font-size: 0.95rem; color: var(--ink-70); }

.partner-track { display: block; margin-top: 1.4rem; height: 3px; border-radius: 2px; background: var(--line-soft); overflow: hidden; }
.partner-fill { display: block; height: 100%; background: var(--brand); transform: scaleX(0); transform-origin: left; }
.js .partner-fill.is-running { animation: partnerFill var(--dur, 5200ms) linear forwards; }
.partner-showcase.is-paused .partner-fill { animation-play-state: paused; }
@keyframes partnerFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.partner-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; list-style: none; padding: 0; }
.partner-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-55);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.partner-tab img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--off);
  padding: 3px;
}
.partner-tab:hover { border-color: rgba(209, 109, 8, 0.35); color: var(--ink); }
.partner-tab.is-active { border-color: var(--brand-ink); background: var(--brand-tint); color: var(--ink); font-weight: 600; }

.js .stats .stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 110ms);
}
.js .reveal.in .stats .stat { opacity: 1; transform: none; }

.quotes-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.quotes-head .stars { width: 149px; height: 28px; }
.quotes-wrap { position: relative; }
.quotes {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(400px, 84vw);
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
  cursor: grab;
  outline-offset: 6px;
}
.quotes::-webkit-scrollbar { display: none; }
.quotes.is-dragging { scroll-snap-type: none; cursor: grabbing; user-select: none; -webkit-user-select: none; }
.quotes > * { scroll-snap-align: start; }
.quotes.is-dragging > * { pointer-events: none; }

.quotes-controls { display: flex; align-items: center; justify-content: center; gap: 1.3rem; margin-top: 2rem; }
.quotes-arrow {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.quotes-arrow:hover { background: var(--brand-ink); border-color: var(--brand-ink); color: var(--white); transform: translateY(-2px); }

.quotes-dots { display: flex; align-items: center; gap: 0.55rem; list-style: none; margin: 0; padding: 0; }
.quotes-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--line); cursor: pointer; transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), width 0.3s var(--ease); }
.quotes-dot:hover { background: var(--brand-ink); }
.quotes-dot.is-active { width: 22px; border-radius: 5px; background: var(--brand); }
.quote {
  display: flex;
  flex-direction: column;
  padding: 2.1rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  box-shadow: 0 22px 44px -34px rgba(8, 8, 8, 0.4);
}
.quote .mark { font-size: 3rem; line-height: 0.7; color: var(--brand); margin-bottom: 1rem; }
.quote blockquote { margin: 0; font-size: 0.985rem; color: var(--ink-70); }
.quote figcaption { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); }
.quote .avatar {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.quote .who { font-weight: 500; font-size: 0.97rem; }
.quote .role { font-size: 0.87rem; color: var(--ink-55); }

.closer { position: relative; overflow: hidden; background: var(--ink); color: var(--white); border-radius: var(--r-lg); padding: clamp(2.8rem, 7vw, 5.2rem); }
.closer::before {
  content: '';
  position: absolute;
  top: -35%;
  right: -8%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 109, 8, 0.6), transparent 68%);
  will-change: transform;
}
.js .closer.is-live::before { animation: closerDrift 9s ease-in-out infinite alternate; }
@keyframes closerDrift {
  0% { transform: translate3d(-4%, -3%, 0) scale(1); opacity: 0.85; }
  50% { opacity: 1; }
  100% { transform: translate3d(7%, 6%, 0) scale(1.22); opacity: 0.85; }
}

.closer-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; border-radius: inherit; pointer-events: none; }
.closer-particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--brand);
  opacity: 0;
}
.js .closer.is-live .closer-particles span { animation: closerParticle var(--dur) ease-in-out infinite; animation-delay: var(--delay); }
@keyframes closerParticle {
  0% { transform: translate3d(0, 0, 0) scale(0.5); opacity: 0; }
  15% { opacity: 0.95; }
  50% { transform: translate3d(var(--dx), -28px, 0) scale(1); opacity: 0.7; }
  85% { opacity: 0.25; }
  100% { transform: translate3d(calc(var(--dx) * 1.6), -58px, 0) scale(0.6); opacity: 0; }
}

.closer > *:not(.closer-particles) { position: relative; z-index: 1; }
.closer h2 { margin-bottom: 1.4rem; }
.closer p { color: rgba(255, 255, 255, 0.74); max-width: 62ch; }

.site-footer { background: var(--black); color: rgba(255, 255, 255, 0.68); padding-block: clamp(3.4rem, 6vw, 5rem) 2.2rem; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 4.5rem); padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-logo { width: 220px; height: 46px; margin-bottom: 1.5rem; }
.footer-contact { display: grid; gap: 0.6rem; margin-top: 1.6rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--white); transition: color 0.25s var(--ease); }
.footer-contact a:hover { color: #f0a45c; }
.member h2 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 1rem; }
.member img { width: 260px; height: 52px; object-fit: contain; }
.footer-services { margin-top: 2.2rem; font-size: 0.92rem; line-height: 2.1; }
.footer-services a:hover { color: #f0a45c; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: 0.87rem; }
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a:hover { color: #f0a45c; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; color: var(--white); transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease); }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .brand img { width: 160px; height: 33px; }
  .nav-list { gap: 0.9rem; }
  .header-cta .social-row { display: none; }
}

@media (max-width: 900px) {
  .site-header { padding-block: 0.85rem; }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
  }
  .site-header.is-stuck .nav-toggle, .nav-open .nav-toggle { color: var(--ink); border-color: var(--line); }
  .nav-toggle .icon-close, .nav-open .nav-toggle .icon-open { display: none; }
  .nav-open .nav-toggle .icon-close { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(400px, 88vw);
    margin: 0;
    padding: 6rem 1.7rem 2.5rem;
    background: var(--white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -30px 0 70px -40px rgba(8, 8, 8, 0.6);
  }
  .nav-open .nav { transform: none; }
  .nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line-soft); }
  .nav-link, .sub-toggle { width: 100%; color: var(--ink); font-size: 1.05rem; padding-block: 0.95rem; justify-content: space-between; }
  .nav-link::after { display: none; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 0.7rem 0.6rem;
    min-width: 0;
    display: none;
  }
  .submenu.is-open { display: block; }
  .has-sub:hover .submenu { display: none; }
  .has-sub:hover .submenu.is-open { display: block; }
  .header-cta { margin-left: 0; }
  .header-cta .btn { display: none; }
  .nav .btn { display: inline-flex; width: 100%; justify-content: center; margin-top: 1.6rem; }
  .nav .social-row { display: flex; justify-content: center; margin-top: 1.6rem; }
  .nav .social-row a { color: var(--ink); border-color: var(--line); }
  .nav-scrim { position: fixed; inset: 0; background: rgba(8, 8, 8, 0.45); opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s; }
  .nav-open .nav-scrim { opacity: 1; visibility: visible; }
}

@media (max-width: 860px) {
  .hero-grid, .svc, .stats-head, .footer-top { grid-template-columns: minmax(0, 1fr); }
  .webdev-grid { grid-template-columns: minmax(0, 1fr); }
  .mobileapp-grid { grid-template-columns: minmax(0, 1fr); }
  .mobileapp-visual { order: -1; margin-bottom: 0.6rem; }
  .app-stage { width: 232px; --orbit-r: 92px; }
  .webdev-visual { order: -1; margin-bottom: 2.4rem; }
  .stamp { left: 2%; bottom: -9%; }
  .spec { grid-template-columns: minmax(0, 1fr); gap: 2.2rem; }
  .svc--flip .svc-visual { order: 0; }
  .hero-body { padding-block: 7.5rem 2.4rem; }
  .hero-grid { gap: 2.2rem; }
  .hero-actions { margin-top: 1.7rem; }
  .expertise-title { margin-bottom: 0.8rem; }
  .ex-pills { gap: 0.3rem; margin-top: 0.7rem; }
  .ex-pills a { padding: 0.4rem 0.7rem; font-size: 0.78rem; }
  .showcase-stage { aspect-ratio: 16 / 9; }
  .scroll-cue { display: none; }
  .stats { grid-template-columns: minmax(0, 1fr); gap: 1.1rem; }
}

@media (max-width: 1024px) {
  .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .logos-head h2 { max-width: none; }
}

@media (max-width: 640px) {
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .partner-panel { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .partner-panel-logo { margin-inline: auto; }
}

@media (max-width: 520px) {
  .quotes { grid-auto-columns: 88vw; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
  .js .hero .anim { opacity: 1; transform: none; }
  .js .h-display .w-i { transform: none; }
  .hero-media-inner { transform: none !important; }
  .hero-glow { opacity: 1; animation: none; }
  .js .showcase-fill.is-running { animation: none; transform: scaleX(1); }
  .js .art .a-frame, .js .art .a-pop, .js .art .a-dot, .js .art .a-slide-l,
  .js .art .a-slide-r, .js .art .a-float, .js .art .a-star, .js .art .a-badge,
  .js .art .a-bar, .js .art .a-cursor, .js .art .a-search, .js .art .a-rank { opacity: 1; animation: none !important; }
  .js .art .a-ripple { opacity: 0; }
  .js .art .a-stroke { stroke-dashoffset: 0; }
  .js .logo-wall .logo-cell { opacity: 1; transform: none; }
  .logo-cell img { filter: none; opacity: 1; }
  .stamp-ring { animation: none; }
  .js .webdev-visual img { clip-path: none; transform: none; }
  .js .spec.in .spec-rule { animation: none; transform: scaleX(1); }
  .js .icon-list li .spec-ico, .js .icon-list li h3, .js .icon-list li p { opacity: 1; transform: none; }
  .js .icon-list .i-draw { stroke-dashoffset: 0; }
  .js .icon-list .i-pop { opacity: 1; }
  .i-trace { animation: none !important; opacity: 0; }
  .js .icon-list li:hover .i-pop, .js .icon-list li:focus-within .i-pop { animation: none; transform: none; }
  .app-stage.is-spinning .orbit, .app-stage.is-spinning .orbit-chip { animation: none; }
  .js .mobileapp-visual.in .ph-notif { animation: none; opacity: 1; transform: translateY(72px); }
  .js .chips li { opacity: 1; transform: none; }
  .js .kicker-dot { animation: none; }
  .js .stats .stat { opacity: 1; transform: none; }
  .js .team-orbit.is-live .team-orbit-core::before,
  .js .team-orbit.is-live .team-orbit-core::after,
  .js .team-orbit.is-live .team-badge-float { animation: none; }
  .js .team-orbit.is-live .team-line { animation: none; stroke-dashoffset: 0; }
  .js .team-orbit.is-live .team-person:not(.team-person--side) { animation: none; opacity: 1; transform: none; }
  .js .team-orbit.is-live .team-person--side { animation: none; opacity: 0.65; transform: none; }
  .js .partner-fill.is-running { animation: none; transform: scaleX(1); }
  .stat-ring-fg { stroke-dashoffset: 0; }
  .social-visual img { transform: none; }
  .js .social-strip.is-live .engage-dot { animation: none; }
  .engage-dot { display: none; }
  .js .closer.is-live::before { animation: none; }
  .closer-particles { display: none; }
  .h-section.is-live .grad { animation: none !important; }
  .scroll-cue-dot { animation: none; top: 14px; opacity: 1; }
}

