:root {
  --olive: #62684a;
  --olive-dark: #444a34;
  --charcoal: #292c2f;
  --gold: #b58a3b;
  --sand: #d8c7a4;
  --cream: #f7f5ef;
  --clay: #a96855;
  --sky: #4f7181;
  --mist: #eef1e9;
  --white: #ffffff;
  --content: min(86rem, calc(100% - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  border-radius: 0.25rem;
  background: var(--white);
  padding: 0.75rem 1rem;
  color: var(--charcoal);
  font-weight: 700;
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(50rem, 84svh);
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
  background:
    linear-gradient(120deg, #1b2325, #253237 65%, #262c2c);
  color: var(--white);
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 24, 25, 0.9) 0%, rgba(17, 24, 25, 0.68) 48%, rgba(17, 24, 25, 0.32) 100%),
    linear-gradient(0deg, rgba(17, 24, 25, 0.72) 0%, transparent 44%, rgba(17, 24, 25, 0.42) 100%);
}

.site-header {
  position: relative;
  z-index: 2;
  width: var(--content);
  min-height: 6.25rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand__mark img {
  position: absolute;
  top: -0.12rem;
  left: 50%;
  width: 7.4rem;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
  opacity: 0.92;
}

.brand img {
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 0.2rem;
}

.brand__text strong {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 650;
}

.brand__text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-block: 0.25rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.header-link:hover,
.header-link:focus-visible {
  border-color: var(--gold);
  color: #f2dcae;
}

.hero__content {
  width: var(--content);
  margin-inline: auto;
  padding-block: clamp(5rem, 11vh, 8.25rem) clamp(6.5rem, 14vh, 9rem);
}

.launch-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: #f2dcae;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-status__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #8bb89b;
  box-shadow: 0 0 0 0.4rem rgba(139, 184, 155, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 0.45rem;
  font-size: clamp(4rem, 9vw, 7.6rem);
  font-weight: 640;
  line-height: 0.9;
}

.hero__tagline {
  margin-bottom: 1.4rem;
  color: #f2dcae;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 580;
}

.hero__intro {
  max-width: 43rem;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.primary-link {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 0.25rem;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  font-weight: 700;
}

.primary-link span {
  color: #f2dcae;
  font-size: 1.2rem;
}

.primary-link:hover,
.primary-link:focus-visible {
  border-color: var(--gold);
  background: rgba(181, 138, 59, 0.18);
}

.hero__footer {
  position: absolute;
  right: max(1.5rem, calc((100% - min(86rem, calc(100% - 3rem))) / 2));
  bottom: 2.2rem;
  left: max(1.5rem, calc((100% - min(86rem, calc(100% - 3rem))) / 2));
  display: grid;
  grid-template-columns: auto minmax(3rem, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__footer-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.preview {
  width: var(--content);
  margin-inline: auto;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.preview__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1fr);
  grid-template-areas:
    "eyebrow paragraph"
    "heading paragraph";
  column-gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.eyebrow {
  grid-area: eyebrow;
  margin-bottom: 1rem;
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.preview__intro h2 {
  grid-area: heading;
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 630;
  line-height: 0.98;
}

.preview__intro > p:last-child {
  grid-area: paragraph;
  max-width: 39rem;
  margin-bottom: 0.3rem;
  color: #606568;
  font-size: 1.08rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.feature {
  min-width: 0;
  padding: 2.2rem clamp(1.1rem, 2.5vw, 2rem) 2.6rem;
  border-right: 1px solid var(--sand);
}

.feature:last-child {
  border-right: 0;
}

.feature__number {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.75rem;
}

.feature h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 670;
}

.feature p {
  margin-bottom: 0;
  color: #666a6d;
  line-height: 1.65;
}

.closing {
  background: var(--charcoal);
  color: var(--white);
}

.closing__inner {
  width: var(--content);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(22rem, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.closing img {
  width: min(100%, 23rem);
  height: auto;
  aspect-ratio: 1028 / 755;
  object-fit: contain;
  justify-self: center;
  filter: brightness(1.24) saturate(0.86);
}

.closing .eyebrow {
  color: #d4bc88;
}

.closing h2 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 620;
  line-height: 1;
}

.closing p:last-child {
  max-width: 41rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.site-footer {
  min-height: 9rem;
  display: flex;
  width: var(--content);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #6d7173;
  font-size: 0.8rem;
}

.site-footer div {
  display: grid;
  gap: 0.35rem;
}

.site-footer strong {
  color: var(--charcoal);
  font-size: 1rem;
}

.site-footer p {
  max-width: 38rem;
  margin-bottom: 0;
  text-align: right;
  line-height: 1.55;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #e4bd6b;
  outline-offset: 4px;
}

@media (max-width: 860px) {
  :root {
    --content: min(44rem, calc(100% - 2rem));
  }

  .hero {
    min-height: 84svh;
  }

  .hero__scrim {
    background:
      linear-gradient(90deg, rgba(17, 24, 25, 0.9) 0%, rgba(17, 24, 25, 0.58) 100%),
      linear-gradient(0deg, rgba(17, 24, 25, 0.78) 0%, transparent 48%, rgba(17, 24, 25, 0.48) 100%);
  }

  .site-header {
    min-height: 5.2rem;
  }

  .brand__mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand__mark img {
    width: 6.5rem;
  }

  .brand__text span {
    display: none;
  }

  .hero__content {
    padding-block: 5rem 7rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 16vw, 6rem);
  }

  .preview__intro {
    display: block;
  }

  .preview__intro h2 {
    margin-bottom: 1.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n + 2) {
    border-bottom: 1px solid var(--sand);
  }

  .closing__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .closing img {
    width: 12rem;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 86svh;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 3.8rem);
  }

  .header-link {
    font-size: 0.78rem;
  }

  .hero__content {
    padding-top: 4.5rem;
  }

  .hero__intro {
    line-height: 1.6;
  }

  .hero__footer {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .hero__footer-rule {
    display: none;
  }

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

  .feature,
  .feature:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--sand);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .feature__number {
    margin-bottom: 1rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 2rem;
  }

  .site-footer p {
    text-align: left;
  }
}

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

  .hero__media {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
