:root {
  color-scheme: dark;
  --ink: #e8dfcf;
  --paper: #ded5c3;
  --black: #020303;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--black);
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(232, 223, 207, 0.12);
  background: #010202;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 41px;
  margin-right: 47px;
}

.site-nav a {
  color: #f0e9dc;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 140ms ease;
}

.site-nav a:hover {
  color: #bdb3a2;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 173px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #c9bfad;
  border-radius: 7px;
  background: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #11100e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 140ms ease, transform 140ms ease;
}

.download-button:hover {
  background: #eee5d5;
  transform: translateY(-1px);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 82px) 24px 64px;
  overflow: hidden;
  background-image:
    linear-gradient(
      to right,
      transparent 0,
      transparent 600px,
      var(--black) 800px,
      var(--black) 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 430px,
      var(--black) 533px,
      var(--black) 100%
    ),
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2)),
    url("images/hero_container.jpg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 800px 533px, 800px 533px, 800px 533px, auto;
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.35vw, 64px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.025em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 880px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: #b4aa99;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 400;
  line-height: 1.55;
}

.hero-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 270px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid #c9bfad;
  border-radius: 9px;
  margin-top: clamp(24px, 3vw, 34px);
  background: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  color: #11100e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 140ms ease, transform 140ms ease;
}

.apple-mark {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 23px;
  font-weight: 500;
}

.hero-download:hover {
  background: #eee5d5;
  transform: translateY(-1px);
}

.system-requirement {
  margin: 15px 0 0;
  color: #9c9385;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.hero-screenshot {
  width: min(82vw, 1100px);
  margin-top: 30px;
}

.hero-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(232, 223, 207, 0.2);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto clamp(72px, 8vw, 120px);
  padding: clamp(64px, 7vw, 92px) 24px 0;
  border-top: 1px solid rgba(232, 223, 207, 0.1);
  background: #050808;
  text-align: center;
}

.features h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.features h2 span {
  display: block;
}

.section-rule {
  width: 56px;
  height: 1px;
  margin-top: clamp(32px, 3vw, 44px);
  background: #9a914b;
}

.features-copy {
  margin-top: 29px;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
}

.features-copy h3 {
  margin: 0;
  color: #d8cdbb;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.3;
}

.features-copy p {
  margin: 14px 0 0;
  color: #aa9f8e;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.features-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: #9b9d52;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: color 140ms ease;
}

.features-link:hover {
  color: #c0c36e;
}

.feature-preview {
  width: min(76vw, 1210px);
  aspect-ratio: 2.72 / 1;
  margin-top: 42px;
  overflow: hidden;
}

.feature-preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(232, 223, 207, 0.22);
  border-radius: 11px 11px 0 0;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.privacy-main {
  width: 100%;
  padding: clamp(64px, 8vw, 112px) 24px 100px;
  background:
    radial-gradient(circle at 18% 0%, rgba(84, 72, 48, 0.16), transparent 35%),
    var(--black);
}

.privacy-policy {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  color: #b4aa99;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.privacy-heading {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(232, 223, 207, 0.15);
  margin-bottom: 48px;
}

.privacy-eyebrow {
  margin: 0 0 16px;
  color: #9b9d52;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.1;
}

.effective-date {
  margin: 18px 0 0;
  color: #81796c;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
}

.privacy-policy section + section {
  margin-top: 42px;
}

.privacy-policy h2 {
  margin: 0 0 12px;
  color: #ded4c3;
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  font-weight: 400;
}

.privacy-policy p {
  margin: 0 0 18px;
}

.support-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 92px);
  padding: clamp(72px, 10vw, 140px) 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(84, 72, 48, 0.18), transparent 38%),
    var(--black);
  text-align: center;
}

.support-content {
  width: 100%;
  max-width: 720px;
}

.support-eyebrow {
  margin: 0 0 18px;
  color: #9b9d52;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-content h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.support-copy {
  margin: 24px 0 0;
  color: #b4aa99;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.support-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid #c9bfad;
  border-radius: 9px;
  margin-top: 32px;
  background: var(--paper);
  color: #11100e;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 140ms ease, transform 140ms ease;
}

.support-email:hover {
  background: #eee5d5;
  transform: translateY(-1px);
}

.success-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(84, 72, 48, 0.2), transparent 36%),
    var(--black);
  text-align: center;
}

.success-content {
  width: 100%;
  max-width: 680px;
}

.success-brand {
  display: inline-flex;
  margin-bottom: clamp(56px, 9vw, 92px);
}

.success-brand img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 10px;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid #9b9d52;
  border-radius: 50%;
  margin: 0 auto 28px;
  color: #b9bb68;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: 29px;
  line-height: 1;
}

.success-content h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.success-copy {
  margin: 24px 0 0;
  color: #b4aa99;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.success-brand:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}

.site-footer {
  width: 100%;
  padding: 0 32px;
  background: #050707;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 42px 0 54px;
  border-top: 1px solid rgba(232, 223, 207, 0.15);
}

.footer-inner p {
  margin: 0;
  color: #77746f;
  font-family: Futura, "Futura PT", "Century Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.footer-mission {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #8f9151 !important;
  font-family: "Courier New", Courier, monospace !important;
  font-size: 16px !important;
}

.footer-mission svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-mission u {
  text-underline-offset: 3px;
}

.footer-love {
  justify-self: end;
}

.footer-love span {
  display: inline-block;
  margin: 0 8px;
  color: #8f9151;
  font-size: 21px;
  line-height: 0;
  transform: translateY(2px);
}

.brand:focus-visible,
.site-nav a:focus-visible,
.download-button:focus-visible,
.hero-download:focus-visible,
.features-link:focus-visible,
.support-email:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 20px;
    padding: 18px 20px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: clamp(22px, 7vw, 41px);
    margin-right: 0;
  }

  .hero-screenshot {
    width: 100%;
  }

  .feature-preview {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 36px 0 42px;
    text-align: center;
  }

  .footer-love {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .download-button {
    width: auto;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .site-nav {
    justify-content: center;
    gap: 28px;
    width: 100%;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero {
    padding: 48px 18px 52px;
  }

  .hero h1 {
    font-size: clamp(31px, 10vw, 42px);
    line-height: 1.2;
  }

  .hero h1 span {
    display: inline;
  }

  .hero h1 span + span::before {
    content: " ";
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .desktop-break {
    display: none;
  }

  .hero-download {
    width: min(100%, 280px);
    min-width: 0;
    min-height: 52px;
    padding-inline: 18px;
    font-size: 17px;
  }

  .features {
    padding: 56px 18px 0;
  }

  .features h2 {
    font-size: clamp(31px, 9.5vw, 42px);
  }

  .features h2 span {
    display: inline;
  }

  .features h2 span + span::before {
    content: " ";
  }

  .features-copy p {
    font-size: 15px;
  }

  .features-link {
    font-size: 16px;
  }

  .feature-preview {
    margin-top: 34px;
  }

  .privacy-main {
    padding: 52px 18px 72px;
  }

  .support-main {
    min-height: calc(100vh - 132px);
    padding: 72px 18px;
  }

  .support-email {
    width: 100%;
    max-width: 320px;
    padding-inline: 16px;
  }

  .success-main {
    padding-inline: 18px;
  }

  .success-brand img {
    width: 56px;
    height: 56px;
  }

  .privacy-policy {
    font-size: 15px;
    line-height: 1.7;
  }

  .privacy-heading {
    margin-bottom: 38px;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .footer-inner p {
    font-size: 13px;
  }

  .footer-mission {
    gap: 10px;
    font-size: 13px !important;
  }
}
