:root {
  color-scheme: light;
  --ink: #17132f;
  --ink-deep: #0d0a20;
  --ink-soft: #5f5a73;
  --paper: #fffaf5;
  --paper-strong: #ffffff;
  --paper-warm: #fff1e7;
  --line: rgba(23, 19, 47, 0.12);
  --coral: #ff5b4a;
  --pink: #ff2868;
  --orange: #ff9417;
  --success: #158765;
  --shadow: 0 28px 80px rgba(42, 27, 78, 0.13);
  --display: "Avenir Next", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 8%, rgba(255, 148, 23, 0.15), transparent 28rem),
    radial-gradient(circle at 96% 18%, rgba(255, 40, 104, 0.12), transparent 30rem),
    var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: radial-gradient(rgba(23, 19, 47, 0.22) 0.6px, transparent 0.6px);
  background-size: 15px 15px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

a {
  color: inherit;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(255, 250, 245, 0.84);
  border-bottom: 1px solid rgba(23, 19, 47, 0.08);
  backdrop-filter: blur(18px);
}

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

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 142px;
  height: auto;
}

.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transform: translateY(-1px);
}

.nav-link[aria-current="page"] {
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 8px 24px rgba(23, 19, 47, 0.08);
}

.language-menu {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
}

.language-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--paper-strong);
  background: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: background 180ms ease, transform 180ms ease;
}

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

.language-menu summary::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--ink);
  background: var(--paper-strong);
  border-radius: 50%;
  content: "文";
  font-size: 11px;
  font-weight: 900;
}

.language-menu summary::after {
  width: 6px;
  height: 6px;
  margin: -3px 2px 0 1px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.language-menu summary:hover,
.language-menu summary:focus-visible {
  background: var(--ink-deep);
  outline: none;
  transform: translateY(-1px);
}

.language-menu[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: max-content;
  min-width: 194px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(24, 18, 57, 0.1);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(24, 18, 57, 0.2);
}

.language-options a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 6px 10px;
  color: var(--ink-soft);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.language-options a span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 9px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.language-options a:hover,
.language-options a:focus-visible,
.language-options a[aria-current="page"] {
  color: var(--ink);
  background: var(--paper-strong);
  outline: none;
}

.language-options a[aria-current="page"] span {
  color: white;
  background: var(--coral);
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  color: white;
  background:
    linear-gradient(132deg, rgba(255, 148, 23, 0.98) 0%, rgba(255, 61, 83, 0.98) 42%, rgba(255, 40, 104, 0.96) 68%, rgba(24, 18, 57, 0.98) 68.2%),
    var(--ink-deep);
  border-radius: 42px;
  box-shadow: 0 34px 90px rgba(92, 29, 62, 0.2);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -245px;
  left: 44%;
}

.hero::after {
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -90px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  min-height: 570px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 104px);
  padding-right: clamp(40px, 5vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin: 0 0 20px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 99px;
}

.hero h1,
.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: #fff3d2;
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  background: white;
  box-shadow: 0 14px 36px rgba(22, 8, 42, 0.2);
}

.button-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
}

.button-primary {
  color: white;
  background: linear-gradient(120deg, var(--coral), var(--pink));
  box-shadow: 0 16px 36px rgba(255, 40, 104, 0.26);
}

.button-secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 68px 52px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-art-card {
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 0.78;
  overflow: hidden;
  background:
    radial-gradient(circle at 46% 38%, rgba(255, 122, 73, 0.52), transparent 23%),
    radial-gradient(circle at 58% 55%, rgba(255, 40, 104, 0.44), transparent 30%),
    linear-gradient(160deg, #30245c, #0d0a20 75%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(3deg);
}

.hero-art-card::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.hero-mark {
  position: absolute;
  width: 62%;
  top: 16%;
  left: 19%;
  filter: drop-shadow(0 24px 36px rgba(255, 40, 104, 0.24));
}

.episode-stack {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 10px;
}

.episode-line {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.episode-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
}

.episode-copy {
  display: grid;
  gap: 5px;
}

.episode-copy i {
  display: block;
  height: 6px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 99px;
}

.episode-copy i:last-child {
  width: 62%;
  background: rgba(255, 255, 255, 0.28);
}

.episode-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: white;
  background: var(--success);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.section {
  padding: 94px 0;
}

.section-tight {
  padding-top: 54px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-header > div {
  max-width: 690px;
}

.section h2,
.support-panel h2,
.request-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-intro {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 294px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 46px rgba(23, 19, 47, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card::after {
  position: absolute;
  width: 130px;
  height: 130px;
  right: -62px;
  bottom: -62px;
  content: "";
  background: linear-gradient(135deg, rgba(255, 148, 23, 0.2), rgba(255, 40, 104, 0.18));
  border-radius: 50%;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 50px;
  color: white;
  background: var(--ink);
  border-radius: 15px;
  font-size: 20px;
  font-weight: 900;
}

.feature-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, var(--coral), var(--pink));
}

.feature-card:nth-child(3) .card-icon {
  color: var(--ink);
  background: #ffd79a;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 10px 0 22px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--pink);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.app-showcase-panel {
  position: relative;
  padding: clamp(38px, 6vw, 74px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 91, 74, 0.28), transparent 32rem),
    radial-gradient(circle at 90% 80%, rgba(255, 40, 104, 0.18), transparent 28rem),
    var(--ink-deep);
  border-radius: 42px;
  box-shadow: 0 34px 90px rgba(24, 13, 52, 0.22);
}

.app-showcase-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.app-device-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
}

.app-experience {
  min-width: 0;
}

.app-experience-player {
  transform: translateY(-28px);
}

.app-phone {
  position: relative;
  width: min(100%, 292px);
  margin: 0 auto;
  padding: 9px;
  background: linear-gradient(160deg, #6e3950, #28162f 48%, #0a0716);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 39px;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.42);
}

.app-phone::before {
  position: absolute;
  z-index: 3;
  width: 34%;
  height: 18px;
  top: 10px;
  left: 50%;
  content: "";
  background: #090612;
  border-radius: 0 0 13px 13px;
  transform: translateX(-50%);
}

.app-phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.45;
  background: #07060b;
  border-radius: 31px;
}

.app-real-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.app-phone-home .app-real-shot,
.app-phone-player .app-real-shot,
.app-phone-offline .app-real-shot {
  transform: none;
}

.experience-copy {
  width: min(100%, 292px);
  margin: 24px auto 0;
}

.experience-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffb17a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-index::before {
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 99px;
}

.experience-copy h3 {
  margin: 8px 0 0;
  color: white;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.experience-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.55;
}

.showcase-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.showcase-note span:first-child {
  color: white;
  font-weight: 800;
}

.support-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 6vw, 66px);
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.support-panel::before {
  position: absolute;
  width: 340px;
  height: 340px;
  right: 12%;
  top: -270px;
  content: "";
  border: 58px solid rgba(255, 91, 74, 0.23);
  border-radius: 50%;
}

.support-panel p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.support-email {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 22px;
  color: var(--ink);
  background: white;
  border-radius: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.legal-hero {
  position: relative;
  margin-top: 28px;
  padding: clamp(48px, 8vw, 88px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 148, 23, 0.58), transparent 19rem),
    radial-gradient(circle at 78% 70%, rgba(255, 40, 104, 0.42), transparent 28rem),
    var(--ink-deep);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.legal-hero::after {
  position: absolute;
  width: min(320px, 36vw);
  height: min(320px, 36vw);
  right: clamp(20px, 7vw, 90px);
  top: 50%;
  content: "";
  background: url("dramou-mark.png") center / contain no-repeat;
  opacity: 0.22;
  filter: saturate(0) brightness(4);
  transform: translateY(-50%) rotate(8deg);
}

.legal-hero > * {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(43px, 7vw, 76px);
}

.legal-hero p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  padding: 54px 0 100px;
}

.toc {
  position: sticky;
  top: 98px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(23, 19, 47, 0.06);
}

.toc-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--pink);
  outline: none;
}

.legal-content {
  min-width: 0;
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 52px rgba(23, 19, 47, 0.07);
}

.legal-content section {
  scroll-margin-top: 112px;
}

.legal-content section + section {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 15px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content p {
  margin: 12px 0 0;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 24px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a:not(.button) {
  color: #d91e58;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.callout {
  margin: 0 0 36px;
  padding: 24px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff0de, #ffe8ef);
  border: 1px solid rgba(255, 91, 74, 0.2);
  border-radius: 20px;
}

.callout strong {
  display: block;
  margin-bottom: 6px;
}

.callout p {
  margin: 0;
  color: var(--ink-soft);
}

.request-panel {
  position: relative;
  margin-bottom: 38px;
  padding: clamp(28px, 5vw, 46px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 148, 23, 0.42), transparent 17rem),
    linear-gradient(135deg, #2b2057, var(--ink-deep));
  border-radius: 26px;
}

.request-panel::after {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -65px;
  bottom: -70px;
  content: "";
  border: 26px solid rgba(255, 40, 104, 0.35);
  border-radius: 50%;
}

.request-panel > * {
  position: relative;
  z-index: 1;
}

.request-panel h2 {
  max-width: 620px;
  font-size: clamp(31px, 4vw, 46px);
}

.legal-content .request-panel h2,
.legal-content .request-panel strong {
  color: white;
}

.request-panel p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.72);
}

.request-email {
  display: inline-block;
  margin-top: 14px;
  color: #ffd0dc;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.step-list {
  counter-reset: steps;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.step::before {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  content: counter(steps, decimal-leading-zero);
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  margin: 1px 0 5px;
}

.step p {
  margin: 0;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.data-card {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.data-card h3 {
  margin: 0 0 8px;
}

.data-card p {
  margin: 0;
}

.site-footer {
  margin-top: 20px;
  padding: 42px 0 50px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.footer-brand img {
  width: 220px;
  height: 120px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #090604;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.footer-brand p {
  max-width: 560px;
  margin: 18px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.reveal {
  animation: rise-in 640ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay-1 {
  animation-delay: 90ms;
}

.reveal-delay-2 {
  animation-delay: 180ms;
}

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .hero-copy {
    padding-right: clamp(34px, 8vw, 72px);
  }

  .hero-art {
    min-height: 480px;
  }

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

  .app-device-grid {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 12px 8px 22px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-padding-inline: 8px;
    scroll-snap-type: x mandatory;
  }

  .app-device-grid::-webkit-scrollbar {
    display: none;
  }

  .app-experience {
    flex: 0 0 min(76vw, 310px);
    scroll-snap-align: center;
  }

  .app-experience-player {
    transform: none;
  }

  .feature-card {
    min-height: 250px;
  }

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

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

  .toc {
    position: static;
    display: flex;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
  }

  .toc-title {
    display: none;
  }

  .toc a {
    flex: 0 0 auto;
    padding: 9px 12px;
    background: var(--paper);
    border-radius: 999px;
  }

  .support-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .site-header {
    padding: 10px 0;
  }

  .brand-link img {
    width: 118px;
  }

  .language-menu summary {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 13px;
  }

  .language-menu summary::before {
    width: 20px;
    height: 20px;
  }

  .language-options {
    max-width: calc(100vw - 24px);
  }

  .hero,
  .legal-hero {
    margin-top: 14px;
    border-radius: 28px;
  }

  .hero-copy {
    padding: 48px 26px 42px;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-art {
    min-height: 410px;
    padding: 42px 32px 52px;
  }

  .hero-art-card {
    width: 280px;
  }

  .section {
    padding: 68px 0;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .support-panel {
    padding: 32px 24px;
    border-radius: 26px;
  }

  .app-showcase-panel {
    padding: 32px 16px 28px;
    border-radius: 28px;
  }

  .app-experience {
    flex-basis: min(82vw, 292px);
  }

  .showcase-note {
    align-items: flex-start;
    flex-direction: column;
    margin-inline: 8px;
  }

  .support-email {
    width: 100%;
    justify-content: center;
    padding-inline: 12px;
    font-size: 14px;
  }

  .legal-hero {
    padding: 48px 26px;
  }

  .legal-hero::after {
    width: 190px;
    height: 190px;
    right: -62px;
    opacity: 0.12;
  }

  .legal-layout {
    gap: 18px;
    padding: 28px 0 68px;
  }

  .legal-content {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .legal-content section + section {
    margin-top: 34px;
    padding-top: 32px;
  }

  .request-panel {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .action-row .button {
    width: 100%;
  }

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

  .footer-meta {
    display: grid;
  }
}

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