:root {
  --ink: #101716;
  --muted: #64706b;
  --line: rgba(20, 31, 29, 0.13);
  --paper: #faf8f1;
  --surface: rgba(255, 255, 255, 0.78);
  --teal: #0f766e;
  --teal-deep: #073f3b;
  --moss: #5d7c45;
  --gold: #c6912e;
  --coral: #c75f3c;
  --shadow: 0 34px 90px rgba(16, 23, 22, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(250, 248, 241, 0.96) 0%, rgba(247, 244, 232, 0.86) 42%, rgba(222, 238, 231, 0.78) 100%),
    url("/news-dashboard-v1.jpg") center / cover;
  filter: saturate(0.72);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(16, 23, 22, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 23, 22, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
  pointer-events: none;
}

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

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

.landing-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  padding: clamp(1rem, 2.6vw, 2.2rem);
}

.masthead,
.landing-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  color: rgba(16, 23, 22, 0.72);
  font-size: 0.86rem;
  font-weight: 720;
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  background: var(--teal-deep);
  color: #f7efe0;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(7, 63, 59, 0.24);
}

.launch-note {
  border: 1px solid rgba(7, 63, 59, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  padding: 0.55rem 0.8rem;
  backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  max-width: 34rem;
  margin: 0 0 1rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.35rem, 9vw, 9.8rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.86;
}

.lede {
  max-width: 38rem;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 2.1rem;
}

.status-row span {
  border: 1px solid rgba(16, 23, 22, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--teal-deep);
  padding: 0.62rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(16, 23, 22, 0.06);
  backdrop-filter: blur(16px);
}

.status-row span:nth-child(2) {
  color: var(--coral);
}

.status-row span:nth-child(3) {
  color: var(--moss);
}

.preview-stage {
  position: relative;
  align-self: center;
  min-width: 0;
}

.preview-stage::before,
.preview-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
}

.preview-stage::before {
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  right: -8%;
  top: -16%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.2), rgba(15, 118, 110, 0) 64%);
}

.preview-stage::after {
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  left: -8%;
  bottom: -14%;
  background: radial-gradient(circle, rgba(198, 145, 46, 0.19), rgba(198, 145, 46, 0) 65%);
}

.product-preview {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 34%, transparent 72%, rgba(15, 118, 110, 0.08));
  box-shadow: inset 0 0 0 1px rgba(16, 23, 22, 0.07);
}

.product-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.orbit-label {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.1rem;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.78rem 0.9rem;
  box-shadow: 0 20px 50px rgba(16, 23, 22, 0.14);
  backdrop-filter: blur(18px);
}

.orbit-label span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.orbit-label strong {
  color: var(--teal-deep);
  font-size: 1.12rem;
  line-height: 1.05;
}

.orbit-label-top {
  top: -1.6rem;
  left: 4%;
}

.orbit-label-bottom {
  right: 3%;
  bottom: -1.7rem;
}

.landing-footer {
  padding-top: 1rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 3.5rem;
    padding: 3.4rem 0 2.2rem;
  }

  h1 {
    max-width: 9.5ch;
    font-size: clamp(4rem, 15vw, 7.2rem);
  }

  .product-preview {
    transform: none;
  }
}

@media (max-width: 640px) {
  .landing-shell {
    padding: 1rem;
  }

  .masthead,
  .landing-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-note {
    display: none;
  }

  .hero {
    gap: 2.5rem;
    padding: 3rem 0 1rem;
  }

  .eyebrow {
    font-size: 0.73rem;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.2rem);
  }

  .lede {
    font-size: 1.08rem;
  }

  .status-row span {
    white-space: normal;
  }

  .orbit-label {
    display: none;
  }

  .product-preview img {
    aspect-ratio: 4 / 3;
  }
}
