@font-face {
  font-family: "Soehne Nova";
  src: url("/fonts/test-soehne-buch.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Soehne Nova";
  src: url("/fonts/test-soehne-kraftig.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #11100f;
  --ink: #f5f3ef;
  --muted: #b6b1a9;
  --quiet: #89847d;
  --line: #302e2a;
  --blue: #0953c7;
  --blue-hover: #0b62e7;
  --content: min(1240px, calc(100vw - 48px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Soehne Nova", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: #f5f3ef;
  color: #050505;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #7fb0ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform 160ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  width: var(--content);
  margin-inline: auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 243, 239, 0.12);
}

.wordmark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.site-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.site-header nav .nav-cta {
  padding-inline: 18px;
  border: 1px solid rgba(245, 243, 239, 0.24);
  border-radius: 999px;
  color: var(--ink);
}

.site-header nav .nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

.hero {
  position: relative;
  min-height: 100svh;
  width: var(--content);
  margin-inline: auto;
  padding: clamp(150px, 18vh, 210px) 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.status-line,
.section-label {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.4rem, 7.2vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  max-width: 58ch;
  margin: 38px 0 0;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.model-truth {
  max-width: 65ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-inline: 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms var(--ease);
}

.button-primary {
  background: var(--ink);
  color: var(--bg);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.button-primary:active {
  transform: translateY(0) scale(0.985);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--ink);
}

.hero-mark {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-mark img {
  position: relative;
  z-index: 2;
  width: min(68%, 380px);
  height: auto;
  object-fit: contain;
  animation: star-breathe 9s var(--ease) infinite alternate;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(245, 243, 239, 0.16);
  border-radius: 50%;
}

.orbit-outer {
  inset: 2%;
}

.orbit-inner {
  inset: 18%;
  border-color: rgba(245, 243, 239, 0.08);
}

@keyframes star-breathe {
  from {
    transform: scale(0.97) rotate(-1deg);
  }
  to {
    transform: scale(1.025) rotate(1deg);
  }
}

.entity-line {
  position: absolute;
  inset: auto 0 32px;
  margin: 0;
  color: var(--quiet);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.access {
  padding: clamp(88px, 10vw, 150px) max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  background: var(--blue);
  color: #ffffff;
}

.access-intro {
  display: grid;
  grid-template-columns: minmax(220px, 4fr) minmax(0, 8fr);
  column-gap: clamp(36px, 8vw, 120px);
  align-items: start;
}

.access .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.access h2,
.company h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.access-intro > p:last-child {
  grid-column: 2;
  max-width: 66ch;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.access-sequence {
  margin: clamp(70px, 9vw, 120px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.access-sequence li {
  min-height: 190px;
  padding: 22px 24px 24px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.access-sequence li:not(:first-child) {
  padding-left: 24px;
}

.access-sequence li:last-child {
  border-right: 0;
}

.sequence-number {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.access-sequence strong {
  font-size: 24px;
  font-weight: 600;
}

.access-sequence li > span:last-child {
  max-width: 23ch;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.company {
  width: var(--content);
  margin-inline: auto;
  padding: clamp(100px, 13vw, 190px) 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.company-statement > p:last-child {
  max-width: 62ch;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.truth-register {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.truth-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.truth-row span {
  color: var(--quiet);
  font-size: 14px;
}

.truth-row strong {
  max-width: 25ch;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.truth-note {
  margin-top: 28px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.65;
}

footer {
  width: var(--content);
  margin-inline: auto;
  padding: 44px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 12px;
  font-size: 12px;
}

footer p {
  margin: 8px 0 0;
  color: var(--quiet);
  font-size: 12px;
}

.footer-entity {
  text-align: right;
}

.footer-entity p:first-child {
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  }

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

  .access-intro > p:last-child {
    grid-column: 1;
  }

  .company {
    gap: 70px;
  }
}

@media (max-width: 760px) {
  :root {
    --content: calc(100vw - 36px);
  }

  .site-header {
    min-height: 72px;
  }

  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .site-header nav .nav-cta {
    padding-inline: 15px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 82px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-mark {
    width: min(84vw, 460px);
    margin-inline: auto;
  }

  .entity-line {
    position: static;
    grid-column: 1;
  }

  .access {
    padding-inline: 18px;
  }

  .access-sequence {
    grid-template-columns: 1fr 1fr;
  }

  .access-sequence li,
  .access-sequence li:not(:first-child) {
    min-height: 170px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .access-sequence li:nth-child(2) {
    border-right: 0;
  }

  .access-sequence li:nth-child(n + 3) {
    border-bottom: 0;
  }

  footer {
    flex-direction: column;
  }

  .footer-entity {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .access-sequence {
    grid-template-columns: 1fr;
  }

  .access-sequence li,
  .access-sequence li:not(:first-child) {
    min-height: 142px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .access-sequence li:last-child {
    border-bottom: 0;
  }

  .truth-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .truth-row strong {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
