:root {
  color-scheme: dark;
  --night: #071f22;
  --deep: #0a292c;
  --teal: #22a397;
  --teal-pale: #8dd2c8;
  --cream: #f3e8d6;
  --muted: #9faeab;
  --line: rgba(243, 232, 214, .15);
}

* { box-sizing: border-box; }

html, body { min-width: 320px; min-height: 100%; }

body {
  margin: 0;
  color: var(--cream);
  background: var(--night);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 44%) 1fr;
  overflow: hidden;
}

.portrait-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #171815;
}

.portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(.88) contrast(1.03);
  transform: scale(1.015);
}

.portrait-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,15,17,.38), transparent 30%),
    linear-gradient(0deg, rgba(4,15,17,.84), transparent 52%),
    linear-gradient(90deg, transparent 78%, rgba(7,31,34,.34));
}

.portrait-topline {
  position: absolute;
  inset: 34px 38px auto;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.portrait-caption {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.28);
  padding-top: 22px;
}

.portrait-index {
  color: var(--teal-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-style: italic;
}

.portrait-caption p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.06;
  text-align: right;
}

.content-panel {
  position: relative;
  min-width: 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 clamp(34px, 5vw, 82px);
  background:
    radial-gradient(circle at 88% 14%, rgba(34,163,151,.13), transparent 18rem),
    linear-gradient(135deg, var(--deep), var(--night));
}

.content-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(130deg, transparent 5%, black, transparent 82%);
}

header,
.hero-copy,
footer { position: relative; z-index: 1; }

header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand img { width: 44px; height: 44px; }

.brand > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: -.035em;
}

.brand strong { color: var(--teal-pale); font-weight: 400; }

.launch-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.launch-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(34,163,151,.14);
  animation: pulse 2.5s ease-out infinite;
}

.hero-copy {
  align-self: center;
  width: min(780px, 100%);
  padding: clamp(52px, 7vw, 104px) 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--teal-pale);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.5vw, 86px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

h1 em { color: var(--teal-pale); font-weight: 400; }

.intro {
  max-width: 660px;
  margin: 31px 0 0;
  color: #bcc7c4;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.launch-block {
  width: min(660px, 100%);
  margin-top: clamp(38px, 5vw, 62px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.launch-block div { display: grid; }
.launch-block small { color: var(--muted); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.launch-block strong { margin-top: 6px; color: var(--cream); font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 400; }

.launch-block a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid rgba(141,210,200,.34);
  border-radius: 999px;
  color: var(--teal-pale);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.launch-block a:hover { color: var(--night); background: var(--teal-pale); transform: translateY(-2px); }
.launch-block a:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }

footer {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  align-items: center;
  border-top: 1px solid var(--line);
}

footer div { display: flex; align-items: baseline; gap: 11px; min-width: 0; }
footer div + div { padding-left: 24px; border-left: 1px solid var(--line); }
footer small { color: var(--teal); font-family: Georgia, "Times New Roman", serif; font-size: 13px; font-style: italic; }
footer span { overflow: hidden; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }

@keyframes pulse { 70%, 100% { box-shadow: 0 0 0 12px rgba(34,163,151,0); } }

@media (max-width: 900px) {
  .page { grid-template-columns: 1fr; overflow: visible; }
  .portrait-panel { min-height: 66vh; }
  .portrait { object-position: 50% 28%; }
  .content-panel { min-height: auto; }
  h1 { font-size: clamp(48px, 10vw, 76px); }
}

@media (max-width: 600px) {
  .portrait-panel { min-height: 70vh; }
  .portrait-topline { inset: 24px 22px auto; }
  .portrait-caption { left: 22px; right: 22px; bottom: 24px; }
  .content-panel { padding: 0 20px; }
  header { min-height: 92px; }
  .brand img { width: 38px; height: 38px; }
  .brand > span { font-size: 21px; }
  .launch-state { max-width: 96px; line-height: 1.5; }
  .hero-copy { padding: 58px 0 66px; }
  h1 { font-size: clamp(46px, 13.2vw, 64px); }
  .launch-block { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; padding: 16px 0; }
  footer div { padding: 12px 0; }
  footer div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
