:root {
  --black: #05080d;
  --graphite: #0b1018;
  --graphite-light: #111821;
  --line: rgba(235, 242, 250, 0.14);
  --line-soft: rgba(235, 242, 250, 0.07);
  --white: #f4f7fb;
  --secondary: #a8b2c0;
  --muted: #6f7c8d;
  --blue: #1473e6;
  --blue-light: #5ca3ff;
  --green: #6ee7a8;
  --shell: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

a {
  color: inherit;
}

.shell {
  margin: 0 auto;
  max-width: var(--shell);
  width: calc(100% - 96px);
}

.hero {
  background: var(--black);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.intelligence-field {
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 900ms ease;
  width: 100%;
}

.intelligence-field.is-ready {
  opacity: 1;
}

.hero::after {
  border-left: 1px solid var(--line-soft);
  content: "";
  height: 100%;
  left: calc(50% + 180px);
  position: absolute;
  top: 0;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 92px;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.brand {
  display: block;
  height: 38px;
}

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

.company-state {
  align-items: center;
  color: var(--secondary);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 10px;
  text-transform: uppercase;
}

.state-dot {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110, 231, 168, 0.08);
  height: 6px;
  width: 6px;
}

.state-place {
  border-left: 1px solid var(--line);
  color: var(--muted);
  margin-left: 7px;
  padding-left: 17px;
}

.hero-content {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  min-height: calc(100svh - 92px);
  padding-bottom: 84px;
  padding-top: 96px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 1050px;
}

.kicker,
.section-label {
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.kicker::before {
  background: var(--blue);
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 14px;
  vertical-align: middle;
  width: 44px;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: 96px;
  font-weight: 500;
  line-height: 0.94;
  margin: 34px 0 0;
  max-width: 1000px;
}

.hero-statement {
  color: var(--secondary);
  font-size: 20px;
  line-height: 1.5;
  margin: 40px 0 0;
  max-width: 700px;
}

.positioning {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 38px;
}

.positioning span {
  border-left: 1px solid var(--line);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 22px;
  text-transform: uppercase;
}

.positioning span:first-child {
  border-left: 0;
  padding-left: 0;
}

.thesis-link {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  gap: 14px;
  margin-bottom: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.thesis-link svg {
  border: 1px solid var(--line);
  height: 42px;
  padding: 11px;
  transition: background-color 180ms ease, border-color 180ms ease;
  width: 42px;
}

.thesis-link path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.4;
}

.thesis-link:hover svg {
  background: var(--blue);
  border-color: var(--blue);
}

.hero-index {
  bottom: 26px;
  color: rgba(244, 247, 251, 0.34);
  display: flex;
  font-size: 9px;
  font-weight: 700;
  justify-content: space-between;
  left: 24px;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  z-index: 2;
}

.thesis {
  background: #f0f3f6;
  color: #0a1018;
  padding: 150px 0 0;
}

.thesis-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 210px minmax(0, 1fr);
}

.thesis .section-label,
.closing .section-label {
  color: #176bc9;
  padding-top: 12px;
}

.thesis h2,
.closing h2 {
  font-size: 68px;
  font-weight: 500;
  line-height: 1.02;
  margin: 0;
}

.thesis-copy > p {
  color: #485666;
  font-size: 20px;
  line-height: 1.55;
  margin: 42px 0 0;
  max-width: 760px;
}

.principles {
  border-top: 1px solid rgba(10, 16, 24, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 130px;
}

.principles article {
  border-left: 1px solid rgba(10, 16, 24, 0.18);
  min-height: 330px;
  padding: 32px 40px 70px;
}

.principles article:first-child {
  border-left: 0;
  padding-left: 0;
}

.principles article > span {
  color: #647181;
  font-size: 11px;
  font-weight: 700;
}

.principles h3 {
  font-size: 25px;
  font-weight: 600;
  margin: 92px 0 0;
}

.principles p {
  color: #556373;
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 310px;
}

.closing {
  background: var(--graphite);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 142px 0;
}

.closing-inner {
  display: grid;
  gap: 72px;
  grid-template-columns: 210px minmax(0, 1fr);
}

.closing h2 {
  font-size: 78px;
}

.closing-inner > div > p {
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.5;
  margin: 38px 0 0;
}

.site-footer {
  background: var(--black);
}

.footer-inner {
  align-items: center;
  color: var(--muted);
  display: grid;
  font-size: 10px;
  grid-template-columns: 1fr auto 1fr;
  height: 112px;
  text-transform: uppercase;
}

.footer-inner img {
  height: 26px;
  width: auto;
}

.footer-inner span:last-child {
  justify-self: end;
}

@media (max-width: 1180px) {
  .shell {
    width: calc(100% - 64px);
  }

  h1 {
    font-size: 76px;
  }

  .hero-content {
    gap: 40px;
  }

  .thesis h2,
  .closing h2 {
    font-size: 58px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: calc(100% - 40px);
  }

  .site-header {
    height: 76px;
  }

  .brand,
  .brand img {
    height: 31px;
  }

  .state-place {
    display: none;
  }

  .hero::after {
    left: 70%;
  }

  .hero-content {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - 76px);
    padding-bottom: 64px;
    padding-top: 80px;
  }

  h1 {
    font-size: 62px;
  }

  .hero-statement {
    font-size: 18px;
  }

  .thesis-link {
    margin-top: 22px;
  }

  .thesis,
  .closing {
    padding-top: 100px;
  }

  .thesis-grid,
  .closing-inner {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .thesis .section-label,
  .closing .section-label {
    padding-top: 0;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 90px;
  }

  .principles article,
  .principles article:first-child {
    border-bottom: 1px solid rgba(10, 16, 24, 0.18);
    border-left: 0;
    min-height: 0;
    padding: 28px 0 48px;
  }

  .principles h3 {
    margin-top: 54px;
  }

  .closing {
    padding-bottom: 100px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 68px;
  }

  .brand,
  .brand img {
    height: 27px;
  }

  .company-state {
    font-size: 9px;
    gap: 7px;
  }

  .hero-content {
    min-height: calc(100svh - 68px);
    padding-bottom: 52px;
    padding-top: 64px;
  }

  .kicker,
  .section-label {
    font-size: 10px;
  }

  .kicker::before {
    margin-right: 10px;
    width: 28px;
  }

  h1 {
    font-size: 47px;
    line-height: 0.98;
    margin-top: 26px;
  }

  .hero-statement {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 30px;
  }

  .positioning {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .positioning span,
  .positioning span:first-child {
    border-left: 0;
    font-size: 9px;
    padding: 0;
  }

  .thesis-link {
    display: none;
  }

  .hero-index {
    bottom: 18px;
    left: 16px;
    right: 16px;
  }

  .thesis {
    padding-top: 76px;
  }

  .thesis-grid,
  .closing-inner {
    gap: 32px;
  }

  .thesis h2,
  .closing h2 {
    font-size: 40px;
    line-height: 1.06;
  }

  .thesis-copy > p {
    font-size: 17px;
    margin-top: 30px;
  }

  .principles {
    margin-top: 66px;
  }

  .principles h3 {
    font-size: 22px;
    margin-top: 42px;
  }

  .closing {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .closing-inner > div > p {
    font-size: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    height: 92px;
  }

  .footer-inner img {
    height: 22px;
  }

  .footer-inner span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .intelligence-field {
    transition: none;
  }
}
