:root {
  color-scheme: dark;
  --ink: #081116;
  --surface: #10242a;
  --text: #f4f6f2;
  --muted: #899a9b;
  --sage: #a8c39a;
  --aqua: #71d2c8;
  --line: #334449;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--ink); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a { color: inherit; }

.page {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1500px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 2.125rem clamp(1.25rem, 6vw, 6rem);
  overflow: hidden;
  background: radial-gradient(circle at 72% 48%, #183740 0, var(--surface) 24%, var(--ink) 56%);
}

.page::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: linear-gradient(rgb(143 202 192 / 7%) 1px, transparent 1px), linear-gradient(90deg, rgb(143 202 192 / 7%) 1px, transparent 1px);
  background-size: 4.25rem 4.25rem;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  text-decoration: none;
}

.brand-name { font-size: 1.8rem; font-weight: 300; letter-spacing: .13em; }

.brand-category,
.development-status,
.site-footer {
  color: #91a5a5;
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.development-status {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #a8d3cb;
}

.development-status span {
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: #9fc9c1;
  box-shadow: 0 0 .9rem #9fc9c1;
}

.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding: 3.75rem 0; }
.eyebrow { margin: 0; color: #a8d3cb; font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; }

.hero h1 {
  max-width: 8.5ch;
  margin: 1.5rem 0 1.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}

.hero h1 em { display: block; margin-left: .72em; color: #b6c9c4; font-weight: 400; }
.introduction { max-width: 29rem; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.75; }

.launch-status {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.launch-status::before {
  width: 3.6rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--sage), var(--aqua));
}

.badge-stage { display: grid; place-items: center; min-height: 38rem; }

.badge {
  position: relative;
  display: grid;
  place-items: center;
  width: min(31vw, 27.5rem);
  aspect-ratio: 1;
  border: 1px solid #9ba9aa;
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(circle at 38% 30%, #18323a, #0b161c 68%);
  box-shadow: 0 2.8rem 5.6rem rgb(0 0 0 / 70%), inset 0 0 0 .5rem rgb(217 223 220 / 4%), inset 0 0 2.5rem rgb(0 0 0 / 60%);
}

.badge::before {
  position: absolute;
  inset: -.5rem;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, #f0f2ed, #536166 35%, #c5ceca 68%, #4a555a) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.badge-content { display: grid; justify-items: center; }
.badge-est { color: #b6c0bd; font-size: .8rem; letter-spacing: .32em; }
.badge-name { margin: 2.8rem 0 2.35rem; font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 300; letter-spacing: .11em; }
.badge-category { color: #91bcb5; font-size: .72rem; letter-spacing: .46em; text-transform: uppercase; }

.site-footer {
  gap: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.contact { display: flex; align-items: center; gap: 1rem; }

.contact a {
  padding-bottom: .2rem;
  border-bottom: 1px solid #618c84;
  color: #d1ece6;
  font-size: .65rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: none;
}

.contact a:hover { color: #fff; border-color: var(--aqua); }

.contact a:focus-visible,
.brand:focus-visible {
  border-radius: .15rem;
  outline: 2px solid var(--aqua);
  outline-offset: .4rem;
}

@media (max-width: 52rem) {
  .page { min-height: 100svh; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 6.5rem 0 8rem; }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 5.5rem); }
  .badge-stage { position: absolute; z-index: -1; top: 8rem; right: -12rem; min-height: 0; opacity: .35; }
  .badge { width: 26rem; }
  .site-footer > p { display: none; }
  .contact { width: 100%; justify-content: space-between; }
}

@media (max-width: 28rem) {
  .brand-category { display: none; }
  .hero-copy { padding-top: 5rem; }
  .contact { align-items: flex-start; flex-direction: column; gap: .7rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .badge { animation: reveal .8s ease-out both; }
  .badge { animation-delay: .12s; }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(1rem); }
  }
}
