:root {
  --red: #a91d34;
  --red-bright: #b72440;
  --red-dark: #721326;
  --paper: #f7f3ef;
  --paper-deep: #eee7e1;
  --white: #fffdfb;
  --ink: #251a1c;
  --muted: #716467;
  --line: #d9cfca;
  --dark: #28181c;
  --dark-soft: #3a2027;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 28px 80px rgba(91, 31, 45, 0.15);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(169, 29, 52, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 29, 52, 0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(247, 243, 239, 0.93);
  border-bottom: 1px solid rgba(113, 100, 103, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(105, 17, 34, 0.2);
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-download):hover {
  color: var(--red);
}

.nav-download {
  padding: 9px 17px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(169, 29, 52, 0.2);
}

.nav-download:hover {
  background: var(--red-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-block: 72px 86px;
}

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

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 78px);
  font-weight: 820;
  letter-spacing: -0.038em;
  line-height: 1.12;
}

.hero h1 em {
  display: inline-block;
  margin-top: 0.1em;
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  gap: 13px;
  min-width: 190px;
  padding: 9px 18px;
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 26px rgba(169, 29, 52, 0.22);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 30px rgba(114, 19, 38, 0.25);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--red);
  background: var(--white);
  border-radius: 9px;
  font-size: 20px;
}

.button-primary > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.button-primary small {
  margin-top: 3px;
  color: #f4bec7;
  font-size: 9px;
  font-weight: 650;
}

.button-secondary {
  gap: 10px;
  padding: 0 21px;
  background: rgba(255, 253, 251, 0.5);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: 0 12px 24px rgba(37, 26, 28, 0.08);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.hero-notes span {
  padding: 6px 10px;
  color: var(--muted);
  background: rgba(255, 253, 251, 0.65);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: Consolas, monospace;
  font-size: 10px;
}

.unofficial-note {
  margin: 17px 0 0;
  color: #897a7d;
  font-size: 11px;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 670px;
}

.phone-stage::before {
  position: absolute;
  width: 430px;
  height: 430px;
  background: var(--red);
  border-radius: 48% 52% 41% 59% / 55% 44% 56% 45%;
  content: "";
  transform: rotate(-8deg);
  box-shadow: 0 34px 80px rgba(119, 20, 40, 0.25);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(169, 29, 52, 0.28);
  border-radius: 50%;
}

.orbit-one {
  width: 540px;
  height: 540px;
}

.orbit-two {
  width: 600px;
  height: 600px;
  border-style: dashed;
  opacity: 0.55;
}

.phone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 332px;
  height: 650px;
  background: #fbf7f4;
  border: 9px solid #231b1d;
  border-radius: 47px;
  box-shadow: 0 35px 70px rgba(41, 16, 22, 0.34);
  transform: rotate(2deg);
}

.phone::before {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 50%;
  width: 82px;
  height: 22px;
  background: #231b1d;
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 18px;
  color: #413437;
  font-size: 9px;
  font-weight: 800;
}

.phone-bar i {
  width: 68px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 17px 11px;
}

.app-topbar p {
  margin: 0;
  color: #8c7b7e;
  font-size: 8px;
}

.app-topbar h2 {
  margin: 2px 0 0;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.app-topbar h2 span {
  color: var(--red);
  font-size: 13px;
}

.app-actions {
  display: flex;
  gap: 8px;
}

.app-actions span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--red);
  background: #f4e4e7;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.week-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 13px;
  padding: 8px 0;
  background: #f1eae6;
  border-radius: 12px;
}

.week-row span {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #75676a;
  font-size: 8px;
  line-height: 1.25;
}

.week-row small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
}

.week-row .today {
  color: var(--white);
}

.week-row .today::before {
  position: absolute;
  z-index: -1;
  width: 36px;
  height: 36px;
  margin-top: -2px;
  background: var(--red);
  border-radius: 10px;
  content: "";
}

.week-row .today {
  position: relative;
  z-index: 1;
}

.schedule {
  position: relative;
  height: 340px;
  margin: 12px 13px 0 33px;
  background-image: linear-gradient(#e4dcd7 1px, transparent 1px),
    linear-gradient(90deg, #e9e1dc 1px, transparent 1px);
  background-size: 100% 41px, 57px 100%;
  border: 1px solid #e4dcd7;
  border-radius: 10px;
}

.time-labels {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25px;
  display: grid;
  grid-template-rows: repeat(8, 1fr);
  width: 20px;
}

.time-labels span {
  color: #9a8b8e;
  font-size: 7px;
  text-align: center;
}

.course {
  position: absolute;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 53px;
  padding: 7px 5px;
  border-radius: 8px;
  line-height: 1.25;
}

.course strong {
  font-size: 8px;
}

.course small {
  margin-top: 5px;
  font-size: 6px;
}

.course-red {
  top: 3px;
  left: 3px;
  height: 76px;
  color: #772233;
  background: #f2cbd2;
}

.course-blue {
  top: 85px;
  left: 60px;
  height: 76px;
  color: #254e69;
  background: #c9e4f1;
}

.course-green {
  top: 3px;
  left: 117px;
  height: 117px;
  color: #28583e;
  background: #cce8d7;
}

.course-orange {
  top: 167px;
  left: 174px;
  height: 76px;
  color: #70401e;
  background: #f4d9bd;
}

.course-purple {
  top: 167px;
  left: 117px;
  height: 117px;
  color: #55436e;
  background: #ded2ed;
}

.next-course {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: center;
  margin: 11px 14px 0;
  padding: 9px 11px;
  color: var(--white);
  background: var(--red);
  border-radius: 12px;
}

.next-course > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 12px;
}

.next-course p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.25;
}

.next-course small {
  color: #f2bbc4;
  font-size: 6px;
}

.next-course strong {
  margin-top: 3px;
  font-size: 9px;
}

.next-course i {
  font-style: normal;
}

.app-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 56px;
  padding-top: 7px;
  background: rgba(255, 253, 251, 0.96);
  border-top: 1px solid #e4dcd7;
}

.app-tabs span {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #998a8d;
  font-size: 7px;
}

.app-tabs i {
  margin-bottom: 2px;
  font-size: 13px;
  font-style: normal;
}

.app-tabs .active {
  color: var(--red);
  font-weight: 800;
}

.mock-label {
  position: absolute;
  z-index: 3;
  right: 11%;
  bottom: 1%;
  margin: 0;
  padding: 5px 9px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
}

.brand-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 670px;
  isolation: isolate;
}

.brand-stage::before {
  position: absolute;
  z-index: -2;
  width: 440px;
  height: 440px;
  background: var(--red);
  border-radius: 48% 52% 41% 59% / 55% 44% 56% 45%;
  box-shadow: 0 34px 80px rgba(119, 20, 40, 0.25);
  content: "";
  transform: rotate(-8deg);
}

.brand-ring,
.brand-ring::after {
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(169, 29, 52, 0.28);
  border-radius: 50%;
  content: "";
}

.brand-ring::after {
  top: 30px;
  left: 30px;
  width: 478px;
  height: 478px;
  border-style: dashed;
  opacity: 0.62;
}

.brand-poster {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 326px;
  min-height: 464px;
  padding: 42px 32px 34px;
  background: rgba(255, 253, 251, 0.97);
  border: 1px solid #d8c9c5;
  border-radius: 34px;
  box-shadow: 0 34px 70px rgba(49, 18, 26, 0.27);
  text-align: center;
  transform: rotate(2deg);
}

.brand-poster::before {
  position: absolute;
  top: 0;
  width: 88px;
  height: 7px;
  background: var(--red);
  border-radius: 0 0 8px 8px;
  content: "";
}

.poster-kicker {
  margin: 0 0 23px;
  color: var(--red);
  font-family: Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.poster-logo {
  display: grid;
  place-items: center;
  width: 184px;
  height: 184px;
  background: #f4e6e7;
  border: 1px solid #e3c5ca;
  border-radius: 46px;
}

.poster-logo img {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  box-shadow: 0 18px 35px rgba(111, 19, 37, 0.22);
}

.brand-poster h2 {
  margin: 27px 0 0;
  font-size: 42px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-poster > p:not(.poster-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.poster-meta {
  display: flex;
  gap: 7px;
  margin-top: 22px;
}

.poster-meta span {
  padding: 5px 8px;
  color: var(--red-dark);
  background: #f2e2e4;
  border-radius: 6px;
  font-family: Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
}

.feature-ticket {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 30px 1fr;
  width: 132px;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(69, 29, 39, 0.17);
  line-height: 1.2;
}

.feature-ticket > span {
  grid-row: 1 / span 2;
  color: var(--red);
  font-family: Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.feature-ticket strong {
  font-size: 13px;
}

.feature-ticket small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}

.ticket-schedule {
  top: 20%;
  left: 0;
  transform: rotate(-6deg);
}

.ticket-notice {
  top: 36%;
  right: -2%;
  transform: rotate(5deg);
}

.ticket-privacy {
  bottom: 18%;
  left: 2%;
  transform: rotate(4deg);
}

.release-stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 13%;
  display: flex;
  flex-direction: column;
  min-width: 108px;
  padding: 12px 15px;
  color: var(--white);
  background: var(--dark);
  border: 1px solid #4e3038;
  border-radius: 13px;
  box-shadow: 0 15px 34px rgba(37, 26, 28, 0.24);
  transform: rotate(-4deg);
}

.release-stamp small {
  color: #ffb3b6;
  font-family: Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.14em;
}

.release-stamp strong {
  margin-top: 2px;
  font-size: 17px;
}

.visual-label {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 2%;
  margin: 0;
  padding: 5px 9px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
}

.screens-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  min-height: 670px;
  padding: 62px 6px 54px;
  isolation: isolate;
}

.screens-stage::before {
  position: absolute;
  z-index: -1;
  inset: 16% 6% 12%;
  background: var(--red);
  border-radius: 38px;
  box-shadow: 0 34px 80px rgba(119, 20, 40, 0.24);
  content: "";
}

.screens-stage::after {
  position: absolute;
  z-index: -2;
  inset: 10% 0 6%;
  border: 1px solid rgba(169, 29, 52, 0.24);
  border-radius: 48px;
  content: "";
}

.screen-shot {
  z-index: 1;
  width: min(100%, 224px);
  margin: 0;
  overflow: hidden;
  background: #181315;
  border: 5px solid #241a1d;
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(42, 18, 24, 0.28);
}

.screen-shot-dark {
  justify-self: end;
  transform: translateY(-26px);
}

.screen-shot-light {
  justify-self: start;
  transform: translateY(26px);
}

.screen-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.screens-label {
  position: absolute;
  right: 4%;
  bottom: 1%;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.screens-label::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  margin-right: 8px;
  background: var(--red);
  content: "";
  vertical-align: middle;
}

.fact-strip {
  color: var(--white);
  background: var(--dark);
  border-block: 1px solid #4a2b32;
}

.fact-strip .page-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-strip div > div {
  display: flex;
  flex-direction: column;
  min-height: 112px;
  padding: 27px 28px;
  border-left: 1px solid #4a2b32;
}

.fact-strip div > div:last-child {
  border-right: 1px solid #4a2b32;
}

.fact-strip span {
  color: #bda9ae;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.fact-strip strong {
  margin-top: 8px;
  font-size: 17px;
}

.section-space {
  padding-block: 122px;
}

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

.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.privacy-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 840;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 30px;
  background: rgba(255, 253, 251, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(72, 34, 43, 0.09);
}

.feature-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 60px;
  min-height: 390px;
  align-items: center;
  background: #f3e8e7;
  border-color: #dcbec4;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--red);
  border-radius: 15px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.feature-index {
  margin: 52px 0 8px;
  color: var(--red);
  font-family: Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.feature-card > p:last-child,
.feature-copy > p:last-child {
  max-width: 520px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-wide .feature-index {
  margin-top: 38px;
}

.mini-widget {
  padding: 24px;
  color: var(--white);
  background: var(--red);
  border-radius: 24px;
  box-shadow: 10px 10px 0 var(--ink), 0 22px 50px rgba(100, 19, 36, 0.18);
  transform: rotate(1.5deg);
}

.mini-widget > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mini-widget > div small {
  color: #f2bbc4;
  font-size: 10px;
}

.mini-widget > div strong {
  font-size: 18px;
}

.mini-widget p {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 8px 0 0;
  padding: 15px;
  color: var(--ink);
  background: var(--white);
  border-radius: 13px;
}

.mini-widget p span {
  color: var(--red);
  font-family: Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.mini-widget p strong {
  font-size: 12px;
}

.mini-widget p small {
  color: var(--muted);
  font-size: 8px;
}

.schedule-points {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  background: var(--red);
  border-radius: 24px;
  box-shadow: 10px 10px 0 var(--ink), 0 22px 50px rgba(100, 19, 36, 0.18);
  transform: rotate(1.5deg);
}

.schedule-points > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
}

.schedule-points > div > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--red);
  background: var(--white);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 850;
}

.schedule-points p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.3;
}

.schedule-points strong {
  font-size: 12px;
}

.schedule-points small {
  margin-top: 5px;
  color: #f2c5cd;
  font-size: 9px;
}

.feature-dark {
  color: var(--white);
  background: var(--dark);
  border-color: #513039;
}

.feature-dark .feature-icon {
  color: var(--red-dark);
  background: #ffb3b6;
  box-shadow: 4px 4px 0 #5e3440;
}

.feature-dark .feature-index {
  color: #ffb3b6;
}

.feature-dark > p:last-child {
  color: #c2afb4;
}

.privacy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.privacy::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 700px;
  height: 700px;
  border: 120px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.privacy-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 10vw, 130px);
  padding-block: 120px;
}

.privacy-heading .section-kicker {
  color: #ffd9df;
}

.privacy-heading > p:nth-of-type(2) {
  margin: 25px 0 0;
  color: #f2c5cd;
  font-size: 15px;
}

.privacy-heading > a {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.privacy-heading > a:hover {
  border-color: var(--white);
}

.privacy-points {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.privacy-points article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.privacy-points article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--red);
  background: var(--white);
  border-radius: 50%;
  font-family: Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.privacy-points h3 {
  margin: 0;
  font-size: 19px;
}

.privacy-points p {
  margin: 7px 0 0;
  color: #f2c5cd;
  font-size: 13px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(300px, 0.9fr) minmax(330px, 1fr);
  gap: 30px;
  align-items: stretch;
  padding: 34px;
  color: var(--white);
  background: var(--dark);
  border: 1px solid #4e3038;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.download-brand,
.release-note,
.download-panel {
  padding: 24px;
}

.download-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download-brand img {
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.download-brand p {
  margin: 34px 0 4px;
  color: #ffb3b6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.download-brand h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.download-brand span {
  color: #a9959a;
  font-size: 10px;
}

.release-note {
  border-left: 1px solid #4e3038;
  border-right: 1px solid #4e3038;
}

.release-note .section-kicker {
  color: #ffb3b6;
}

.release-note h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.release-note > p:last-child {
  margin: 17px 0 0;
  color: #bca8ad;
  font-size: 13px;
}

.download-panel {
  display: flex;
  flex-direction: column;
}

.download-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.download-specs span {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: #362328;
  border-radius: 9px;
}

.download-specs small {
  color: #9f898f;
  font-size: 7px;
}

.download-specs strong {
  margin-top: 4px;
  font-size: 9px;
}

.apk-button {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 17px;
  padding: 13px 15px;
  color: var(--red-dark);
  background: #ffb3b6;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.apk-button:hover {
  background: #ffc5c7;
  transform: translateY(-2px);
}

.apk-button > span:first-child {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--red);
  border-radius: 9px;
  font-size: 20px;
}

.apk-button > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}

.apk-button strong {
  font-size: 13px;
}

.apk-button small {
  overflow: hidden;
  margin-top: 4px;
  font-family: Consolas, monospace;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-panel details {
  margin-top: 15px;
}

.download-panel summary {
  color: #a9959a;
  cursor: pointer;
  font-size: 9px;
}

.download-panel code {
  display: block;
  margin-top: 8px;
  color: #a9959a;
  font-family: Consolas, monospace;
  font-size: 8px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.release-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 16px;
  color: #ffb3b6;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.install-guide {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(500px, 1.3fr);
  gap: 80px;
  margin-top: 86px;
}

.section-heading-small h2 {
  font-size: clamp(34px, 4vw, 46px);
}

.install-guide ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.install-guide li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.install-guide li:last-child {
  border-bottom: 1px solid var(--line);
}

.install-guide li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.install-guide strong {
  font-size: 16px;
}

.install-guide p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.safety-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 72px;
  padding: 17px 19px;
  color: var(--muted);
  background: #f2e6e5;
  border: 1px solid #dfc7cb;
  border-radius: 14px;
  font-size: 12px;
}

.safety-note > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 800;
}

.safety-note p {
  margin: 0;
}

.safety-note strong {
  color: var(--ink);
}

.site-footer {
  color: #b7a3a8;
  background: #1d1215;
  border-top: 1px solid #44252d;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
  align-items: center;
  min-height: 130px;
}

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

.footer-brand small {
  color: #917d82;
}

.footer-inner > p {
  margin: 0;
  font-size: 10px;
  text-align: center;
}

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

.footer-links a {
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffb3b6;
}

:focus-visible {
  outline: 3px solid #d84c65;
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 78px 110px;
  }

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

  .brand-stage {
    min-height: 690px;
  }

  .screens-stage {
    width: min(650px, 100%);
    min-height: 690px;
    margin-inline: auto;
  }

  .download-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .download-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    border-top: 1px solid #4e3038;
  }

  .download-specs {
    grid-column: 1;
  }

  .apk-button {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .download-panel details {
    grid-column: 1;
  }

  .release-link {
    grid-column: 2;
    align-self: start;
    margin-top: 0;
  }
}

@media (max-width: 800px) {
  .fact-strip .page-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip div > div:nth-child(3) {
    border-top: 1px solid #4a2b32;
  }

  .fact-strip div > div:nth-child(4) {
    border-top: 1px solid #4a2b32;
    border-right: 1px solid #4a2b32;
  }

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

  .privacy-inner {
    grid-template-columns: 1fr;
  }

  .install-guide {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a:not(.nav-download) {
    display: none;
  }

  .nav-download {
    padding: 8px 13px;
    font-size: 11px;
  }

  .hero {
    gap: 48px;
    padding-block: 58px 90px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 58px);
    letter-spacing: -0.025em;
    line-height: 1.14;
  }

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

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .brand-stage {
    min-height: 560px;
    margin-block: -20px;
  }

  .screens-stage {
    min-height: 500px;
    margin-block: -10px;
    gap: 10px;
    padding-inline: 0;
  }

  .screens-stage::before {
    inset: 17% 3% 13%;
    border-radius: 28px;
  }

  .screens-stage::after {
    inset: 11% 0 8%;
    border-radius: 34px;
  }

  .screen-shot {
    width: min(100%, 174px);
    border-width: 4px;
    border-radius: 24px;
  }

  .screen-shot-dark {
    transform: translateY(-18px);
  }

  .screen-shot-light {
    transform: translateY(18px);
  }

  .screens-label {
    right: 2%;
    bottom: 0;
  }

  .brand-stage::before {
    width: 360px;
    height: 360px;
  }

  .brand-ring {
    width: 430px;
    height: 430px;
  }

  .brand-ring::after {
    top: 25px;
    left: 25px;
    width: 378px;
    height: 378px;
  }

  .brand-poster {
    width: 270px;
    min-height: 390px;
    padding: 32px 24px 27px;
    border-radius: 28px;
  }

  .poster-kicker {
    margin-bottom: 18px;
  }

  .poster-logo {
    width: 145px;
    height: 145px;
    border-radius: 36px;
  }

  .poster-logo img {
    width: 126px;
    height: 126px;
    border-radius: 28px;
  }

  .brand-poster h2 {
    margin-top: 22px;
    font-size: 35px;
  }

  .feature-ticket {
    width: 112px;
    grid-template-columns: 25px 1fr;
    padding: 10px;
  }

  .ticket-schedule {
    top: 18%;
  }

  .ticket-notice {
    top: 37%;
    right: -1%;
  }

  .ticket-privacy {
    bottom: 16%;
    left: 0;
  }

  .release-stamp {
    right: -1%;
    bottom: 11%;
    min-width: 96px;
    padding: 10px 12px;
  }

  .visual-label {
    right: 1%;
    bottom: 0;
  }

  .fact-strip div > div {
    min-height: 92px;
    padding: 21px 16px;
  }

  .fact-strip strong {
    font-size: 14px;
  }

  .section-space,
  .privacy-inner {
    padding-block: 86px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .feature-wide {
    grid-column: auto;
    gap: 40px;
    padding: 24px;
  }

  .feature-card {
    min-height: 300px;
    padding: 25px;
  }

  .schedule-points {
    margin-right: 7px;
    padding: 17px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .schedule-points > div {
    padding: 12px;
  }

  .privacy-inner {
    gap: 55px;
  }

  .privacy-points article {
    grid-template-columns: 42px 1fr;
    gap: 17px;
  }

  .privacy-points article > span {
    width: 38px;
    height: 38px;
  }

  .download-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .download-brand,
  .release-note,
  .download-panel {
    padding: 20px;
  }

  .release-note {
    border: 0;
    border-top: 1px solid #4e3038;
    border-bottom: 1px solid #4e3038;
  }

  .download-panel {
    grid-column: auto;
    display: flex;
    border-top: 0;
  }

  .apk-button {
    margin-top: 17px;
  }

  .release-link {
    margin-top: 22px;
  }

  .safety-note {
    align-items: flex-start;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-block: 38px;
  }

  .footer-inner > p {
    text-align: left;
  }
}

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

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