:root {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  background: #141615;
  color: #f3f4ee;
  letter-spacing: 0;
  --muted: #a8afa5;
  --line: #353b31;
  --accent: #d7f76b;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 5%;
  border-bottom: 1px solid var(--line);
  background: #141615;
}
.wordmark {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.wordmark strong {
  font-size: 20px;
  font-weight: 600;
}
.masthead nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
  color: #c4c9c0;
}
.masthead nav a:hover,
.text-link:hover {
  color: var(--accent);
}
.action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 5px;
  background: var(--accent);
  color: #18200d;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.action:hover {
  background: #e7ff9f;
}
.action.small {
  min-height: 38px;
  padding: 9px 16px;
  font-size: 12px;
  gap: 20px;
}
.action span {
  font-size: 20px;
}
.hero {
  overflow: hidden;
  background: #141615;
}
.hero-copy {
  padding: 48px 24px 42px;
  text-align: center;
}
.eyebrow,
.section-label {
  font-size: 10px;
  color: #aeb9a1;
  font-weight: 500;
}
.hero h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
  margin: 14px 0;
}
.hero-line {
  font-size: 21px;
  color: #bec6b7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 26px;
}
.text-link {
  font-size: 13px;
}
.hero-product {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.hero-product img {
  width: 1240px;
  max-width: 100%;
  height: auto;
  margin: auto;
}
.band {
  padding: 72px 7%;
  border-top: 1px solid var(--line);
}
.intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background: #eff1ea;
  color: #182015;
}
.intro .section-label {
  color: #626c59;
}
.band h2 {
  font-size: 42px;
  font-weight: 450;
  line-height: 1.13;
}
.intro p,
.membership p:not(.section-label) {
  margin-top: 24px;
  max-width: 550px;
  color: #596252;
  font-size: 15px;
  line-height: 1.7;
}
.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.number {
  display: block;
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 32px;
}
.feature-band h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
}
.feature-band p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  max-width: 320px;
}
.platforms {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  background: #1b1f19;
}
.platform-heading h2 {
  margin-top: 24px;
}
.platform-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #424b3b;
}
.platform-list a:first-child {
  padding-top: 0;
}
.platform-list a:hover .platform-arrow {
  background: var(--accent);
  color: #17200d;
}
.platform-name {
  font-size: 27px;
  font-weight: 450;
}
.platform-name small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 10px;
}
.platform-arrow {
  border: 1px solid #526044;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 24px;
  transition: background 0.2s;
}
.membership {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background: #d7f76b;
  color: #1c2710;
}
.membership .section-label,
.membership p:not(.section-label) {
  color: #4b5a35;
}
.membership .action {
  margin-top: 28px;
}
.action.dark {
  background: #1c2710;
  color: #ecf6d9;
}
.action.dark:hover {
  background: #35442a;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}
.footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--muted);
}
.footer small {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}
@media (max-width: 760px) {
  .masthead {
    padding: 18px 22px;
    gap: 12px;
  }
  .masthead nav {
    display: none;
  }
  .wordmark strong {
    font-size: 18px;
  }
  .wordmark img {
    width: 29px;
    height: 29px;
  }
  .hero-copy {
    padding: 40px 22px 32px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-line {
    font-size: 18px;
  }
  .hero-actions {
    gap: 20px;
    flex-direction: column;
    margin-top: 24px;
  }
  .hero-product {
    height: 285px;
  }
  .hero-product img {
    width: 390px;
    max-width: 100%;
  }
  .band {
    padding: 42px 24px;
  }
  .band h2 {
    font-size: 33px;
  }
  .intro,
  .platforms,
  .membership {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .feature-band {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-band article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
  }
  .feature-band article:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .number {
    margin-bottom: 14px;
  }
  .feature-band h3 {
    font-size: 23px;
  }
  .intro p,
  .membership p:not(.section-label) {
    font-size: 14px;
    margin-top: 18px;
  }
  .platforms {
    gap: 36px;
  }
  .platform-heading h2 {
    margin-top: 16px;
  }
  .platform-name {
    font-size: 25px;
  }
  .platform-name small {
    font-size: 10px;
    line-height: 1.5;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer p,
  .footer small {
    text-align: left;
  }
  .footer nav {
    gap: 14px;
  }
  .eyebrow {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .action,
  .platform-arrow {
    transition: none;
  }
}
