:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #050505;
  --muted: #5d646c;
  --soft: #8f969e;
  --line: #e2e5e8;
  --hairline: #f0f2f4;
  --accent: #1267d8;
  --signal: #0b8c73;
  --header-h: 72px;
  --page-x: clamp(20px, 5vw, 88px);
  --copy-shift: clamp(44px, 5vw, 118px);
  --section-top: clamp(18px, 3vh, 34px);
  --section-bottom: clamp(28px, 4vh, 52px);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px) 0 0 / 25vw 100%,
    linear-gradient(180deg, rgba(5, 5, 5, 0.026) 1px, transparent 1px) 0 0 / 100% 160px;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.site-swiper {
  width: 100%;
}

.site-swiper:not(.swiper-initialized) {
  height: auto;
  overflow: visible;
}

.site-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: block;
  height: auto;
  transform: none !important;
}

.site-swiper:not(.swiper-initialized) .swiper-slide {
  height: auto;
}

html.is-swiper-ready,
html.is-swiper-ready body {
  height: 100%;
  overflow: hidden;
}

html.is-swiper-ready {
  scroll-snap-type: none;
}

html.is-swiper-ready .site-swiper {
  height: 100svh;
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-x);
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links a {
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
}

.brand {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.4vw, 54px);
}

.nav-links a {
  position: relative;
  color: #141414;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 24px) var(--page-x) clamp(42px, 7vh, 72px);
  isolation: isolate;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.hero-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.78) 34%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.26) 42%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-section::after {
  left: var(--page-x);
  right: var(--page-x);
  top: var(--header-h);
  bottom: clamp(24px, 4vh, 48px);
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.045);
}

.hero-copy {
  width: min(1180px, calc(100% - var(--copy-shift)));
  margin-left: var(--copy-shift);
  padding-top: clamp(18px, 4vh, 46px);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(68px, 8.2vw, 142px);
  font-weight: 680;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 760px;
  margin: clamp(26px, 3.2vw, 42px) 0 0;
  color: #424950;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 440;
  line-height: 1.34;
}

.hero-copy span {
  color: var(--accent);
  font-weight: 640;
}

.section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  border-top: 1px solid rgba(5, 5, 5, 0.1);
  padding: calc(var(--header-h) + var(--section-top)) var(--page-x) var(--section-bottom);
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--page-x);
  width: 1px;
  background: linear-gradient(180deg, rgba(18, 103, 216, 0.24), rgba(5, 5, 5, 0.035) 42%, transparent);
}

.section-copy {
  min-width: 0;
  margin-left: var(--copy-shift);
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(44px, 4.25vw, 76px);
  font-weight: 670;
  line-height: 1;
  letter-spacing: 0;
}

.section-description {
  max-width: 660px;
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  color: #4f5760;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 420;
  line-height: 1.5;
}

.market-figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.market-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(560px, 1.12fr);
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy figure"
    "board board";
  align-content: stretch;
  align-items: start;
  gap: clamp(22px, 3.4vw, 44px) clamp(46px, 6.2vw, 112px);
}

.business-copy {
  grid-area: copy;
  max-width: 760px;
}

.business-figure {
  grid-area: figure;
  align-self: start;
  height: clamp(360px, 48vh, 560px);
}

.business-figure img {
  object-position: 52% center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 94%, transparent 100%);
}

.execution-board {
  grid-area: board;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 clamp(36px, 5.2vh, 68px) var(--copy-shift);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.execution-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 142px;
  padding: clamp(20px, 2.4vw, 30px) clamp(22px, 3vw, 46px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.execution-row:last-child {
  border-right: 0;
}

.execution-row h3,
.execution-row p {
  margin: 0;
}

.execution-row h3 {
  font-size: clamp(23px, 1.9vw, 32px);
  font-weight: 650;
  line-height: 1.05;
}

.execution-row div p {
  max-width: 360px;
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.48;
}

.research-section {
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(620px, 1.28fr);
  grid-template-areas:
    "copy figure";
  align-content: stretch;
  align-items: stretch;
  gap: clamp(34px, 4vw, 64px) clamp(48px, 5.4vw, 92px);
  background: #ffffff;
  isolation: isolate;
}

.research-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: var(--header-h) 0 0 0;
  background:
    linear-gradient(101deg, transparent 0 18%, rgba(18, 103, 216, 0.075) 18.1%, transparent 18.38% 100%),
    linear-gradient(109deg, transparent 0 26%, rgba(5, 5, 5, 0.042) 26.1%, transparent 26.34% 100%),
    linear-gradient(116deg, transparent 0 34%, rgba(18, 103, 216, 0.068) 34.1%, transparent 34.32% 100%),
    linear-gradient(124deg, transparent 0 43%, rgba(5, 5, 5, 0.038) 43.1%, transparent 43.28% 100%),
    linear-gradient(132deg, transparent 0 52%, rgba(18, 103, 216, 0.058) 52.1%, transparent 52.28% 100%),
    linear-gradient(141deg, transparent 0 63%, rgba(5, 5, 5, 0.034) 63.1%, transparent 63.25% 100%),
    radial-gradient(circle at 74% 48%, rgba(18, 103, 216, 0.11) 0 1px, transparent 1.5px),
    radial-gradient(circle at 68% 54%, rgba(5, 5, 5, 0.105) 0 1px, transparent 1.4px),
    radial-gradient(circle at 82% 40%, rgba(18, 103, 216, 0.09) 0 1px, transparent 1.5px);
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    112px 112px,
    148px 148px,
    178px 178px;
  opacity: 0.48;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.research-copy {
  grid-area: copy;
  align-self: center;
  max-width: 720px;
}

.research-figure {
  grid-area: figure;
  align-self: stretch;
  width: calc(100% + clamp(24px, 3vw, 58px));
  height: 100%;
  min-height: clamp(560px, 72vh, 820px);
  transform: translateX(clamp(0px, 2.2vw, 42px));
}

.research-figure img {
  object-position: 57% center;
  filter: saturate(0.96) contrast(0.98);
  -webkit-mask-image: radial-gradient(ellipse at 58% 50%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 66%, transparent 86%);
  mask-image: radial-gradient(ellipse at 58% 50%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 66%, transparent 86%);
}

.research-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, #fff 100%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 86%, #fff 100%);
  pointer-events: none;
}

.links-section {
  display: grid;
  grid-template-columns: minmax(430px, 0.74fr) minmax(560px, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy figure"
    "footer footer";
  align-content: stretch;
  align-items: stretch;
  column-gap: clamp(46px, 6vw, 108px);
  row-gap: clamp(24px, 3.4vh, 42px);
  min-height: 100svh;
}

.links-copy {
  grid-area: copy;
  align-self: center;
  max-width: 620px;
}

.link-list {
  width: min(580px, 100%);
  margin-top: clamp(34px, 5vh, 56px);
  border-top: 1px solid var(--line);
}

.link-row {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 660;
  transition:
    color 180ms ease,
    padding 180ms ease;
}

.link-row svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 180ms ease;
}

.link-row:hover,
.link-row:focus-visible {
  color: var(--accent);
  padding-left: 8px;
}

.link-row:hover svg,
.link-row:focus-visible svg {
  transform: translateX(5px);
}

.links-figure {
  grid-area: figure;
  align-self: stretch;
  width: calc(100% + clamp(24px, 3vw, 58px));
  height: 100%;
  min-height: clamp(420px, 58vh, 680px);
  transform: translateX(clamp(0px, 1.8vw, 38px));
}

.links-figure img {
  object-position: 56% center;
  filter: saturate(0.96) contrast(0.98);
  -webkit-mask-image: radial-gradient(ellipse at 58% 50%, #000 0%, #000 56%, rgba(0, 0, 0, 0.72) 68%, transparent 88%);
  mask-image: radial-gradient(ellipse at 58% 50%, #000 0%, #000 56%, rgba(0, 0, 0, 0.72) 68%, transparent 88%);
}

.links-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, #fff 100%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 13%, rgba(255, 255, 255, 0) 87%, #fff 100%);
  pointer-events: none;
}

.site-footer {
  grid-area: footer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: #222;
  font-weight: 650;
}

@media (max-width: 1180px) {
  .business-section,
  .research-section,
  .links-section {
    grid-template-columns: minmax(380px, 0.82fr) minmax(460px, 1fr);
    column-gap: 46px;
  }

  .research-section {
    grid-template-columns: minmax(380px, 0.72fr) minmax(500px, 1.18fr);
  }

  .section-copy h2 {
    font-size: clamp(42px, 4.7vw, 68px);
  }

  .execution-row {
    padding-right: 24px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 70px;
    --page-x: 24px;
    --copy-shift: 0px;
    --section-top: 34px;
    --section-bottom: 58px;
  }

  body::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px) 0 0 / 50vw 100%,
      linear-gradient(180deg, rgba(5, 5, 5, 0.026) 1px, transparent 1px) 0 0 / 100% 140px;
  }

  .hero-section {
    align-items: center;
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 34px);
  }

  .hero-bg {
    object-position: 60% center;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.18) 28%, rgba(255, 255, 255, 0.98) 82%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.12) 100%);
  }

  .hero-section::after,
  .section::before {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 13vw, 92px);
  }

  .hero-copy p {
    max-width: 620px;
    font-size: clamp(20px, 4vw, 28px);
  }

  .section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-top: calc(var(--header-h) + var(--section-top));
  }

  .business-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "copy"
      "figure"
      "board";
  }

  .research-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "copy"
      "figure";
  }

  .links-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "copy"
      "figure"
      "footer";
    min-height: auto;
  }

  .section-copy h2 {
    max-width: 760px;
    font-size: clamp(38px, 8.6vw, 64px);
  }

  .section-description {
    max-width: 720px;
    font-size: clamp(18px, 3.4vw, 23px);
  }

  .business-figure,
  .links-figure {
    width: 100%;
    min-height: 0;
    height: clamp(300px, 48vw, 470px);
    transform: none;
  }

  .research-figure {
    width: 100%;
    min-height: 0;
    height: clamp(260px, 42vw, 390px);
    margin-top: 0;
    transform: none;
  }

  .business-figure img,
  .links-figure img,
  .research-figure img {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .research-figure::after,
  .links-figure::after {
    display: none;
  }

  .execution-board {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .execution-row {
    min-height: 0;
    border-right: 0;
    padding-right: 0;
  }

  .links-copy {
    align-self: start;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 66px;
    --page-x: 16px;
    --copy-shift: 0px;
    --section-top: 30px;
    --section-bottom: 46px;
  }

  .site-header {
    gap: 18px;
  }

  .brand,
  .nav-links a {
    font-size: 13px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-section {
    padding-bottom: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.96;
  }

  .hero-copy p {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.42;
  }

  .section-copy h2 {
    font-size: clamp(34px, 10.4vw, 48px);
    line-height: 1.02;
  }

  .section-description {
    font-size: 17px;
  }

  .business-figure,
  .research-figure,
  .links-figure {
    height: 244px;
  }

  .execution-row {
    padding: 24px 0;
    text-align: left;
  }

  .execution-row h3 {
    font-size: 21px;
  }

  .execution-row div p {
    font-size: 15px;
  }

  .link-row {
    min-height: 66px;
    font-size: 20px;
  }

  .link-row svg {
    width: 24px;
    height: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .nav-links {
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 11.2vw, 43px);
  }

  .hero-copy p {
    max-width: 300px;
    font-size: 17px;
  }

  .business-figure,
  .research-figure,
  .links-figure {
    height: 224px;
  }
}

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

  html {
    scroll-snap-type: none;
  }
}
