:root {
  color-scheme: dark;
  --ink: #101215;
  --ink-strong: #070809;
  --paper: #f6f1e8;
  --muted: #b8b2a8;
  --line: rgba(246, 241, 232, 0.18);
  --teal: #49c1b6;
  --amber: #d39b45;
  --rose: #b95f73;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.84), rgba(7, 8, 9, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.brand-mark {
  width: 17px;
  height: 17px;
  border: 2px solid var(--teal);
  border-left-color: var(--amber);
  transform: rotate(45deg);
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 5vw, 64px) 88px;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.88) 0%, rgba(7, 8, 9, 0.58) 44%, rgba(7, 8, 9, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 18, 21, 0.85) 0%, rgba(16, 18, 21, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 142px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 30px 0 0;
  color: #ded8cd;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  color: #07100f;
  background: var(--teal);
  border-color: var(--teal);
}

.button.secondary {
  background: rgba(246, 241, 232, 0.08);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 7vw, 96px);
  padding: 74px clamp(20px, 5vw, 64px);
  background: #151719;
}

.intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro > p {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(73, 193, 182, 0.08), transparent 38%),
    linear-gradient(300deg, rgba(179, 95, 115, 0.13), transparent 42%),
    #101215;
}

.principles article {
  min-height: 248px;
  padding: 34px clamp(20px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.principles article:last-child {
  border-right: 0;
}

.principles span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.principles h3 {
  margin: 44px 0 12px;
  font-size: 23px;
}

.principles p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: var(--muted);
  background: var(--ink-strong);
}

.site-footer p {
  margin: 0;
  color: var(--paper);
  font-weight: 700;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px;
  }

  .nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 104px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 9, 0.92), rgba(7, 8, 9, 0.42)),
      linear-gradient(0deg, rgba(16, 18, 21, 0.92), rgba(16, 18, 21, 0.12) 56%);
  }

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

  .principles article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

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