:root {
  color-scheme: dark;
  --app-black: #050505;
  --surface: #151515;
  --surface-elevated: #1c1c1e;
  --white: #ffffff;
  --secondary: #a3a3a3;
  --muted: #777777;
  --divider: #242424;
  --mint: #b7f5c8;
  --max-width: 1180px;
  --background-overlay-opacity: 0.48;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--app-black);
}

body {
  position: relative;
  margin: 0;
  background-color: var(--app-black);
  /*
  background-image: url('assets/mockup-ui.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  */
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.policy-page {
  background-image: none;
}

.background-curtain {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000000;
  opacity: var(--background-overlay-opacity);
  pointer-events: none;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

img,
svg {
  display: block;
}

.hero {
  min-height: 82svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 56px 22px;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95), 0 10px 64px rgba(0, 0, 0, 0.95),
    0 24px 128px rgba(0, 0, 0, 0.9);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--secondary);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 5.75rem;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero__tagline {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1.05;
}

.hero__body {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.55;
}

.buttons {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
}

.intro {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  padding: 84px 0 74px;
}

.intro__copy {
  max-width: 820px;
}

h2 {
  margin-bottom: 22px;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.intro p,
.detail-columns p {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.feature-list div {
  min-height: 116px;
  padding: 24px 28px 24px 0;
  border-right: 1px solid var(--divider);
}

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

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 1.55rem;
  line-height: 1.1;
}

.feature-list span {
  color: var(--secondary);
  font-size: 0.98rem;
  line-height: 1.5;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  min-width: 196px;
  min-height: 58px;
  gap: 12px;
  padding: 9px 16px;
  border: 1px solid var(--white);
  border-radius: 6px;
  background: var(--white);
  color: var(--app-black);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.store-button svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button small {
  display: block;
  margin-bottom: 3px;
  color: #303030;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.detail-columns {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding: 0 0 96px;
}

.detail-columns article {
  padding-top: 28px;
  border-top: 1px solid var(--divider);
}

h3 {
  margin-bottom: 16px;
  font-size: 1.85rem;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.detail-columns p:last-child {
  margin-bottom: 0;
  color: var(--secondary);
}

.footer {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--divider);
  color: var(--muted);
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.footer .footer__privacy-link {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible,
.policy-content a {
  color: var(--white);
}

.policy-main {
  position: relative;
  z-index: 1;
  width: min(100% - 44px, 900px);
  margin: 0 auto;
  padding: 72px 0 72px;
}

.policy-hero {
  padding: 42px 0 58px;
  border-bottom: 1px solid var(--divider);
}

.policy-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 4.8rem;
  line-height: 0.92;
}

.policy-lede {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.65;
}

.policy-date {
  margin: 0;
  color: var(--secondary);
  font-size: 0.96rem;
  line-height: 1.5;
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--divider);
}

.policy-summary div {
  min-height: 178px;
  padding: 26px 24px 26px 0;
  border-right: 1px solid var(--divider);
}

.policy-summary div:last-child {
  border-right: 0;
}

.policy-summary strong,
.policy-summary span {
  display: block;
}

.policy-summary strong {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.2;
}

.policy-summary span {
  color: var(--secondary);
  font-size: 0.98rem;
  line-height: 1.58;
}

.policy-content article {
  padding: 38px 0;
  border-bottom: 1px solid var(--divider);
}

.policy-content h2 {
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1.08;
}

.policy-content p,
.policy-content li {
  color: var(--secondary);
  font-size: 1.02rem;
  line-height: 1.72;
}

.policy-content p:last-child,
.policy-content ul:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.policy-content li + li {
  margin-top: 10px;
}

.policy-content a {
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 3px;
}

@media (min-width: 720px) {
  .hero {
    padding: 70px 32px;
  }

  h1 {
    font-size: 9rem;
  }

  .hero__tagline {
    font-size: 2.7rem;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 13rem;
  }

  .hero__tagline {
    font-size: 3.4rem;
  }
}

@media (max-width: 820px) {
  .intro {
    padding-top: 68px;
  }

  h2 {
    font-size: 2.45rem;
  }

  .feature-list,
  .detail-columns,
  .policy-summary {
    grid-template-columns: 1fr;
  }

  .feature-list div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--divider);
  }

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

  .policy-summary div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--divider);
  }

  .policy-summary div:last-child {
    border-bottom: 0;
  }

  .policy-hero h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 82svh;
    padding: 42px 18px;
  }

  h1 {
    font-size: 5.15rem;
  }

  .hero__tagline {
    font-size: 1.74rem;
  }

  .hero__body,
  .intro p,
  .detail-columns p {
    font-size: 1rem;
  }

  .intro,
  .detail-columns,
  .footer,
  .policy-main {
    width: min(100% - 36px, var(--max-width));
  }

  .policy-main {
    padding-top: 44px;
  }

  .policy-hero {
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .policy-hero h1 {
    font-size: 2.85rem;
  }

  .policy-lede {
    font-size: 1.06rem;
  }

  .policy-content h2 {
    font-size: 1.65rem;
  }

  .store-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
  }
}
