

:root {
  --ink: #0b0b0c;
  --ink-soft: #1c1c1e;
  --paper: #fafaf7;
  --paper-dim: #efeee7;
  --concrete: #656360;
  --line: #e2e0d9;
  --accent: #ff3d63;
  --white: #ffffff;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1280px;
  --r: 15px;
  --r-sm: 8px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}


*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 900; letter-spacing: -0.03em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}


@media (hover: hover) and (pointer: fine) {
  .has-custom-cursor,
  .has-custom-cursor a,
  .has-custom-cursor button,
  .has-custom-cursor input,
  .has-custom-cursor textarea,
  .has-custom-cursor select { cursor: none; }
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  background: #ffffff;
  mix-blend-mode: difference;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
  contain: strict;
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none !important; }
}
.is-magnetic-active { will-change: transform; }


.motion-line { display: block; }
.motion-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
}
.motion-word-mask:last-child { margin-right: 0; }
.motion-word { display: inline-block; will-change: transform, opacity; }


.motion-wipe { position: relative; overflow: hidden; isolation: isolate; }
.motion-wipe > img,
.motion-wipe > video { position: relative; z-index: 1; }
.motion-wipe-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  pointer-events: none;
  background: var(--motion-cover, var(--paper));
  will-change: transform;
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 16px;
}
.eyebrow .paw { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.7; }

.display {
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: uppercase;
}
.display-lg {
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-weight: 900;
  text-transform: uppercase;
}
.display-sm {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: uppercase;
}


.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  --btn-icon-bg: var(--paper);
  --btn-icon-fg: var(--ink);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: inherit;
  padding: 0.4em;
  padding-left: 1.35em;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--r);
  border: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 3.1em;
  padding-right: 3.6em;
  transition: transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn .icon {
  background: var(--btn-icon-bg);
  color: var(--btn-icon-fg);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.3em;
  width: 2.3em;
  border-radius: var(--r-sm);
  right: 0.35em;
  transition: width 0.35s var(--ease);
}
.btn:hover .icon { width: calc(100% - 0.7em); }
.btn .icon svg { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); }
.btn:hover .icon svg { transform: translateX(0.15em); }
.btn:active .icon { transform: scale(0.94); }

.btn-light { --btn-bg: var(--paper); --btn-fg: var(--ink); --btn-icon-bg: var(--ink); --btn-icon-fg: var(--paper); border: 1px solid var(--line); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-icon-bg: var(--ink); --btn-icon-fg: var(--paper); border: 1.5px solid var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.link-arrow span { transition: transform 0.3s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }


[data-reveal] { opacity: 1; }
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }


.site-header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  width: calc(100% - 32px);
  z-index: 1000;
}
.site-header + main { padding-top: 76px; }
.nav-shell {
  width: 100%;
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid rgba(11,11,12,0.10);
  border-radius: 18px;
  padding: 0 20px;
  box-shadow: 4px 4px 0 rgba(11,11,12,0.07);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.brand-mark {
  height: 28px;
  width: auto;
  filter: invert(1);
}
.nav-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-pill ul { display: flex; align-items: center; gap: 2px; }
.nav-pill a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(11, 11, 12, 0.58);
  transition: opacity 0.2s ease;
}
.nav-pill a:hover { color: var(--ink); opacity: 0.62; }
.nav-pill a.is-active { background: rgba(11, 11, 12, 0.07); color: var(--ink); }
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.nav-secondary {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #e5e5e5;
  border-radius: 9999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  box-shadow: none;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}
.nav-secondary:hover {
  opacity: 0.72;
}
.nav-cta {
  flex-shrink: 0;
  height: 46px;
  font-size: 14px;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 52px;
  height: 52px;
  background: #000000;
  border: none;
  border-radius: 18px;
  margin-left: auto;
  position: relative;
  z-index: 3;
  transition: transform 0.25s var(--ease), opacity 0.25s ease;
}
.nav-toggle:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-toggle:active { opacity: 0.78; transform: scale(0.96); }
.nav-toggle span { width: 18px; height: 2px; background: #ffffff; border-radius: 9999px; margin: 0 auto; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 0.36s var(--ease), transform 0.46s var(--ease), visibility 0.36s;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav ul {
  min-height: 100%;
  padding: 128px 24px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(12px, 2.8vh, 24px);
}
.mobile-nav li {
  opacity: 0;
  transform: translateY(22px);
}
.mobile-nav.is-open li { animation: mobileNavItem 0.58s var(--ease) forwards; }
.mobile-nav.is-open li:nth-child(1) { animation-delay: 0.08s; }
.mobile-nav.is-open li:nth-child(2) { animation-delay: 0.13s; }
.mobile-nav.is-open li:nth-child(3) { animation-delay: 0.18s; }
.mobile-nav.is-open li:nth-child(4) { animation-delay: 0.23s; }
.mobile-nav.is-open li:nth-child(5) { animation-delay: 0.28s; }
.mobile-nav.is-open li:nth-child(6) { animation-delay: 0.33s; }
.mobile-nav a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border-radius: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 11vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 900;
  transition: transform 0.3s var(--ease), opacity 0.25s ease;
}
.mobile-nav a::before {
  content: "→";
  font-size: 0.42em;
  line-height: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  opacity: 0.72;
  transform: translateX(6px);
}
.mobile-nav a:hover::before,
.mobile-nav a:focus-visible::before,
.mobile-nav a.is-active::before {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav a.btn {
  margin-top: clamp(14px, 3vh, 28px);
  height: 54px;
  min-width: 154px;
  justify-content: center;
  padding: 0 24px;
  border-radius: 9999px;
  background: #000000;
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}
.mobile-nav a.btn::before { display: none; }
.mobile-nav a.btn .icon { display: none; }

body.nav-open { overflow: hidden; }

@keyframes mobileNavItem {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1023px) {
  .site-header { top: 16px; left: 16px; right: 16px; width: calc(100% - 32px); transform: none; }
  .nav-pill, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .nav-shell {
    background: transparent;
    box-shadow: none;
  }
}


@media (min-width: 1024px) {
  .site-header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    transform: none;
    margin-inline: auto;
    width: fit-content;
    max-width: none;
    z-index: 9999;
  }
  .nav-shell {
    width: fit-content;
    height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    box-shadow: 4px 4px 0 rgba(11,11,12,0.08);
    padding: 6px 8px 6px 16px;
  }
  .brand { margin-right: 28px; }
  .brand-mark { height: 24px; }

  .nav-pill { position: static; transform: none; margin-right: 24px; }
  .nav-pill ul { gap: 22px; }
  .nav-pill a {
    padding: 4px 0;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    color: #111111;
  }
  .nav-pill a:hover { background: none; color: #111111; opacity: 0.6; }
  .nav-pill a.is-active { background: none; color: #111111; opacity: 1; }

  .nav-actions { gap: 8px; }
  .nav-secondary {
    height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-size: 13px;
  }
  .nav-cta {
    height: 38px;
    font-size: 13px;
    border-radius: 12px;
    box-shadow: none;
  }
}


.page-hero {
  padding: 90px 20px 60px;
  position: relative;
}
.page-hero-shell { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.page-hero .display-lg { max-width: 15ch; }
.page-hero-sub { font-size: 18px; color: var(--concrete); max-width: 50ch; margin-top: 22px; }

.page-hero-media {
  padding: 60px 20px 0;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero-media img, .page-hero-media video { width: 100%; border-radius: var(--r); }


.hero-band {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 0 0 60px;
  overflow: hidden;
}
.hero-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.35) 0%, rgba(11,11,12,0.15) 40%, rgba(11,11,12,0.88) 100%);
}
.hero-band .site-header { padding-bottom: 0; }
.hero-band-content { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 20px; color: var(--paper); }
.hero-band .eyebrow { color: rgba(250,250,247,0.72); }
.hero-band .display-lg { color: var(--paper); max-width: 16ch; }
.hero-band-sub { color: rgba(250,250,247,0.72); font-size: 17px; max-width: 48ch; margin-top: 20px; }


.work-hero {
  min-height: clamp(650px, 78vh, 840px);
  background-position: center center;
}
.work-hero::before {
  background:
    linear-gradient(90deg, rgba(11,11,12,0.02) 0%, rgba(11,11,12,0.02) 38%, rgba(11,11,12,0.76) 74%, rgba(11,11,12,0.9) 100%),
    linear-gradient(180deg, rgba(11,11,12,0.18) 0%, rgba(11,11,12,0.04) 44%, rgba(11,11,12,0.5) 100%);
}
.work-hero .hero-band-content {
  width: 100%;
  padding-left: clamp(470px, 52vw, 720px);
}
.work-hero .display-lg {
  font-size: clamp(3.25rem, 6.4vw, 6.7rem);
  line-height: 0.9;
  max-width: 9ch;
}
.work-hero .hero-band-sub { color: rgba(255,255,255,0.84); }

@media (max-width: 900px) {
  .work-hero {
    min-height: 720px;
    background-position: 31% center;
  }
  .work-hero::before {
    background: linear-gradient(180deg, rgba(11,11,12,0.18) 0%, rgba(11,11,12,0.12) 38%, rgba(11,11,12,0.92) 82%, rgba(11,11,12,0.98) 100%);
  }
  .work-hero .hero-band-content { padding: 0 20px; }
  .work-hero .display-lg { font-size: clamp(3rem, 13vw, 5.2rem); max-width: 10ch; }
}


.about-hero {
  min-height: clamp(680px, 80vh, 860px);
  padding-bottom: 72px;
  background: var(--ink);
}
.about-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,11,12,0.02) 0%, rgba(11,11,12,0.08) 38%, rgba(11,11,12,0.8) 72%, rgba(11,11,12,0.94) 100%),
    linear-gradient(180deg, rgba(11,11,12,0.16) 0%, rgba(11,11,12,0.02) 48%, rgba(11,11,12,0.44) 100%);
}
.about-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero .hero-band-content {
  width: 100%;
  padding-left: clamp(610px, 54vw, 780px);
  padding-right: 20px;
}
.about-hero .display-lg {
  max-width: 13ch;
  font-size: clamp(3.15rem, 5.7vw, 6rem);
  line-height: 0.9;
}
.about-hero .hero-band-sub { color: rgba(255,255,255,0.82); }

@media (max-width: 900px) {
  .about-hero {
    display: block;
    min-height: 0;
    padding: 0;
  }
  .about-hero::before { content: none; }
  .about-hero-video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
  .about-hero .hero-band-content {
    width: 100%;
    padding: 38px 20px 54px;
    background: var(--ink);
  }
  .about-hero .display-lg {
    max-width: 12ch;
    font-size: clamp(2.8rem, 12vw, 5.2rem);
  }
}


.hero { padding: 46px 20px 90px; overflow: hidden; }
.hero-shell { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 22px; align-items: center; }
.hero-title {
  font-size: clamp(2.7rem, 5.9vw, 5.8rem);
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 12ch;
}
.hero-sub { font-size: 18px; color: var(--concrete); max-width: 46ch; line-height: 1.6; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-showcase-art {
  width: min(720px, 52vw);
  max-width: none;
  height: auto;
  object-fit: contain;
}
.hero-frame { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 8 / 5; }

@media (max-width: 980px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-title { max-width: 12ch; }
  .hero-visual-showcase { min-height: auto; }
  .hero-showcase-art { width: min(100%, 760px); margin-right: 0; }
}
@media (max-width: 560px) {
  .hero { padding: 36px 16px 70px; }
  .hero-title { font-size: 2.95rem; max-width: 11ch; }
}


.story { padding: 10px 20px 90px; }
.story-shell { max-width: var(--max); margin: 0 auto; }
.story-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.story-body p { font-size: 17px; color: var(--concrete); line-height: 1.7; margin-bottom: 18px; max-width: 60ch; }
.story-body .link-arrow { color: var(--ink); }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; gap: 20px; } }


.about-intro { padding-top: 110px; }
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}
.about-intro .story-body { max-width: 680px; }
.about-capabilities { padding-top: 0; }
.about-process {
  background: var(--ink);
  color: var(--paper);
}
.about-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}
.about-process-copy .eyebrow { color: rgba(250,250,247,0.58); }
.about-process-copy h2 { max-width: 11ch; }
.about-process-copy > p:last-child {
  max-width: 48ch;
  margin-top: 24px;
  color: rgba(250,250,247,0.68);
  font-size: 16px;
  line-height: 1.7;
}
.about-process-media {
  overflow: hidden;
  border: 1px solid rgba(250,250,247,0.16);
  border-radius: var(--r);
  background: #17191c;
}
.about-process-media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 860px) {
  .about-intro { padding-top: 78px; }
  .about-intro-grid,
  .about-process-grid { grid-template-columns: 1fr; }
  .about-intro-grid { gap: 28px; }
  .about-process-grid { gap: 34px; }
}


.offer { padding: 10px 20px 100px; }
.offer-shell { max-width: var(--max); margin: 0 auto; }
.offer-heading { max-width: 16ch; margin-bottom: 16px; }
.offer-lede { font-size: 17px; color: var(--concrete); max-width: 56ch; line-height: 1.6; margin-bottom: 40px; }

.bento { display: grid; grid-template-columns: 1fr; gap: 18px; }
.premium-bento {
  align-items: stretch;
}
.bento-card {
  position: relative;
  border-radius: 24px;
  min-height: 250px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  border: 1px solid rgba(11,11,12,0.08);
  box-shadow: none;
  transition: transform 0.32s var(--ease);
}
.bento-card:hover {
  transform: translateY(-2px);
}
.bento-card.has-bg { background-size: cover; background-position: center; }
.bento-card::before {
  content: none;
}
.bento-card:hover::before { transform: none; }
.bento-copy {
  position: relative;
  z-index: 2;
  padding: 30px;
}
.bento-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 9999px;
  background: rgba(11,11,12,0.06);
  color: rgba(11,11,12,0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bento-copy h3,
.bento-overlay h3 {
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
}
.bento-copy p {
  color: var(--concrete);
  line-height: 1.55;
  margin-top: 14px;
  max-width: 34ch;
}
.bento-overlay { position: relative; z-index: 1; padding: 24px; color: var(--paper); }
.bento-overlay h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; text-transform: none; margin-bottom: 6px; }
.bento-overlay p { font-size: 14px; color: rgba(250,250,247,0.78); line-height: 1.5; max-width: 34ch; }

.bento-feature {
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  background: #f3d7df;
}
.bento-feature .bento-copy h3 { max-width: 12ch; }
.bento-browser {
  position: relative;
  z-index: 1;
  width: calc(100% - 52px);
  margin: 0 26px 26px;
  border: 8px solid #111111;
  border-top-width: 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(11,11,12,0.14);
}
.bento-browser::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 16px;
  width: 46px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.26);
}
.bento-browser img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  display: block;
}
.bento-tags {
  min-height: 270px;
  color: #ffffff;
  background: #0b2a62;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-tags .bento-kicker {
  color: #ffffff;
  background: #2357ad;
  border: 0;
}
.bento-tags .bento-copy h3 { color: #ffffff; }
.tag-cloud {
  position: relative;
  inset: auto;
  min-height: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 28px 28px;
}
.tag-cloud span {
  position: static;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 9999px;
  color: #ffffff;
  background: #2357ad;
  border: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
}

.bento-image {
  min-height: 270px;
  background: #f7f6f0;
  display: grid;
  padding: 0;
}
.bento-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.bento-metric {
  min-height: 270px;
  display: block;
  padding: 28px;
  background: #ffffff;
}
.avatar-row {
  display: flex;
  margin-bottom: 36px;
}
.avatar-row span {
  width: 42px;
  height: 42px;
  margin-right: -10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efeee7;
  border: 2px solid #ffffff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
}
.avatar-row span:nth-child(2) { background: #dce5ef; }
.avatar-row span:nth-child(3) { background: #f1ddd7; }
.avatar-row span img { width: 72%; height: 72%; object-fit: contain; }
.metric-number {
  font-size: 4.7rem;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.metric-label {
  max-width: 25ch;
  margin-top: 18px;
  color: var(--concrete);
  font-size: 14px;
  line-height: 1.5;
}

.bento-brand {
  min-height: 270px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 10px;
  background: #faf6ec;
  padding: 16px;
}
.mini-poster {
  height: 100%;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
}
.mini-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-brand .bento-copy { padding: 18px; }

@media (max-width: 640px) {
  .bento-card { border-radius: 20px; }
  .bento-copy { padding: 24px; }
  .bento-feature { min-height: 500px; }
  .bento-brand { grid-template-columns: 1fr; }
  .mini-poster { min-height: 180px; }
}

@media (min-width: 700px) and (max-width: 899px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .bento-feature { grid-column: 1 / -1; }
  .bento-feature { min-height: 560px; }
  .bento-brand { grid-template-columns: 1fr; }
}

@media (min-width: 900px) {
  .bento { grid-template-columns: repeat(12, 1fr); grid-template-rows: 280px 300px 300px; gap: 16px; }
  .bento-feature { grid-column: 1 / 7; grid-row: 1 / 3; }
  .bento-tags { grid-column: 7 / 13; grid-row: 1 / 2; }
  .bento-image { grid-column: 7 / 10; grid-row: 2 / 3; }
  .bento-metric { grid-column: 10 / 13; grid-row: 2 / 3; }
  .bento-brand { grid-column: 1 / 13; grid-row: 3 / 4; grid-template-columns: 0.7fr 1.3fr; }
  .bento-brand .bento-copy h3 { max-width: 19ch; }
}


.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}
.faq-item,
.policy-panel {
  border: 1px solid rgba(11,11,12,0.08);
  border-radius: 28px;
  background: #ffffff;
  padding: 28px;
  box-shadow: none;
}
.faq-item h2,
.policy-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
}
.faq-item p,
.policy-panel p,
.policy-panel li {
  color: var(--concrete);
  line-height: 1.7;
  font-size: 16px;
}
.policy-grid {
  display: grid;
  gap: 18px;
}
.terms-grid {
  max-width: 980px;
  margin: 0 auto;
}
.policy-updated {
  margin-top: 18px;
  color: var(--concrete);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.policy-panel ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 0;
}
.policy-panel a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.policy-panel a:hover { text-decoration-thickness: 2px; }


.clients { padding: 10px 20px 90px; }
.clients-shell { max-width: var(--max); margin: 0 auto; }
.clients .eyebrow { margin-bottom: 0; }
.marquee { overflow: hidden; margin-top: 28px; -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 68px; width: max-content; animation: marquee-scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 44px; width: auto; flex-shrink: 0; opacity: 0.8; transition: opacity 0.3s ease, filter 0.3s ease; filter: grayscale(1); }
.marquee-track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) { .marquee-track img { height: 34px; } .marquee-track { gap: 44px; } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; transform: none !important; }
}


.cta-band { padding: 40px 20px 110px; text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-shell { max-width: var(--max); margin: 0 auto; padding-top: 70px; }
.cta-shell .display { margin-bottom: 26px; }
.cta-shell p { color: var(--concrete); font-size: 16px; margin-bottom: 34px; }


.section { padding: 90px 20px; }
.section-tight { padding: 50px 20px 90px; }
.section-shell { max-width: var(--max); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
@media (min-width: 860px) { .section-head { grid-template-columns: 1.1fr 0.9fr; align-items: end; } }
.section-head p { font-size: 17px; color: var(--concrete); line-height: 1.6; max-width: 54ch; }


.work-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
.work-item { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 860px) { .work-item { grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; } .work-item.reverse { direction: rtl; } .work-item.reverse > * { direction: ltr; } }
.work-media { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--paper-dim); }
.work-media picture { display: block; }
.work-media img, .work-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--concrete); margin-bottom: 14px; }
.work-item h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); text-transform: none; letter-spacing: -0.02em; margin-bottom: 14px; }
.work-item p { color: var(--concrete); font-size: 16px; line-height: 1.65; max-width: 50ch; }
.work-item .link-arrow { margin-top: 20px; }


@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  body.motion-enabled .work-showcase {
    overflow: hidden;
    overflow: clip;
    padding-inline: 0;
  }
  body.motion-enabled .work-showcase .section-shell {
    width: 100%;
    max-width: none;
  }
  body.motion-enabled .work-showcase .work-grid {
    display: flex;
    width: max-content;
    gap: 32px;
    padding-inline: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  }
  body.motion-enabled .work-showcase .work-item {
    flex: 0 0 min(82vw, 1120px);
    width: min(82vw, 1120px);
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: calc(var(--r) + 5px);
    background: var(--white);
  }
}


.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
@media (min-width: 900px) {
  .service-row {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 470px);
    gap: 44px;
  }
}
.service-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-row h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); text-transform: none; letter-spacing: -0.02em; }
.service-row p { color: var(--concrete); font-size: 16px; line-height: 1.65; max-width: 50ch; }
.service-media {
  margin: 0;
  min-height: 220px;
  border-radius: calc(var(--r) + 4px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f4f2eb 0%, #efede6 100%);
  padding: clamp(14px, 2.2vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.service-media--dark {
  background: linear-gradient(180deg, #111316 0%, #070809 100%);
  border-color: #17191c;
}
.service-media--neutral {
  background: linear-gradient(180deg, #f0f0f0 0%, #e6e6e6 100%);
}
.service-media--logo img {
  max-width: 88%;
  max-height: 160px;
  width: auto;
  height: auto;
}
@media (max-width: 899px) {
  .service-media { min-height: 190px; }
}
@media (min-width: 1200px) {
  .service-media { min-height: 260px; }
}


.pillars { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { padding: 34px 24px; border-bottom: 1px solid var(--line); }
@media (min-width: 700px) { .pillar { border-bottom: none; border-right: 1px solid var(--line); } .pillar:last-child { border-right: none; } }
.pillar h4 { font-size: 22px; text-transform: none; letter-spacing: -0.02em; margin-bottom: 6px; }
.pillar p { font-size: 14px; color: var(--concrete); }


.contact-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-info h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--concrete); margin-bottom: 10px; font-weight: 700; }
.contact-info .big-link { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.02em; display: inline-block; margin-bottom: 40px; border-bottom: 2px solid var(--ink); padding-bottom: 4px; }
.contact-info-block { margin-bottom: 8px; }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--concrete); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
  transition: none;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--ink); }
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] { border-color: #b42318; }
.form-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #b42318;
  font-size: 12px;
  line-height: 1.4;
}
.form-status {
  display: none;
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.45;
}
.form-status:not(:empty) { display: block; }
.form-status--success { color: #0b5b35; background: #eaf7ef; border: 1px solid #b9e3c8; }
.form-status--error { color: #8d2118; background: #fff0ee; border: 1px solid #f1c2bc; }
.contact-form .btn:disabled { cursor: wait; opacity: 0.62; transform: none; }
.form-note { font-size: 13.5px; color: var(--concrete); margin-top: 16px; }


.site-footer { background: var(--ink); color: var(--paper); padding: 70px 20px 26px; }
.footer-shell { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(250,250,247,0.14); }
.footer-mark {
  width: min(170px, 100%);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}
.footer-brand p { color: rgba(250,250,247,0.55); font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
.footer-col h3 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,250,247,0.5); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 15px; font-weight: 500; transition: opacity 0.2s ease; }
.footer-col a:hover { opacity: 0.6; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 20px; font-size: 13px; color: rgba(250,250,247,0.4); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
@media (max-width: 780px) { .footer-shell { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-shell { grid-template-columns: 1fr; } }
