:root {
  color-scheme: light;
  --ink: #181713;
  --muted: #5b5d55;
  --paper: #f5f1e7;
  --paper-strong: #fffaf0;
  --line: rgba(24, 23, 19, 0.16);
  --green: #385b4a;
  --copper: #a84f2a;
  --cream: #fff4df;
  --shadow: rgba(18, 17, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 5vw;
  color: var(--cream);
}

.brand {
  font-size: 1.1rem;
  font-weight: 750;
  text-decoration: none;
}

.launch-note {
  border: 1px solid rgba(255, 244, 223, 0.45);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(24, 23, 19, 0.22);
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 5vw 6rem;
  color: var(--cream);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 12, 9, 0.84), rgba(12, 12, 9, 0.34) 54%, rgba(12, 12, 9, 0.1)),
    linear-gradient(0deg, rgba(12, 12, 9, 0.35), rgba(12, 12, 9, 0.08));
}

.hero-content {
  width: min(42rem, 100%);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--copper);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b56c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.4rem;
  line-height: 0.95;
  font-weight: 650;
}

.hero-copy {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 244, 223, 0.9);
  font-size: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 780;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(240, 181, 108, 0.55);
  outline-offset: 3px;
}

.button-primary {
  border: 1px solid rgba(255, 244, 223, 0.1);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  border: 1px solid rgba(255, 244, 223, 0.42);
  background: rgba(255, 244, 223, 0.08);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.status-section {
  padding: 4.5rem 5vw 5.5rem;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 42rem;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.05;
  font-weight: 650;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.status-card {
  min-height: 12rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--paper-strong);
  box-shadow: 0 14px 36px var(--shadow);
}

.status-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.05rem;
}

.status-card p {
  margin: 3.25rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 760px) {
  .site-header {
    padding: 1rem 1.1rem;
  }

  .hero {
    min-height: 76svh;
    padding: 6.5rem 1.1rem 4rem;
  }

  h1 {
    font-size: 3.65rem;
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .button {
    width: 100%;
  }

  .status-section {
    padding: 3.25rem 1.1rem 4rem;
  }

  .section-heading,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .status-card {
    min-height: 10rem;
  }

  .status-card p {
    margin-top: 2rem;
  }
}
