:root {
  --background: #0b1010;
  --surface: #151c1b;
  --text: #f7f2e9;
  --muted: #b8c1b9;
  --accent: #69b4ff;
  --accent-2: #1e80c6;
  --accent-3: #daf3ff;
  --border: #34403e;
  --radius: 1rem;
  --page-width: 72rem;
  --content-width: 42rem;


  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: clamp(4rem, 8vw, 7rem);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}


h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {

  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: -0.08em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
}

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

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

img {
  display: block;

  max-width: 100%;
  height: auto;
}


button,
input,
select,
textarea {
  font: inherit;
}


a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}




.container {
  width: min(100% - 2rem, var(--page-width));
  margin-inline: auto;
}


.container-narrow {
  width: min(100% - 2rem, var(--content-width));
  margin-inline: auto;
}


.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}


.section {
  padding-block: var(--space-3xl);
}


.stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--stack-space, var(--space-md));
}


.stack-lg {
  --stack-space: var(--space-xl);
}


.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--cluster-space, var(--space-md));
}


.cluster-between {
  justify-content: space-between;
}


.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns, 2), minmax(0, 1fr));
  gap: var(--grid-space, var(--space-md));
}


.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--grid-min, 16rem)), 1fr));
  gap: var(--grid-space, var(--space-md));
}


.split {
  display: flex;
  flex-wrap: wrap;
  align-items: var(--split-align, center);
  gap: var(--split-space, var(--space-xl));
}

.split > * {
  flex: 1 1 var(--split-min, 20rem);
}


.sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sidebar-space, var(--space-xl));
}

.sidebar > :first-child {
  flex: 1 1 var(--sidebar-width, 16rem);
}

.sidebar > :last-child {
  flex: 999 1 var(--content-min, 55%);
}


.center-content {
  display: grid;
  place-items: center;
}


.cover {
  display: flex;
  min-height: var(--cover-height, 100vh);
  flex-direction: column;
}

.cover > :nth-child(2) {
  margin-block: auto;
}


.frame {
  overflow: hidden;
  aspect-ratio: var(--frame-ratio, 4 / 3);
}

.frame > img,
.frame > video,
.frame > iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.grid-full {
  grid-column: 1 / -1;
}


.min-width-0 {
  min-width: 0;
}


.center {
  text-align: center;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}


.measure {
  max-width: var(--content-width);
}

.max-width-10-ch {
  max-width: 10ch;
}


.flow > * + * {
  margin-top: var(--flow-space, var(--space-md));
}


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


.surface {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}


.box {
  padding: var(--box-space, var(--space-lg));
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro,
.card-body p {
  color: var(--muted);
}

.intro {
  max-width: 42rem;
  font-size: 1.15rem;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);

  background-color: var(--surface);
}

.header-inner,
.brand,
.footer-inner {
  display: flex;
  align-items: center;
}

.header-inner {
  min-height: 4.5rem;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-style: italic;
  font-size: 2.25rem;
  font-weight: 900;
}

.brand-logo {
  height: 2.5rem;
  display: inline;
  vertical-align: middle;

}

.site-nav {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}


.hero {

  --split-space: clamp(2rem, 6vw, 5rem);
  --split-min: 19rem;
  min-height: calc(100vh - 4.5rem);
}

.actions {

  --cluster-space: var(--space-sm);
  margin-top: 2rem;
}

.button {
  padding: 0.75rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--background);
  font-weight: 700;
}

.button:hover,
.button:focus-visible {
  color: var(--background);
  filter: brightness(1.1);
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.feature-image,
.card,
.about {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-image {
  position: relative;
}

.feature-image img,
.card>img,
.placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(11, 16, 16, 0.9);
}

.feature-image small,
.feature-image strong {
  display: block;
}

.feature-image small {
  color: var(--accent);
}


.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.card-grid {

  --grid-min: 16rem;
}

.card-body {
  padding: 1.25rem;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.placeholder {
  display: grid;
  place-items: center;
  background: #202a28;
  color: var(--muted);
  font-size: 2rem;
  font-weight: 800;
}


.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}


.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-inner {
  min-height: 5rem;
  justify-content: space-between;
  gap: 1rem;
}


@media (max-width: 48rem) {


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

  .hero {
    min-height: auto;
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}
