@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; }

.page-load { display: none; }
.js .page-load {
  display: grid;
  position: fixed;
  inset: 0;
  z-index: 300;
  place-content: center;
  justify-items: center;
  gap: 1.4rem;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.js .page-load.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s var(--ease), visibility 0s;
}
.page-load img { width: 190px; height: 39px; }
.page-load-bar {
  position: relative;
  width: 190px;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
}
.page-load-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--brand);
  transform: translateX(-100%);
  animation: loadBar 1.4s var(--ease) infinite;
}
@keyframes loadBar {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.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, var(--brand) 0%, #fbbf7a 50%, var(--brand) 100%);
    background-size: 230% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .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); 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);
  border-color: rgba(209, 109, 8, 0.4);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--brand);
  border-color: var(--brand);
  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: padding 0.35s var(--ease);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.site-header.is-stuck::before {
  opacity: 1;
  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);
}
.site-header.is-stuck {
  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; }
.has-sub > a.nav-link { position: static; }
.has-sub > .sub-toggle::after { display: none; }
.has-sub:hover > a.nav-link::after, .has-sub:focus-within > a.nav-link::after { transform: scaleX(1); }
.site-header.is-stuck .has-sub:hover > a.nav-link,
.site-header.is-stuck .has-sub:hover > .sub-toggle { color: var(--brand-ink); }
.sub-toggle { display: inline-grid; place-items: center; min-width: 26px; min-height: 26px; padding: 0; background: none; border: 0; font: 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: 272px;
  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: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
  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); }
.submenu-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--brand-tint);
  color: var(--brand-ink);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.25s var(--ease);
}
.submenu-ico svg { width: 15px; height: 15px; }
.submenu a:hover .submenu-ico,
.submenu a[aria-current='page'] .submenu-ico { background: var(--brand); color: var(--white); }
.submenu a:hover .submenu-ico { transform: scale(1.08); }

.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); border-color: var(--brand); 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; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-poster { position: absolute; inset: 0; }
.hero-media video { position: absolute; inset: 0; }
.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); } }

.svc-intro { max-width: 62ch; margin: 0 auto 3rem; text-align: center; }
.svc-intro .kicker { justify-content: center; }
.svc-intro .lede { margin-inline: auto; }

.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);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.45s var(--ease),
              translate 0.45s var(--ease), rotate 0.45s var(--ease), scale 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);
  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);
  color: var(--white);
  translate: 0 -3px;
  rotate: -8deg;
  scale: 1.06;
  box-shadow: 0 16px 30px -16px rgba(209, 109, 8, 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) calc(var(--i, 0) * 140ms + 160ms),
              transform 0.7s var(--ease) calc(var(--i, 0) * 140ms + 160ms);
}
.js .icon-list li .spec-ico {
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.45s var(--ease),
              translate 0.45s var(--ease), rotate 0.45s var(--ease), scale 0.45s var(--ease),
              opacity 0.7s var(--ease) calc(var(--i, 0) * 140ms + 160ms),
              transform 0.7s var(--ease) calc(var(--i, 0) * 140ms + 160ms);
}
.js .icon-list li h3 {
  transition: opacity 0.7s var(--ease) calc(var(--i, 0) * 140ms + 240ms),
              transform 0.7s var(--ease) calc(var(--i, 0) * 140ms + 240ms);
}
.js .icon-list li p {
  transition: opacity 0.7s var(--ease) calc(var(--i, 0) * 140ms + 320ms),
              transform 0.7s var(--ease) 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--stack { grid-template-columns: minmax(0, 1fr); align-items: stretch; }
.svc--stack .svc-copy { text-align: center; }
.svc--stack .svc-copy .lede { margin-inline: auto; }
.svc--stack .svc-actions { justify-content: center; }
.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);
}
.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; }
.closer-mark { display: none; }
@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .closer-mark {
    display: block;
    width: clamp(172px, 19vw, 262px);
    aspect-ratio: 640 / 132;
    background-color: #fbbf7a;
    opacity: 0.34;
    -webkit-mask: url(../assets/img/brand/logo-white.webp) center / contain no-repeat;
    mask: url(../assets/img/brand/logo-white.webp) center / contain no-repeat;
    user-select: none;
    pointer-events: none;
  }
}

@media (max-width: 560px) {
  .closer-mark { display: none; }
}

.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;
}
.svc-visual--illo::before { display: none; }
.svc-visual--illo svg { width: 100%; height: auto; display: block; }

.rep-illo .ri-panel { fill: var(--brand-tint); }
.rep-illo .ri-card { fill: var(--white); stroke: var(--line); stroke-width: 1.6; }
.rep-illo .ri-ghost { fill: var(--white); stroke: var(--line-soft); stroke-width: 1.6; }
.rep-illo .ri-bar { fill: rgba(8, 8, 8, 0.14); }
.rep-illo .ri-bar--dim { fill: rgba(8, 8, 8, 0.08); }
.rep-illo .ri-avatar { fill: var(--brand-tint-2); }
.rep-illo .ri-avatar-mark { fill: var(--brand); opacity: 0.55; }
.rep-illo .ri-star { fill: var(--brand); }
.rep-illo .ri-mini { fill: var(--brand); opacity: 0.5; }
.rep-illo .ri-arc { stroke: var(--brand); stroke-width: 3.6; stroke-linecap: round; fill: none; }

.js .rep-illo .ri-group, .js .rep-illo .ri-arcs {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 130ms);
}
.js .reveal.in .rep-illo .ri-group, .js .reveal.in .rep-illo .ri-arcs { opacity: 1; transform: none; }
.js .rep-illo .ri-star { opacity: 0; transform: scale(0.3); transform-box: fill-box; transform-origin: center; }
.js .reveal.in .rep-illo .ri-star { animation: riStar 0.55s var(--ease) forwards; animation-delay: calc(620ms + var(--s, 0) * 120ms); }
.js .rep-illo .ri-mini { opacity: 0; }
.js .reveal.in .rep-illo .ri-mini {
  animation: riMini 0.6s var(--ease) calc(900ms + var(--f, 0s)) forwards,
             riFloat 5.4s var(--ease) calc(1400ms + var(--f, 0s)) infinite;
}
.js .reveal.in .rep-illo .ri-float { animation: riFloat 5.8s var(--ease) infinite; animation-delay: var(--f, 0s); }
.js .reveal.in .rep-illo .ri-arc { animation: riArc 2.8s var(--ease) infinite; animation-delay: calc(1s + var(--a, 0) * 280ms); opacity: 0; }

@keyframes riStar { to { opacity: 1; transform: none; } }
@keyframes riMini { to { opacity: 0.5; } }
@keyframes riFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes riArc {
  0% { opacity: 0; transform: translateX(-8px); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateX(6px); }
}

.sc-illo .sc-panel { fill: var(--brand-tint); }
.sc-illo .sc-line { stroke: var(--brand); stroke-width: 2.4; stroke-linecap: round; opacity: 0.45; }
.sc-illo .sc-hub { fill: var(--brand); }
.sc-illo .sc-hub-mark { fill: var(--white); }
.sc-illo .sc-hub-ring { fill: none; stroke: var(--brand); stroke-width: 2.4; opacity: 0; }
.sc-illo .sc-node-bg { fill: var(--white); stroke: var(--line); stroke-width: 1.8; }
.sc-illo .sc-node-mark { fill: var(--brand); opacity: 0.55; }
.sc-illo .sc-react-bg { fill: var(--white); stroke: var(--line-soft); stroke-width: 1.6; }
.sc-illo .sc-react-mark { fill: var(--brand); }

.js .sc-illo .sc-line { stroke-dasharray: 100; stroke-dashoffset: 100; }
.js .reveal.in .sc-illo .sc-line { animation: scLine 0.9s var(--ease) forwards; animation-delay: calc(var(--l, 0) * 130ms); }
.js .sc-illo .sc-hub-group { opacity: 0; transform: scale(0.7); transform-box: fill-box; transform-origin: center; }
.js .reveal.in .sc-illo .sc-hub-group { animation: scPop 0.6s var(--ease) forwards; }
.js .sc-illo .sc-node { opacity: 0; transform: scale(0.55); transform-box: fill-box; transform-origin: center; }
.js .reveal.in .sc-illo .sc-node { animation: scPop 0.55s var(--ease) forwards; animation-delay: calc(420ms + var(--n, 0) * 130ms); }
.js .reveal.in .sc-illo .sc-hub-ring { animation: scRing 3.2s var(--ease) infinite; animation-delay: calc(1.1s + var(--k, 0) * 1.1s); }
.js .sc-illo .sc-react { opacity: 0; transform-box: fill-box; transform-origin: center; }
.js .reveal.in .sc-illo .sc-react { animation: scReact 4.6s var(--ease) infinite; animation-delay: calc(1.3s + var(--r, 0) * 900ms); }

@keyframes scLine { to { stroke-dashoffset: 0; } }
@keyframes scPop { to { opacity: 1; transform: none; } }
@keyframes scRing {
  0% { opacity: 0.5; transform: scale(1); transform-box: fill-box; transform-origin: center; }
  100% { opacity: 0; transform: scale(1.85); transform-box: fill-box; transform-origin: center; }
}
@keyframes scReact {
  0% { opacity: 0; transform: translateY(10px); }
  18% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; transform: translateY(-6px); }
  100% { opacity: 0; transform: translateY(-16px); }
}

.svc-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.svc-step {
  position: relative;
  overflow: hidden;
  padding: 1.9rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  transition: translate 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.svc-step::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #fbbf7a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.svc-step:hover, .svc-step:focus-within { border-color: var(--line); box-shadow: 0 30px 60px -42px rgba(8, 8, 8, 0.5); translate: 0 -5px; }
.svc-step:hover::after, .svc-step:focus-within::after { transform: scaleX(1); }
.svc-step-ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), rotate 0.35s var(--ease);
}
.svc-step-ico svg { width: 26px; height: 26px; }
.svc-step:hover .svc-step-ico { background: var(--brand); color: var(--white); rotate: -6deg; }
.svc-step h3 { position: relative; margin-bottom: 0.55rem; }
.svc-step p { position: relative; margin: 0; font-size: 0.95rem; color: var(--ink-70); }
.js .svc-steps.reveal { opacity: 1; transform: none; transition: none; }
.js .svc-steps .svc-step {
  opacity: 0;
  transform: translateY(24px);
  transition: translate 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease),
              opacity 0.6s var(--ease) calc(var(--i, 0) * 110ms), transform 0.6s var(--ease) calc(var(--i, 0) * 110ms);
}
.js .svc-steps.in .svc-step { opacity: 1; transform: none; }

.page-title { position: relative; overflow: hidden; padding-top: calc(clamp(4rem, 8vw, 5.5rem) + 5rem); padding-bottom: clamp(4rem, 8vw, 5.5rem); background: var(--off); text-align: center; }
.page-title .shell { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.85rem; color: var(--ink-55); }
.breadcrumb a { color: var(--brand-ink); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: var(--ink-55); opacity: 0.6; }
.breadcrumb [aria-current="page"] { color: var(--ink-70); }
.page-title .h-section { margin: 0 auto; max-width: 26ch; }

.page-title-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.pt-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.28; animation: ptDrift 17s ease-in-out infinite; }
.pt-blob--a { width: 300px; height: 300px; left: -60px; top: -120px; background: var(--brand); }
.pt-blob--b { width: 240px; height: 240px; right: -50px; bottom: -110px; background: var(--brand-deep); animation-duration: 19s; animation-direction: reverse; }
@keyframes ptDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(34px, 22px) scale(1.1); }
}
.pt-ring { position: absolute; left: 50%; top: calc(50% + 2.2rem); width: 340px; height: 340px; margin: -170px 0 0 -170px; border: 1.5px solid rgba(209, 109, 8, 0.14); border-radius: 50%; animation: ptSpin 46s linear infinite; }
@keyframes ptSpin { to { transform: rotate(360deg); } }
.pt-dot { position: absolute; left: var(--x); top: var(--y); width: var(--s); height: var(--s); border-radius: 50%; background: var(--brand); opacity: 0; animation: ptFloat var(--dur) ease-in-out infinite; animation-delay: var(--delay); }
@keyframes ptFloat {
  0%, 100% { opacity: 0; transform: translateY(6px); }
  50% { opacity: 0.55; transform: translateY(-14px); }
}

.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; list-style: none; margin: 0; padding: 0; }
.js .svc-tile { opacity: 0; transform: translateY(26px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 100ms); }
.js .svc-grid.in .svc-tile { opacity: 1; transform: none; }

.svc-tile-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 22px 44px -34px rgba(8, 8, 8, 0.4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc-tile-card:hover, .svc-tile-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(8, 8, 8, 0.5);
  border-color: rgba(209, 109, 8, 0.35);
  outline: none;
}

.svc-tile-visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--off); }
.svc-tile-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.js .svc-tile-card:hover .svc-tile-visual img, .js .svc-tile-card:focus-visible .svc-tile-visual img { transform: scale(1.08); }

.svc-tile-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.svc-tile-body h3 { font-size: 1.18rem; margin-bottom: 0.65rem; }
.svc-tile-body p { font-size: 0.93rem; color: var(--ink-70); flex: 1; }
.tile-cta { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.3rem; font-weight: 600; font-size: 0.92rem; color: var(--brand); }
.tile-cta svg { flex: none; transition: transform 0.3s var(--ease); }
.svc-tile-card:hover .tile-cta svg, .svc-tile-card:focus-visible .tile-cta svg { transform: translateX(5px); }

.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); }
.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; }

.app-stage--light::before { display: none; }
.app-stage--light .app-glow { background: radial-gradient(circle, var(--brand-tint-2), transparent 68%); }
.app-stage--light .phone-svg { filter: drop-shadow(0 24px 40px rgba(8, 8, 8, 0.16)); }

.unlock-badge { position: absolute; right: 6%; top: -8%; z-index: 3; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: var(--white); box-shadow: 0 16px 30px -16px rgba(209, 109, 8, 0.7); opacity: 0; transform: scale(0.4); }
.unlock-badge svg { width: 22px; height: 22px; }
.unlock-ring { position: absolute; inset: -11px; border-radius: 50%; border: 1.5px solid rgba(209, 109, 8, 0.35); opacity: 0; }
.js .mobileapp-visual.in .unlock-badge { animation: iPop 0.5s var(--ease) 0.6s both; }
.js .mobileapp-visual.in .unlock-ring { opacity: 1; animation: iconRing 2.4s ease-out 1.1s infinite; }

.stat-card { position: absolute; z-index: 3; opacity: 0; transform: scale(0.7); }
.js .mobileapp-visual.in .stat-card { animation: iPop 0.5s var(--ease) both; animation-delay: calc((var(--i, 0) * 150ms) + 0.7s); }
.stat-card-float {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 30px -18px rgba(8, 8, 8, 0.35);
  white-space: nowrap;
}
.js .mobileapp-visual.in .stat-card-float { animation: teamFloat 4s ease-in-out infinite; animation-delay: var(--d); }
.stat-card-ico { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--brand-tint); color: var(--brand-ink); }
.stat-card-ico svg { width: 14px; height: 14px; }
.stat-card strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.stat-card em { display: block; font-style: normal; font-size: 0.66rem; color: var(--ink-55); line-height: 1.2; }

.js .chips li {
  opacity: 0;
  transform: translateY(14px);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease),
              opacity 0.55s var(--ease) calc(var(--i, 0) * 45ms),
              transform 0.55s var(--ease) 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: translate 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.stat:hover {
  translate: 0 -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: #d16c08; 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); }
.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);
}
.team-orbit-core svg { width: 46%; height: 46%; overflow: visible; }
.team-person { color: var(--brand); 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);
  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); background: var(--brand-tint); color: var(--ink); font-weight: 600; }

.js .stats .stat {
  opacity: 0;
  transform: translateY(20px);
  transition: translate 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease),
              opacity 0.65s var(--ease) calc(var(--i, 0) * 110ms),
              transform 0.65s var(--ease) 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); border-color: var(--brand); 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, .showcase-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, .showcase-dot:hover { background: var(--brand); }
.quotes-dot.is-active, .showcase-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(--off);
  overflow: hidden;
  padding: 5px;
}
.quote .avatar img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.quote .who { font-weight: 500; font-size: 0.97rem; }
.quote .role { font-size: 0.87rem; color: var(--ink-55); }

.showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(640px, 88vw);
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
  cursor: grab;
  outline-offset: 6px;
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track.is-dragging { scroll-snap-type: none; cursor: grabbing; user-select: none; -webkit-user-select: none; }
.showcase-track > * { scroll-snap-align: start; }
.showcase-track.is-dragging > * { pointer-events: none; }
.showcase-item {
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 22px 44px -34px rgba(8, 8, 8, 0.4);
}
.showcase-item img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.showcase-caption { padding: 1.1rem 1.4rem 1.3rem; font-weight: 600; font-size: 0.97rem; }
.showcase-track--portrait { grid-auto-columns: min(260px, 62vw); }
.showcase-item--portrait img { aspect-ratio: 640 / 1307; object-fit: contain; background: var(--off); padding: 1rem; }
.showcase-track--wide { grid-auto-columns: min(700px, 90vw); }
.showcase-item--wide img { aspect-ratio: 900 / 512; }

.feature-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
.feature-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  overflow: hidden;
  padding: 1.9rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  transition: translate 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #fbbf7a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.feature-item:hover, .feature-item:focus-within {
  translate: 0 -5px;
  border-color: var(--line);
  box-shadow: 0 30px 60px -42px rgba(8, 8, 8, 0.5);
}
.feature-item:hover::before, .feature-item:focus-within::before { transform: scaleX(1); }
.feature-ico {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: var(--brand-tint);
  color: var(--brand);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), rotate 0.35s var(--ease);
}
.feature-ico svg { width: 32px; height: 32px; }
.feature-item:hover .feature-ico { background: var(--brand); color: var(--white); rotate: -6deg; }
.feature-body h3 { margin-bottom: 0.5rem; }
.feature-body p { margin: 0; font-size: 0.95rem; color: var(--ink-70); }
.js .feature-split.reveal { opacity: 1; transform: none; transition: none; }
.js .feature-split .feature-item {
  opacity: 0;
  transform: translateY(22px);
  transition: translate 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease),
              opacity 0.6s var(--ease) calc(var(--i, 0) * 110ms),
              transform 0.6s var(--ease) calc(var(--i, 0) * 110ms);
}
.js .feature-split.in .feature-item { opacity: 1; transform: none; }

.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-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 {
    position: relative;
    z-index: 2;
    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;
    z-index: 1;
    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; }
  .has-sub { display: flex; flex-wrap: wrap; align-items: center; }
  .has-sub > .nav-link:first-child { width: auto; flex: 0 1 auto; }
  .has-sub > .sub-toggle { width: auto; flex: none; min-width: 44px; min-height: 44px; margin-left: -0.1rem; padding-inline: 0.4rem; }
  .has-sub > .submenu { order: 3; flex: 1 0 100%; }
  .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; z-index: 99; background: rgba(8, 8, 8, 0.45); opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s; }
  @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .nav-scrim { background: rgba(8, 8, 8, 0.28); -webkit-backdrop-filter: blur(9px) saturate(0.85); backdrop-filter: blur(9px) saturate(0.85); }
  }
  .nav-open .nav-scrim { opacity: 1; visibility: visible; }
  .nav-open .site-header::before { opacity: 0; }
  .brand, .header-cta { transition: opacity 0.25s var(--ease); }
  .nav-open .brand, .nav-open .header-cta { opacity: 0; pointer-events: none; }
}

@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; }
  .webdev-panel { inset: 8% 0 -7% 9%; }
  .stamp { left: 2%; bottom: -9%; }
  .spec { grid-template-columns: minmax(0, 1fr); gap: 2.2rem; }
  .feature-split { grid-template-columns: minmax(0, 1fr); }
  .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; }
}

.contact-layout { align-items: start; }

.contact-card-info {
  display: grid;
  gap: 0.15rem;
  margin: 1.9rem 0 0;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 1px 0 var(--line-soft), 0 24px 50px -40px rgba(8, 8, 8, 0.42);
}
.contact-line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.25s var(--ease);
}
.contact-line + .contact-line::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  top: 0;
  border-top: 1px solid var(--line-soft);
}
.contact-line:hover { background: var(--brand-tint); }
.contact-line:hover .contact-line-ico { background: var(--brand); color: var(--white); transform: rotate(-6deg) scale(1.05); }
.contact-line:hover .contact-line-arrow { opacity: 1; transform: translateX(3px); }
.contact-line-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-tint-2);
  color: var(--brand-ink);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.3s var(--ease);
}
.contact-line-ico svg { width: 20px; height: 20px; }
.contact-line-text { display: grid; min-width: 0; line-height: 1.3; }
.contact-line-label { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-55); }
.contact-line-value { font-size: 1.02rem; overflow-wrap: anywhere; }
@media (max-width: 380px) {
  .contact-line { gap: 0.7rem; padding-inline: 0.6rem; }
  .contact-line + .contact-line::before { left: 0.6rem; right: 0.6rem; }
  .contact-line-arrow { display: none; }
}
.contact-line-arrow { margin-left: auto; flex: none; color: var(--brand-ink); opacity: 0; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.legal .contact-card-info a, .legal .contact-card-info a:hover { text-decoration: none; color: var(--ink); }
.legal .contact-card-info .contact-line-label { color: var(--ink-55); }

.js .contact-card-info.reveal { opacity: 1; transform: none; transition: none; }
.js .contact-card-info .contact-line {
  opacity: 0;
  transform: translateY(12px);
  transition: background-color 0.25s var(--ease),
              opacity 0.55s var(--ease) calc(var(--i, 0) * 110ms),
              transform 0.55s var(--ease) calc(var(--i, 0) * 110ms);
}
.js .contact-card-info.in .contact-line { opacity: 1; transform: none; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  box-shadow: 0 1px 0 var(--line-soft), 0 30px 60px -42px rgba(8, 8, 8, 0.4);
}
.contact-card h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin-bottom: 1.4rem; }
.form-field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-field > label, .form-legend { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.form-legend { margin-bottom: 0.55rem; padding: 0; }
.req { color: var(--brand-ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-control {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.form-control:focus { border-color: var(--brand); background: var(--white); outline: none; }
.form-control:focus-visible { outline: 2px solid var(--brand-ink); outline-offset: 1px; }
textarea.form-control { min-height: 130px; resize: vertical; }
fieldset.form-field { border: 0; padding: 0; margin: 0 0 1.1rem; }
.form-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1rem; }
.form-check { display: flex; align-items: center; gap: 0.55rem; font-size: 0.94rem; font-weight: 300; color: var(--ink-70); }
.form-check input { width: 1.05rem; height: 1.05rem; flex: none; accent-color: var(--brand); }
.form-status { margin: 0 0 1rem; font-size: 0.92rem; line-height: 1.5; color: var(--brand-ink); }
.contact-card .btn { width: 100%; justify-content: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-done { text-align: center; padding: 0.75rem 0; outline: none; }
.form-done-ico { position: relative; width: 88px; height: 88px; margin: 0 auto 1.5rem; }
.form-done-ico::before {
  content: ''; position: absolute; inset: 9px; border-radius: 50%;
  background: var(--brand-tint);
}
.form-done-ico svg { position: relative; width: 100%; height: 100%; overflow: visible; }
.fd-pulse {
  position: absolute; inset: 9px; border-radius: 50%;
  border: 2px solid var(--brand); opacity: 0;
}
.fd-ring { stroke-dasharray: 202; }
.fd-check { stroke-dasharray: 46; }
.fd-disc { transform-box: fill-box; transform-origin: center; }
.form-done h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin: 0 0 0.75rem; }
.form-done p { max-width: 48ch; margin: 0 auto; color: var(--ink-70); line-height: 1.7; }
.form-done-again { margin-top: 1.9rem; }

.js .form-done:not([hidden]) .fd-disc { animation: fdDisc 0.5s var(--ease) both; }
.js .form-done:not([hidden]) .fd-ring { animation: fdRing 0.6s var(--ease) both; }
.js .form-done:not([hidden]) .fd-check { animation: fdCheck 0.4s var(--ease) 0.45s both; }
.js .form-done:not([hidden]) .fd-pulse { animation: fdPulse 0.9s var(--ease) 0.5s; }
.js .form-done:not([hidden]) h2 { animation: fdText 0.5s var(--ease) 0.5s both; }
.js .form-done:not([hidden]) p { animation: fdText 0.5s var(--ease) 0.6s both; }
.js .form-done:not([hidden]) .form-done-again { animation: fdText 0.5s var(--ease) 0.72s both; }

@keyframes fdDisc { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: scale(1); } }
@keyframes fdRing { from { stroke-dashoffset: 202; } to { stroke-dashoffset: 0; } }
@keyframes fdCheck { from { stroke-dashoffset: 46; } to { stroke-dashoffset: 0; } }
@keyframes fdPulse { from { opacity: 0.55; transform: scale(0.75); } to { opacity: 0; transform: scale(2); } }
@keyframes fdText { from { opacity: 0; translate: 0 9px; } to { opacity: 1; translate: 0 0; } }

.legal { max-width: 74ch; margin-inline: auto; }
.legal h2 { font-size: clamp(1.2rem, 2.3vw, 1.5rem); margin: 2.7rem 0 0.9rem; }
.legal > h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.0625rem; margin: 1.6rem 0 0.5rem; }
.legal p { color: var(--ink-70); }
.legal ul { margin: 0 0 1.15rem; padding-left: 1.15rem; list-style: disc; color: var(--ink-70); }
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--brand-ink); text-decoration: underline; }
.legal-updated { font-size: 0.9rem; color: var(--ink-55); margin-bottom: 2.4rem; }

.embed-frame { width: 100%; height: 2030px; border: 1px solid var(--line); border-radius: var(--r-lg); display: block; background: var(--white); }

.meetings-iframe-container { width: 100%; min-height: 720px; }
.meetings-iframe-container iframe { width: 100%; border: 0; display: block; }
@media (max-width: 380px) {
  .meetings-iframe-container { width: auto; margin-inline: calc(var(--gut) * -1); }
}

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.8rem; }
.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  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);
  transition: translate 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.news-card-link:hover, .news-card-link:focus-visible {
  translate: 0 -6px;
  border-color: var(--line);
  box-shadow: 0 32px 62px -38px rgba(8, 8, 8, 0.52);
}
.news-card-media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--off); }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: scale 0.6s var(--ease); }
.news-card-link:hover .news-card-media img, .news-card-link:focus-visible .news-card-media img { scale: 1.07; }
.news-date {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 8px 20px -12px rgba(8, 8, 8, 0.7);
}
.news-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.6rem; }
.news-card-title { font-size: 1.08rem; font-weight: 600; line-height: 1.35; letter-spacing: -0.012em; margin-bottom: 0.6rem; }
.news-card-body p { flex: 1; margin: 0; font-size: 0.93rem; color: var(--ink-70); }
.news-card-body .tile-cta { margin-top: 1.2rem; }
.news-card-link:hover .tile-cta svg, .news-card-link:focus-visible .tile-cta svg { transform: translateX(5px); }
.js .news-grid.reveal { opacity: 1; transform: none; transition: none; }
.js .news-grid .news-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease) calc(var(--i, 0) * 80ms),
              transform 0.6s var(--ease) calc(var(--i, 0) * 80ms);
}
.js .news-grid.in .news-card { opacity: 1; transform: none; }

.post-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.55rem 0.9rem; margin-top: 1.3rem; font-size: 0.9rem; color: var(--ink-55); }
.post-meta .sep { opacity: 0.5; }
.post-meta strong { font-weight: 600; color: var(--ink-70); }
.page-title .h-section.post-h1 { max-width: 22ch; }

.post-hero { max-width: 900px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); }
.post-hero img { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }

.post-body { max-width: 72ch; margin-inline: auto; }
.post-body > p { color: var(--ink-70); }
.post-body h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 2.8rem 0 0.9rem; }
.post-body h2:first-child { margin-top: 0; }
.post-body h3 { font-size: 1.1rem; margin: 2rem 0 0.6rem; }
.post-body strong { font-weight: 600; color: var(--ink); }
.post-body a:not(.btn):not(.signoff-ico) { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 2px; }
.post-body a:not(.btn):not(.signoff-ico):hover { color: var(--brand-deep); }
.post-body .lead { font-size: clamp(1.06rem, 1.35vw, 1.18rem); color: var(--ink); }

.post-list { margin: 0 0 1.15rem; padding-left: 1.2rem; list-style: disc; color: var(--ink-70); }
.post-list li { margin-bottom: 0.55rem; }
.post-list li::marker { color: var(--brand); }

.post-fig { margin: 2.4rem 0; }
.post-fig img { width: 100%; height: auto; border-radius: var(--r); display: block; border: 1px solid var(--line-soft); }
.post-fig figcaption { margin-top: 0.6rem; font-size: 0.86rem; color: var(--ink-55); }

.post-hashtags { margin-top: 1.4rem; font-size: 0.86rem; color: var(--ink-55); word-spacing: 0.3rem; }

.post-figs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; margin: 2.4rem 0; }
.post-figs figure { margin: 0; }
.post-figs img { width: 100%; height: auto; border-radius: var(--r); display: block; border: 1px solid var(--line-soft); }
.post-figs figcaption { margin-top: 0.6rem; font-size: 0.86rem; color: var(--ink-55); }

.post-signoff { margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line-soft); }
.post-signoff p { color: var(--ink-70); }
.signoff-follow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.signoff-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), translate 0.25s var(--ease);
}
.signoff-ico:hover { background: var(--brand); border-color: var(--brand); color: var(--white); translate: 0 -2px; }
.signoff-ico svg { width: 15px; height: 15px; }
.signoff-cta { margin-top: 1.6rem; }

.post-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  max-width: 72ch;
  margin: 2.4rem auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
}
.post-share { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; }
.post-share-label { margin: 0; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-55); }
.share-row { display: flex; align-items: center; gap: 0.4rem; }
.share-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), translate 0.25s var(--ease);
}
.share-btn:hover { background: var(--brand); border-color: var(--brand); color: var(--white); translate: 0 -2px; }
.share-btn svg { width: 16px; height: 16px; }
.share-copied {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  translate: -50% 0;
  padding: 0.28rem 0.6rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.74rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), visibility 0.2s;
}
.share-btn.is-copied .share-copied { opacity: 1; visibility: visible; }

.post-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.post-tags-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-55); margin-right: 0.2rem; }
.post-tag { padding: 0.36rem 0.8rem; border-radius: 999px; background: var(--brand-tint); color: var(--brand-ink); font-size: 0.85rem; }

.author-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  max-width: 72ch;
  margin: clamp(2rem, 4vw, 2.8rem) auto 0;
  padding: 1.6rem 1.8rem;
  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);
}
.author-card img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; display: block; }
.author-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.2rem; }
.author-role { font-size: 0.92rem; color: var(--ink-70); margin: 0 0 0.7rem; }
.author-links { display: flex; gap: 0.4rem; }
.author-links a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.author-links a:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }

.related-head { text-align: center; max-width: 30ch; margin: 0 auto clamp(2.2rem, 4vw, 3rem); }

@media (max-width: 620px) {
  .post-figs { grid-template-columns: minmax(0, 1fr); }
  .author-card { grid-template-columns: minmax(0, 1fr); text-align: center; justify-items: center; }
  .author-links { justify-content: center; }
  .post-footer-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}

@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .news-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 1279px) { .embed-frame { height: 2190px; } }
@media (max-width: 1023px) { .embed-frame { height: 1925px; } }
@media (max-width: 460px) { .embed-frame { height: 2110px; } }
@media (max-width: 390px) { .embed-frame { height: 2185px; } }

@media (max-width: 980px) {
  .svc-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .form-row, .form-checks { grid-template-columns: minmax(0, 1fr); }
  .svc-steps { grid-template-columns: minmax(0, 1fr); }
}

@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; }
  .js .form-done .fd-pulse { animation: none; opacity: 0; }
  .js .form-done .fd-ring, .js .form-done .fd-check { stroke-dashoffset: 0; }
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
  .js .hero .anim { opacity: 1; transform: none; }
  .js .h-display .w-i { transform: none; }
  .hero-glow { opacity: 1; animation: none; }
  .page-load-bar::after { animation: none; transform: 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 .mobileapp-visual.in .unlock-badge { animation: none; opacity: 1; transform: none; }
  .js .mobileapp-visual.in .unlock-ring { animation: none; opacity: 0; }
  .js .mobileapp-visual.in .stat-card { animation: none; opacity: 1; transform: none; }
  .js .mobileapp-visual.in .stat-card-float { animation: none; }
  .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; }
  .js .svc-tile { opacity: 1; transform: none; }
  .engage-dot { display: none; }
  .js .closer.is-live::before { animation: none; }
  .closer-particles { display: none; }
  .page-title-bg { display: none; }
  .h-section.is-live .grad { animation: none !important; }
  .scroll-cue-dot { animation: none; top: 14px; opacity: 1; }
  .js .contact-card-info .contact-line { opacity: 1; transform: none; transition: none; }
  .js .rep-illo .ri-group, .js .rep-illo .ri-arcs { opacity: 1; transform: none; transition: none; }
  .js .rep-illo .ri-star { opacity: 1; transform: none; animation: none !important; }
  .js .rep-illo .ri-mini { opacity: 0.5; animation: none !important; }
  .js .reveal.in .rep-illo .ri-float { animation: none !important; }
  .js .reveal.in .rep-illo .ri-arc { animation: none !important; opacity: 1; transform: none; }
  .js .svc-steps .svc-step { opacity: 1; transform: none; }
  .js .feature-split .feature-item { opacity: 1; transform: none; }
  .js .news-grid .news-card { opacity: 1; transform: none; }
  .js .sc-illo .sc-line { stroke-dashoffset: 0; animation: none !important; }
  .js .sc-illo .sc-hub-group, .js .sc-illo .sc-node { opacity: 1; transform: none; animation: none !important; }
  .js .sc-illo .sc-hub-ring { animation: none !important; opacity: 0; }
  .js .sc-illo .sc-react { opacity: 1; transform: none; animation: none !important; }
}



/* Veloce articles (26 Sep 2026). mac-edge publishes an article's body straight inside
   <article class="post-article">, without the .post-body wrapper the site's own posts use, so the
   same reading styles are given to the article's direct children. The site's own posts only ever
   have .post-hero, .post-body and .author-card as direct children, none of which match. */
.post-article > :is(p, h2, h3, h4, ul, ol, blockquote, table) { max-width: 72ch; margin-inline: auto; }
.post-article > p { color: var(--ink-70); }
.post-article > h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 2.8rem auto 0.9rem; }
.post-article > h3 { font-size: 1.1rem; margin: 2rem auto 0.6rem; }
.post-article > :is(ul, ol) { padding-left: 1.15rem; list-style: disc; color: var(--ink-70); margin-bottom: 1.15rem; }
.post-article > ol { list-style: decimal; }
.post-article > :is(ul, ol) li { margin-bottom: 0.5rem; }
.post-article > * strong { font-weight: 600; color: var(--ink); }
.post-article > :is(p, ul, ol, table) a { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 2px; }
.post-article > p:has(> img:only-child) { max-width: 900px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); }
.post-article > p > img { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }
.post-meta .byline { margin: 0; }

/* Blog index cards (26 Sep 2026): the link now sits inside the <h2>, the card stays one click. */
.news-card-link { position: relative; cursor: pointer; }
.news-card-cover { color: inherit; text-decoration: none; }
.news-card-cover::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.news-card-link:focus-within { translate: 0 -6px; border-color: var(--line); box-shadow: 0 32px 62px -38px rgba(8, 8, 8, 0.52); }
.news-card-link:focus-within .news-card-media img { scale: 1.07; }
.news-card-link:focus-within .tile-cta svg { transform: translateX(5px); }
.news-card-cover:focus-visible { outline: none; }
.news-card-link:has(.news-card-cover:focus-visible) { outline: 2px solid var(--brand-ink); outline-offset: 3px; }
a.tile-cta { text-decoration: none; }
