:root {
  color-scheme: dark;
  --bg: #050607;
  --panel: #101116;
  --panel-2: #17181d;
  --line: #303138;
  --text: #f8f4ed;
  --muted: #aaa49b;
  --dim: #746f67;
  --gold: #c9d2df;
  --silver-bright: #edf3fb;
  --silver-soft: #8f9cb0;
  --stone: #3a3937;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 210, 223, 0.12), transparent 24rem),
    linear-gradient(180deg, #14161b 0%, var(--bg) 42%, #0e1014 100%);
  color: var(--text);
}

main {
  padding-bottom: 56px;
}

button,
a,
input {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

:focus-visible {
  outline: 2px solid rgba(248, 244, 237, 0.88);
  outline-offset: 3px;
}

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

button,
input {
  font: inherit;
}

.site-header,
.hero,
.notify-band,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(rgba(8, 9, 12, 0.94), rgba(8, 9, 12, 0.78));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(248, 244, 237, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand:hover,
nav a:hover,
.primary-action:hover,
.secondary-action:hover,
.notify-form button:hover {
  transform: translateY(-1px);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 20px;
  font-weight: 430;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(248, 244, 237, 0.38);
}

.wordmark > span:not(.wordmark-e) {
  width: 1em;
  flex: 0 0 1em;
  text-align: center;
}

.wordmark-e {
  position: relative;
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 1em;
}

.wordmark-e i {
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  width: auto;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(248, 244, 237, 0.34);
}

.wordmark-e i:nth-child(1) {
  top: 0.2em;
}

.wordmark-e i:nth-child(2) {
  top: 0.47em;
}

.wordmark-e i:nth-child(3) {
  bottom: 0.2em;
}

.hero-wordmark {
  width: max-content;
  max-width: 100%;
  margin-bottom: 24px;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: clamp(48px, 9vw, 98px);
  font-weight: 360;
  text-shadow: 0 0 16px rgba(248, 244, 237, 0.5), 0 0 34px rgba(248, 244, 237, 0.18);
}

.hero-wordmark .wordmark-e {
  width: 1em;
  height: 1em;
  flex-basis: 1em;
}

.hero-wordmark .wordmark-e i {
  left: 0.08em;
  right: 0.08em;
  width: auto;
  height: 0.06em;
}

.hero-wordmark .wordmark-e i:nth-child(1) {
  top: 0.2em;
}

.hero-wordmark .wordmark-e i:nth-child(2) {
  top: 0.47em;
}

.hero-wordmark .wordmark-e i:nth-child(3) {
  bottom: 0.2em;
}

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

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

nav a:hover {
  color: var(--text);
}

nav a {
  position: relative;
}

nav a[aria-current="page"] {
  color: var(--silver-bright);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 56px;
  align-items: center;
  padding-block: 48px 84px;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  font-weight: 780;
}

.hero-copy > p:not(.eyebrow),
.notify-band p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--silver-soft);
  font-size: 15px;
  font-weight: 650;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.journey-card {
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(201, 210, 223, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 210, 223, 0.08), transparent 10rem),
    linear-gradient(180deg, rgba(24, 27, 34, 0.96), rgba(12, 13, 18, 0.96));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.journey-card::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(237, 243, 251, 0.46);
  transition: width 160ms ease, background-color 160ms ease;
}

.journey-card strong {
  color: var(--silver-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}

.journey-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.journey-card:hover::after,
.journey-card:focus-visible::after {
  width: 44px;
  background: var(--silver-bright);
}

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

.primary-action,
.secondary-action,
.notify-form button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 0 22px;
  font-weight: 820;
}

.primary-action,
.notify-form button {
  border: 0;
  background: linear-gradient(180deg, rgba(25, 29, 36, 0.98), rgba(14, 16, 21, 0.98));
  color: var(--silver-bright);
  border: 1px solid rgba(201, 210, 223, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(201, 210, 223, 0.12);
}

.secondary-action {
  border: 1px solid rgba(201, 210, 223, 0.2);
  background: rgba(20, 21, 27, 0.86);
  color: var(--silver-bright);
}

.mark-preview {
  display: grid;
  place-items: center;
}

.mark-orbit {
  position: relative;
  width: min(320px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 210, 223, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 244, 237, 0.08), rgba(201, 210, 223, 0.06) 42%, transparent 68%);
  box-shadow: var(--shadow);
}

.mark-orbit::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(248, 244, 237, 0.08);
  border-radius: 50%;
}

.mark-orbit img {
  width: 58%;
  height: 58%;
  border-radius: 24%;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.22));
  object-fit: cover;
}

.notify-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
  margin-top: 12px;
  padding: 38px;
  border: 1px solid rgba(201, 210, 223, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 210, 223, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(22, 24, 31, 0.98), rgba(11, 13, 18, 0.98));
  box-shadow: var(--shadow);
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.notify-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 210, 223, 0.08), transparent 12rem),
    rgba(16, 17, 22, 0.8);
  box-shadow: var(--shadow);
}

.notify-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.notify-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.notify-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #393a40;
  border-radius: 18px;
  background: #08090b;
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

.notify-form input:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 4px rgba(248, 244, 237, 0.08);
}

.notify-form output {
  min-height: 20px;
  color: var(--silver-bright);
  font-size: 14px;
  font-weight: 700;
}

.form-note {
  margin: 0;
  color: var(--silver-soft);
  font-size: 13px;
  line-height: 1.5;
}

footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  border-top: 1px solid rgba(248, 244, 237, 0.12);
  color: var(--dim);
  font-size: 14px;
  font-weight: 680;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 20px;
  }

  .hero,
  .notify-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .notify-band {
    padding: 28px;
  }

  .mark-preview {
    order: -1;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .notify-form div {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .brand {
    letter-spacing: 5px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action,
  .notify-form button,
  .journey-card {
    width: 100%;
  }

  .notify-band {
    padding: 22px;
    border-radius: 24px;
  }
}
