:root {
  color-scheme: light;
  --cream: #dedcd9;
  --cream-soft: #e8e6e3;
  --paper: #f7f7f7;
  --white: #ffffff;
  --ink-9: #0a0a0a;
  --ink-8: #171717;
  --ink-6: #414958;
  --ink-4: #6d7682;
  --ink-2: #d1d1d1;
  --royal: #2547d0;
  --royal-soft: #476cff;
  --pink: #f45397;
  --cyan: #3ac3ff;
  --yellow: #ffb525;
  --violet: #5648fb;
  --line: rgba(23, 23, 23, 0.14);
  --line-strong: rgba(23, 23, 23, 0.24);
  --max: 1480px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink-8);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(23, 23, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 78%);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  background: rgba(222, 220, 217, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: var(--white);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px 14px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.nav-cta {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 560;
}

.site-nav a {
  color: rgba(23, 23, 23, 0.66);
  transition: color 300ms var(--ease);
}

.site-nav a:hover {
  color: var(--ink-8);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink-8);
  color: var(--cream);
  transition:
    background 420ms var(--ease),
    transform 420ms var(--ease);
}

.nav-cta:hover {
  background: var(--pink);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 122px max(24px, calc((100vw - var(--max)) / 2)) 132px;
  border-bottom: 1px solid var(--line);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(222, 220, 217, 0.98) 0%, rgba(222, 220, 217, 0.86) 36%, rgba(222, 220, 217, 0.42) 64%, rgba(222, 220, 217, 0.18) 100%),
    linear-gradient(180deg, rgba(222, 220, 217, 0.68) 0%, rgba(222, 220, 217, 0.08) 48%, rgba(222, 220, 217, 0.92) 100%);
}

.hero__inner {
  width: min(760px, 100%);
  position: relative;
  z-index: 1;
}

.chip,
.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.chip {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
}

.chip--ink {
  background: var(--ink-8);
  color: var(--cream);
}

.chip--cream {
  border: 1px solid rgba(247, 247, 247, 0.25);
  background: rgba(247, 247, 247, 0.1);
  color: var(--cream);
}

.kicker {
  margin: 0 0 20px;
  color: var(--royal);
}

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

h1,
h2 {
  font-weight: 520;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin: 26px 0 26px;
  max-width: 920px;
  font-size: clamp(4.2rem, 8vw, 7.6rem);
  line-height: 0.96;
}

h1 span {
  color: rgba(23, 23, 23, 0.48);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 5.4rem);
  line-height: 1.02;
}

h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 560;
  letter-spacing: 0;
}

.hero__lede {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--ink-6);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.55;
}

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

.pill {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 620;
  transition:
    background 420ms var(--ease),
    color 420ms var(--ease),
    border-color 420ms var(--ease),
    transform 420ms var(--ease);
}

.pill:hover {
  transform: translateY(-2px);
}

.pill--primary {
  background: var(--ink-8);
  color: var(--cream);
}

.pill--primary:hover {
  background: var(--pink);
}

.pill--outline {
  border: 1px solid var(--line-strong);
  background: rgba(247, 247, 247, 0.22);
  color: var(--ink-8);
}

.pill--outline:hover {
  border-color: var(--ink-8);
  background: var(--paper);
}

.hero__evidence {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  width: min(540px, calc(100% - 48px));
}

.hero__evidence div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: rgba(247, 247, 247, 0.72);
  backdrop-filter: blur(16px);
}

.hero__evidence span,
.card-number {
  color: var(--ink-4);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.hero__evidence strong {
  display: block;
  margin-top: 18px;
  line-height: 1.08;
  font-size: 1.08rem;
  font-weight: 560;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink-8);
  color: var(--cream);
}

.ticker__track {
  width: max-content;
  display: flex;
  gap: 36px;
  padding: 22px 0;
  animation: ticker 34s linear infinite;
}

.ticker__track span {
  white-space: nowrap;
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: rgba(222, 220, 217, 0.72);
}

.ticker__track span:nth-child(4n + 1) {
  color: var(--cyan);
}

.ticker__track span:nth-child(4n + 2) {
  color: var(--pink);
}

.ticker__track span:nth-child(4n + 3) {
  color: var(--yellow);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.section--intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.intro-text {
  margin: 0;
  color: var(--ink-6);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section__header {
  max-width: 820px;
  margin-bottom: 42px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.work-card,
.network-panel {
  position: relative;
  overflow: hidden;
  min-height: 322px;
  padding: 26px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 56px -40px rgba(23, 23, 23, 0.42);
}

.work-card::after,
.network-panel::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  opacity: 0.18;
  transition:
    transform 600ms var(--ease),
    opacity 600ms var(--ease);
}

.work-card:hover::after,
.network-panel:hover::after {
  opacity: 0.34;
  transform: scale(4.8);
}

.work-card h3,
.network-panel h3 {
  margin-top: 82px;
}

.work-card p,
.network-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-6);
  line-height: 1.62;
}

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

.work-card--royal .card-number,
.work-card--royal p,
.work-card--pink .card-number,
.work-card--pink p {
  color: rgba(255, 255, 255, 0.75);
}

.work-card--royal::after {
  background: var(--white);
}

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

.work-card--pink::after {
  background: var(--yellow);
}

.model {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.model__media {
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px -46px rgba(23, 23, 23, 0.55);
}

.model__media img {
  display: block;
  width: 100%;
  height: auto;
}

.model__copy h2 {
  margin-bottom: 36px;
}

.steps {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--royal);
  font-weight: 680;
}

.steps p {
  margin: 0;
  color: var(--ink-6);
  line-height: 1.62;
}

.network {
  padding-top: 82px;
}

.network h2 {
  max-width: 1040px;
  margin-bottom: 44px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.network-panel {
  min-height: 270px;
}

.dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.dot--cyan {
  background: var(--cyan);
}

.dot--pink {
  background: var(--pink);
}

.dot--yellow {
  background: var(--yellow);
}

.closer {
  background: var(--ink-8);
  color: var(--cream);
  padding: 108px max(24px, calc((100vw - var(--max)) / 2));
}

.closer__inner {
  width: min(980px, 100%);
}

.closer h2 {
  margin: 26px 0 36px;
  color: var(--cream);
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 720px;
}

.contact-form input,
.contact-form button {
  min-height: 54px;
  border-radius: 999px;
}

.contact-form input {
  min-width: 0;
  border: 1px solid rgba(247, 247, 247, 0.2);
  background: rgba(247, 247, 247, 0.08);
  color: var(--white);
  padding: 0 18px;
  outline: none;
}

.contact-form input::placeholder {
  color: rgba(222, 220, 217, 0.55);
}

.contact-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(58, 195, 255, 0.16);
}

.contact-form button {
  border: 0;
  background: var(--cream);
  color: var(--ink-8);
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 4px 0 0;
  color: rgba(222, 220, 217, 0.62);
  font-size: 0.92rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 96svh;
    padding-bottom: 260px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__evidence {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .section--intro,
  .model {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 68px;
    padding: 0 14px;
  }

  .brand {
    width: 132px;
    height: 44px;
  }

  .nav-cta {
    height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 108px 14px 320px;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgba(222, 220, 217, 0.98), rgba(222, 220, 217, 0.78)),
      linear-gradient(180deg, rgba(222, 220, 217, 0.58), rgba(222, 220, 217, 0.98));
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .hero__lede,
  .intro-text {
    font-size: 1rem;
  }

  .hero__actions,
  .contact-form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .pill,
  .contact-form button {
    width: 100%;
  }

  .hero__evidence {
    bottom: 22px;
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__evidence div {
    min-height: 74px;
  }

  .hero__evidence strong {
    margin-top: 10px;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 72px 0;
  }

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

  .work-card,
  .network-panel {
    min-height: 0;
  }

  .work-card h3,
  .network-panel h3 {
    margin-top: 54px;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .closer {
    padding: 76px 14px;
  }
}
