:root {
  --ink: #2f2925;
  --muted: #71665e;
  --paper: #fffaf3;
  --cream: #fff2de;
  --orange: #ef7e3a;
  --orange-dark: #bd5422;
  --line: #eadfce;
  --shadow: 0 18px 45px rgba(112, 75, 43, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
}
body {
  margin: 0;
  font:
    16px/1.6 ui-rounded,
    "Hiragino Sans GB",
    "Microsoft YaHei",
    system-ui,
    sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #295a9c;
  outline-offset: 4px;
  border-radius: 8px;
}
.site-header,
.hero,
.features,
.gallery-section,
.closing,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
}
.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 9px;
}
.brand img {
  border-radius: 10px;
  height: 34px;
  width: 34px;
}
.header-link,
.lede,
.install-hint,
.feature-grid p,
.gallery-hint,
.site-footer {
  color: var(--muted);
}
.hero {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 680px;
  padding: 58px 0 84px;
}
.hero-copy {
  position: relative;
  z-index: 5;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 27px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.eyebrow {
  color: var(--orange-dark);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}
h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: -0.05em;
}
h1 {
  font-size: clamp(3rem, 6.1vw, 5.5rem);
  margin: 0 0 22px;
}
h1 em {
  color: var(--orange-dark);
  font-style: normal;
}
.lede {
  font-size: 1.08rem;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 51px;
  padding: 0 21px;
}
.button-primary {
  background: var(--orange);
  color: #fff;
}
.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
}
.install-hint {
  font-size: 0.8rem;
  margin: 10px 0 0;
}
.hero-screens {
  height: 548px;
  position: relative;
}
.screen {
  background: #252220;
  border: 6px solid #252220;
  border-radius: 29px;
  box-shadow: 0 25px 52px rgba(47, 41, 37, 0.23);
  margin: 0;
  overflow: hidden;
  position: absolute;
}
.screen img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
.screen-import,
.screen-broadcast,
.screen-listening {
  height: 470px;
  width: 217px;
}
.screen-import {
  right: 4%;
  top: 45px;
  transform: rotate(6deg);
  z-index: 3;
}
.screen-broadcast {
  left: 2%;
  top: 12px;
  transform: rotate(-8deg);
  z-index: 2;
}
.screen-listening {
  left: 24%;
  top: 102px;
  transform: rotate(5deg);
  z-index: 4;
}
.state-note {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 99px;
  bottom: 25px;
  box-shadow: 0 9px 22px rgba(47, 41, 37, 0.13);
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0;
  padding: 8px 14px;
  position: absolute;
  right: 0;
  z-index: 5;
}
.features {
  padding: 76px 0;
}
.section-intro {
  max-width: 680px;
}
.section-intro h2,
.closing h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin: 0;
}
.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}
.feature-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
}
.feature-icon {
  align-items: center;
  background: var(--cream);
  border-radius: 12px;
  color: var(--orange-dark);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.feature-grid h3 {
  font-size: 1.35rem;
  margin: 19px 0 7px;
}
.feature-grid p {
  margin: 0;
}
.gallery-section {
  padding: 48px 0 86px;
}
.screenshot-rail {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  overflow-x: auto;
  padding: 0 2px 14px;
  scroll-snap-type: x mandatory;
}
.screenshot-rail figure {
  flex: 0 0 245px;
  margin: 0;
  scroll-snap-align: start;
}
.screenshot-rail img {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
  width: 100%;
}
.screenshot-rail figcaption {
  font-weight: 800;
  margin: 10px 5px;
}
.closing {
  align-items: center;
  background: var(--cream);
  border-radius: 27px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 54px;
  padding: 43px 48px;
}
.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.82rem;
  gap: 23px;
  justify-content: space-between;
  padding: 25px 0 35px;
}
.footer-brand img {
  border-radius: 8px;
}
.site-footer nav {
  display: flex;
  gap: 16px;
}
.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 820px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 35px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero-screens {
    height: 490px;
    width: 100%;
  }
  .screen-import,
  .screen-broadcast,
  .screen-listening {
    height: 391px;
    width: 181px;
  }
  .screen-import {
    right: 3%;
  }
  .screen-broadcast {
    left: 4%;
  }
  .screen-listening {
    left: 26%;
    top: 102px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .closing {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 520px) {
  .site-header,
  .hero,
  .features,
  .gallery-section,
  .closing,
  .site-footer {
    width: min(100% - 32px, 520px);
  }
  .hero-copy {
    padding: 22px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }
  .cta-group {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
  }
  .hero-screens {
    height: 415px;
  }
  .screen-import,
  .screen-broadcast,
  .screen-listening {
    height: 315px;
    width: 146px;
  }
  .screen-broadcast {
    left: 0;
  }
  .screen-listening {
    left: 22%;
    top: 78px;
  }
  .state-note {
    bottom: 12px;
    font-size: 0.7rem;
  }
  .closing {
    padding: 32px 25px;
  }
  .screenshot-rail {
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .screenshot-rail figure {
    flex-basis: 202px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
