/* ===========================================================================
   Marketing landing — rich rose.

   The signup screen set the bar: deep plum ground, glass over glow, a lit
   magenta CTA. This page carries that language across a full editorial
   layout, and keeps the app's rose rather than inventing a second brand.

   Depth here is built from four things, layered in this order:
     1. a plum ground              (never flat black)
     2. blurred colour orbs        (the glow that makes glass legible)
     3. a grain overlay            (kills gradient banding)
     4. glass panels + lit edges   (the thing you actually read)
   ========================================================================= */

body.lp {
  color-scheme: dark;

  --rose-50:  #fdf6fc;
  --rose-100: #f8e8f6;
  --rose-200: #f1d4ee;
  --rose-300: #e4aede;
  --rose-400: #d971cb;
  --rose-500: #cc42bd;
  --rose-600: #b332ab;
  --rose-700: #96208f;

  --plum-900: #12060f;
  --plum-800: #1c0a18;
  --plum-700: #2a0d24;
  --plum-600: #3b1233;

  --champagne: #e6cd7a;
  --champagne-2: #c9a227;

  --paper:  #ffffff;
  --ink:    #f7eef4;
  --ink-2:  #d8c2d2;
  --ink-3:  #a98fa4;
  --ink-4:  #7d6478;

  --glass:      rgba(255, 255, 255, .05);
  --glass-2:    rgba(255, 255, 255, .08);
  --glass-line: rgba(255, 255, 255, .11);
  --glass-lit:  rgba(224, 103, 208, .34);

  --lp-font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic,
             "Noto Sans JP", Meiryo, system-ui, sans-serif;
  --display: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP",
             Georgia, serif;

  --track:    .1em;
  --track-lg: .2em;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }

body.lp {
  font-family: var(--lp-font);
  background: var(--plum-900);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.95;
  letter-spacing: var(--track);
  font-size: 14px;
  overflow-x: hidden;
}
.lp img { max-width: 100%; display: block; }
/* No blanket `.lp a` colour rule: at (0,1,1) it outranks every single-class
   component, and every button on this page is an anchor. */
.lp a { text-decoration-color: currentColor; }

/* A reusable grain plate. Gradients this wide band badly without it. */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.eyebrow {
  margin: 0 0 16px; color: var(--rose-300);
  font-size: 11px; font-weight: 700; letter-spacing: var(--track-lg);
}
.eyebrow--gold { color: var(--champagne); }

/* ------------------------------------------------------------------ head */
.lp-head {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 28px;
  padding: 16px clamp(18px, 4vw, 46px);
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.lp-head.is-stuck {
  background: rgba(18, 6, 15, .72);
  backdrop-filter: blur(18px) saturate(170%);
  border-bottom-color: var(--glass-line);
}
.lp-head__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; letter-spacing: .22em;
  text-decoration: none; color: #fff;
}
.lp-head__mark {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--rose-400), var(--rose-700));
  box-shadow: 0 6px 18px rgba(204, 66, 189, .45); font-size: 15px; letter-spacing: 0;
}
.lp-head__nav { display: flex; gap: 24px; margin-left: auto; font-size: 12px; letter-spacing: var(--track); }
.lp-head__nav a { color: rgba(255, 255, 255, .74); text-decoration: none; transition: color .2s; }
.lp-head__nav a:hover { color: var(--rose-300); }
.lp-head__cta {
  padding: 11px 22px; border-radius: 999px; font-size: 12.5px; font-weight: 800;
  letter-spacing: var(--track); text-decoration: none; white-space: nowrap;
  background: linear-gradient(135deg, var(--rose-400), var(--rose-700));
  color: #fff; box-shadow: 0 8px 24px rgba(204, 66, 189, .4);
}
@media (max-width: 1060px) { .lp-head__nav { display: none; } .lp-head__cta { margin-left: auto; } }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(100px, 12vw, 156px) clamp(18px, 4vw, 46px) 0;
  min-height: min(900px, 100svh); display: flex; flex-direction: column;
  background:
    radial-gradient(90% 70% at 50% -10%, var(--plum-600), transparent 60%),
    linear-gradient(180deg, var(--plum-800), var(--plum-900));
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero__orb--a {
  width: 62vw; height: 62vw; max-width: 760px; max-height: 760px; top: -20%; right: -14%;
  background: radial-gradient(circle, rgba(224, 103, 208, .5), transparent 66%);
}
.hero__orb--b {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; bottom: -22%; left: -12%;
  background: radial-gradient(circle, rgba(150, 32, 143, .55), transparent 64%);
}
.hero__orb--c {
  width: 30vw; height: 30vw; max-width: 340px; max-height: 340px; top: 32%; left: 42%;
  background: radial-gradient(circle, rgba(230, 205, 122, .16), transparent 66%);
}

.hero__inner {
  position: relative; z-index: 1; flex: 1;
  width: 100%; max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 362px; gap: clamp(28px, 5vw, 76px);
  align-items: start; padding-bottom: 76px;
}
@media (max-width: 1000px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__copy { padding-top: clamp(6px, 3vw, 40px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  padding: 7px 15px 7px 8px; border-radius: 999px;
  background: var(--glass-2); border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
  font-size: 11px; letter-spacing: var(--track); color: var(--ink-2);
}
.hero__badge b {
  background: linear-gradient(135deg, var(--rose-400), var(--rose-700));
  color: #fff; padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 800;
}
.hero__title {
  margin: 0 0 22px; font-size: clamp(30px, 5vw, 60px); font-weight: 800;
  line-height: 1.4; letter-spacing: .03em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--rose-300), var(--champagne));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede {
  margin: 0 0 clamp(28px, 4vw, 42px); font-size: 14.5px; color: var(--ink-2);
  max-width: 33em; line-height: 2.1;
}
.hero__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; max-width: 36em; }
.hero__points li {
  display: flex; gap: 14px; align-items: center; font-size: 13px; color: var(--ink-2);
  padding: 12px 16px; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--glass-line);
}
.hero__points span {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--rose-400), var(--rose-700));
  color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0;
}

/* --- the conversion card ------------------------------------------------- */
.joincard {
  position: sticky; top: 86px; border-radius: 20px; padding: 24px 22px 20px;
  background: linear-gradient(165deg, rgba(59, 18, 51, .92), rgba(18, 6, 15, .96));
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(224, 103, 208, .08) inset;
}
@media (max-width: 1000px) { .joincard { position: static; margin-top: 10px; } }

.joincard__rank { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--glass-line); }
.joincard__rank b {
  font-size: 30px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--rose-300), var(--champagne));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.joincard__rank span { font-size: 10.5px; letter-spacing: var(--track); color: var(--ink-3); line-height: 1.6; }

.joincard__promo {
  margin: 18px 0 16px; padding: 16px 12px; border-radius: 14px; text-align: center;
  background: linear-gradient(140deg, rgba(204, 66, 189, .3), rgba(230, 205, 122, .14));
  border: 1px solid rgba(224, 103, 208, .3);
}
.joincard__promo-tag {
  display: inline-block; font-size: 9.5px; font-weight: 800; letter-spacing: var(--track);
  color: var(--plum-900); background: var(--champagne); padding: 3px 11px; border-radius: 999px;
}
.joincard__promo b { display: block; margin: 10px 0 3px; font-size: 36px; font-weight: 800; color: #fff; line-height: 1; }
.joincard__promo b small { font-size: 15px; margin-left: 2px; }
.joincard__promo-sub { font-size: 10.5px; color: var(--ink-2); letter-spacing: var(--track); }

.joincard__terms { margin: 0 0 14px; font-size: 10px; color: var(--ink-4); text-align: center; line-height: 1.8; }
.joincard__terms a { color: var(--ink-3); text-underline-offset: 3px; }

.joincard__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; border-radius: 13px; margin-bottom: 10px;
  font-size: 14px; font-weight: 800; letter-spacing: var(--track);
  text-decoration: none; transition: transform .16s, box-shadow .16s, background .16s;
}
.joincard__btn--gold {
  background: linear-gradient(135deg, var(--rose-400), var(--rose-700));
  color: #fff; box-shadow: 0 12px 30px rgba(204, 66, 189, .48);
}
.joincard__btn--gold:hover { transform: translateY(-1px); box-shadow: 0 18px 40px rgba(204, 66, 189, .6); }
.joincard__btn--dark { background: var(--glass-2); border: 1px solid var(--glass-line); color: #fff; }
.joincard__btn--dark:hover { background: rgba(255, 255, 255, .14); }
.joincard__btn--ghost { border: 1px solid var(--glass-line); color: var(--ink-2); }
.joincard__btn--ghost:hover { border-color: var(--rose-400); color: var(--rose-300); }
@media (prefers-reduced-motion: reduce) { .joincard__btn { transition: none; } }

.joincard__note { margin: -5px 0 15px; font-size: 10px; color: var(--ink-4); text-align: center; }
.joincard__age { margin: 12px 0 0; font-size: 10px; color: var(--ink-4); text-align: center; }

/* --- marquee ------------------------------------------------------------- */
.hero__marquee {
  position: relative; z-index: 1; margin: 0 calc(-1 * clamp(18px, 4vw, 46px));
  border-top: 1px solid var(--glass-line); overflow: hidden; padding: 15px 0;
}
.hero__marquee-track { display: flex; gap: 26px; align-items: center; white-space: nowrap; animation: lp-marquee 44s linear infinite; width: max-content; }
.hero__marquee-track span { font-size: 11px; letter-spacing: var(--track-lg); color: var(--ink-3); }
.hero__marquee-track i { color: var(--rose-400); font-size: 7px; font-style: normal; }
@keyframes lp-marquee { to { transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce) { .hero__marquee-track { animation: none; } }

/* ----------------------------------------------------------------- stats */
.stats {
  position: relative; padding: 40px clamp(18px, 4vw, 46px);
  background: linear-gradient(180deg, var(--plum-700), var(--plum-800));
  border-block: 1px solid var(--glass-line);
}
.stats dl { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 700px) { .stats dl { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.stats dt { font-size: 10px; letter-spacing: var(--track-lg); color: var(--ink-4); }
.stats dd {
  margin: 10px 0 0; font-size: 34px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--rose-300), var(--champagne));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats dd small { font-size: 13px; margin-left: 2px; -webkit-text-fill-color: var(--ink-3); }

/* -------------------------------------------------------------- sections */
.sec { position: relative; padding: clamp(72px, 9vw, 128px) clamp(18px, 4vw, 46px); max-width: 1200px; margin: 0 auto; }
.sec--tint {
  max-width: none;
  background: radial-gradient(80% 60% at 50% 0%, rgba(59, 18, 51, .6), transparent 62%), var(--plum-800);
  border-block: 1px solid var(--glass-line);
}
.sec--tint > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.sec__head { text-align: center; margin-bottom: clamp(38px, 5vw, 62px); }
.sec__head h2 { margin: 0 auto 14px; font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: .05em; line-height: 1.7; }
.sec__head p { margin: 0 auto; max-width: 44em; font-size: 13px; color: var(--ink-3); line-height: 2.1; }
.sec__note { text-align: center; font-size: 11px; color: var(--ink-4); margin-top: 28px; }
.br-sp { display: none; }
@media (max-width: 640px) { .br-sp { display: inline; } }

/* --- editorial split ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; margin-bottom: clamp(44px, 6vw, 84px); }
.split:last-child { margin-bottom: 0; }
.split--rev .split__art { order: 2; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } .split--rev .split__art { order: 0; } }

.split__art {
  position: relative; min-height: 380px; border-radius: 20px; overflow: hidden;
  display: grid; place-items: center; padding: 44px 20px;
  background: radial-gradient(70% 70% at 50% 20%, rgba(204, 66, 189, .3), transparent 62%), var(--plum-700);
  border: 1px solid var(--glass-line);
}
.split__art--pick { grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 26px; align-content: center; }
.split__art--pick img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 10px; }

.split__card {
  position: relative; z-index: 1; margin-left: -52px;
  padding: clamp(28px, 3.4vw, 46px); border-radius: 20px;
  background: linear-gradient(165deg, rgba(59, 18, 51, .86), rgba(18, 6, 15, .94));
  border: 1px solid var(--glass-line); backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.split--rev .split__card { margin-left: 0; margin-right: -52px; }
@media (max-width: 940px) { .split__card, .split--rev .split__card { margin: -44px 14px 0; } }

.split__label { margin: 0 0 18px; font-size: 20px; font-weight: 800; letter-spacing: .2em; color: var(--rose-300); padding-bottom: 14px; border-bottom: 1px solid var(--glass-line); }
.split__label small { display: inline-block; margin-left: 12px; font-size: 11px; letter-spacing: var(--track); color: var(--ink-4); font-weight: 400; }
.split__card h3 { margin: 0 0 14px; font-size: clamp(17px, 1.9vw, 22px); font-weight: 800; letter-spacing: .04em; }
.split__card > p { margin: 0 0 22px; font-size: 13px; color: var(--ink-2); line-height: 2.1; }

.split__rates { list-style: none; margin: 0; padding: 0; }
.split__rates li { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--glass-line); font-size: 12.5px; }
.split__rates li:last-child { border-bottom: 0; }
.split__rates span { color: var(--ink-3); }
.split__rates b { font-size: 15px; font-weight: 800; color: #fff; }
.split__rates b small { font-size: 10.5px; font-weight: 400; color: var(--ink-4); margin-left: 3px; }

.split__ticks { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.split__ticks li { font-size: 12.5px; color: var(--ink-2); padding-left: 22px; position: relative; }
.split__ticks li::before { content: "✦"; position: absolute; left: 0; top: 0; color: var(--rose-400); font-size: 10px; }

.linkarrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 800; letter-spacing: var(--track); color: var(--rose-300); text-decoration: none; padding-bottom: 6px; border-bottom: 1px solid rgba(224, 103, 208, .35); }
.linkarrow::after { content: "→"; transition: transform .18s; }
.linkarrow:hover::after { transform: translateX(4px); }

/* --- phone mock ---------------------------------------------------------- */
.phone { width: min(268px, 74vw); border-radius: 28px; padding: 9px; background: linear-gradient(160deg, #4a2042, #14060f); box-shadow: 0 34px 70px rgba(0, 0, 0, .6); }
.phone__screen { border-radius: 21px; background: #1b0b17; padding: 12px; display: grid; gap: 10px; }
.phone__card { border-radius: 14px; padding: 16px 14px; color: #fff; text-align: center; background: linear-gradient(155deg, var(--rose-500), var(--rose-700)); }
.phone__card-title { font-size: 17px; font-weight: 800; letter-spacing: .14em; margin-bottom: 14px; }
.phone__row { display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, .14); border-radius: 9px; padding: 8px 11px; margin-bottom: 7px; font-size: 11px; }
.phone__row span { color: rgba(255, 255, 255, .66); }
.phone__cta { margin-top: 12px; border-radius: 999px; padding: 11px; background: linear-gradient(135deg, var(--champagne), var(--champagne-2)); color: #40300a; font-weight: 800; font-size: 11.5px; letter-spacing: var(--track); }
.phone__mini { background: rgba(255, 255, 255, .06); border: 1px solid var(--glass-line); border-radius: 12px; padding: 11px 13px; display: flex; justify-content: space-between; align-items: center; }
.phone__mini span { font-size: 10px; color: var(--ink-4); }
.phone__mini b { font-size: 16px; font-weight: 800; color: #fff; }

/* --- the feature grid ----------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 940px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }
.feature {
  position: relative; padding: 26px 24px 28px; border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--glass-line);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-3px); border-color: var(--glass-lit); box-shadow: 0 20px 46px rgba(0, 0, 0, .4); }
@media (prefers-reduced-motion: reduce) { .feature { transition: none; } }
.feature__icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(224, 103, 208, .28), rgba(150, 32, 143, .22));
  border: 1px solid rgba(224, 103, 208, .28); margin-bottom: 16px; color: var(--rose-300);
}
.feature h3 { margin: 0 0 9px; font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.feature p { margin: 0; font-size: 12.5px; color: var(--ink-3); line-height: 2; }
.feature__tag {
  position: absolute; top: 20px; right: 20px; font-size: 9px; font-weight: 800;
  letter-spacing: var(--track); padding: 3px 9px; border-radius: 999px;
  background: rgba(230, 205, 122, .16); color: var(--champagne); border: 1px solid rgba(230, 205, 122, .3);
}

/* --- side-by-side role columns -------------------------------------------- */
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 860px) { .roles { grid-template-columns: 1fr; } }
.role {
  padding: clamp(26px, 3vw, 38px); border-radius: 20px;
  background: linear-gradient(165deg, rgba(59, 18, 51, .7), rgba(18, 6, 15, .9));
  border: 1px solid var(--glass-line);
}
.role__head { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; margin-bottom: 20px; border-bottom: 1px solid var(--glass-line); }
.role__pill { font-size: 10px; font-weight: 800; letter-spacing: var(--track); padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, var(--rose-400), var(--rose-700)); color: #fff; }
.role__head h3 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: .04em; }
.role ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.role li { display: grid; gap: 3px; }
.role li b { font-size: 13px; font-weight: 800; color: #fff; }
.role li span { font-size: 12px; color: var(--ink-3); line-height: 1.95; }

/* ----------------------------------------------------------------- casts */
.castrow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 1000px) { .castrow { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .castrow { grid-template-columns: repeat(2, 1fr); } }
.castrow__loading { grid-column: 1 / -1; text-align: center; color: var(--ink-4); font-size: 12.5px; }
.castcard { border-radius: 14px; overflow: hidden; background: var(--glass); border: 1px solid var(--glass-line); transition: transform .2s, border-color .2s; }
.castcard:hover { transform: translateY(-3px); border-color: var(--glass-lit); }
@media (prefers-reduced-motion: reduce) { .castcard { transition: none; } }
.castcard img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.castcard__body { padding: 13px 13px 15px; }
.castcard__class { font-size: 9.5px; font-weight: 800; letter-spacing: var(--track-lg); color: var(--rose-300); display: block; padding-bottom: 7px; margin-bottom: 8px; border-bottom: 1px solid var(--glass-line); }
.castcard__name { font-size: 13.5px; font-weight: 800; }
.castcard__meta { font-size: 10.5px; color: var(--ink-4); margin-top: 3px; }
.castcard__price { font-size: 12.5px; font-weight: 800; margin-top: 8px; color: var(--champagne); }

/* ------------------------------------------------------------ price cards */
.pricecards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .pricecards { grid-template-columns: 1fr; } }
.pricecards article {
  padding: clamp(28px, 3.4vw, 44px) 26px; text-align: center; border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--glass-line);
}
.pricecards__label { margin: 0 0 18px; font-size: 10.5px; letter-spacing: var(--track-lg); color: var(--ink-4); }
.pricecards b {
  display: block; font-size: 46px; font-weight: 800; margin-bottom: 18px; line-height: 1;
  background: linear-gradient(135deg, var(--rose-300), var(--champagne));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricecards b small { font-size: 13px; -webkit-text-fill-color: var(--ink-3); margin-left: 3px; }
.pricecards p:last-child { margin: 0; font-size: 12px; color: var(--ink-3); line-height: 2.1; }

/* ----------------------------------------------------------------- areas */
.arealist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
@media (max-width: 900px) { .arealist { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .arealist { grid-template-columns: repeat(2, 1fr); } }
.arealist li { padding: 20px 14px; text-align: center; font-size: 12.5px; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-line); }
.arealist li small { display: block; font-size: 10px; color: var(--ink-4); margin-top: 5px; }
.arealist__loading { grid-column: 1 / -1; color: var(--ink-4); }

/* ------------------------------------------------------------------- faq */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq details { border-radius: 14px; background: var(--glass); border: 1px solid var(--glass-line); padding: 0 20px; }
.faq summary { cursor: pointer; padding: 20px 0; font-size: 13.5px; font-weight: 700; letter-spacing: .04em; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; color: var(--rose-300); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0 0 20px; font-size: 12.5px; color: var(--ink-3); line-height: 2.2; }

/* --------------------------------------------------------------- closing */
.closing {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(84px, 10vw, 140px) clamp(18px, 4vw, 46px);
  background: radial-gradient(70% 130% at 50% 0%, rgba(204, 66, 189, .34), transparent 66%), var(--plum-900);
  border-top: 1px solid var(--glass-line);
}
.closing h2 { margin: 0 0 16px; font-size: clamp(24px, 3.6vw, 40px); font-weight: 800; letter-spacing: .06em; }
.closing > p { margin: 0 0 34px; font-size: 13px; color: var(--ink-3); }
.closing__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-gold, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 36px; border-radius: 999px;
  font-size: 14px; font-weight: 800; letter-spacing: var(--track); text-decoration: none;
  transition: transform .16s, box-shadow .16s;
}
.btn-gold { background: linear-gradient(135deg, var(--rose-400), var(--rose-700)); color: #fff; box-shadow: 0 14px 36px rgba(204, 66, 189, .5); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 20px 48px rgba(204, 66, 189, .62); }
.btn-outline { border: 1px solid var(--glass-line); color: #fff; background: var(--glass); }
.btn-outline:hover { border-color: var(--rose-400); color: var(--rose-300); }
@media (prefers-reduced-motion: reduce) { .btn-gold, .btn-outline { transition: none; } }

/* ---------------------------------------------------------------- footer */
.lp-foot { background: var(--plum-900); padding: 52px clamp(18px, 4vw, 46px) 34px; border-top: 1px solid var(--glass-line); }
.lp-foot__top { max-width: 1200px; margin: 0 auto; display: flex; gap: 32px; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; }
.lp-foot__brand { font-size: 21px; font-weight: 800; letter-spacing: .24em; }
.lp-foot__brand span { display: block; font-size: 10.5px; letter-spacing: var(--track); color: var(--ink-4); margin-top: 10px; font-weight: 400; }
.lp-foot__top nav { display: flex; gap: 22px; flex-wrap: wrap; font-size: 11.5px; }
.lp-foot__top nav a { color: var(--ink-3); text-decoration: none; }
.lp-foot__top nav a:hover { color: var(--rose-300); }
.lp-foot__note { max-width: 1200px; margin: 34px auto 0; padding-top: 22px; border-top: 1px solid var(--glass-line); font-size: 10.5px; color: var(--ink-4); }

.lang-sw { top: auto !important; bottom: 20px; right: 20px; background: rgba(28, 10, 24, .9); border-color: var(--glass-line); }
.lang-sw__btn { color: var(--ink-3); }
.lang-sw__btn.is-active { background: var(--rose-500); color: #fff; }

:focus-visible { outline: 2px solid var(--rose-400); outline-offset: 3px; border-radius: 4px; }

/* Generated avatars are multicolour by design — they stand in for different
   people. On a plum ground the cool ones read as foreign objects, so a light
   rose wash pulls them into the page without flattening them into one hue. */
.castcard img, .split__art--pick img {
  filter: saturate(.85) hue-rotate(-8deg) brightness(.96);
}
.castcard:hover img { filter: none; }
