:root {
  --bg: #fbfcfa;
  --bg-warm: #f4f5f1;
  --surface: #ffffff;
  --surface-soft: #f6f7f4;
  --surface-strong: #ebeede;
  --text: #111411;
  --text-soft: #525b52;
  --muted: #7c857c;
  --line: #e0e5dc;
  --line-strong: #c8d0c5;
  --accent: #667c61;
  --accent-strong: #3f563d;
  --accent-soft: #e9efe5;
  --deep: #0e1411;
  --deep-soft: #17211c;
  --shadow-large: 0 42px 110px rgba(15, 20, 16, 0.14), 0 14px 42px rgba(15, 20, 16, 0.08);
  --shadow-medium: 0 22px 54px rgba(15, 20, 16, 0.11);
  --radius: 28px;
  --radius-small: 15px;
  --shell: 1240px;
  --font: "Avenir Next", "SF Pro Display", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(104, 126, 98, 0.11), transparent 30rem),
    radial-gradient(circle at 88% 14%, rgba(156, 174, 148, 0.14), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(72, 86, 68, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 86, 68, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 64%);
  content: "";
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.shell {
  width: min(var(--shell), calc(100% - 52px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--text);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(224, 229, 220, 0.74);
  background: rgba(251, 252, 250, 0.84);
  backdrop-filter: blur(22px);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(18, 26, 20, 0.08);
}

.brand-name {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.brand-product {
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

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

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.store-nav-action:focus-visible,
.nav-links a:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.button-secondary {
  border-color: rgba(86, 103, 80, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  border-color: rgba(70, 91, 66, 0.34);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 18, 0.08);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-nav-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(17, 22, 18, 0.09);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(150deg, #222a25, #090c0a);
  box-shadow: 0 13px 30px rgba(18, 21, 18, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #b8c9b0;
  box-shadow: 0 0 0 4px rgba(184, 201, 176, 0.18);
}

.store-nav-action:hover {
  box-shadow: 0 17px 34px rgba(18, 21, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(390px, 0.8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(68px, 8vw, 108px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(58px, 7.4vw, 106px);
  font-weight: 650;
  letter-spacing: -0.078em;
  line-height: 0.92;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0.015em;
}

.hero-brandline strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.hero-brandline span {
  color: var(--line-strong);
}

.hero-lede {
  max-width: 528px;
  margin-top: 25px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.68;
}

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

.hero-actions .button {
  min-height: 56px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(98, 118, 92, 0.16);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 8px 22px rgba(17, 24, 18, 0.04);
  font-size: 12px;
  font-weight: 650;
}

.hero-facts li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.store-button {
  min-width: 260px;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 25px 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(188, 208, 181, 0.2), transparent 44%),
    linear-gradient(148deg, #222923 0%, #090b09 85%);
  box-shadow: 0 18px 36px rgba(18, 21, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.store-status {
  min-width: 50px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #d3dece;
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-button-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.store-button-copy small {
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.store-button-copy strong {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.store-button-pending {
  cursor: default;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 4px 0 28px;
}

.product-glow {
  position: absolute;
  inset: -6% -9% 10% 8%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 48%, rgba(103, 125, 96, 0.26), transparent 58%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.92), transparent 36%);
  filter: blur(5px);
  transform: rotate(-7deg);
}

.product-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(233, 239, 230, 0.24);
  border-radius: 29px;
  background:
    radial-gradient(circle at 88% 3%, rgba(147, 169, 139, 0.22), transparent 34%),
    linear-gradient(145deg, #202a24 0%, #0d120f 72%);
  box-shadow: var(--shadow-large);
  transform: perspective(1400px) rotateY(-8deg) rotateX(3deg) rotateZ(1deg);
  transform-origin: 44% 55%;
}

.product-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: rgba(238, 244, 236, 0.74);
  font-size: 12px;
  font-weight: 650;
}

.product-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 250, 243, 0.22);
}

.product-bar span:first-child {
  background: #ff6b59;
}

.product-bar span:nth-child(2) {
  background: #f8be42;
}

.product-bar span:nth-child(3) {
  background: #2ec65e;
  margin-right: 8px;
}

.screenshot-shell {
  overflow: hidden;
  border-top: 1px solid rgba(234, 240, 232, 0.17);
  background: #fbfbfb;
}

.screenshot-shell img {
  display: block;
  width: 100%;
  height: auto;
}

.product-caption {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
  text-align: center;
}

.intro-band {
  padding: 30px 0 22px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
  padding: clamp(38px, 6vw, 60px);
  border: 1px solid rgba(203, 212, 198, 0.7);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 0%, rgba(104, 126, 98, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 56px rgba(19, 27, 20, 0.06);
}

.intro-copy span,
.privacy-copy span,
.series-copy span,
.download-panel > span,
.story-label {
  display: inline-flex;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-copy h2,
.story-head h2,
.privacy-copy h2,
.series-copy h2,
.download-panel h2 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.intro-copy p,
.story-head p,
.series-copy p,
.download-panel p {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.intro-points article {
  min-height: 214px;
  padding: 24px 22px;
  border: 1px solid rgba(205, 214, 201, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
}

.intro-points strong {
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.intro-points h3 {
  margin-top: 58px;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.045em;
}

.intro-points p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.62;
}

.story {
  margin-top: clamp(84px, 11vw, 132px);
  padding: clamp(76px, 9vw, 114px) 0 clamp(42px, 6vw, 70px);
  background:
    radial-gradient(circle at 20% 10%, rgba(112, 134, 105, 0.14), transparent 30rem),
    linear-gradient(180deg, var(--bg-warm), #ffffff 82%);
}

.story-head {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 420px;
  align-items: end;
  gap: clamp(36px, 9vw, 118px);
  margin-bottom: clamp(52px, 8vw, 86px);
}

.story-head h2 {
  margin-top: 0;
}

.story-label {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(540px, 1.3fr);
  align-items: start;
  gap: clamp(42px, 7vw, 86px);
}

.story-stage {
  position: sticky;
  top: 108px;
  grid-column: 2;
}

.story-stage-frame {
  display: grid;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(235, 241, 232, 0.2);
  border-radius: 27px;
  background:
    radial-gradient(circle at 92% 4%, rgba(133, 158, 126, 0.22), transparent 40%),
    var(--deep);
  box-shadow: var(--shadow-medium);
}

.story-image {
  grid-area: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(218, 227, 216, 0.24);
  border-radius: 17px;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.982);
  transition: opacity 380ms ease, transform 470ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story-image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-image img,
.story-inline-media img {
  display: block;
  width: 100%;
  height: auto;
}

.story-stage-caption {
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.story-steps {
  grid-column: 1;
  grid-row: 1;
}

.story-step {
  min-height: min(74vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 8vh, 78px) 0;
  border-top: 1px solid var(--line);
  opacity: 0.42;
  transition: opacity 260ms ease, transform 260ms ease;
}

.story-step:last-child {
  border-bottom: 1px solid var(--line);
}

.story-step.is-active {
  opacity: 1;
}

.story-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-step h3 {
  max-width: 350px;
  margin-bottom: 19px;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 620;
  letter-spacing: -0.062em;
  line-height: 1.07;
}

.story-step p {
  max-width: 378px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.story-step ul {
  display: grid;
  gap: 13px;
  margin: 29px 0 0;
  padding: 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.story-step li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-step li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  content: "";
}

.story-inline-media {
  display: none;
}

.privacy {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(46px, 8vw, 106px);
  margin-top: clamp(84px, 12vw, 144px);
  padding: clamp(54px, 7vw, 78px);
  overflow: hidden;
  border-radius: 34px;
  color: #f2f6f0;
  background:
    radial-gradient(circle at 8% 4%, rgba(133, 158, 126, 0.28), transparent 34%),
    linear-gradient(145deg, var(--deep-soft), var(--deep));
  box-shadow: 0 26px 70px rgba(17, 24, 19, 0.16);
}

.privacy-orbit {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: -110px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(204, 223, 198, 0.09);
  border-radius: 50%;
}

.privacy-orbit span {
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(204, 223, 198, 0.09);
  border-radius: inherit;
}

.privacy-orbit span:nth-child(2) {
  inset: 116px;
}

.privacy-orbit span:nth-child(3) {
  inset: 170px;
  background: rgba(208, 225, 201, 0.08);
}

.privacy-copy,
.privacy-details {
  position: relative;
  z-index: 1;
}

.privacy-copy span {
  color: #a8c0a2;
}

.privacy-copy p {
  margin: 24px 0 30px;
  color: #b5c1b3;
  font-size: 16px;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  padding-bottom: 5px;
  border-bottom: 1px solid #a2bb9c;
  color: #e0eadc;
  font-size: 14px;
  font-weight: 650;
}

.privacy-details {
  display: grid;
  gap: 0;
}

.privacy-details article {
  padding: 25px 0;
  border-bottom: 1px solid rgba(227, 234, 225, 0.12);
}

.privacy-details article:first-child {
  padding-top: 4px;
}

.privacy-details article:last-child {
  border: 0;
}

.privacy-details h3 {
  margin-bottom: 9px;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.privacy-details p {
  color: #b0bdb0;
  font-size: 14px;
  line-height: 1.65;
}

.series {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  padding: clamp(92px, 12vw, 144px) 0;
}

.series-copy p {
  max-width: 400px;
}

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

.series-item {
  min-height: 262px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 134, 105, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(18, 26, 20, 0.05);
}

.series-item img,
.future-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
}

.future-icon {
  display: grid;
  place-items: center;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 24px;
  font-weight: 680;
}

.series-item span {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.series-item h3 {
  margin-top: 10px;
  font-size: 48px;
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 1;
}

.series-item p {
  margin-top: 15px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.58;
}

.series-item .series-meaning {
  display: grid;
  gap: 7px;
}

.series-meaning strong {
  font-weight: 560;
  letter-spacing: -0.01em;
}

.series-meaning strong:last-child {
  color: var(--muted);
}

.series-item.future {
  color: #8f988f;
  background: rgba(255, 255, 255, 0.42);
}

.download {
  padding-bottom: clamp(76px, 10vw, 114px);
}

.download-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(58px, 8vw, 82px) 24px;
  border: 1px solid #dae1d7;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, #edf4e9, transparent 48%),
    linear-gradient(180deg, #ffffff, #f8faf7);
  text-align: center;
  box-shadow: 0 18px 54px rgba(18, 26, 20, 0.06);
}

.download-panel p {
  max-width: 540px;
  margin-bottom: 34px;
}

.download-panel small {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-brand .brand-name {
  font-size: 18px;
}

.footer-brand .brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.footer p {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 23px;
}

.legal-page {
  background: var(--surface-soft);
}

.legal-shell {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 92px) 0 clamp(76px, 10vw, 110px);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 52px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
}

.legal-back:hover {
  color: var(--text);
}

.legal-head {
  margin-bottom: 48px;
}

.legal-head h1 {
  margin-bottom: 18px;
  font-size: clamp(45px, 7vw, 64px);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.legal-head p {
  max-width: 650px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.legal-date {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.legal-content {
  display: grid;
  gap: 0;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #ffffff;
}

.legal-content section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.045em;
}

.legal-content p {
  margin-bottom: 13px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.product-stage,
.intro-copy,
.intro-points {
  animation: rise-in 640ms ease both;
}

.product-stage {
  animation-delay: 90ms;
}

.intro-copy,
.intro-points {
  animation-delay: 130ms;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .product-window {
    transform: none;
  }

  .intro-grid,
  .story-head,
  .privacy,
  .series {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-stage {
    display: none;
  }

  .story-steps {
    grid-column: auto;
    grid-row: auto;
  }

  .story-inline-media {
    display: block;
    margin: 38px 0 0;
    padding: 8px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--deep);
  }

  .story-inline-media img {
    border-radius: 13px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  .site-header {
    position: static;
  }

  .nav {
    height: 68px;
    gap: 18px;
  }

  .nav-links {
    display: none;
  }

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

  .brand-product {
    display: none;
  }

  .store-nav-action {
    min-height: 40px;
    margin-left: auto;
    padding: 0 14px 0 12px;
    font-size: 12px;
  }

  .store-status-dot {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
  }

  .hero {
    gap: 36px;
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-brandline {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    font-size: 12px;
  }

  .hero-brandline strong {
    font-size: 13px;
  }

  .hero-lede {
    margin-top: 18px;
  }

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

  .hero-actions .store-button,
  .hero-actions .button {
    width: 100%;
  }

  .store-button {
    min-width: 0;
  }

  .product-stage {
    padding-bottom: 0;
  }

  .product-window {
    border-radius: 20px;
  }

  .product-bar {
    height: 40px;
    padding: 0 13px;
  }

  .product-bar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .screenshot-shell img {
    height: 340px;
    object-fit: cover;
    object-position: left top;
  }

  .product-caption {
    margin-top: 14px;
  }

  .intro-band {
    padding-top: 10px;
  }

  .intro-grid {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .intro-copy h2,
  .story-head h2,
  .privacy-copy h2,
  .series-copy h2,
  .download-panel h2 {
    font-size: 34px;
  }

  .intro-points,
  .series-track {
    grid-template-columns: 1fr;
  }

  .intro-points article {
    min-height: 0;
  }

  .intro-points h3 {
    margin-top: 38px;
  }

  .story {
    margin-top: 68px;
    padding: 52px 0 18px;
  }

  .story-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .story-label {
    margin-bottom: 0;
  }

  .story-step {
    min-height: 0;
    padding: 39px 0 47px;
    opacity: 1;
  }

  .story-number {
    margin-bottom: 21px;
  }

  .story-step h3 {
    font-size: 30px;
  }

  .story-inline-media {
    margin-top: 30px;
    padding: 6px;
    border-radius: 16px;
  }

  .story-inline-media img {
    height: 320px;
    object-fit: cover;
    object-position: left top;
  }

  .privacy {
    margin-top: 72px;
    padding: 38px 25px;
    border-radius: 24px;
  }

  .privacy-orbit {
    opacity: 0.55;
  }

  .series {
    padding: 76px 0;
    gap: 36px;
  }

  .series-item {
    min-height: 0;
  }

  .download-panel {
    align-items: stretch;
    padding: 43px 23px;
    border-radius: 24px;
    text-align: left;
  }

  .download-panel .store-button {
    align-self: flex-start;
  }

  .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .footer p {
    text-align: left;
  }

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

  .legal-shell {
    width: min(820px, calc(100% - 32px));
    padding-top: 42px;
  }

  .legal-back {
    margin-bottom: 38px;
  }

  .legal-content {
    padding: 27px 22px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
