:root {
  --ink: #1a1028;
  --plum: #3c1f5c;
  --plum-2: #2a1544;
  --rose: #9f1239;
  --copper: #b45309;
  --copper-2: #f0b429;
  --teal: #0f766e;
  --sand: #f3eee4;
  --paper: #fffdf8;
  --line: #e4d9c8;
  --muted: #5e5568;
  --text: #2c2438;
  --shadow: 0 18px 40px rgba(26, 16, 40, 0.08);
  --radius: 22px;
  --header: 72px;
  --rail: 210px;
  --max: 1180px;
  --font: "Plus Jakarta Sans", "Segoe UI", "Noto Sans", Roboto, sans-serif;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + env(safe-area-inset-top, 0px) + 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body.d55-theme {
  margin: 0;
  background: var(--sand);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  -webkit-tap-highlight-color: rgba(180, 83, 9, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.d55-main { flex: 1 0 auto; }

@media (min-width: 900px) {
  body.d55-theme { padding-bottom: env(safe-area-inset-bottom, 0px); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font-family: inherit; }
strong { font-weight: 700; }

a,
button,
.d55-btn,
.d55-faq__q,
.d55-toggle { touch-action: manipulation; }

.d55-wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  top: 12px;
  left: 12px;
  z-index: 90;
  padding: 8px 12px;
  background: var(--copper-2);
  color: var(--ink);
  border-radius: 8px;
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.15rem, 5vw, 3.55rem); margin: 0 0 16px; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin: 0 0 10px; }
h3 { font-size: 1.12rem; margin: 0 0 8px; font-family: var(--font); letter-spacing: -0.02em; }

.d55-kicker {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.d55-lead { font-size: 1.08rem; margin: 0 0 14px; }
.d55-head { max-width: 720px; margin-bottom: 28px; }
.d55-head p { color: var(--muted); margin: 0; }

.d55-crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.d55-crumb a { color: var(--plum); }
.d55-crumb strong { color: var(--ink); font-weight: 700; }

.d55-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.d55-btn:hover { transform: translateY(-1px); }
.d55-btn--copper {
  background: linear-gradient(180deg, #f0b429, #b45309);
  color: #1a1004;
  box-shadow: 0 10px 22px rgba(180, 83, 9, 0.28);
}
.d55-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26, 16, 40, 0.18);
}

/* Header */
.d55-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 8, 16, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.d55-header.is-scrolled { border-bottom-color: rgba(255, 255, 255, 0.08); }
.d55-header__bar {
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: env(safe-area-inset-top, 0px);
}

.d55-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f6efe4;
  flex-shrink: 0;
}
.d55-brand img {
  width: auto;
  height: 32px;
  border-radius: 0;
  box-shadow: none;
  max-width: min(200px, 52vw);
}
.d55-brand strong { display: block; font-size: 15px; line-height: 1.1; }
.d55-brand small { display: block; color: rgba(246, 239, 228, 0.7); font-size: 11px; font-weight: 600; }

.d55-toggle {
  --toggle: 42px;
  width: var(--toggle);
  height: var(--toggle);
  border: 1px solid rgba(240, 180, 41, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(18, 6, 12, 0.55);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  display: none;
  place-items: center;
  padding: 0;
  position: relative;
  z-index: 55;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.d55-toggle:hover,
.d55-toggle:focus-visible {
  border-color: rgba(240, 180, 41, 0.8);
  outline: none;
}
.d55-toggle:active { transform: scale(0.96); }
.d55-toggle__bars {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
}
.d55-toggle__bars span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: #f6e7c3;
  border-radius: 99px;
  transition: transform .22s ease, opacity .18s ease, top .22s ease, background .2s ease;
}
.d55-toggle__bars span:nth-child(1) { top: 0; }
.d55-toggle__bars span:nth-child(2) { top: 5px; }
.d55-toggle__bars span:nth-child(3) { top: 10px; width: 13px; }
.d55-toggle.is-open {
  border-color: rgba(240, 180, 41, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(18, 6, 12, 0.7);
}
.d55-toggle.is-open .d55-toggle__bars span { width: 18px; }
.d55-toggle.is-open .d55-toggle__bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.d55-toggle.is-open .d55-toggle__bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.3);
}
.d55-toggle.is-open .d55-toggle__bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.d55-nav {
  display: flex;
  align-items: center;
  gap: 4px 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.d55-nav a {
  font-size: 13px;
  font-weight: 700;
  color: #f6efe4;
  text-decoration: none;
  padding: 6px 0;
}
.d55-nav a:hover { color: #f0b429; }
.d55-nav .d55-btn { margin-left: 6px; color: #1a1004; }

.d55-nav-backdrop { display: none; }

/* Hero */
.d55-hero {
  padding: 28px 0 12px;
  background:
    radial-gradient(900px 280px at 10% -10%, rgba(159, 18, 57, 0.08), transparent 60%),
    radial-gradient(700px 240px at 90% 0%, rgba(15, 118, 110, 0.1), transparent 55%);
}
.d55-hero__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.d55-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 16px; }
.d55-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}
.d55-pills li {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}
.d55-notice {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--rose);
  background: #fff7f4;
  font-size: 14px;
  color: var(--muted);
}

.d55-hero__stage {
  position: relative;
  justify-self: center;
  width: min(100%, 340px);
}

.d55-phone {
  width: 250px;
  margin: 0 auto;
  padding: 12px;
  background: linear-gradient(180deg, #2a1544, #120a22);
  border-radius: 36px;
  box-shadow: 0 30px 50px rgba(26, 16, 40, 0.28);
}
.d55-phone__notch {
  width: 92px;
  height: 10px;
  margin: 4px auto 10px;
  background: #0b0714;
  border-radius: 999px;
}
.d55-phone__screen {
  background: linear-gradient(180deg, #3c1f5c, #1a1028);
  border-radius: 24px;
  min-height: 430px;
  padding: 14px;
  color: #f6efe4;
}
.d55-phone__top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}
.d55-phone__top img { width: 28px; height: 28px; border-radius: 8px; }
.d55-phone__top em {
  margin-left: auto;
  font-style: normal;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #0f766e;
}
.d55-phone__hero-card {
  margin: 18px 0;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #b45309, #9f1239);
}
.d55-phone__hero-card small { display: block; opacity: .8; font-size: 11px; }
.d55-phone__hero-card strong { display: block; font-size: 22px; font-family: var(--display); }
.d55-phone__hero-card span { font-size: 12px; }
.d55-phone__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.d55-phone__tiles span {
  padding: 16px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.d55-phone__bar {
  display: flex;
  justify-content: space-around;
  margin-top: 22px;
}
.d55-phone__bar i {
  width: 18px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.25);
  display: block;
}
.d55-phone__bar i.is-on { background: #f0b429; width: 28px; }

.d55-hero__float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.d55-hero__float--a { top: 18%; left: -8px; }
.d55-hero__float--b { bottom: 16%; right: -12px; }

/* Chapter shell */
.d55-shell {
  width: min(100% - 32px, var(--max));
  margin: 8px auto 0;
  display: grid;
  gap: 28px;
}

.d55-chapters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 12px;
  scrollbar-width: none;
  position: sticky;
  top: calc(var(--header) + env(safe-area-inset-top, 0px));
  background: linear-gradient(180deg, var(--sand) 70%, transparent);
  z-index: 8;
}
.d55-chapters::-webkit-scrollbar { display: none; }
.d55-chapters p {
  display: none;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.d55-chapters a {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}
.d55-chapters a.is-active,
.d55-chapters a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.d55-article { min-width: 0; }

.d55-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.d55-block--split {
  display: grid;
  gap: 24px;
  align-items: start;
}

/* Specs */
.d55-spec {
  display: grid;
  gap: 18px;
}
.d55-spec__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, #2a1544, #3c1f5c);
  color: #f6efe4;
}
.d55-spec__brand img { width: 72px; height: 72px; border-radius: 16px; }
.d55-spec__brand p { margin: 0; font-weight: 800; }
.d55-spec table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.d55-spec th,
.d55-spec td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.d55-spec th {
  width: 42%;
  color: var(--muted);
  font-weight: 700;
}

/* Why */
.d55-why { display: grid; gap: 0; }
.d55-why article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.d55-why article:last-child { border-bottom: 0; padding-bottom: 0; }
.d55-why span {
  font-family: var(--display);
  font-size: 28px;
  color: var(--copper);
  line-height: 1;
}
.d55-why p { margin: 0; color: var(--muted); font-size: 15px; }

/* Bento */
.d55-bento {
  display: grid;
  gap: 12px;
}
.d55-bento article {
  padding: 18px;
  border-radius: 16px;
  background: var(--sand);
  border: 1px solid var(--line);
}
.d55-bento p { margin: 0; color: var(--muted); font-size: 15px; }

/* Install rail */
.d55-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--line);
}
.d55-rail li {
  position: relative;
  padding: 0 0 22px 22px;
}
.d55-rail li:last-child { padding-bottom: 0; }
.d55-rail li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px #f8e7cc;
}
.d55-rail p { margin: 0; color: var(--muted); font-size: 15px; }

.d55-steps {
  margin: 16px 0 0;
  padding-left: 18px;
}
.d55-steps li { margin: 0 0 8px; }

.d55-panel {
  padding: 18px;
  border-radius: 18px;
  background: var(--plum-2);
  color: #f4efe6;
}
.d55-panel--alt { background: var(--teal); }
.d55-panel__label {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .8;
}
.d55-fakeform label {
  display: block;
  font-size: 11px;
  opacity: .7;
  margin-top: 10px;
}
.d55-fakeform span {
  display: block;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  font-size: 14px;
}
.d55-fakeform em {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(180deg, #f0b429, #b45309);
  color: #1a1004;
  border-radius: 999px;
  padding: 10px;
}
.d55-fakeform small { display: block; margin-top: 10px; opacity: .75; font-size: 12px; }
.d55-check { margin: 0; padding-left: 18px; }
.d55-check li { margin: 0 0 8px; }

/* Games */
.d55-games {
  display: grid;
  gap: 14px;
}
.d55-games article {
  padding: 8px 8px 16px;
  border-radius: 18px;
  background: var(--sand);
  border: 1px solid var(--line);
}
.d55-games h3, .d55-games p { padding: 0 8px; }
.d55-games p { margin: 0; color: var(--muted); font-size: 14px; }
.d55-game {
  height: 92px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #f6efe4;
  margin-bottom: 10px;
}
.d55-game svg { width: 88px; height: 64px; }
.d55-game--rummy { background: linear-gradient(135deg, #3c1f5c, #9f1239); }
.d55-game--ludo { background: linear-gradient(135deg, #0f766e, #1a1028); }
.d55-game--patti { background: linear-gradient(135deg, #b45309, #3c1f5c); }
.d55-game--andar { background: linear-gradient(135deg, #1e3a5f, #0f766e); }
.d55-game--call { background: linear-gradient(135deg, #4c1d95, #9f1239); }
.d55-game--daily { background: linear-gradient(135deg, #7c2d12, #b45309); }

/* Tickets */
.d55-tickets {
  display: grid;
  gap: 12px;
}
.d55-tickets article {
  position: relative;
  padding: 18px 18px 18px 22px;
  border-radius: 16px;
  background: #fff7ea;
  border: 1px dashed #d6b57a;
}
.d55-tickets article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 4px;
  background: var(--copper);
}
.d55-tickets p { margin: 0; color: var(--muted); font-size: 14px; }

/* Payments */
.d55-pay {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.d55-pay li {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.d55-pay strong { display: block; margin-bottom: 4px; }
.d55-pay span { color: var(--muted); font-size: 14px; }

/* App traits */
.d55-phonestrip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.d55-mini {
  width: 86px;
  height: 150px;
  border-radius: 18px;
  background: linear-gradient(180deg, #2a1544, #1a1028);
  color: #f6efe4;
  padding: 12px 8px;
  box-shadow: var(--shadow);
}
.d55-mini.is-mid { transform: translateY(-10px) scale(1.06); }
.d55-mini b { display: block; font-size: 11px; margin-bottom: 10px; }
.d55-mini i {
  display: block;
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  margin-bottom: 6px;
}
.d55-traits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.d55-traits p { margin: 0; color: var(--muted); font-size: 15px; }

/* Tips */
.d55-tips {
  display: grid;
  gap: 14px;
}
.d55-tips > div {
  padding: 16px 16px 16px 18px;
  border-radius: 16px;
  background: var(--sand);
}
.d55-tips > div:first-child { border-top: 3px solid var(--teal); }
.d55-tips > div:last-child { border-top: 3px solid var(--rose); }
.d55-tips ul { margin: 0; padding-left: 18px; }
.d55-tips li { margin: 0 0 8px; color: var(--muted); font-size: 15px; }

/* FAQ */
.d55-faq__item { border-bottom: 1px solid var(--line); }
.d55-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 28px 16px 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}
.d55-faq__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 22px;
  color: var(--copper);
}
.d55-faq__item.is-open .d55-faq__q::after { content: "–"; }
.d55-faq__a { display: none; padding: 0 8px 16px 0; color: var(--muted); }
.d55-faq__item.is-open .d55-faq__a { display: block; }
.d55-faq__a p { margin: 0; }

.d55-block--callout {
  background: linear-gradient(160deg, #fff7f4, #fff);
  border-color: #efc2c8;
}
.d55-block--callout ul { padding-left: 18px; }
.d55-block--legal {
  background: var(--ink);
  color: #d8d0c4;
  border-color: var(--ink);
}
.d55-block--legal h2,
.d55-block--legal .d55-kicker { color: #f6efe4; }
.d55-block--legal .d55-kicker { color: #f0b429; }
.d55-block--legal a { color: #f0b429; }
.d55-block--legal ul { padding-left: 18px; }

/* Pages */
.d55-page {
  padding: 32px 0 64px;
  max-width: 760px;
}
.d55-prose p { margin: 0 0 14px; }
.d55-prose h2 { margin: 28px 0 10px; }
.d55-prose ul { padding-left: 18px; }

.d55-404 {
  padding: 48px 0 80px;
  text-align: center;
}
.d55-404__code {
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 8rem);
  margin: 0;
  line-height: 1;
  color: var(--plum);
}
.d55-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

/* Footer */
.d55-footer {
  margin-top: 12px;
  background: var(--plum-2);
  color: #d8d0c4;
  padding: 42px 0 28px;
}
.d55-footer a { color: #f6efe4; text-decoration: none; }
.d55-footer a:hover { color: #f0b429; }
.d55-footer h2 {
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f0b429;
  margin-bottom: 12px;
}
.d55-footer ul { list-style: none; margin: 0; padding: 0; }
.d55-footer li { margin: 0 0 8px; }
.d55-footer__grid {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
}
.d55-brand--foot { color: #f6efe4; margin-bottom: 12px; }
.d55-footer__plus {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(240, 180, 41, .4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #f0b429;
}
.d55-footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
}
.d55-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 14px;
}
.d55-footer__bar-inner p { margin: 0; }

.d55-dock {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 16px;
  text-decoration: none;
  color: #1a1004;
  background: linear-gradient(180deg, #f0b429, #b45309);
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.35);
  font-weight: 800;
}
.d55-dock small { font-weight: 600; opacity: .8; font-size: 11px; }

@media (min-width: 900px) {
  .d55-dock { display: none; }
}

/* Tablet */
@media (min-width: 760px) {
  .d55-hero__grid { grid-template-columns: 1.15fr .85fr; }
  .d55-block { padding: 36px 32px; }
  .d55-spec { grid-template-columns: 220px 1fr; align-items: stretch; }
  .d55-bento { grid-template-columns: 1fr 1fr; }
  .d55-bento .is-wide { grid-column: 1 / -1; }
  .d55-games { grid-template-columns: 1fr 1fr; }
  .d55-tickets { grid-template-columns: 1fr 1fr; }
  .d55-pay { grid-template-columns: 1fr 1fr; }
  .d55-tips { grid-template-columns: 1fr 1fr; }
  .d55-block--split { grid-template-columns: 1fr 1fr; }
  .d55-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
  .d55-why { grid-template-columns: 1fr 1fr; gap: 8px 24px; }
  .d55-why article { border-bottom: 0; padding: 12px 0; }
}

/* iPad landscape / desktop chapter rail */
@media (min-width: 1080px) {
  .d55-toggle { display: none !important; }
  .d55-shell {
    grid-template-columns: var(--rail) minmax(0, 1fr);
    align-items: start;
    gap: 36px;
  }
  .d55-chapters {
    display: block;
    overflow: visible;
    padding: 18px 0 40px;
    position: sticky;
    top: calc(var(--header) + 12px);
    background: none;
  }
  .d55-chapters p { display: block; }
  .d55-chapters a {
    display: block;
    border: 0;
    background: transparent;
    padding: 6px 0 6px 12px;
    border-left: 2px solid var(--line);
    border-radius: 0;
  }
  .d55-chapters a.is-active {
    border-left-color: var(--copper);
    color: var(--ink);
  }
  .d55-games { grid-template-columns: repeat(3, 1fr); }
  .d55-tickets { grid-template-columns: repeat(3, 1fr); }
  .d55-pay { grid-template-columns: repeat(3, 1fr); }
  .d55-traits { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
  .d55-phonestrip { margin-top: 6px; }
  .d55-bento { grid-template-columns: 1.2fr 1fr 1fr; }
  .d55-bento .is-wide { grid-column: 1; grid-row: 1 / span 2; }
}

@media (max-width: 1079px) {
  .d55-header__bar { width: min(100% - 20px, var(--max)); }
  .d55-toggle { display: grid; }
  .d55-nav {
    position: fixed;
    top: calc(var(--header) + env(safe-area-inset-top, 0px));
    left: 12px;
    right: 12px;
    width: auto;
    max-height: min(78dvh, calc(100dvh - var(--header) - 24px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 14px 18px;
    background: linear-gradient(180deg, #241018 0%, #16060c 100%);
    border: 1px solid rgba(240, 180, 41, 0.18);
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(8, 2, 6, 0.45);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
    z-index: 48;
  }
  .d55-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .d55-nav a {
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 700;
    color: #f6efe4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }
  .d55-nav a:hover,
  .d55-nav a:focus-visible {
    color: #f0b429;
    background: rgba(240, 180, 41, 0.08);
  }
  .d55-nav .d55-btn {
    margin: 14px 0 4px;
    width: 100%;
    min-height: 48px;
    color: #1a1004;
    border-bottom: 0;
  }
  .d55-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 4, 8, 0.55);
    backdrop-filter: blur(4px);
    z-index: 41;
  }
  .d55-nav-backdrop[hidden] { display: none; }
  body.d55-nav-open { overflow: hidden; }
}

@media (max-width: 759px) {
  .d55-hero__float--a { left: 0; }
  .d55-hero__float--b { right: 0; }
  .d55-phone { width: 220px; }
  .d55-phone__screen { min-height: 380px; }
  .d55-brand small { display: none; }
}
