:root {
    --bg: #f3f5f8;
    --card: #fff;
    --ink: #0e141b;
    --mute: #5b6570;
    --line: #dbe1e8;
    --accent: #e24a12;
    --accent-ink: #fff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    overflow-wrap: anywhere;
    line-height: 1.55;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
}

.skip {
    position: absolute;
    left: -999px;
}

.skip:focus {
    left: 8px;
    top: 8px;
    z-index: 40;
    background: var(--accent);
    color: #fff;
    padding: 8px;
}

.top {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
    padding: 0 20px;
    background: rgba(243, 245, 248, 0.94);
    border-bottom: 1px solid var(--line);
}

.word {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.links {
    display: none;
    gap: 18px;
    margin-left: 12px;
}

.links a {
    color: var(--mute);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.right {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center;
}

.ghost {
    font: inherit;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    cursor: pointer;
}

.pill {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-ink);
    text-decoration: none;
    font-weight: 800;
    border-radius: 999px;
    padding: 10px 16px;
    white-space: nowrap;
}

.pill:active {
    transform: scale(0.98);
}

.pill.big {
    padding: 14px 22px;
    font-size: 1.05rem;
}

.hide-desk {
    display: inline-flex;
}

.drawer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px 16px;
    background: var(--card);
    border-bottom: 1px solid var(--line);
}

.drawer[hidden] {
    display: none;
}

.drawer a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px 8px;
    max-width: 1120px;
    margin: 0 auto;
}

.chip {
    display: inline-block;
    margin: 0 0 10px;
    background: #ffe6dc;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
}

h1 {
    margin: 0;
    line-height: 1.08;
}

.h-cn {
    display: block;
    font-size: clamp(1.7rem, 5vw, 2.4rem);
    font-weight: 800;
}

.h-en {
    display: block;
    margin-top: 8px;
    font-size: clamp(1.15rem, 3vw, 1.55rem);
    font-weight: 700;
    color: var(--mute);
}

.sub {
    max-width: 42ch;
    color: var(--mute);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.textlink {
    font-weight: 800;
    text-decoration: none;
}

.hero-shot img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.strip {
    max-width: 1120px;
    margin: 28px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.strip div {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
}

.strip strong {
    display: block;
}

.strip span {
    color: var(--mute);
    font-size: 0.92rem;
}

.block {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tint {
    background: var(--card);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.tint h2,
.tint .steps,
.tint .wide {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
    max-width: 62ch;
    color: var(--mute);
}

.pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
    align-items: center;
}

.pair img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.facts {
    margin: 0;
    padding-left: 1.1rem;
}

.facts li {
    margin: 0 0 10px;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.steps article {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    background: var(--bg);
}

.wide {
    margin-top: 24px;
}

.wide img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

figcaption {
    color: var(--mute);
    font-size: 0.88rem;
    margin-top: 8px;
}

.split-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.split-cards div {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
}

.get {
    margin: 20px;
    padding: 32px 20px;
    background: var(--ink);
    color: #fff;
    border-radius: 24px;
}

.get h2,
.get p {
    color: #fff;
}

.get p {
    opacity: 0.8;
    max-width: 50ch;
}

.spec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.spec div {
    border: 1px solid #2a3340;
    border-radius: 16px;
    padding: 16px;
}

.spec p {
    margin: 6px 0;
}

details {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    color: var(--mute);
}

footer {
    padding: 32px 20px;
    color: var(--mute);
}

.copy {
    font-size: 0.82rem;
}

@media (min-width: 768px) {
    .links {
        display: flex;
    }

    .hide-desk,
    .drawer {
        display: none !important;
    }

    .hero {
        grid-template-columns: 1fr 1.05fr;
        align-items: center;
        padding-top: 36px;
    }

    .strip,
    .steps,
    .spec,
    .split-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .split-cards,
    .spec {
        grid-template-columns: 1fr 1fr;
    }

    .pair {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .get {
        margin: 40px auto;
        max-width: 1120px;
    }
}

.site-title, .brand, .logo, .word, .mark-name, a.mark {
  white-space: normal !important;
  overflow-wrap: anywhere;
  line-height: 1.25;
}
.site-title {
  font-size: 0.78rem;
  font-weight: 700;
  max-width: min(58vw, 520px);
  display: inline-block;
}


.dl-pair { display:inline-flex; flex-wrap:wrap; gap:10px; align-items:center; vertical-align:middle; }
.btn-primary-gold, .btn-gift {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px; border:0; cursor:pointer;
  font: inherit; font-weight:700; font-size:0.92rem;
  text-decoration:none; white-space:nowrap; border-radius:8px;
  line-height:1.2;
}
.btn-primary-gold { background:#c9a227; color:#1a1408; }
.btn-primary-gold:hover { filter:brightness(1.08); text-decoration:none; color:#1a1408; }
.btn-gift { background:#7a1f2b; color:#fff; }
.btn-gift:hover { filter:brightness(1.08); }
.dl-btn-icon, .gift-btn-icon { font-size:1rem; }
.gift-modal[hidden] { display:none !important; }
.gift-modal { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; padding:16px; }
.gift-modal-mask { position:absolute; inset:0; background:rgba(0,0,0,.62); }
.mdl-card {
  position:relative; z-index:1; width:min(440px, 100%);
  background:#161616; color:#f3efe6; border-radius:16px; padding:22px 22px 18px;
  font-family: system-ui, "Segoe UI", sans-serif;
}
.mdl-close {
  position:absolute; top:10px; right:12px; width:36px; height:36px;
  border:0; background:transparent; color:#ccc; font-size:28px; cursor:pointer; line-height:1;
}
.mdl-head { text-align:center; padding-top:8px; }
.mdl-icon-wrap { width:52px; height:52px; margin:0 auto 10px; color:#c9a227; }
.mdl-icon-wrap svg { width:100%; height:100%; }
.mdl-title { margin:0; font-size:1.35rem; }
.mdl-subtitle { margin:4px 0 0; letter-spacing:.14em; font-size:.72rem; color:#c9a227; }
.mdl-desc { font-size:.95rem; line-height:1.6; color:#ddd; }
.gift-code-box {
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  background:#2a2110; border:1px solid #c9a227; border-radius:10px; padding:12px 14px; cursor:pointer;
}
.gift-code-label { display:block; font-size:.72rem; color:#c9a227; }
.gift-code-value { display:block; font-size:1.4rem; font-weight:800; letter-spacing:.08em; }
.gift-code-copy { font-size:.8rem; color:#c9a227; white-space:nowrap; }
.gift-code-hint { font-size:.8rem; color:#999; margin:8px 0 0; }
.mdl-actions { display:flex; flex-direction:column; gap:8px; margin-top:16px; }
.mdl-btn {
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:12px; border-radius:10px; text-decoration:none; font-weight:700; border:0; cursor:pointer; font:inherit;
}
.mdl-btn svg { width:18px; height:18px; }
.mdl-btn-primary { background:#c9a227; color:#1a1408; }
.mdl-btn-secondary { background:#2a2a2a; color:#eee; }
