:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #687180;
  --line: #dfe3e8;
  --surface: #ffffff;
  --canvas: #f2f1ed;
  --navy: #101927;
  --navy-soft: #1b283a;
  --accent: #b89255;
  --accent-soft: #f0e8da;
  --teal: #356b67;
  --teal-soft: #e2efed;
  --online: #23765c;
  --offline: #a53a33;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 146, 85, 0.42);
  outline-offset: 3px;
}

.landing-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 48%, rgba(184, 146, 85, 0.16), transparent 28%),
    linear-gradient(145deg, #111b2a 0%, #0b1320 70%);
  color: #f6f2e9;
}

.site-nav,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.wordmark,
.launcher-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-symbol {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-login {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(246, 242, 233, 0.55);
  color: #f6f2e9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.landing-main {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 60px;
  padding: 7vh 0 11vh;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  color: #cfb98f;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-copy p {
  max-width: 490px;
  margin: 0;
  color: #aeb8c4;
  font-size: 1rem;
  line-height: 1.7;
}

.primary-login {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 36px;
  padding: 15px 17px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111927;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-login:hover {
  background: transparent;
  color: #f6f2e9;
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  aspect-ratio: 1;
  opacity: 0.88;
}

.art-orbit,
.art-core,
.art-line {
  position: absolute;
}

.art-orbit {
  inset: 15%;
  border: 1px solid rgba(207, 185, 143, 0.42);
  border-radius: 50%;
}

.art-orbit::before,
.art-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(207, 185, 143, 0.14);
  border-radius: 50%;
  content: "";
}

.art-orbit::after {
  inset: -22%;
}

.art-core {
  inset: 39%;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: #cfb98f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 4rem);
}

.art-line {
  left: 4%;
  width: 92%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 185, 143, 0.48), transparent);
  transform-origin: center;
}

.line-one { top: 34%; transform: rotate(20deg); }
.line-two { top: 50%; transform: rotate(-32deg); }
.line-three { top: 66%; transform: rotate(8deg); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(246, 242, 233, 0.12);
  color: #7f8b9b;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.launcher-page {
  background: var(--canvas);
}

.launcher-shell {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 30px;
}

.suite-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #cfd4da;
}

.launcher-wordmark {
  color: var(--navy);
}

.suite-header h1 {
  margin: 24px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.suite-state {
  padding: 7px 10px;
  border: 1px solid #cfd4da;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--navy);
  box-shadow: 0 16px 38px rgba(24, 33, 47, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.product-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--navy);
  color: #f8f5ee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.matters .product-mark {
  background: var(--teal);
}

.produce .product-mark {
  background: var(--accent);
  color: var(--navy);
}

.produce .product-status {
  color: var(--teal);
}

.produce .product-status::before {
  background: var(--teal);
}

.product-copy {
  display: grid;
  gap: 6px;
}

.product-category {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.product-status {
  align-self: start;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-status::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #c28a25;
  content: "";
}

.product-card[data-health="online"] .product-status {
  color: var(--online);
}

.product-card[data-health="online"] .product-status::before {
  background: var(--online);
}

.product-card[data-health="offline"] .product-status {
  color: var(--offline);
}

.product-card[data-health="offline"] .product-status::before {
  background: var(--offline);
}

.product-open {
  position: absolute;
  right: 22px;
  bottom: 17px;
  color: var(--muted);
  font-size: 1.1rem;
}

.launcher-shell footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.72rem;
}

.launcher-shell footer a {
  color: inherit;
  text-decoration: none;
}

.launcher-shell footer button {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid #aeb5bf;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.page-kicker {
  display: block;
  margin-top: 34px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.back-link {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.install-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid #cfd4da;
}

.install-intro p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.25;
}

.install-intro span {
  color: var(--muted);
  line-height: 1.7;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.download-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 17px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.platform-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--navy);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.platform-mark.mac {
  background: var(--teal);
}

.download-card h2 {
  margin: 5px 0 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.download-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.download-action {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.download-action span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.download-action a {
  min-width: 120px;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.download-card[data-available="false"] {
  opacity: 0.7;
}

.download-card[data-available="false"] .download-action a {
  pointer-events: none;
  background: #a9afb7;
}

.install-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}

.install-notes div {
  display: grid;
  gap: 7px;
  padding: 20px;
  background: #e9ebe8;
}

.install-notes strong {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.install-notes span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .landing-page {
    overflow: auto;
  }

  .site-nav,
  .site-footer,
  .landing-main {
    width: min(100% - 32px, 560px);
  }

  .landing-main {
    grid-template-columns: 1fr;
    padding-top: 10vh;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .hero-art {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .launcher-shell {
    width: min(100% - 28px, 560px);
    padding-top: 32px;
  }

  .suite-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .install-intro,
  .download-grid,
  .install-notes {
    grid-template-columns: 1fr;
  }
}
