:root {
  --ink: #202124;
  --muted: #66686d;
  --paper: #f6f6f7;
  --white: #ffffff;
  --line: #dedfe2;
  --teal: #3c8f88;
  --teal-dark: #174d49;
  --teal-soft: #dff1ef;
  --gold: #d49b55;
  --gold-soft: #f8e7cb;
  --coral: #d96b5f;
  --blue: #3e78a0;
  --night: #090a0b;
  --night-surface: #161719;
  --max: 1180px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.content-wrap,
.nav-wrap,
.hero-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section-pad {
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(32, 33, 36, 0.64);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.teal {
  color: var(--teal);
}

.eyebrow.warm {
  color: #f4c47e;
}

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

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: 48px;
}

h3 {
  font-size: 26px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-width: 200px;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img,
.footer-brand img,
.download-copy > img {
  border-radius: 8px;
}

.brand-name {
  font-size: 19px;
}

.brand-en {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 28px;
  color: #45474b;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.store-link {
  display: inline-flex;
  min-height: 58px;
  padding: 10px 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.store-link:hover {
  background: #34363a;
  box-shadow: 0 12px 30px rgba(32, 33, 36, 0.18);
  transform: translateY(-2px);
}

.store-link small {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 600;
}

.button-icon {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
}

.store-link-small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13px;
}

.store-link-small span {
  font-size: 15px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  height: calc(100svh - 112px);
  min-height: 500px;
  max-height: 820px;
  overflow: hidden;
  background-color: #efc978;
  background-image: url("assets/hero-background.png");
  background-position: center 42%;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 227, 0.14);
}

.hero-inner {
  position: relative;
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 58%;
  height: 100%;
  padding: 54px 0 46px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 88px;
  font-weight: 850;
}

.hero-lead {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 720;
  line-height: 1.34;
}

.hero-summary {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(32, 33, 36, 0.74);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 750;
}

.hero-phone {
  position: absolute;
  z-index: 1;
  top: 38px;
  right: 5%;
  width: 408px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 58px;
  background: #070809;
  box-shadow: 0 30px 80px rgba(21, 52, 57, 0.32);
  transform: rotate(2deg);
}

.hero-phone img {
  width: 100%;
  border-radius: 49px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 64px;
  height: 5px;
  border-radius: 5px;
  background: rgba(20, 20, 20, 0.8);
  transform: translateX(-50%);
}

.hero-phone .phone-speaker {
  background: rgba(80, 80, 80, 0.9);
}

.trust-strip {
  display: flex;
  min-height: 56px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #55575b;
  background: var(--white);
  font-size: 12px;
  font-weight: 720;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.intro .section-heading h2 {
  margin: 0;
  font-size: 52px;
}

.intro-copy {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.experience {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

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

.experience-tabs {
  display: grid;
  width: min(100%, 570px);
  margin: 52px auto 74px;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #cfd1d4;
}

.experience-tab {
  position: relative;
  padding: 14px 20px 17px;
  border: 0;
  background: transparent;
  color: #73757a;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.experience-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.experience-tab.is-active {
  color: var(--ink);
}

.experience-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.showcase {
  display: grid;
  min-height: 660px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.showcase-copy {
  align-self: center;
}

.feature-number {
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 820;
}

.showcase-copy h3 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 38px;
}

.showcase-copy > p:not(.feature-number) {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.feature-points {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  position: relative;
  margin: 12px 0;
  padding-left: 22px;
  font-weight: 680;
}

.feature-points li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.product-stage {
  position: relative;
  display: flex;
  min-height: 660px;
  margin: 0;
  padding: 0 0 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-stage::before {
  position: absolute;
  z-index: -1;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(60, 143, 136, 0.22);
  border-radius: 50%;
  content: "";
}

.mode-switch {
  display: grid;
  width: 160px;
  margin-bottom: 18px;
  padding: 3px;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d2d4d7;
  border-radius: 8px;
  background: var(--white);
}

.mode-switch button {
  padding: 7px 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #76787d;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.mode-switch button.is-active {
  color: var(--white);
  background: var(--ink);
}

.phone-frame {
  position: relative;
  width: 305px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #202124;
  border-radius: 46px;
  background: #111214;
  box-shadow: 0 30px 60px rgba(32, 33, 36, 0.17);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 38px;
  transition: opacity 140ms ease;
}

.product-stage figcaption,
.screen-shot figcaption {
  margin-top: 16px;
  color: #77797e;
  font-size: 12px;
  font-weight: 700;
}

.privacy {
  color: #f4f4f5;
  background: var(--night);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 110px;
  align-items: center;
}

.privacy-copy h2 {
  font-size: 50px;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: #b8b9bd;
  font-size: 17px;
}

.inline-link {
  color: #86d4cc;
}

.privacy-flow {
  border-top: 1px solid #393a3e;
}

.flow-item {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 52px 1fr;
  border-bottom: 1px solid #393a3e;
}

.flow-number {
  color: #68c5bc;
  font-size: 12px;
  font-weight: 800;
}

.flow-item h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.flow-item p {
  grid-column: 2;
  margin: 0;
  color: #9fa0a5;
  font-size: 14px;
}

.details {
  background: var(--white);
}

.details .section-heading {
  margin-bottom: 64px;
}

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

.feature-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid #e0e1e4;
  border-radius: 8px;
  background: #fbfbfc;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: #bfc4c7;
  box-shadow: 0 16px 36px rgba(32, 33, 36, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 850;
}

.teal-icon { color: #1b625c; background: #dff1ef; }
.gold-icon { color: #754d1d; background: #f8e7cb; }
.coral-icon { color: #8b3f37; background: #f7dfdc; }
.ink-icon { color: #f4f4f5; background: #292a2e; }
.blue-icon { color: #2d607e; background: #dcecf4; }
.green-icon { color: #3e654b; background: #e0ede3; }

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.screens {
  overflow: hidden;
  color: #f4f4f5;
  background: #151719;
}

.screens-heading {
  display: flex;
  margin-bottom: 68px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.screens-heading h2 {
  margin: 0;
}

.screens-heading > p {
  max-width: 420px;
  margin-bottom: 4px;
  color: #aeb0b4;
}

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

.screen-shot {
  margin: 0;
}

.screen-shot img {
  width: 100%;
  border: 7px solid #242629;
  border-radius: 42px;
  background: #090a0b;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.25);
}

.screen-shot-offset {
  margin-top: 90px;
}

.screen-shot figcaption {
  color: #9b9da2;
}

.questions {
  background: var(--paper);
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 100px;
}

.questions h2 {
  font-size: 46px;
}

.faq {
  border-top: 1px solid #d0d1d4;
}

.faq details {
  border-bottom: 1px solid #d0d1d4;
}

.faq summary {
  display: flex;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

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

.faq summary span {
  color: var(--teal);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq details p {
  max-width: 650px;
  margin: -5px 40px 26px 0;
  color: var(--muted);
  font-size: 15px;
}

.download-band {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: #101214;
}

.download-art {
  position: absolute;
  top: -32%;
  right: 5%;
  width: 440px;
  height: 950px;
  border: 7px solid rgba(255, 255, 255, 0.12);
  border-radius: 48px;
  background: url("assets/share-cover.png") center top / cover no-repeat;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  transform: rotate(9deg);
}

.download-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  padding: 80px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.download-copy > img {
  margin-bottom: 34px;
}

.download-copy h2 {
  max-width: 700px;
  margin-bottom: 38px;
  font-size: 54px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.store-link-light {
  color: var(--ink);
  background: var(--white);
}

.store-link-light:hover {
  color: var(--ink);
  background: #f1f1f2;
}

.store-link-outline {
  color: var(--ink);
  background: transparent;
  border-color: #c0c2c6;
}

.store-link-outline:hover {
  color: var(--ink);
  background: #f0f0f1;
  border-color: #a8aaae;
}

.store-link-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.store-link-outline-light:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  padding: 42px 0;
  color: #b1b2b6;
  background: #0a0b0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand span {
  font-size: 11px;
}

.footer-brand .studio-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border: 1px solid #2a2b2f;
  border-radius: 4px;
  color: #8e8f93;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.qq-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b1b2b6;
  font-size: 13px;
  cursor: pointer;
  transition: color 180ms ease;
}

.qq-group:hover {
  color: var(--teal);
}

.qq-group code {
  padding: 2px 7px;
  border: 1px solid #2a2b2f;
  border-radius: 4px;
  background: #111214;
  color: #e2e3e6;
  font-family: inherit;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  transition: border-color 180ms ease, color 180ms ease;
}

.qq-group:hover code {
  border-color: var(--teal);
  color: var(--teal);
}

.footer-links a .email {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 7px;
  border: 1px solid #2a2b2f;
  border-radius: 4px;
  background: #111214;
  color: #e2e3e6;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: border-color 180ms ease, color 180ms ease;
}

.footer-links a:hover .email {
  border-color: var(--teal);
  color: var(--teal);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
}

.copyright {
  margin: 0;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 18px;
  }

  .brand {
    min-width: 170px;
  }

  .hero-phone {
    right: -3%;
  }

  .showcase {
    gap: 42px;
  }

  .privacy-grid {
    gap: 60px;
  }

  .download-art {
    right: -9%;
    opacity: 0.82;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 64px;
  }

  .content-wrap,
  .nav-wrap,
  .hero-inner {
    width: min(calc(100% - 36px), var(--max));
  }

  .section-pad {
    padding: 84px 0;
  }

  h2,
  .intro .section-heading h2,
  .privacy-copy h2,
  .questions h2 {
    font-size: 38px;
  }

  .brand {
    min-width: 0;
  }

  .brand-en,
  .site-header > .nav-wrap > .store-link-small {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    cursor: pointer;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: flex;
    height: calc(100svh - var(--header-h));
    padding: 50px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #dedfe2;
    font-size: 23px;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    height: calc(100svh - 106px);
    min-height: 440px;
    background-position: center;
  }

  .hero-shade {
    background: rgba(255, 248, 227, 0.2);
  }

  .hero-copy {
    width: 72%;
    padding: 28px 0 30px;
    justify-content: flex-start;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    margin-bottom: 4px;
    font-size: 58px;
  }

  .hero-lead {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .hero-summary {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .hero-actions .text-link {
    display: none;
  }

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

  .hero .store-link {
    min-height: 52px;
    padding: 9px 16px;
    font-size: 15px;
  }

  .hero-phone {
    top: 216px;
    right: -52px;
    width: 270px;
    padding: 6px;
    border-radius: 40px;
    transform: rotate(4deg);
  }

  .hero-phone img {
    border-radius: 34px;
  }

  .hero-phone .phone-speaker {
    top: 11px;
    width: 48px;
    height: 4px;
  }

  .trust-strip {
    min-height: 42px;
    padding: 8px 18px;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .intro-grid,
  .showcase,
  .privacy-grid,
  .questions-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 34px;
  }

  .experience-tabs {
    margin: 44px auto 52px;
  }

  .showcase {
    min-height: 0;
    gap: 40px;
  }

  .showcase-copy {
    text-align: center;
  }

  .showcase-copy h3,
  .showcase-copy > p:not(.feature-number) {
    margin-right: auto;
    margin-left: auto;
  }

  .showcase-copy h3 {
    font-size: 32px;
  }

  .feature-points {
    display: inline-block;
    margin-top: 20px;
    text-align: left;
  }

  .product-stage {
    min-height: 600px;
  }

  .privacy-grid,
  .questions-grid {
    gap: 56px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-row {
    gap: 18px;
  }

  .screen-shot img {
    border-width: 4px;
    border-radius: 28px;
  }

  .screen-shot-offset {
    margin-top: 56px;
  }

  .download-art {
    right: -24%;
    width: 380px;
    opacity: 0.55;
  }

  .download-band,
  .download-copy {
    min-height: 560px;
  }

  .download-copy h2 {
    font-size: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .content-wrap,
  .nav-wrap,
  .hero-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .section-pad {
    padding: 72px 0;
  }

  h2,
  .intro .section-heading h2,
  .privacy-copy h2,
  .questions h2 {
    font-size: 32px;
  }

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

  .brand-name {
    font-size: 17px;
  }

  .hero {
    min-height: 420px;
  }

  .hero-copy {
    width: 86%;
    padding-top: 24px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 22px;
  }

  .hero-summary {
    max-width: 265px;
    font-size: 13px;
  }

  .hero-phone {
    top: 225px;
    right: -58px;
    width: 240px;
  }

  .intro-copy {
    font-size: 16px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .experience-tabs {
    margin-top: 36px;
  }

  .experience-tab {
    padding-right: 8px;
    padding-left: 8px;
  }

  .showcase-copy h3 {
    font-size: 29px;
  }

  .showcase-copy > p:not(.feature-number) {
    font-size: 15px;
  }

  .product-stage {
    min-height: 570px;
  }

  .product-stage::before {
    width: 390px;
    height: 390px;
  }

  .phone-frame {
    width: 272px;
    border-radius: 42px;
  }

  .phone-frame img {
    border-radius: 36px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 225px;
    padding: 28px;
  }

  .feature-icon {
    margin-bottom: 28px;
  }

  .screens-heading {
    display: block;
    margin-bottom: 48px;
  }

  .screens-heading > p {
    margin-top: 20px;
  }

  .screen-row {
    width: 720px;
    grid-template-columns: repeat(3, 220px);
    gap: 20px;
    transform: translateX(-28px);
  }

  .screen-shot-offset {
    margin-top: 48px;
  }

  .faq summary {
    padding: 22px 0;
    font-size: 15px;
  }

  .download-art {
    top: -2%;
    right: -58%;
    width: 360px;
    height: 780px;
    opacity: 0.42;
  }

  .download-band,
  .download-copy {
    min-height: 540px;
  }

  .download-copy h2 {
    max-width: 330px;
    font-size: 37px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
