/* 1. Variables and reset */
.public-home-page {
  --home-primary:#eb4f38;
  --home-primary-dark:#b93728;
  --home-ink:#121716;
  --home-ivory:#f8f4ec;
  --home-white:#fff;
  --home-gold:#c89b45;
  --home-forest:#176c5a;
  --home-stone:#6f736e;
  --home-border:rgba(18,23,22,.1);
  --home-shadow-small:0 10px 28px rgba(18,23,22,.08);
  --home-shadow-medium:0 22px 52px rgba(18,23,22,.12);
  --home-shadow-large:0 34px 76px rgba(18,23,22,.18);
  background:var(--home-ivory);
}

.public-home-page .home-main {
  width:100%;
  margin:0;
  padding:0;
}

.public-home-page .home-main > .messages {
  width:min(1180px, calc(100% - 48px));
  margin:16px auto 0;
}

.public-home {
  width:100%;
  overflow:hidden;
  background:var(--home-white);
  color:var(--home-ink);
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  word-break:keep-all;
}

.public-home *,
.public-home *::before,
.public-home *::after {
  box-sizing:border-box;
  min-width:0;
  letter-spacing:0;
}

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

.public-home a:focus-visible {
  outline:3px solid var(--home-primary-dark);
  outline-offset:4px;
}

.public-home .home-final a:focus-visible {
  outline-color:var(--home-gold);
}

.public-home .home-wallet-staff summary:focus-visible {
  border-radius:4px;
  outline:3px solid var(--home-gold);
  outline-offset:4px;
}

/* 2. Shell and shared typography */
.public-home .home-shell {
  width:min(1180px, calc(100% - 48px));
  margin:0 auto;
}

.public-home .home-section {
  padding:104px 0;
}

.public-home .home-kicker,
.public-home .home-section-kicker {
  display:inline-flex;
  min-height:30px;
  align-items:center;
  margin:0 0 18px;
  padding:5px 11px;
  border:1px solid rgba(185,55,40,.22);
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:var(--home-primary-dark);
  font-size:13px;
  font-weight:800;
  line-height:1.35;
}

.public-home .home-section-heading {
  max-width:760px;
  margin-bottom:44px;
}

.public-home .home-section-heading--split {
  display:grid;
  max-width:none;
  grid-template-columns:minmax(0, 1fr) minmax(280px, 420px);
  gap:56px;
  align-items:end;
}

.public-home .home-section-heading--split > p {
  margin:0 0 4px;
}

.public-home .home-section-heading--center {
  margin-right:auto;
  margin-left:auto;
  text-align:center;
}

.public-home .home-section-heading h2,
.public-home .home-final h2 {
  margin:0;
  color:var(--home-ink);
  font-size:44px;
  font-weight:850;
  line-height:1.13;
}

.public-home .home-section-heading > p:not(.home-section-kicker),
.public-home .home-section-heading > div + p {
  margin:18px 0 0;
  color:var(--home-stone);
  font-size:18px;
  line-height:1.72;
}

.public-home .home-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.public-home .home-button {
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  padding:12px 19px;
  border:1px solid transparent;
  border-radius:12px;
  text-decoration:none;
  font-size:16px;
  font-weight:800;
  line-height:1.3;
  transition:transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

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

.public-home .home-button--primary {
  border-color:var(--home-primary);
  background:var(--home-primary);
  box-shadow:var(--home-shadow-small);
  color:#fff;
}

.public-home .home-button--primary:hover {
  border-color:var(--home-primary-dark);
  background:var(--home-primary-dark);
}

.public-home .home-button--secondary {
  border-color:rgba(18,23,22,.18);
  background:#fff;
  color:var(--home-ink);
}

.public-home .home-button--secondary:hover {
  border-color:var(--home-ink);
}

/* 3. Header integration */
.public-home-page .site-header {
  border-bottom-color:rgba(18,23,22,.09);
  background:#fff;
  box-shadow:none;
}

.public-home-page .site-header-inner {
  width:min(1180px, 100%);
}

.public-home-page .brand-text {
  color:var(--home-ink);
}

/* 4. Hero */
.public-home .home-hero {
  position:relative;
  padding:48px 0 42px;
  overflow:hidden;
  background:
    radial-gradient(circle at 4% 96%, rgba(235,79,56,.12), transparent 34%),
    linear-gradient(115deg, #fbf8f2 0%, var(--home-ivory) 58%, #f4eee3 100%);
}

.public-home .home-hero::before {
  position:absolute;
  inset:0 0 0 54%;
  background-image:
    linear-gradient(rgba(18,23,22,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,23,22,.045) 1px, transparent 1px);
  background-size:36px 36px;
  content:"";
  mask-image:linear-gradient(90deg, transparent, #000 30%);
  pointer-events:none;
}

.public-home .home-hero-grid {
  position:relative;
  z-index:1;
  display:grid;
  min-height:560px;
  grid-template-columns:minmax(0, 1.06fr) minmax(500px, .9fr);
  gap:52px;
  align-items:center;
}

.public-home .home-hero-copy {
  padding:12px 0;
}

.public-home .home-hero h1 {
  max-width:660px;
  margin:0;
  color:var(--home-ink);
  font-size:64px;
  font-weight:900;
  line-height:1.06;
}

.public-home .home-hero-lead {
  max-width:650px;
  margin:25px 0 0;
  color:#555b56;
  font-size:19px;
  line-height:1.7;
}

.public-home .home-trust-list {
  display:flex;
  flex-wrap:wrap;
  gap:11px 20px;
  margin:28px 0 0;
  padding:0;
  color:#454a46;
  font-size:14px;
  font-weight:700;
  list-style:none;
}

.public-home .home-trust-list li {
  display:flex;
  align-items:center;
  gap:7px;
}

.public-home .home-trust-list span {
  display:inline-flex;
  width:21px;
  height:21px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#dceee9;
  color:var(--home-forest);
  font-size:12px;
}

/* 5. Product stage */
.public-home .home-product-stage {
  position:relative;
  width:100%;
  min-height:540px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #151a19;
  background-size:32px 32px;
  box-shadow:var(--home-shadow-large);
  isolation:isolate;
  animation:home-stage-enter .65s ease-out both;
}

/* 6. Game selection */
.public-home .home-games {
  background:#fff;
}

.public-home .home-game-grid {
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(0, .92fr);
  grid-template-rows:repeat(2, minmax(250px, 1fr));
  gap:20px;
}

.public-home .home-game-card {
  display:grid;
  overflow:hidden;
  border:1px solid var(--home-border);
  border-radius:20px;
  background:#fff;
  box-shadow:var(--home-shadow-medium);
  transition:transform .2s ease, box-shadow .2s ease;
}

.public-home .home-game-card:hover {
  transform:translateY(-4px);
  box-shadow:0 26px 58px rgba(18,23,22,.15);
}

.public-home .home-game-card--coupon-draw {
  grid-row:1 / 3;
  grid-template-rows:minmax(300px, 1.12fr) auto;
}

.public-home .home-game-card--luck-roulette,
.public-home .home-game-card--meat-flip,
.public-home .home-game-card--generic {
  grid-template-columns:minmax(190px, .9fr) minmax(0, 1.1fr);
}

.public-home .home-game-thumbnail,
.public-home .home-game-preview {
  width:100%;
  height:100%;
  min-height:230px;
  object-fit:cover;
}

.public-home .home-game-preview {
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.public-home .home-game-preview--coupon-draw {
  padding:32px;
  background:linear-gradient(145deg, #3d251d, #1f1714);
}

.public-home .home-paper-board {
  display:grid;
  width:min(390px, 92%);
  aspect-ratio:1.08;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  padding:24px;
  border:13px solid #5f3525;
  border-radius:12px;
  background:#c7973f;
  box-shadow:inset 0 0 0 3px #8b5f2d, 0 18px 38px rgba(0,0,0,.32);
  transform:rotate(-1deg);
}

.public-home .home-paper-board span {
  display:grid;
  aspect-ratio:.82;
  place-items:center;
  border:1px solid rgba(89,49,24,.18);
  border-radius:3px;
  background:#f4e7c8;
  box-shadow:0 5px 8px rgba(69,37,18,.2);
  color:#b73b2d;
  font-size:24px;
  transform:rotate(-2deg);
}

.public-home .home-paper-board span:nth-child(3n) { transform:rotate(3deg); }
.public-home .home-paper-board span:nth-child(5) { transform:translateY(-6px) rotate(-7deg); }

.public-home .home-game-preview--luck-roulette {
  background:#18201f;
}

.public-home .home-card-roulette {
  position:relative;
  width:156px;
  aspect-ratio:1;
  border:9px solid #b98d40;
  border-radius:50%;
  background:conic-gradient(#eb4f38 0 45deg, #f5d58e 45deg 90deg, #1e2d2a 90deg 135deg, #b93728 135deg 180deg, #d7aa55 180deg 225deg, #f8f0dd 225deg 270deg, #176c5a 270deg 315deg, #d74a35 315deg);
  box-shadow:0 16px 30px rgba(0,0,0,.34), inset 0 0 0 4px #262f2d;
  transition:transform .22s ease;
}

.public-home .home-game-card--luck-roulette:hover .home-card-roulette {
  transform:rotate(5deg);
}

.public-home .home-card-roulette::before {
  position:absolute;
  inset:50%;
  width:38px;
  height:38px;
  border:4px solid #d5aa59;
  border-radius:50%;
  background:#141a19;
  content:"";
  transform:translate(-50%, -50%);
}

.public-home .home-card-roulette i {
  position:absolute;
  top:-18px;
  left:50%;
  width:23px;
  height:31px;
  background:var(--home-primary);
  clip-path:polygon(0 0, 100% 0, 50% 100%);
  transform:translateX(-50%);
}

.public-home .home-game-preview--meat-flip {
  padding:25px;
  background:#201815;
}

.public-home .home-card-grill {
  position:relative;
  width:100%;
  min-height:180px;
  overflow:hidden;
  border:8px solid #34302d;
  border-radius:16px;
  background:
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(215,219,216,.16) 23px 26px),
    radial-gradient(ellipse at center, #64291d, #241413 54%, #0d0e0e 86%);
  box-shadow:0 16px 28px rgba(0,0,0,.35), inset 0 0 24px rgba(0,0,0,.66);
}

.public-home .home-card-grill > span {
  position:absolute;
  bottom:8px;
  width:46px;
  height:8px;
  border-radius:50%;
  background:rgba(235,79,56,.34);
  filter:blur(5px);
}

.public-home .home-card-grill > span:nth-child(1) { left:12%; }
.public-home .home-card-grill > span:nth-child(2) { left:42%; }
.public-home .home-card-grill > span:nth-child(3) { right:8%; }

.public-home .home-card-meat {
  position:absolute;
  width:58px;
  height:43px;
  border:2px solid #9e3d30;
  border-radius:50% 42% 49% 46%;
  background:repeating-linear-gradient(110deg, #d97161 0 12px, #8c392f 12px 15px);
  box-shadow:0 8px 13px rgba(0,0,0,.32);
}

.public-home .home-card-meat--one { top:25px; left:18px; transform:rotate(-8deg); }
.public-home .home-card-meat--two { right:16px; bottom:27px; transform:rotate(9deg); }
.public-home .home-card-meat--ready { top:73px; left:49%; border-color:#c7903d; transform:translateX(-50%) rotate(4deg); }

.public-home .home-game-preview--generic {
  background:linear-gradient(145deg, #e9ece8, #f7f4ed);
}

.public-home .home-generic-preview {
  display:flex;
  align-items:flex-end;
  gap:10px;
}

.public-home .home-generic-preview span {
  width:42px;
  height:84px;
  border-radius:8px 8px 3px 3px;
  background:#3d4c47;
}

.public-home .home-generic-preview span:nth-child(2) { height:118px; background:var(--home-primary); }
.public-home .home-generic-preview span:nth-child(3) { height:66px; background:var(--home-gold); }

.public-home .home-game-card-body {
  display:flex;
  flex-direction:column;
  padding:25px 26px 24px;
}

.public-home .home-game-badge {
  align-self:flex-start;
  padding:5px 9px;
  border-radius:999px;
  background:#fff0ec;
  color:var(--home-primary-dark);
  font-size:12px;
  font-weight:850;
}

.public-home .home-game-card--luck-roulette .home-game-badge {
  background:#f3ead8;
  color:#76591f;
}

.public-home .home-game-card--meat-flip .home-game-badge {
  background:#dcebe7;
  color:#10594b;
}

.public-home .home-game-card-body h3 {
  margin:13px 0 7px;
  font-size:24px;
  line-height:1.25;
}

.public-home .home-game-card-body > p {
  margin:0;
  color:var(--home-stone);
  font-size:15px;
  line-height:1.65;
}

.public-home .home-game-card-body .home-game-purpose {
  margin:0 0 10px;
  color:var(--home-ink);
  font-size:13px;
  font-weight:800;
}

.public-home .home-game-card-footer {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px 16px;
  margin-top:auto;
  padding-top:19px;
}

.public-home .home-game-card-footer > span {
  color:#5d625e;
  font-size:12px;
  font-weight:700;
}

.public-home .home-text-link {
  display:inline-flex;
  min-height:44px;
  align-items:center;
  gap:8px;
  color:var(--home-primary-dark);
  font-size:14px;
  font-weight:850;
  text-decoration:none;
}

.public-home .home-text-link:hover {
  text-decoration:underline;
  text-underline-offset:4px;
}

.public-home .home-game-empty {
  padding:42px;
  border:1px dashed rgba(18,23,22,.2);
  border-radius:16px;
  background:var(--home-ivory);
  text-align:center;
}

.public-home .home-game-empty strong { font-size:20px; }
.public-home .home-game-empty p { margin:8px 0 0; color:var(--home-stone); }

/* 7. Product journey */
.public-home .home-journey {
  scroll-margin-top:96px;
  background:var(--home-ivory);
}

.public-home .home-journey:focus {
  outline:none;
}

.public-home .home-entry-choices {
  display:grid;
  max-width:780px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin:0 auto 48px;
}

.public-home .home-entry-choice {
  display:flex;
  min-height:92px;
  align-items:center;
  gap:14px;
  padding:17px 20px;
  border:1px solid var(--home-border);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--home-shadow-small);
}

.public-home .home-entry-choice > span {
  display:grid;
  width:48px;
  height:48px;
  flex:0 0 48px;
  place-items:center;
  border-radius:12px;
  background:#fff0ec;
  color:var(--home-primary-dark);
  font-size:11px;
  font-weight:900;
}

.public-home .home-entry-choice--qr > span {
  background:#deeee9;
}

.public-home .home-entry-choice div {
  display:grid;
  gap:4px;
}

.public-home .home-entry-choice strong { font-size:16px; }
.public-home .home-entry-choice small { color:var(--home-stone); font-size:13px; }

.public-home .home-mini-qr {
  position:relative;
  border:8px solid #fff;
  background:
    conic-gradient(from 90deg, #173e36 25%, transparent 0 50%, #173e36 0 75%, transparent 0) 0 0 / 10px 10px;
  box-shadow:inset 0 0 0 1px rgba(18,23,22,.08);
}

.public-home .home-journey-rail {
  position:relative;
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:18px;
  margin:0;
  padding:0;
  list-style:none;
}

.public-home .home-journey-rail::before {
  position:absolute;
  top:52px;
  right:7%;
  left:7%;
  height:2px;
  background:linear-gradient(90deg, var(--home-primary), var(--home-gold), var(--home-forest));
  content:"";
}

.public-home .home-journey-rail li {
  position:relative;
  z-index:1;
  display:grid;
  justify-items:center;
  text-align:center;
}

.public-home .home-journey-number {
  position:absolute;
  top:-5px;
  right:calc(50% - 35px);
  display:grid;
  width:22px;
  height:22px;
  place-items:center;
  border:2px solid var(--home-ivory);
  border-radius:50%;
  background:var(--home-primary);
  color:#fff;
  font-size:10px;
  font-weight:900;
}

.public-home .home-journey-icon {
  position:relative;
  display:block;
  width:70px;
  height:70px;
  border:1px solid rgba(18,23,22,.12);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--home-shadow-small);
}

.public-home .home-journey-icon::before,
.public-home .home-journey-icon::after {
  position:absolute;
  content:"";
}

.public-home .home-journey-icon--share::before {
  inset:19px 17px;
  border:3px solid var(--home-primary-dark);
  border-radius:7px;
}

.public-home .home-journey-icon--share::after {
  top:13px;
  left:29px;
  width:12px;
  height:18px;
  border-top:3px solid var(--home-primary-dark);
  border-left:3px solid var(--home-primary-dark);
  transform:rotate(45deg);
}

.public-home .home-journey-icon--play::before {
  top:20px;
  left:25px;
  border-top:15px solid transparent;
  border-bottom:15px solid transparent;
  border-left:23px solid var(--home-primary);
}

.public-home .home-journey-icon--server::before {
  inset:17px 18px;
  border:3px solid #8d6c2d;
  border-radius:7px;
  box-shadow:inset 0 -10px 0 #f2e3c7;
}

.public-home .home-journey-icon--server::after {
  top:24px;
  left:26px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--home-gold);
  box-shadow:13px 0 0 var(--home-gold);
}

.public-home .home-journey-icon--wallet::before {
  inset:19px 14px 18px;
  border:3px solid #7c5d23;
  border-radius:8px;
  background:#f7e8ca;
}

.public-home .home-journey-icon--wallet::after {
  top:29px;
  right:13px;
  width:18px;
  height:12px;
  border:2px solid #7c5d23;
  border-radius:5px;
  background:#fff;
}

.public-home .home-journey-icon--store::before {
  right:15px;
  bottom:16px;
  left:15px;
  height:27px;
  border:3px solid var(--home-forest);
  border-radius:0 0 5px 5px;
}

.public-home .home-journey-icon--store::after {
  top:16px;
  left:18px;
  width:34px;
  height:15px;
  background:repeating-linear-gradient(90deg, var(--home-forest) 0 7px, #d8ebe5 7px 14px);
  clip-path:polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.public-home .home-journey-icon--check::before {
  inset:17px;
  border-radius:50%;
  background:#dceee9;
}

.public-home .home-journey-icon--check::after {
  top:27px;
  left:25px;
  width:19px;
  height:10px;
  border-bottom:4px solid var(--home-forest);
  border-left:4px solid var(--home-forest);
  transform:rotate(-45deg);
}

.public-home .home-journey-rail h3 {
  margin:18px 0 7px;
  font-size:16px;
  line-height:1.35;
}

.public-home .home-journey-rail p {
  margin:0;
  color:var(--home-stone);
  font-size:13px;
  line-height:1.55;
}

/* 8. Product proof */
.public-home .home-proof {
  background:#fff;
}

.public-home .home-proof-grid {
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(330px, .92fr);
  gap:60px;
  align-items:center;
}

.public-home .home-wallet-preview {
  position:relative;
  overflow:hidden;
  padding:28px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  background:#17201e;
  box-shadow:var(--home-shadow-large);
  color:#fff;
}

.public-home .home-wallet-preview::before {
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:30px 30px;
  content:"";
  pointer-events:none;
}

.public-home .home-wallet-preview > * {
  position:relative;
  z-index:1;
}

.public-home .home-wallet-topbar {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.public-home .home-wallet-topbar div {
  display:grid;
  gap:3px;
}

.public-home .home-wallet-topbar div > span {
  color:#d7b36c;
  font-size:10px;
  font-weight:900;
}

.public-home .home-wallet-topbar h3 {
  margin:0;
  color:#fff;
  font-size:25px;
}

.public-home .home-wallet-count {
  padding:6px 9px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#dceae6;
  font-size:11px;
  font-weight:800;
}

.public-home .home-wallet-store {
  display:grid;
  grid-template-columns:82px minmax(0, 1fr);
  gap:15px;
  align-items:center;
  margin-top:24px;
}

.public-home .home-wallet-store-photo {
  position:relative;
  width:82px;
  height:72px;
  overflow:hidden;
  border-radius:13px;
  background:#e5d7bd;
}

.public-home .home-wallet-store-photo::before {
  position:absolute;
  right:13px;
  bottom:0;
  left:13px;
  height:45px;
  border-radius:5px 5px 0 0;
  background:#f8f1e3;
  content:"";
}

.public-home .home-wallet-store-photo span {
  position:absolute;
  z-index:1;
  top:18px;
  left:10px;
  width:62px;
  height:18px;
  background:repeating-linear-gradient(90deg, var(--home-primary) 0 12px, #f6cf89 12px 24px);
  clip-path:polygon(7% 0, 93% 0, 100% 100%, 0 100%);
}

.public-home .home-wallet-store-photo i {
  position:absolute;
  z-index:2;
  right:20px;
  bottom:0;
  width:17px;
  height:29px;
  background:#315c51;
}

.public-home .home-wallet-store strong { font-size:17px; }
.public-home .home-wallet-store p { margin:5px 0 0; color:#aebcb7; font-size:12px; line-height:1.5; }

.public-home .home-wallet-links {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:16px 0;
}

.public-home .home-wallet-links span {
  padding:7px 9px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:9px;
  background:rgba(255,255,255,.055);
  color:#e2e9e6;
  font-size:11px;
  font-weight:750;
}

.public-home .home-wallet-ticket {
  position:relative;
  padding:22px;
  border-radius:16px;
  background:#fff;
  color:var(--home-ink);
}

.public-home .home-wallet-ticket::before,
.public-home .home-wallet-ticket::after {
  position:absolute;
  top:51%;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#17201e;
  content:"";
  transform:translateY(-50%);
}

.public-home .home-wallet-ticket::before { left:-9px; }
.public-home .home-wallet-ticket::after { right:-9px; }

.public-home .home-wallet-ticket-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.public-home .home-wallet-ticket-head span {
  padding:5px 8px;
  border-radius:999px;
  background:#dceee9;
  color:var(--home-forest);
  font-size:10px;
  font-weight:900;
}

.public-home .home-wallet-ticket-head small {
  color:var(--home-stone);
  font-size:11px;
}

.public-home .home-wallet-ticket > strong {
  display:block;
  margin-top:15px;
  font-size:29px;
  line-height:1.2;
}

.public-home .home-wallet-ticket > p {
  margin:6px 0 16px;
  color:var(--home-stone);
  font-size:13px;
}

.public-home .home-wallet-ticket dl {
  display:grid;
  gap:8px;
  margin:0;
  padding:14px 0;
  border-top:1px dashed rgba(18,23,22,.17);
  border-bottom:1px dashed rgba(18,23,22,.17);
}

.public-home .home-wallet-ticket dl > div {
  display:flex;
  justify-content:space-between;
  gap:18px;
  font-size:11px;
}

.public-home .home-wallet-ticket dt { color:var(--home-stone); }
.public-home .home-wallet-ticket dd { margin:0; font-weight:800; text-align:right; }

.public-home .home-wallet-action {
  display:flex;
  min-height:42px;
  align-items:center;
  justify-content:center;
  margin-top:15px;
  border-radius:10px;
  background:var(--home-primary);
  color:#fff;
  font-size:12px;
  font-weight:850;
}

.public-home .home-wallet-staff {
  margin-top:12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:rgba(255,255,255,.045);
  color:#e6ece9;
}

.public-home .home-wallet-staff summary {
  min-height:44px;
  padding:12px 14px;
  cursor:pointer;
  font-size:12px;
  font-weight:800;
}

.public-home .home-wallet-staff p {
  margin:0;
  padding:0 14px 14px;
  color:#b7c1bd;
  font-size:11px;
  line-height:1.55;
}

.public-home .home-proof-values {
  display:grid;
  gap:0;
}

.public-home .home-proof-values > article {
  display:grid;
  grid-template-columns:46px minmax(0, 1fr);
  gap:16px;
  padding:24px 0;
  border-bottom:1px solid var(--home-border);
}

.public-home .home-proof-values > article > span {
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border-radius:12px;
  background:#fff0ec;
  color:var(--home-primary-dark);
  font-size:11px;
  font-weight:900;
}

.public-home .home-proof-values article:nth-child(2) > span {
  background:#f3ead8;
  color:#7c5d23;
}

.public-home .home-proof-values article:nth-child(3) > span {
  background:#dceee9;
  color:var(--home-forest);
}

.public-home .home-proof-values h3 {
  margin:0 0 6px;
  font-size:21px;
}

.public-home .home-proof-values p {
  margin:0;
  color:var(--home-stone);
  font-size:15px;
  line-height:1.65;
}

.public-home .home-security-list {
  display:flex;
  flex-wrap:wrap;
  gap:9px 16px;
  margin:25px 0 0;
  padding:0;
  color:#4d534e;
  font-size:13px;
  font-weight:750;
  list-style:none;
}

.public-home .home-security-list li {
  display:flex;
  align-items:center;
  gap:7px;
}

.public-home .home-security-list i {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--home-forest);
}

/* 9. Final CTA */
.public-home .home-final {
  position:relative;
  overflow:hidden;
  padding:92px 0;
  background:#121716;
  color:#fff;
}

.public-home .home-final::before {
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, rgba(200,155,69,.14), transparent 35%);
  background-size:34px 34px, 34px 34px, auto;
  content:"";
}

.public-home .home-final-inner {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(360px, .75fr);
  gap:72px;
  align-items:center;
}

.public-home .home-final .home-section-kicker {
  border-color:rgba(200,155,69,.45);
  background:rgba(200,155,69,.1);
  color:#e9c77f;
}

.public-home .home-final h2 {
  color:#fff;
}

.public-home .home-final-copy > p:not(.home-section-kicker) {
  max-width:620px;
  margin:20px 0 0;
  color:#b8c1bd;
  font-size:17px;
  line-height:1.7;
}

.public-home .home-button--light {
  border-color:#fff;
  background:#fff;
  color:var(--home-ink);
}

.public-home .home-button--light:hover {
  background:#f3ead8;
}

.public-home .home-button--outline-light {
  border-color:rgba(255,255,255,.36);
  background:transparent;
  color:#fff;
}

.public-home .home-button--outline-light:hover {
  border-color:#fff;
  background:rgba(255,255,255,.08);
}

.public-home .home-final-product {
  position:relative;
  min-height:270px;
}

.public-home .home-final-ticket {
  position:absolute;
  z-index:2;
  top:28px;
  left:28px;
  display:grid;
  width:245px;
  gap:7px;
  padding:22px;
  border-radius:15px;
  background:#fff;
  box-shadow:0 24px 50px rgba(0,0,0,.28);
  color:var(--home-ink);
  transform:rotate(-3deg);
}

.public-home .home-final-ticket::before,
.public-home .home-final-ticket::after {
  position:absolute;
  top:50%;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#121716;
  content:"";
  transform:translateY(-50%);
}

.public-home .home-final-ticket::before { left:-12px; }
.public-home .home-final-ticket::after { right:-12px; }

.public-home .home-final-ticket span {
  color:var(--home-primary-dark);
  font-size:11px;
  font-weight:900;
}

.public-home .home-final-ticket strong {
  font-size:25px;
}

.public-home .home-final-qr {
  position:absolute;
  z-index:3;
  top:12px;
  right:8px;
  width:116px;
  height:116px;
  border:12px solid #fff;
  border-radius:11px;
  background:
    conic-gradient(from 90deg, #121716 25%, transparent 0 50%, #121716 0 75%, transparent 0) 0 0 / 18px 18px,
    #fff;
  box-shadow:0 20px 42px rgba(0,0,0,.3);
}

.public-home .home-final-qr::after {
  position:absolute;
  right:-12px;
  left:-12px;
  top:-12px;
  height:3px;
  background:var(--home-primary);
  box-shadow:0 0 12px rgba(235,79,56,.6);
  content:"";
  animation:home-qr-scan 2.4s .8s ease-in-out 1 both;
}

.public-home .home-final-route {
  position:absolute;
  right:0;
  bottom:30px;
  left:0;
  display:flex;
  min-height:58px;
  align-items:center;
  justify-content:center;
  gap:12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.055);
  color:#e9eeec;
  font-size:13px;
  font-weight:850;
}

.public-home .home-final-route b {
  color:var(--home-gold);
}

/* 10. Motion */
@keyframes home-stage-enter {
  from { opacity:0; transform:translateY(14px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes home-qr-scan {
  from { transform:translateY(0); }
  to { transform:translateY(116px); }
}

/* 11. Responsive */
@media (max-width:1100px) {
  .public-home .home-hero-grid {
    grid-template-columns:minmax(0, 1fr) minmax(400px, .85fr);
    gap:38px;
  }

  .public-home .home-hero h1 {
    font-size:58px;
  }

  .public-home .home-product-stage {
    min-height:520px;
  }

  .public-home .home-game-card--luck-roulette,
  .public-home .home-game-card--meat-flip,
  .public-home .home-game-card--generic {
    grid-template-columns:170px minmax(0, 1fr);
  }

  .public-home .home-game-card-body {
    padding:21px;
  }

  .public-home .home-game-card-body h3 {
    font-size:21px;
  }

  .public-home .home-journey-rail {
    gap:12px;
  }

  .public-home .home-journey-rail h3 {
    font-size:14px;
  }
}

@media (max-width:900px) {
  .public-home .home-section {
    padding:88px 0;
  }

  .public-home .home-hero {
    padding-top:44px;
  }

  .public-home .home-hero::before {
    inset:45% 0 0;
    mask-image:linear-gradient(180deg, transparent, #000 28%);
  }

  .public-home .home-hero-grid {
    grid-template-columns:1fr;
    gap:40px;
  }

  .public-home .home-hero-copy {
    max-width:720px;
  }

  .public-home .home-product-stage {
    width:min(620px, 100%);
    margin:0 auto;
  }

  .public-home .home-game-grid {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    grid-template-rows:auto;
  }

  .public-home .home-game-card--coupon-draw,
  .public-home .home-game-card--luck-roulette,
  .public-home .home-game-card--meat-flip,
  .public-home .home-game-card--generic {
    grid-row:auto;
    grid-template-columns:1fr;
    grid-template-rows:230px auto;
  }

  .public-home .home-game-card:last-child:nth-child(odd) {
    width:calc(50% - 10px);
    grid-column:1 / -1;
    justify-self:center;
  }

  .public-home .home-paper-board {
    width:min(260px, 90%);
    gap:7px;
    padding:15px;
    border-width:9px;
  }

  .public-home .home-paper-board span {
    font-size:17px;
  }

  .public-home .home-journey-rail {
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:34px 18px;
  }

  .public-home .home-journey-rail::before {
    display:none;
  }

  .public-home .home-proof-grid,
  .public-home .home-final-inner {
    grid-template-columns:1fr;
  }

  .public-home .home-wallet-preview {
    width:min(650px, 100%);
  }

  .public-home .home-proof-values {
    width:min(650px, 100%);
  }

  .public-home .home-final-product {
    width:min(450px, 100%);
  }
}

@media (max-width:760px) {
  .public-home-page .home-main > .messages {
    width:calc(100% - 32px);
  }

  .public-home .home-shell {
    width:min(100% - 32px, 680px);
  }

  .public-home .home-section {
    padding:74px 0;
  }

  .public-home .home-hero {
    padding:36px 0 46px;
  }

  .public-home .home-hero-grid {
    min-height:0;
    gap:34px;
  }

  .public-home .home-hero h1 {
    font-size:42px;
    line-height:1.09;
  }

  .public-home .home-hero-lead {
    margin-top:19px;
    font-size:17px;
    line-height:1.62;
  }

  .public-home .home-desktop-break {
    display:none;
  }

  .public-home .home-trust-list {
    display:grid;
    gap:8px;
    margin-top:21px;
  }

  .public-home .home-product-stage {
    min-height:410px;
    border-radius:24px;
  }

  .public-home .home-section-heading {
    margin-bottom:32px;
  }

  .public-home .home-section-heading--split {
    grid-template-columns:1fr;
    gap:9px;
  }

  .public-home .home-section-heading--split > p {
    margin-top:0;
  }

  .public-home .home-section-heading h2,
  .public-home .home-final h2 {
    font-size:32px;
  }

  .public-home .home-section-heading > p:not(.home-section-kicker),
  .public-home .home-section-heading > div + p,
  .public-home .home-final-copy > p:not(.home-section-kicker) {
    font-size:16px;
  }

  .public-home .home-entry-choices {
    grid-template-columns:1fr;
    margin-bottom:38px;
  }

  .public-home .home-journey-rail {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .public-home .home-proof-grid {
    gap:38px;
  }

  .public-home .home-wallet-preview {
    padding:20px;
  }

  .public-home .home-final {
    padding:74px 0;
  }
}

@media (max-width:620px) {
  .public-home .home-game-grid {
    grid-template-columns:1fr;
  }

  .public-home .home-game-card:last-child:nth-child(odd) {
    width:100%;
    grid-column:auto;
  }

  .public-home .home-game-card--coupon-draw,
  .public-home .home-game-card--luck-roulette,
  .public-home .home-game-card--meat-flip,
  .public-home .home-game-card--generic {
    grid-template-rows:220px auto;
  }

  .public-home .home-journey-rail {
    grid-template-columns:1fr;
    gap:0;
  }

  .public-home .home-journey-rail::before {
    display:block;
    top:36px;
    right:auto;
    bottom:36px;
    left:34px;
    width:2px;
    height:auto;
    background:linear-gradient(var(--home-primary), var(--home-gold), var(--home-forest));
  }

  .public-home .home-journey-rail li {
    grid-template-columns:70px minmax(0, 1fr);
    gap:17px;
    justify-items:start;
    padding:0 0 28px;
    text-align:left;
  }

  .public-home .home-journey-rail li:last-child {
    padding-bottom:0;
  }

  .public-home .home-journey-number {
    top:-5px;
    right:auto;
    left:49px;
  }

  .public-home .home-journey-rail h3 {
    margin:5px 0 6px;
    font-size:16px;
  }

  .public-home .home-journey-rail p {
    font-size:13px;
  }
}

@media (max-width:520px) {
  .public-home .home-kicker,
  .public-home .home-section-kicker {
    font-size:12px;
  }

  .public-home .home-actions {
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
    margin-top:23px;
  }

  .public-home .home-button {
    width:100%;
  }

  .public-home .home-game-card-body {
    padding:22px;
  }

  .public-home .home-game-card-footer {
    align-items:flex-start;
    flex-direction:column;
  }

  .public-home .home-wallet-topbar {
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }

  .public-home .home-wallet-store {
    grid-template-columns:70px minmax(0, 1fr);
  }

  .public-home .home-wallet-store-photo {
    width:70px;
    height:65px;
  }

  .public-home .home-wallet-store-photo span {
    left:7px;
    width:56px;
  }

  .public-home .home-wallet-ticket {
    padding:18px;
  }

  .public-home .home-wallet-ticket > strong {
    font-size:25px;
  }

  .public-home .home-wallet-ticket dl > div {
    align-items:flex-start;
    flex-direction:column;
    gap:3px;
  }

  .public-home .home-wallet-ticket dd {
    text-align:left;
  }

  .public-home .home-final-product {
    min-height:245px;
  }

  .public-home .home-final-ticket {
    left:12px;
    width:215px;
  }

  .public-home .home-final-qr {
    width:99px;
    height:99px;
  }

  .public-home .home-final-route {
    gap:8px;
    font-size:11px;
  }
}

@media (max-width:390px) {
  .public-home .home-hero h1 {
    font-size:38px;
  }

  .public-home .home-product-stage {
    min-height:382px;
  }

  .public-home .home-section-heading h2,
  .public-home .home-final h2 {
    font-size:30px;
  }

  .public-home .home-entry-choice {
    padding:15px;
  }

  .public-home .home-wallet-links {
    display:grid;
    grid-template-columns:1fr 1fr;
  }
}

/* 12. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .public-home *,
  .public-home *::before,
  .public-home *::after {
    scroll-behavior:auto !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

/* 13. Warm Local Play brand layer */
.public-home-page {
  --home-primary:var(--cg-coral);
  --home-primary-dark:var(--cg-coral-dark);
  --home-ink:var(--cg-navy);
  --home-ivory:var(--cg-cream);
  --home-white:var(--cg-surface);
  --home-gold:var(--cg-gold);
  --home-forest:var(--cg-green);
  --home-stone:var(--cg-muted);
  --home-border:var(--cg-border);
  --home-shadow-small:var(--cg-shadow-soft);
  --home-shadow-medium:var(--cg-shadow);
  --home-shadow-large:0 26px 60px rgba(23,42,67,.14);
}

.public-home-page .public-home {
  background:var(--cg-surface);
  color:var(--cg-navy);
}

.public-home-page .public-home .home-section {
  padding:88px 0;
}

.public-home-page .public-home .home-kicker,
.public-home-page .public-home .home-section-kicker {
  border-color:rgba(200,75,52,.2);
  background:#fff9f4;
  color:var(--cg-coral-dark);
}

.public-home-page .public-home .home-button {
  min-height:48px;
  border-radius:14px;
}

.public-home-page .public-home .home-button--primary {
  border-color:var(--cg-coral);
  background:var(--cg-coral);
}

.public-home-page .public-home .home-button--secondary {
  border-color:var(--cg-border);
  background:var(--cg-surface);
  color:var(--cg-navy);
}

.public-home-page .public-home .home-hero {
  min-height:0;
  padding:40px 0 42px;
  background:#fff3e8;
}

.public-home-page .public-home .home-hero::before {
  content:none;
}

.public-home-page .public-home .home-hero-grid {
  min-height:540px;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:34px;
}

.public-home-page .public-home .home-hero h1 {
  max-width:600px;
  color:var(--cg-navy);
  font-size:54px;
  line-height:1.08;
}

.public-home-page .public-home .home-hero-lead {
  color:var(--cg-navy-soft);
  line-height:1.72;
}

.public-home-page .public-home .home-trust-list li {
  color:var(--cg-navy-soft);
}

.public-home-page .public-home .home-trust-list span {
  color:var(--cg-green);
}

.public-home-page .public-home .home-product-stage {
  width:100%;
  min-height:0;
  padding:0;
  overflow:visible;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.public-home-page .public-home .home-product-illustration {
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1400 / 788;
  object-fit:contain;
  filter:drop-shadow(0 24px 28px rgba(23,42,67,.12));
}

.public-home-page .public-home .home-games {
  background:var(--cg-surface);
}

.public-home-page .public-home .home-game-card {
  border-color:var(--cg-border);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--cg-shadow-soft);
}

.public-home-page .public-home .home-game-card:hover {
  border-color:rgba(242,101,69,.28);
  box-shadow:var(--cg-shadow);
  transform:translateY(-3px);
}

.public-home-page .public-home .home-game-badge {
  background:var(--cg-peach);
  color:var(--cg-coral-dark);
}

.public-home-page .public-home .home-journey {
  background:#fff7ef;
}

.public-home-page .public-home .home-entry-choice {
  border-color:var(--cg-border);
  border-radius:18px;
  background:var(--cg-surface);
  box-shadow:none;
}

.public-home-page .public-home .home-journey-groups {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin:38px 0 28px;
}

.public-home-page .public-home .home-journey-group {
  display:grid;
  grid-template-rows:auto 1fr;
  gap:14px;
  min-width:0;
  padding:14px;
  border:1px solid var(--cg-border);
  border-radius:20px;
  background:var(--cg-surface);
  box-shadow:var(--cg-shadow-soft);
}

.public-home-page .public-home .home-journey-group > img {
  display:block;
  width:132px;
  height:auto;
  aspect-ratio:1;
  margin:0 auto;
  object-fit:contain;
  border-radius:14px;
}

.public-home-page .public-home .home-journey-group .home-journey-rail {
  grid-template-columns:1fr;
  gap:10px;
}

.public-home-page .public-home .home-journey-rail::before {
  content:none;
}

.public-home-page .public-home .home-journey-rail li {
  min-height:132px;
  padding:18px;
  border:1px solid var(--cg-border);
  border-radius:18px;
  background:#fff;
  box-shadow:none;
}

.public-home-page .public-home .home-journey-number {
  background:var(--cg-coral);
  color:#fff;
}

.public-home-page .public-home .home-proof {
  background:var(--cg-peach);
}

.public-home-page .public-home .home-wallet-preview {
  border-color:rgba(23,42,67,.12);
  border-radius:24px;
  background:var(--cg-surface);
  box-shadow:var(--cg-shadow);
}

.public-home-page .public-home .home-wallet-ticket {
  border-color:rgba(242,101,69,.34);
  border-radius:18px;
  background:#fff7f0;
}

.public-home-page .public-home .home-proof-values article {
  border-color:var(--cg-border);
  border-radius:18px;
  background:rgba(255,253,249,.9);
}

.public-home-page .public-home .home-final {
  background:var(--cg-navy);
}

.public-home-page .public-home .home-final::before {
  content:none;
}

.public-home-page .public-home .home-final h2,
.public-home-page .public-home .home-final-copy > p:not(.home-section-kicker) {
  color:#fffaf2;
}

.public-home-page .public-home .home-final .home-section-kicker {
  border-color:rgba(245,185,66,.5);
  background:rgba(255,255,255,.08);
  color:#ffe5a8;
}

.public-home-page .public-home .home-final-product {
  border-radius:24px;
  background:rgba(255,255,255,.07);
}

@media (max-width:900px) {
  .public-home-page .public-home .home-hero-grid {
    min-height:0;
    grid-template-columns:1fr;
    gap:24px;
  }

  .public-home-page .public-home .home-hero-copy {
    max-width:720px;
  }

  .public-home-page .public-home .home-product-stage {
    width:min(720px, 100%);
    justify-self:center;
  }
}

@media (max-width:760px) {
  .public-home-page .public-home .home-section {
    padding:66px 0;
  }

  .public-home-page .public-home .home-hero {
    padding:28px 0 32px;
  }

  .public-home-page .public-home .home-hero h1 {
    font-size:42px;
  }

  .public-home-page .public-home .home-journey-groups {
    grid-template-columns:1fr;
  }

  .public-home-page .public-home .home-journey-group {
    grid-template-columns:120px minmax(0, 1fr);
    grid-template-rows:1fr;
    align-items:start;
  }
}

@media (max-width:620px) {
  .public-home-page .public-home .home-hero-grid {
    gap:16px;
  }

  .public-home-page .public-home .home-hero h1 {
    font-size:36px;
  }

  .public-home-page .public-home .home-kicker {
    margin-bottom:10px;
  }

  .public-home-page .public-home .home-hero-lead {
    font-size:16px;
    line-height:1.62;
  }

  .public-home-page .public-home .home-hero .home-actions {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
    margin-top:16px;
  }

  .public-home-page .public-home .home-hero .home-button {
    min-height:46px;
    padding:9px 11px;
    font-size:14px;
  }

  .public-home-page .public-home .home-trust-list {
    margin-top:15px;
  }

  .public-home-page .public-home .home-product-illustration {
    width:min(100%, 285px);
    margin:0 auto;
  }

  .public-home-page .public-home .home-journey-groups {
    margin-top:28px;
  }

  .public-home-page .public-home .home-journey-group {
    grid-template-columns:1fr;
    padding:12px;
    border-radius:14px;
  }

  .public-home-page .public-home .home-journey-group > img {
    width:104px;
  }

  .public-home-page .public-home .home-journey-rail li {
    min-height:0;
  }
}

@media (max-width:390px) {
  .public-home-page .public-home .home-hero h1 {
    font-size:33px;
  }

  .public-home-page .public-home .home-section-heading h2,
  .public-home-page .public-home .home-final h2 {
    font-size:29px;
  }
}
