:root {
  color-scheme: light;
  --ink: #101114;
  --muted: #5b606a;
  --paper: #ffffff;
  --soft: #f3f1ea;
  --dark: #111216;
  --dark-2: #1b1d22;
  --line: rgba(16, 17, 20, 0.14);
  --mint: #4de8c7;
  --yellow: #ffd166;
  --coral: #ff6b5f;
  --blue: #4d8dff;
  --shadow: 0 24px 70px rgba(16, 17, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0));
}

.brand,
.nav-links,
.footer-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.nav-links {
  gap: 28px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #101114;
  background: var(--mint);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button-light {
  color: #101114;
  background: #fff;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.home-hero {
  min-height: 92svh;
}

.support-hero {
  min-height: 78svh;
}

.download-hero {
  min-height: 80svh;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.48);
  transform-origin: center bottom;
  z-index: -2;
}

.support-hero .hero-bg {
  transform: scale(1.52);
}

.download-hero .hero-bg {
  transform: scale(1.38);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.26)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.16) 42%);
}

.hero-content {
  width: min(880px, calc(100% - 48px));
  margin: 76px auto 52px max(36px, calc((100vw - 1180px) / 2));
  padding-right: 22%;
}

.hero-content.compact {
  width: min(820px, calc(100% - 48px));
  margin-left: max(36px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #986400;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 76px;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 23px;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.scroll-cue {
  position: absolute;
  left: 36px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.72);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--dark);
}

.stat-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 36px;
  color: #fff;
  background: #191b20;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 40px;
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.76);
}

.accent-mint strong {
  color: var(--mint);
}

.accent-coral strong {
  color: var(--coral);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 96px max(36px, calc((100vw - 1180px) / 2));
}

.feature-band.flip .feature-copy {
  order: 2;
}

.feature-copy p {
  max-width: 620px;
  color: var(--muted);
}

.dark-band .feature-copy p,
.dark-band .check-list {
  color: rgba(255, 255, 255, 0.74);
}

.light-band {
  background: #fff;
}

.warm-band {
  background: var(--soft);
}

.dark-band {
  color: #fff;
  background: var(--dark);
}

.feature-media {
  margin: 0;
}

.feature-media img,
.policy-band img {
  width: 100%;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dark-media img {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.dark-band figcaption {
  color: rgba(255, 255, 255, 0.62);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  transform: translateY(-50%);
}

.check-list.inverted li::before {
  background: var(--yellow);
}

.seo-section,
.benefits-section,
.gallery-section,
.faq-section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.seo-section {
  background: #fff;
}

.seo-copy {
  max-width: 900px;
  margin: 0 auto;
  columns: 2 360px;
  column-gap: 56px;
}

.seo-copy p {
  break-inside: avoid;
  color: var(--muted);
}

.benefits-section {
  background: var(--soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article {
  min-height: 244px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.benefit-grid p {
  color: var(--muted);
}

.gallery-section {
  background: #faf9f5;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.screenshot-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 58%);
  gap: 20px;
  overflow-x: auto;
  padding: 6px 4px 28px;
  scroll-snap-type: x mandatory;
}

.screenshot-strip img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 17, 20, 0.14);
  scroll-snap-align: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 70px max(36px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #16171b;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 38px max(36px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #0b0c0f;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
}

.support-contact,
.policy-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: center;
  padding: 86px max(36px, calc((100vw - 1180px) / 2));
  background: #fff;
}

.support-contact h2,
.policy-band h2 {
  max-width: 680px;
}

.support-contact p,
.policy-band p {
  color: var(--muted);
}

.support-contact a {
  color: #145ad2;
  font-weight: 800;
}

.support-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f7f1;
}

.support-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.support-note p {
  margin: 0;
}

.support-faq {
  background: #f7f8fb;
}

.troubleshooting-band {
  padding: 92px max(36px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article {
  min-height: 252px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--dark-2);
}

.steps-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.step-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #101114;
  background: var(--yellow);
  font-weight: 900;
}

.policy-band {
  background: #faf9f5;
}

.legal-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(16, 17, 20, 0.08);
  backdrop-filter: blur(14px);
}

.legal-page {
  padding: 132px max(20px, calc((100vw - 920px) / 2)) 86px;
  background: #fff;
}

.legal-document {
  color: var(--ink);
}

.legal-document h1 {
  max-width: 760px;
  color: var(--ink);
}

.legal-document h2 {
  margin-top: 48px;
  font-size: 30px;
}

.legal-document h3 {
  margin-top: 30px;
  font-size: 21px;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-document a {
  color: #145ad2;
  font-weight: 800;
}

.availability-section,
.wishlist-section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.availability-section {
  background: #fff;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.availability-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 17, 20, 0.08);
}

.availability-card h3 {
  margin-top: 18px;
}

.availability-card p {
  color: var(--muted);
}

.availability-card.available {
  background: #f7fffb;
  border-color: rgba(77, 232, 199, 0.46);
}

.availability-card.pending {
  background: #fffdf7;
}

.availability-card.planned {
  background: #f7f8fb;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #101114;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.available .status-pill {
  background: var(--mint);
}

.planned .status-pill {
  color: #fff;
  background: #4b5563;
}

.availability-note {
  margin-top: auto;
  color: #0d7c66;
  font-size: 15px;
}

.link-button {
  margin-top: auto;
  padding: 0;
  border: 0;
  color: #145ad2;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.link-button:hover {
  text-decoration: underline;
}

.wishlist-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(340px, 0.75fr);
  gap: 56px;
  align-items: start;
  background: var(--soft);
}

.wishlist-copy p {
  max-width: 620px;
  color: var(--muted);
}

.privacy-line a,
.form-fallback a {
  color: #145ad2;
  font-weight: 800;
}

.wishlist-form {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.wishlist-form label {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.wishlist-form input,
.wishlist-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(16, 17, 20, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.wishlist-form input:focus,
.wishlist-form select:focus {
  outline: 3px solid rgba(77, 232, 199, 0.42);
  border-color: #1b9d83;
}

.wishlist-form button[type="submit"] {
  width: 100%;
  margin-top: 10px;
}

.wishlist-form button[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 26px;
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: #0d7c66;
}

.form-status.error {
  color: #b42318;
}

.form-status.info {
  color: #145ad2;
}

.form-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero-content,
  .hero-content.compact {
    padding-right: 0;
    margin-right: 24px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 34px;
  }

  .stats-band,
  .feature-band,
  .availability-grid,
  .benefit-grid,
  .faq-grid,
  .wishlist-section,
  .support-contact,
  .steps-grid,
  .policy-band {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .availability-section,
  .wishlist-section,
  .seo-section,
  .benefits-section,
  .gallery-section,
  .faq-section,
  .support-contact,
  .troubleshooting-band,
  .policy-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .feature-band.flip .feature-copy {
    order: 0;
  }

  .screenshot-strip {
    grid-auto-columns: minmax(320px, 86%);
  }

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

@media (max-width: 640px) {
  body,
  button,
  input,
  textarea {
    font-size: 16px;
  }

  .site-header {
    gap: 12px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    margin-left: auto;
    gap: 12px;
  }

  .button-small {
    display: none;
  }

  .hero,
  .home-hero,
  .support-hero,
  .download-hero {
    min-height: 86svh;
  }

  .hero-content,
  .hero-content.compact {
    width: calc(100% - 36px);
    margin-top: 86px;
    margin-left: 18px;
    margin-right: 18px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .feature-band,
  .legal-page,
  .availability-section,
  .wishlist-section,
  .seo-section,
  .benefits-section,
  .gallery-section,
  .faq-section,
  .support-contact,
  .troubleshooting-band,
  .policy-band,
  .cta-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stat-card {
    min-height: 132px;
    padding: 26px 22px;
  }

  .feature-band {
    gap: 34px;
  }

  .availability-card,
  .wishlist-form {
    padding: 22px;
  }

  .legal-document h2 {
    font-size: 26px;
  }

  .scroll-cue {
    left: 18px;
  }

  summary {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
