@font-face {
  font-family: "Saans";
  src: url("https://framerusercontent.com/assets/2ePx9C44uWqd5FuND0W8jPcBvgU.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Saans";
  src: url("https://framerusercontent.com/assets/qG6STcJBQgabfGPrRwrTSnECve8.woff2") format("woff2");
  font-weight: 700;
}

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --slate: #F1F5F9;
  --muted: #64748B;
  --line: rgba(10, 10, 10, 0.14);
  --blue: #1D4ED8;
  --orange: #FF5A1F;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Saans", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.cursor {
  position: fixed;
  z-index: 9999;
  width: 16px;
  height: 16px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, background 160ms ease;
}

.cursor.is-active {
  width: 42px;
  height: 42px;
  background: rgba(255, 90, 31, 0.1);
}

.site-header,
.menu-top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 72px);
  padding: 0 clamp(28px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  color: var(--black);
}

.site-header {
  transition: transform 320ms ease, opacity 320ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.menu-top {
  z-index: 310;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand img {
  display: block;
  width: 45px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(34px, 4vw, 64px);
  margin-left: auto;
}

.header-nav a {
  position: relative;
  color: var(--black);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button-primary {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: background 220ms ease, transform 220ms ease;
}

.header-cta:hover,
.button-primary:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.admin-only {
  display: none !important;
}

.is-admin .admin-only {
  display: inline-flex !important;
}

.is-admin .menu-links .admin-only,
.is-admin .footer-grid .admin-only {
  display: block !important;
}

.admin-nav-link {
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-nav-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.button-secondary {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 14px;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  padding: 8px 8px 8px 16px;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 14px;
}

.menu-toggle i {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--blue);
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.menu-toggle i::before {
  top: 16px;
}

.menu-toggle i::after {
  top: 24px;
}

.menu-toggle.close i::before {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle.close i::after {
  top: 20px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  transform: translateY(-100%);
  transition: transform 700ms cubic-bezier(0.32, 0.01, 0, 1);
}

.menu-panel.is-open {
  transform: translateY(0);
}

.menu-links {
  display: grid;
  gap: 2vh;
  width: min(920px, 88vw);
}

.menu-links a {
  position: relative;
  font-size: clamp(56px, 10vw, 148px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.menu-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.07em;
  width: 0;
  height: 0.08em;
  background: var(--orange);
  transition: width 300ms ease;
}

.menu-links a:hover::after {
  width: 100%;
}

.menu-note {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 36px;
  max-width: 320px;
  color: var(--muted);
  line-height: 1.5;
}

.section-dark {
  background: var(--slate);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  align-items: end;
  padding: 160px clamp(20px, 4vw, 58px) 44px;
}

.hero-logo-motion {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 0;
  width: clamp(320px, 42vw, 640px);
  max-height: 74vh;
  object-fit: contain;
  opacity: 0.34;
  filter: grayscale(1) contrast(0.92) brightness(0.96);
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 45%;
  width: clamp(330px, 48vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(29, 78, 216, 0.28);
  border-radius: 50%;
  opacity: 0.84;
  transform: translate(-50%, -50%);
  animation: hero-spin 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(29, 78, 216, 0.3);
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 14%;
}

.hero-orbit::after {
  width: clamp(74px, 8vw, 124px);
  height: clamp(74px, 8vw, 124px);
  left: 50%;
  top: 50%;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
}

@keyframes hero-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: calc(100vh - 204px);
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  gap: 24px;
}

.hero-content .eyebrow {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}

.hero-content h1 {
  grid-column: 1;
  grid-row: 3;
}

.hero-content .round-link {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
}

.eyebrow,
.small-title,
.subscribe {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 7.2vw, 126px);
  line-height: 0.86;
  letter-spacing: -0.064em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.6vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.round-link {
  display: inline-flex;
  width: auto;
  min-width: 168px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 0 32px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  transition: background 260ms ease, transform 260ms ease;
}

.round-link:hover {
  background: var(--black);
  transform: translateY(-4px);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(44px, 6vw, 74px) clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(24px, 3.6vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.052em;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.trust-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  animation: trust-scroll 24s linear infinite;
}

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

.trust-track span {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  color: rgba(10, 10, 10, 0.38);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.trust-track span:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.work,
.differentiator,
.final-cta {
  padding: clamp(110px, 14vw, 210px) clamp(20px, 4vw, 58px);
}

.services {
  padding: clamp(96px, 9vh, 118px) clamp(20px, 4vw, 58px) clamp(34px, 5vh, 58px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.section-head h2 {
  max-width: 1020px;
}

.section-head .small-title {
  flex: 0 0 auto;
  margin-bottom: 14px;
}

.services {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  align-content: space-between;
  background: var(--slate);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-head {
  position: relative;
  z-index: 1;
}

.services-head h2 {
  max-width: 980px;
  color: rgba(10, 10, 10, 0.42);
  font-size: clamp(46px, 6.4vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.064em;
}

.services-visual {
  position: absolute;
  top: clamp(112px, 15vh, 170px);
  right: clamp(18px, 5vw, 82px);
  width: clamp(160px, 18vw, 290px);
  height: clamp(160px, 18vw, 290px);
}

.services-visual span {
  position: absolute;
  left: 50%;
  width: 78%;
  height: 18%;
  border: 1px solid var(--blue);
  background: var(--blue);
  transform: translateX(-50%) rotate(-3deg);
  transition: transform 320ms ease;
}

.services-visual span:nth-child(1) {
  top: 18%;
  border-radius: 44px 44px 14px 14px;
}

.services-visual span:nth-child(2) {
  top: 42%;
}

.services-visual span:nth-child(3) {
  top: 66%;
  border-radius: 14px 14px 44px 44px;
}

.services:hover .services-visual span:nth-child(1) {
  transform: translateX(-50%) translateY(-8px) rotate(-5deg);
}

.services:hover .services-visual span:nth-child(2) {
  transform: translateX(-50%) rotate(1deg);
}

.services:hover .services-visual span:nth-child(3) {
  transform: translateX(-50%) translateY(8px) rotate(-5deg);
}

.services-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.9fr) auto;
  gap: clamp(26px, 4vw, 76px);
  align-items: end;
}

.service-list p {
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.services-button {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: clamp(18px, 1.6vw, 28px);
  letter-spacing: -0.04em;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.services-button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.differentiator p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.34;
}

.work {
  background: var(--black);
  color: var(--white);
}

.work-title {
  margin-bottom: clamp(42px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.36);
  font-size: clamp(56px, 9vw, 142px);
  line-height: 0.8;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px) clamp(18px, 2.4vw, 32px);
}

.case-card {
  display: block;
  color: var(--white);
  outline: 0;
}

.case-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  filter: grayscale(1) contrast(1.08);
  transition: transform 650ms cubic-bezier(0.32, 0.01, 0, 1), filter 420ms ease, border-color 420ms ease;
}

.case-card:hover img {
  transform: scale(0.985);
  border-color: var(--orange);
  filter: grayscale(0) contrast(1);
}

.case-card span,
.case-card p,
.case-card b {
  display: inline;
  margin-top: 10px;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.case-card b {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 700;
}

.case-card p {
  color: rgba(255, 255, 255, 0.72);
}

.case-card p::before,
.case-card b::before {
  content: " / ";
  color: rgba(255, 255, 255, 0.34);
}

.more-row {
  display: flex;
  justify-content: center;
  padding-top: clamp(34px, 5vw, 56px);
}

.work-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.work-button:hover,
.text-link:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.differentiator {
  background: var(--white);
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(70px, 8vw, 118px);
}

.scroll-divider {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: clamp(150px, 19vw, 280px);
  padding: 0;
  background: var(--white);
}

.wave-divider-asset {
  position: relative;
  width: 100vw;
  max-width: none;
  aspect-ratio: 760 / 150;
  transform: translateY(0) rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  filter: none;
  transition: filter 260ms ease, transform 260ms ease;
}

.wave-divider-asset:hover {
  filter: drop-shadow(0 14px 18px rgba(255, 90, 31, 0.12));
  transform: translateY(-2px) rotateX(2deg);
}

.wave-divider-asset svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wave-back,
.wave-front,
.wave-accent {
  transition: transform 260ms ease, opacity 260ms ease;
  transform-box: fill-box;
  transform-origin: center;
}

.wave-back {
  fill: rgba(29, 78, 216, 0.13);
  animation: wave-back-float 8s ease-in-out infinite;
}

.wave-front {
  fill: rgba(29, 78, 216, 0.48);
  animation: wave-front-float 7s ease-in-out infinite;
}

.wave-accent {
  fill: none;
  stroke: var(--orange);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 0.08 0.92;
  stroke-dashoffset: 1;
  opacity: 0.9;
  animation: wave-accent-run 4.4s linear infinite;
}

.wave-divider-asset:hover .wave-back {
  opacity: 0.92;
  transform: translateY(-5px) scaleX(1.02);
}

.wave-divider-asset:hover .wave-front {
  transform: translateY(5px) scaleX(1.025);
}

@keyframes wave-back-float {
  0%,
  100% {
    transform: translateY(0) skewX(0deg);
  }

  50% {
    transform: translateY(-5px) skewX(-1.4deg);
  }
}

@keyframes wave-front-float {
  0%,
  100% {
    transform: translateY(0) skewX(0deg);
  }

  50% {
    transform: translateY(6px) skewX(1.6deg);
  }
}

@keyframes wave-accent-run {
  to {
    stroke-dashoffset: 0;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
}

.split p {
  margin-bottom: 22px;
  font-size: clamp(22px, 2.8vw, 46px);
  line-height: 1;
  letter-spacing: -0.048em;
}

.final-cta {
  display: grid;
  min-height: 680px;
  place-items: center;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.newsletter-inner {
  width: min(920px, 100%);
}

.newsletter-inner h2 {
  margin-bottom: 28px;
}

.newsletter-inner h3 {
  margin-bottom: 38px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-section {
  padding: clamp(74px, 9vw, 132px) clamp(20px, 4vw, 58px);
  background: var(--white);
  color: var(--black);
}

.faq-container {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  gap: clamp(44px, 8vw, 128px);
}

.faq-title {
  flex: 0 0 auto;
  width: 30%;
}

.faq-title h2 {
  margin: 0;
  color: rgba(10, 10, 10, 0.16);
  font-size: clamp(82px, 12vw, 168px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.faq-accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
  padding-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid transparent;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: left;
  transition: color 0.3s ease, transform 0.3s ease;
}

.faq-question:hover {
  color: var(--blue);
  transform: translateX(8px);
}

.icon {
  display: inline-block;
  width: 24px;
  margin-right: clamp(20px, 2vw, 30px);
  color: var(--orange);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  line-height: 0.75;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 1.5rem calc(24px + clamp(20px, 2vw, 30px));
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.faq-item.active .icon {
  color: var(--blue);
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 220px;
  opacity: 1;
}

.footer {
  padding: clamp(74px, 10vw, 130px) clamp(20px, 4vw, 58px) 28px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 28px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 28px;
}

.brand.footer-brand img {
  width: clamp(190px, 17vw, 280px);
  height: auto;
}

.footer-brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-grid p {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 90px;
  color: var(--muted);
  font-size: 14px;
}

.services-page {
  background: var(--white);
}

.services-page .site-header {
  background: rgba(255, 255, 255, 0.96);
}

.services-hero {
  display: grid;
  min-height: 100vh;
  align-content: space-between;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(112px, 12vw, 170px) clamp(20px, 4vw, 58px) clamp(36px, 5vw, 68px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.services-hero h1 {
  max-width: 1540px;
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  color: rgba(10, 10, 10, 0.28);
  font-size: clamp(92px, 17vw, 300px);
  line-height: 0.76;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.services-hero-bottom {
  display: block;
}

.services-hero-bottom p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(26px, 2.8vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.execution-section {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: start;
  padding: clamp(92px, 12vw, 170px) clamp(20px, 4vw, 58px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.execution-media {
  position: sticky;
  top: 124px;
}

.execution-image {
  display: grid;
  width: 100%;
  min-height: clamp(560px, 72vh, 840px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 90, 31, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(241, 245, 249, 0.96));
  border: 1px solid var(--line);
}

.execution-image span {
  color: rgba(10, 10, 10, 0.1);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(58px, 8vw, 138px);
  font-weight: 700;
  letter-spacing: -0.08em;
  transform: rotate(-90deg);
}

.execution-media p {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.execution-content {
  padding: clamp(12px, 2vw, 30px) 0 clamp(70px, 8vw, 120px);
}

.execution-content h2 {
  margin-bottom: clamp(34px, 5vw, 70px);
  color: var(--black);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(78px, 11vw, 190px);
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.execution-intro {
  max-width: 780px;
  margin-bottom: clamp(70px, 9vw, 132px);
  color: var(--black);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.service-group {
  margin-bottom: clamp(54px, 7vw, 104px);
}

.service-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--black);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-group h3 span {
  display: block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--blue);
}

.service-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.why-us-grid {
  padding: clamp(110px, 14vw, 210px) clamp(20px, 4vw, 58px);
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  min-height: clamp(320px, 34vw, 520px);
  padding: clamp(24px, 3.4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--slate);
  transition: background 260ms ease, transform 260ms ease;
}

.benefit-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.benefit-card span {
  display: block;
  margin-bottom: clamp(70px, 8vw, 130px);
  color: var(--blue);
  font-size: clamp(42px, 5.5vw, 96px);
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.benefit-card h3 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 74px);
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.benefit-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.34;
  letter-spacing: -0.03em;
}

.services-final {
  display: grid;
  min-height: 680px;
  place-items: center;
  padding: clamp(90px, 12vw, 170px) clamp(20px, 4vw, 58px);
  text-align: center;
}

.work-page {
  background: var(--white);
}

.work-hero {
  display: grid;
  min-height: 100vh;
  align-content: space-between;
  padding: clamp(112px, 12vw, 170px) clamp(20px, 4vw, 58px) clamp(36px, 5vw, 68px);
  background: var(--white);
  color: var(--black);
}

.work-hero h1 {
  max-width: 1500px;
  margin: 0;
  color: rgba(10, 10, 10, 0.28);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(92px, 17vw, 300px);
  line-height: 0.76;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.work-hero p {
  max-width: 920px;
  margin: clamp(100px, 16vw, 230px) 0 0;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.work-hero p span {
  color: var(--black);
}

.work-library {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 4vw, 58px) clamp(110px, 14vw, 210px);
  background: var(--slate);
}

.filter-wrap {
  position: relative;
  z-index: 3;
  width: min(430px, 100%);
  margin: 0 auto clamp(48px, 7vw, 96px);
}

.filter-toggle {
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 50px rgba(10, 10, 10, 0.08);
  cursor: pointer;
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(19px, 1.5vw, 26px);
  letter-spacing: -0.04em;
}

.filter-toggle i {
  display: block;
  width: 17px;
  height: 17px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(45deg) translateY(4px);
  transition: transform 260ms ease;
}

.filter-wrap.is-open .filter-toggle i {
  transform: rotate(225deg) translateY(-4px);
}

.filter-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.filter-wrap.is-open .filter-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.filter-menu button {
  padding: 17px 24px;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.filter-menu button:last-child {
  border-bottom: 0;
}

.filter-menu button:hover,
.filter-menu button.active {
  background: var(--slate);
  color: var(--blue);
}

.work-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 64px) clamp(24px, 3vw, 42px);
}

.library-card {
  display: block;
  color: var(--black);
  transition: opacity 260ms ease, transform 260ms ease;
}

.library-card.is-hidden {
  display: none;
}

.library-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: grayscale(1) contrast(1.04);
  transition: transform 620ms cubic-bezier(0.32, 0.01, 0, 1), filter 320ms ease, border-color 320ms ease;
}

.library-card:hover {
  transform: translateY(-4px);
}

.library-card:hover img {
  border-color: var(--orange);
  filter: grayscale(0) contrast(1);
  transform: scale(0.985);
}

.library-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.library-card strong {
  color: var(--black);
  font-weight: 700;
}

.about-page {
  background: var(--white);
}

.about-hero {
  min-height: 100vh;
  padding: clamp(124px, 12vw, 170px) clamp(20px, 4vw, 58px) clamp(64px, 8vw, 120px);
  background: var(--white);
}

.about-hero-inner {
  display: grid;
  min-height: calc(100vh - 240px);
  align-content: space-between;
}

.about-hero h1 {
  margin: 0;
  color: rgba(10, 10, 10, 0.28);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(112px, 18vw, 292px);
  line-height: 0.74;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.about-hero-copy {
  max-width: 650px;
}

.about-hero-copy p {
  margin-bottom: 30px;
  color: var(--black);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.founder-section {
  padding: clamp(104px, 13vw, 190px) clamp(20px, 4vw, 58px);
  background: var(--slate);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-top {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 9vw, 160px);
  align-items: start;
  margin-bottom: clamp(96px, 13vw, 190px);
}

.founder-top h2 {
  margin: 0;
  color: rgba(10, 10, 10, 0.24);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(72px, 8.8vw, 150px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.founder-top p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(21px, 2.05vw, 36px);
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.founder-top p strong {
  color: var(--black);
  font-weight: 700;
}

.founder-card {
  width: min(460px, 100%);
  margin-left: auto;
  margin-right: clamp(0px, 18vw, 300px);
}

.founder-image {
  display: grid;
  width: 100%;
  aspect-ratio: 0.78 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 90, 31, 0.14), transparent 20%),
    linear-gradient(135deg, rgba(29, 78, 216, 0.14), rgba(255, 255, 255, 0.8));
}

.founder-image span {
  color: rgba(10, 10, 10, 0.16);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(96px, 10vw, 170px);
  line-height: 1;
  letter-spacing: -0.09em;
}

.founder-card h3 {
  margin: 16px 0 3px;
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(21px, 1.8vw, 30px);
  letter-spacing: -0.045em;
}

.founder-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
}

.founder-card a {
  color: var(--black);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-weight: 700;
  transition: color 220ms ease;
}

.founder-card a:hover {
  color: var(--blue);
}

.approach-section {
  padding: clamp(86px, 11vw, 160px) clamp(20px, 4vw, 58px) clamp(110px, 14vw, 210px);
  background: var(--white);
}

.approach-section > h2 {
  margin: 0 0 clamp(80px, 12vw, 160px);
  color: rgba(10, 10, 10, 0.28);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(86px, 15vw, 248px);
  line-height: 0.76;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(42px, 8vw, 150px);
  align-items: start;
}

.approach-visual {
  position: sticky;
  top: 132px;
  display: grid;
  width: clamp(170px, 20vw, 320px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
}

.approach-visual::before,
.approach-visual::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(29, 78, 216, 0.42);
  border-radius: 50%;
}

.approach-visual::after {
  inset: 32%;
  background: rgba(29, 78, 216, 0.1);
}

.approach-visual span {
  position: relative;
  z-index: 1;
  font-size: clamp(80px, 9vw, 150px);
  line-height: 1;
}

.approach-block {
  margin-bottom: clamp(98px, 13vw, 190px);
}

.approach-block h3 {
  margin-bottom: 24px;
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(27px, 3vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.approach-block p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.blog-page {
  background: var(--white);
}

.blog-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  background: rgba(255, 255, 255, 0.96);
}

.blog-header .brand {
  justify-self: start;
}

.blog-pill-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--slate);
}

.blog-pill-nav a {
  padding: 14px 24px;
  border-radius: 999px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: -0.035em;
  transition: background 180ms ease, color 180ms ease;
}

.blog-pill-nav a:hover,
.blog-pill-nav a.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
}

.blog-nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-search {
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-search::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.nav-search::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 22px;
  width: 12px;
  height: 2px;
  background: var(--black);
  transform: rotate(45deg);
  transform-origin: left center;
}

.blog-hero {
  display: grid;
  min-height: 64vh;
  place-items: center;
  padding: 150px clamp(20px, 4vw, 58px) 90px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.blog-hero h1 {
  margin: 0 0 32px;
  color: var(--black);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-hero p {
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.035em;
  text-align: center;
}

.blog-library {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 4vw, 58px) clamp(110px, 14vw, 210px);
  background: var(--slate);
}

.blog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.blog-tools h2 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 106px);
}

.blog-search {
  position: relative;
  display: block;
}

.blog-search span {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  transform: translateY(-50%);
}

.blog-search span::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 13px;
  width: 10px;
  height: 2px;
  background: var(--muted);
  transform: rotate(45deg);
  transform-origin: left center;
}

.blog-search input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px 0 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  outline: 0;
}

.blog-search input:focus {
  border-color: var(--blue);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 clamp(44px, 6vw, 84px);
}

.blog-categories button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.blog-categories button:hover,
.blog-categories button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px) clamp(24px, 3vw, 42px);
}

.blog-card {
  display: block;
  transition: opacity 220ms ease, transform 220ms ease;
}

.blog-card.is-hidden {
  display: none;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 0.88;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: grayscale(0.55);
  transition: filter 240ms ease, border-color 240ms ease, transform 420ms ease;
}

.blog-card:hover img {
  border-color: var(--orange);
  filter: grayscale(0);
  transform: scale(0.985);
}

.blog-meta {
  margin: 22px 0 14px;
  color: var(--muted);
  font-weight: 700;
}

.blog-card h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1.08;
}

.blog-card p:not(.blog-meta) {
  margin-bottom: 24px;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.38;
}

.blog-card span {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.blog-article-page {
  --article-bg: var(--white);
  --article-panel: var(--slate);
  --article-text: var(--black);
  --article-muted: var(--muted);
  --article-line: var(--line);
  --article-purple: var(--blue);
  background: var(--article-bg);
  color: var(--article-text);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 3px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--article-purple);
}

.article-header {
  border-bottom-color: var(--article-line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--article-text);
}

.article-header .blog-pill-nav {
  background: rgba(241, 245, 249, 0.78);
  border-color: var(--article-line);
}

.article-header .blog-pill-nav a {
  color: var(--article-text);
}

.article-header .blog-pill-nav a:hover,
.article-header .blog-pill-nav a.active {
  background: rgba(29, 78, 216, 0.08);
  color: var(--article-purple);
}

.article-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(132px, 13vw, 180px) 0 clamp(70px, 9vw, 120px);
}

.article-hero {
  margin-bottom: clamp(48px, 7vw, 86px);
}

.article-meta {
  margin: 0 0 18px;
  color: var(--article-muted);
  font-size: 14px;
  font-weight: 700;
}

.article-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.article-title-row h1 {
  margin: 0 0 22px;
  max-width: 760px;
  color: var(--article-text);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.article-title-row span,
.article-title-row p {
  color: var(--article-muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
}

.article-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  filter: grayscale(0.3);
}

.article-body-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 118px;
}

.article-toc p {
  margin: 0 0 14px;
  color: var(--article-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.article-toc nav {
  display: grid;
  gap: 7px;
}

.article-toc a {
  display: block;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--article-muted);
  font-size: 13px;
  line-height: 1.25;
  transition: background 180ms ease, color 180ms ease;
}

.article-toc a:hover,
.article-toc a.active {
  background: rgba(29, 78, 216, 0.1);
  color: var(--article-purple);
}

.article-toc .toc-level-3 {
  padding-left: 24px;
}

.article-content {
  max-width: 720px;
  color: var(--black);
  font-family: "Inter", "Saans", Arial, sans-serif;
}

.article-content-section,
.article-content h2,
.article-content h3 {
  scroll-margin-top: 132px;
}

.article-content h2,
.article-content h3 {
  margin: 0 0 22px;
  color: var(--article-text);
  letter-spacing: -0.045em;
}

.article-content h2 {
  padding-top: 10px;
  font-size: clamp(30px, 3vw, 46px);
}

.article-content h3 {
  padding-top: 8px;
  font-size: clamp(22px, 2vw, 30px);
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

.article-content p {
  margin: 0 0 30px;
}

.article-content ul {
  margin: 0 0 30px;
  padding-left: 22px;
}

.article-section-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 44px;
}

.article-section-media figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--slate);
}

.article-section-media img,
.article-section-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-section-media span {
  display: block;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: clamp(70px, 9vw, 120px) 0 clamp(54px, 7vw, 82px);
}

.article-share span {
  margin-right: 16px;
  font-weight: 800;
}

.article-share button {
  min-height: 34px;
  padding: 0 17px;
  border: 1px solid var(--article-line);
  border-radius: 999px;
  background: var(--white);
  color: var(--article-text);
  cursor: pointer;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-share button:hover {
  border-color: var(--article-purple);
  color: var(--article-purple);
  transform: translateY(-2px);
}

.read-next {
  padding-top: 8px;
}

.read-next h2 {
  margin: 0 0 26px;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.05em;
}

.read-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 34px);
}

.read-next-card {
  display: block;
}

.read-next-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.read-next-card p,
.read-next-card span,
.read-next-card b {
  color: var(--article-muted);
  font-size: 13px;
}

.read-next-card h3 {
  margin: 10px 0 12px;
  color: var(--article-text);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.read-next-card span,
.read-next-card b {
  display: block;
  line-height: 1.5;
}

.read-next-card b {
  margin-top: 22px;
}

.article-error {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.admin-page {
  background: var(--slate);
  color: var(--black);
}

.admin-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 6vw, 90px) 0;
}

.admin-login {
  width: min(520px, 100%);
  margin: 10vh auto 0;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
}

.admin-login img {
  width: 220px;
  margin-bottom: 34px;
}

.admin-login h1,
.admin-topbar h1 {
  margin: 0 0 12px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.admin-login p {
  color: var(--muted);
}

.admin-login form,
.admin-editor {
  display: grid;
  gap: 18px;
}

.admin-page label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-page input,
.admin-page textarea,
.admin-page select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px 16px;
  color: var(--black);
  font: inherit;
}

.admin-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.admin-topbar > div:last-child {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

.admin-tabs button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.admin-tabs button:hover,
.admin-tabs button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.admin-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
}

.admin-panel[hidden],
.admin-panel:not(.active) {
  display: none !important;
}

.admin-post-list,
.admin-editor {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 20px;
}

.admin-post-list {
  align-self: start;
  display: grid;
  gap: 10px;
  position: sticky;
  top: 24px;
}

.admin-post-list button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.admin-post-list button.active {
  border-color: var(--blue);
}

.admin-post-list span,
.admin-post-list small {
  display: block;
}

.admin-post-list span {
  font-weight: 800;
}

.admin-post-list small,
#formMessage,
#projectFormMessage,
#loginMessage {
  color: var(--muted);
}

.admin-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.image-upload input {
  padding: 12px;
}

.markdown-tools {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.markdown-tools button {
  border: 1px solid var(--line);
  background: var(--slate);
  padding: 8px 12px;
  cursor: pointer;
}

.publish-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.publish-toggle input {
  width: auto;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-media-admin {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.cms-section-builder {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--slate);
}

.cms-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.cms-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
}

.cms-helper {
  margin: 0;
  color: var(--muted);
}

#blogSectionsEditor {
  display: grid;
  gap: 16px;
}

.cms-content-section {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cms-section-row,
.cms-section-media-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
}

.cms-media-list {
  display: grid;
  gap: 10px;
}

.cms-media-top,
.cms-section-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.cms-media-top button,
.cms-section-actions button,
.cms-section-media-row button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
}

.cms-section-media-row {
  grid-template-columns: 110px minmax(0, 1fr) minmax(120px, 0.5fr) auto;
}

.project-detail-page {
  background: var(--white);
  color: var(--black);
}

.project-shell {
  padding-top: 96px;
}

.project-detail-hero {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 4vw, 58px) clamp(56px, 7vw, 94px);
  background: var(--white);
}

.project-kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.project-detail-hero h1 {
  max-width: 1520px;
  margin: 0 0 clamp(28px, 4vw, 54px);
  color: rgba(10, 10, 10, 0.38);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(56px, 8vw, 154px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.project-detail-hero > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: grayscale(0.78) contrast(1.05);
}

.project-overview-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(48px, 9vw, 170px);
  padding: clamp(80px, 11vw, 160px) clamp(20px, 4vw, 58px);
  background: var(--slate);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-overview-section h2 {
  margin: 0 0 34px;
  color: var(--black);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: none;
}

.project-overview-copy p {
  max-width: 1180px;
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.project-overview-copy p:first-of-type::first-line,
.project-overview-copy strong {
  color: var(--black);
  font-weight: 800;
}

.project-overview-copy strong {
  display: block;
  margin-top: clamp(36px, 5vw, 70px);
  font-size: clamp(22px, 1.8vw, 30px);
  letter-spacing: -0.04em;
}

.project-details-list {
  align-self: start;
  position: sticky;
  top: 120px;
}

.project-details-list ul {
  display: grid;
  gap: 12px;
  margin: 0 0 clamp(40px, 5vw, 74px);
  padding: 0;
  list-style: none;
}

.project-details-list li {
  color: var(--muted);
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(16px, 1.25vw, 21px);
}

.tool-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-pills span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 800;
}

.project-media-section {
  padding: clamp(76px, 10vw, 150px) clamp(20px, 4vw, 58px);
  background: var(--white);
}

.project-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.project-media-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--slate);
}

.project-media-item img,
.project-media-item video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: grayscale(0.32);
  transition: filter 260ms ease, transform 560ms cubic-bezier(0.32, 0.01, 0, 1);
}

.project-media-item:hover img,
.project-media-item:hover video {
  filter: grayscale(0);
  transform: scale(1.02);
}

.project-media-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
}

.project-media-3 {
  grid-column: 1 / -1;
}

.project-media-3 img,
.project-media-3 video {
  min-height: clamp(420px, 50vw, 820px);
}

.project-loading {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 4vw, 58px);
  text-align: center;
}

.contact-page {
  background: var(--white);
}

.contact-hero {
  min-height: 100vh;
  padding: clamp(124px, 12vw, 170px) clamp(20px, 4vw, 58px) clamp(64px, 8vw, 120px);
  background: var(--white);
}

.contact-hero > h1 {
  margin: 0 0 clamp(78px, 11vw, 150px);
  color: rgba(10, 10, 10, 0.28);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(88px, 16vw, 278px);
  line-height: 0.76;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 7vw, 130px);
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 64px;
}

.contact-sidebar h2 {
  margin-bottom: 16px;
  font-family: "Inter", "Saans", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-sidebar a {
  color: var(--muted);
  font-size: clamp(20px, 1.7vw, 28px);
  transition: color 220ms ease;
}

.contact-sidebar a:hover {
  color: var(--blue);
}

.contact-main {
  display: grid;
  gap: 12px;
}

.founder-callout,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--slate);
}

.founder-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  padding: clamp(24px, 3vw, 42px);
}

.callout-avatar {
  display: grid;
  width: clamp(86px, 8vw, 132px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: "Satoshi", "Saans", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 52px);
  letter-spacing: -0.08em;
}

.founder-callout p {
  margin: 0 0 8px;
  color: var(--muted);
}

.founder-callout h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 54px);
}

.contact-form {
  display: grid;
  gap: clamp(26px, 3vw, 42px);
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 60px);
}

.contact-form-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.contact-form-intro p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.contact-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend,
.contact-form label {
  color: var(--black);
  font-weight: 700;
}

.contact-form label span {
  color: var(--muted);
  font-weight: 400;
}

.contact-form legend {
  width: 100%;
  margin-bottom: 8px;
}

.contact-form fieldset label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
}

.contact-form fieldset input {
  position: absolute;
  opacity: 0;
}

.contact-form fieldset label:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.contact-form input:not([type="checkbox"]):not([type="range"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  outline: 0;
}

.contact-form input:not([type="checkbox"]):not([type="range"]),
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
}

.contact-form button[type="submit"] {
  justify-self: start;
  cursor: pointer;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(34px, 6vw, 100px);
  padding: clamp(90px, 12vw, 170px) clamp(20px, 4vw, 58px);
  background: var(--slate);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-image {
  min-height: clamp(240px, 28vw, 420px);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.18) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(29, 78, 216, 0.1), rgba(255, 90, 31, 0.08)),
    var(--white);
}

.location-content h2 {
  margin-bottom: clamp(36px, 5vw, 72px);
  color: rgba(10, 10, 10, 0.3);
  font-size: clamp(72px, 11vw, 184px);
}

.location-content > p {
  margin-bottom: 48px;
  color: var(--muted);
  font-size: clamp(20px, 1.7vw, 30px);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 72px;
}

.location-grid strong,
.location-grid span {
  display: block;
}

.location-grid strong {
  margin-bottom: 6px;
}

.location-grid span {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1100ms cubic-bezier(0.32, 0.01, 0, 1), transform 1100ms cubic-bezier(0.32, 0.01, 0, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .cursor {
    display: none;
  }

  .site-header,
  .menu-top {
    min-height: 84px;
    padding: 0 20px;
  }

  .brand img {
    width: 36px;
    height: 46px;
  }

  .header-nav,
  .header-cta,
  .blog-pill-nav,
  .blog-nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 92vh;
    padding-top: 124px;
  }

  .hero-orbit {
    top: 42%;
    width: min(82vw, 460px);
    opacity: 0.55;
  }

  .hero-logo-motion {
    top: 42%;
    width: min(78vw, 430px);
    opacity: 0.28;
  }

  .hero-content {
    min-height: calc(92vh - 168px);
    grid-template-columns: 1fr;
  }

  .hero-content .round-link {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
  }

  .round-link {
    width: auto;
    min-width: 142px;
    min-height: 58px;
  }

  .services {
    min-height: auto;
    padding-top: clamp(92px, 16vw, 126px);
    padding-bottom: clamp(60px, 12vw, 92px);
  }

  .services-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(48vw, 220px);
    height: min(48vw, 220px);
    margin: 26px 0 36px auto;
  }

  .services-bottom {
    grid-template-columns: 1fr;
  }

  .services-button {
    justify-self: start;
  }

  .trust-strip,
  .section-head,
  .split {
    display: block;
  }

  .trust-strip p,
  .section-head h2 {
    margin-top: 22px;
  }

  .work-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-marquee {
    margin-top: 34px;
  }

  .more-row {
    justify-content: flex-start;
  }

  .split div {
    margin-top: 34px;
  }

  .faq-container {
    flex-direction: column;
    gap: 2rem;
  }

  .faq-title {
    width: 100%;
  }

  .faq-title h2 {
    font-size: clamp(72px, 22vw, 112px);
  }

  .copyright {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-hero {
    min-height: 92vh;
    padding-top: 124px;
  }

  .work-hero {
    min-height: 92vh;
    padding-top: 124px;
  }

  .work-hero h1 {
    font-size: clamp(70px, 21vw, 140px);
  }

  .work-hero p {
    margin-top: clamp(76px, 18vw, 130px);
  }

  .about-hero {
    min-height: 92vh;
    padding-top: 124px;
  }

  .about-hero h1 {
    font-size: clamp(86px, 26vw, 150px);
  }

  .blog-header {
    display: flex;
  }

  .blog-hero {
    min-height: 52vh;
    padding-top: 124px;
  }

  .blog-hero h1 {
    font-size: clamp(42px, 13vw, 76px);
    white-space: nowrap;
  }

  .blog-tools,
  .blog-grid,
  .article-section-media,
  .contact-layout,
  .location-section,
  .location-grid,
  .project-overview-section,
  .project-media-grid,
  .article-title-row,
  .article-body-grid,
  .read-next-grid,
  .admin-grid,
  .admin-form-row {
    grid-template-columns: 1fr;
  }

  .article-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 124px;
  }

  .article-toc {
    position: static;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--article-line);
  }

  .project-shell {
    padding-top: 84px;
  }

  .project-details-list {
    position: static;
  }

  .project-detail-hero h1 {
    font-size: clamp(54px, 18vw, 112px);
  }

  .project-media-3 {
    grid-column: auto;
  }

  .article-share {
    justify-content: flex-start;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-post-list {
    position: static;
  }

  .cms-section-row,
  .cms-section-media-row {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 124px;
  }

  .contact-hero > h1 {
    font-size: clamp(62px, 19vw, 118px);
  }

  .founder-callout {
    grid-template-columns: 1fr;
  }

  .contact-form button[type="submit"] {
    justify-self: stretch;
  }

  .services-hero h1 {
    font-size: clamp(58px, 17vw, 118px);
  }

  .execution-section,
  .work-library-grid,
  .founder-top,
  .approach-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .execution-section {
    padding: clamp(76px, 14vw, 120px) 20px;
  }

  .execution-media {
    position: relative;
    top: auto;
  }

  .execution-image {
    min-height: min(82vh, 620px);
  }

  .execution-content h2 {
    font-size: clamp(64px, 17vw, 118px);
  }

  .benefit-grid {
    border-left: 0;
  }

  .benefit-card {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .benefit-card span {
    margin-bottom: 76px;
  }

  .filter-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .founder-card {
    margin-left: 0;
    margin-right: 0;
  }

  .founder-top {
    gap: 42px;
  }

  .founder-top h2 {
    font-size: clamp(64px, 18vw, 104px);
  }

  .approach-section > h2 {
    font-size: clamp(62px, 18vw, 128px);
  }

  .approach-visual {
    position: relative;
    top: auto;
    width: min(62vw, 260px);
  }

  .approach-block {
    margin-bottom: 82px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .cta-row {
    display: grid;
  }
}

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