@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #17241f;
  --forest: #17241f;
  --forest-deep: #0f1915;
  --sage: #dce9dd;
  --rose: #f2bdc8;
  --brick: #c74d3b;
  --mist: #bddce4;
  --cream: #fff8eb;
  --gold: #e9bf57;
  --muted: #69726d;
  --max: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sage);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

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

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

button {
  font: inherit;
}

.header {
  width: min(calc(100% - 44px), var(--max));
  min-height: 90px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 30;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 31px;
  color: rgba(23, 36, 31, .72);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition: color .2s ease, transform .2s ease;
}

.nav a:hover {
  color: var(--brick);
  transform: translateY(-2px);
}

.header-download,
.main-download,
.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-download {
  min-height: 46px;
  padding: 0 23px;
  font-size: 14px;
}

.header-download:hover,
.main-download:hover,
.final-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(15, 25, 21, .22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--forest);
  background: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
}

.hero {
  width: min(calc(100% - 44px), 1420px);
  min-height: 720px;
  margin: 20px auto 82px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 74px;
}

.hero-copy {
  padding-left: clamp(0px, 4vw, 76px);
}

.eyebrow,
.section-label {
  margin: 0 0 21px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-label.light {
  color: var(--gold);
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(58px, 6.8vw, 100px);
  line-height: .96;
  letter-spacing: -.076em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--brick);
}

.lead {
  max-width: 650px;
  margin: 33px 0 0;
  color: rgba(23, 36, 31, .7);
  font-size: 18px;
  line-height: 1.95;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

.main-download {
  min-height: 60px;
  padding: 0 32px;
  background: var(--brick);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
}

.text-link i {
  transition: transform .2s ease;
}

.text-link:hover i {
  transform: translateX(5px);
}

.hero-note {
  max-width: 640px;
  margin: 25px 0 0;
  color: rgba(23, 36, 31, .56);
  font-size: 13px;
  line-height: 1.75;
}

.hero-media {
  min-height: 630px;
  margin: 0;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: 92%;
  aspect-ratio: 1.18;
  background: var(--rose);
  clip-path: polygon(7% 1%, 93% 4%, 100% 42%, 88% 98%, 13% 100%, 0 62%);
}

.hero-media::after {
  content: "";
  position: absolute;
  width: 165px;
  height: 165px;
  right: 4%;
  top: 7%;
  background: var(--gold);
  border-radius: 50%;
}

.hero-media img {
  width: min(88%, 740px);
  max-height: 570px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  clip-path: ellipse(49% 47% at 50% 50%);
  filter: drop-shadow(0 34px 42px rgba(23, 36, 31, .22));
}

.download,
.benefits,
.install {
  width: min(calc(100% - 44px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.download {
  padding: 100px 0 140px;
}

.download-heading {
  max-width: 850px;
}

.download-heading h2,
.experience-copy h2,
.benefits-title h2,
.devices-copy h2,
.install-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1.07;
  letter-spacing: -.064em;
  font-weight: 900;
}

.download-heading > p:last-child,
.experience-copy > p,
.devices-copy > p {
  max-width: 750px;
  margin: 24px 0 0;
  color: rgba(23, 36, 31, .68);
  font-size: 17px;
  line-height: 1.9;
}

.platform-lines {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 110px;
}

.platform-lines > a {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 7px 22px;
  align-items: center;
}

.platform-lines > a > span {
  grid-row: 1 / span 3;
  color: rgba(199, 77, 59, .28);
  font-size: 47px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
}

.platform-lines strong {
  font-size: 28px;
}

.platform-lines em {
  grid-column: 2;
  color: rgba(23, 36, 31, .62);
  font-size: 14px;
  font-style: normal;
}

.platform-lines > a > i {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--brick);
  font-size: 40px;
}

.platform-lines b {
  grid-column: 2 / -1;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.platform-lines b i {
  transition: transform .2s ease;
}

.platform-lines > a:hover b i {
  transform: translateX(5px);
}

.experience {
  padding: 145px max(22px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 100px;
  align-items: center;
  color: var(--cream);
  background: var(--forest);
  clip-path: polygon(0 5%, 90% 0, 100% 9%, 96% 95%, 14% 100%, 0 91%);
}

.experience-copy > p {
  color: rgba(255, 248, 235, .7);
}

.experience-notes {
  margin-top: 41px;
  display: grid;
  gap: 24px;
}

.experience-notes p {
  margin: 0;
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 18px;
  color: rgba(255, 248, 235, .7);
  line-height: 1.75;
}

.experience-notes strong {
  color: var(--gold);
}

.experience-media {
  margin: 0;
  min-height: 560px;
  display: grid;
  place-items: center;
  background: var(--mist);
  clip-path: circle(48% at 50% 50%);
}

.experience-media img {
  width: 86%;
  max-height: 520px;
  object-fit: contain;
}

.benefits {
  padding: 145px 0 150px;
}

.benefits-title {
  max-width: 850px;
}

.benefits-flow {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
}

.benefits-flow article > span {
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.benefits-flow h3 {
  margin: 11px 0 11px;
  font-size: 26px;
}

.benefits-flow p {
  margin: 0;
  color: rgba(23, 36, 31, .68);
  line-height: 1.85;
}

.devices {
  padding: 135px max(22px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 95px;
  align-items: center;
  color: var(--cream);
  background: var(--brick);
}

.devices-media {
  margin: 0;
  min-height: 560px;
  display: grid;
  place-items: center;
  background: var(--rose);
  clip-path: ellipse(49% 46% at 50% 50%);
}

.devices-media img {
  width: 82%;
  max-height: 520px;
  object-fit: contain;
}

.devices-copy > p {
  color: rgba(255, 248, 235, .75);
}

.devices-copy ul {
  margin: 41px 0 0;
  padding: 0;
  display: grid;
  gap: 23px;
  list-style: none;
}

.devices-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 15px;
  color: rgba(255, 248, 235, .8);
  line-height: 1.75;
}

.devices-copy li i {
  margin-top: 5px;
  color: var(--gold);
}

.devices-copy > a {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--gold);
  font-weight: 900;
}

.devices-copy > a i {
  transition: transform .2s ease;
}

.devices-copy > a:hover i {
  transform: translateX(5px);
}

.install {
  padding: 145px 0 150px;
}

.install-heading {
  max-width: 850px;
}

.install-steps {
  margin: 82px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px;
  list-style: none;
}

.install-steps li > span {
  display: block;
  margin-bottom: 25px;
  color: rgba(199, 77, 59, .24);
  font-size: 92px;
  line-height: .78;
  font-weight: 900;
  letter-spacing: -.08em;
}

.install-steps h3 {
  margin: 0 0 13px;
  font-size: 24px;
}

.install-steps p {
  margin: 0;
  color: rgba(23, 36, 31, .68);
  line-height: 1.85;
}

.install-media {
  margin: 85px 0 0;
  min-height: 460px;
  display: grid;
  place-items: center;
  background: var(--mist);
  clip-path: polygon(6% 1%, 94% 5%, 100% 42%, 88% 98%, 13% 100%, 0 62%);
}

.install-media img {
  width: min(92%, 930px);
  max-height: 430px;
  object-fit: contain;
}

.faq {
  padding: 145px max(22px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 120px;
  align-items: start;
  color: var(--cream);
  background: var(--forest-deep);
}

.faq-heading {
  position: sticky;
  top: 95px;
}

.faq-list {
  display: grid;
  gap: 34px;
}

.faq-list summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  margin-top: 8px;
  color: var(--gold);
  font-size: 14px;
  transition: transform .2s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 248, 235, .7);
  line-height: 1.85;
}

.final-cta {
  min-height: 500px;
  padding: 90px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--forest);
  background: var(--rose);
}

.final-cta > p {
  margin: 0 0 17px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.final-cta h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(52px, 7vw, 98px);
  line-height: 1;
  letter-spacing: -.075em;
  font-weight: 900;
}

.final-cta a {
  min-height: 62px;
  margin-top: 40px;
  padding: 0 34px;
  color: var(--cream);
  background: var(--forest);
  font-size: 17px;
}

.final-cta > span {
  margin-top: 19px;
  color: rgba(23, 36, 31, .62);
  font-size: 13px;
}

.footer {
  width: 100%;
  min-height: 126px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 38px;
  color: var(--cream);
  background: var(--forest);
  font-size: 13px;
}

.footer-brand {
  color: var(--cream);
  font-size: 18px;
}

.footer-brand img {
  width: 31px;
  height: 31px;
}

@media (max-width: 1040px) {
  .header {
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 78px 0 auto;
    width: 100%;
    padding: 35px 24px 39px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    color: var(--cream);
    background: rgba(23, 36, 31, .98);
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-download {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 55px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-media {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }

  .experience,
  .devices,
  .faq {
    grid-template-columns: 1fr;
  }

  .experience-media,
  .devices-media {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .header {
    width: min(calc(100% - 28px), var(--max));
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
  }

  .header-download {
    display: none;
  }

  .hero,
  .download,
  .benefits,
  .install {
    width: min(calc(100% - 30px), var(--max));
  }

  .hero {
    margin-top: 0;
    margin-bottom: 35px;
    gap: 35px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(50px, 14.5vw, 70px);
  }

  .lead {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.85;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .main-download {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media::before {
    width: 100%;
  }

  .hero-media::after {
    width: 110px;
    height: 110px;
  }

  .hero-media img {
    max-height: 350px;
  }

  .download,
  .benefits,
  .install {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .platform-lines {
    margin-top: 55px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .experience {
    padding-top: 105px;
    padding-bottom: 115px;
    gap: 48px;
    clip-path: polygon(0 2%, 90% 0, 100% 3%, 97% 98%, 14% 100%, 0 96%);
  }

  .experience-notes p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .experience-media,
  .devices-media {
    min-height: 360px;
  }

  .benefits-flow {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 47px;
  }

  .devices {
    padding-top: 90px;
    padding-bottom: 95px;
    gap: 48px;
  }

  .devices-media {
    order: -1;
  }

  .install-steps {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .install-steps li > span {
    margin-bottom: 20px;
    font-size: 76px;
  }

  .install-media {
    margin-top: 58px;
    min-height: 330px;
  }

  .faq {
    padding-top: 95px;
    padding-bottom: 100px;
    gap: 52px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .final-cta {
    min-height: 430px;
    padding: 75px 20px;
  }

  .final-cta h2 {
    font-size: clamp(48px, 13.8vw, 68px);
  }

  .footer {
    padding: 36px 20px;
    grid-template-columns: 1fr;
    gap: 13px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
