/* Landing page – index.php */
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Custom properties ── */
:root {
  /* WWM game palette – see public.css for shared tokens */
  --bg:          #000000;
  --bg-2:        #071421;
  --surface:     rgba(255,255,255,.045);
  --surface-hov: rgba(255,255,255,.075);
  --border:      rgba(255,255,255,.08);
  --border-acc:  rgba(176,176,255,.28);
  --text:        #e8edf8;
  --muted:       #7a8aa8;
  --accent:      #2F9CFF;
  --accent-2:    #0030A0;
  --gold:        #FFA500;
  --gold-2:      #E0A112;
  --success:     #22c55e;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 28px;

  --shadow-acc: 0 0 48px rgba(0,48,160,.22);

  --fs-xs:  clamp(11px, 1.2vw, 13px);
  --fs-sm:  clamp(13px, 1.6vw, 15px);
  --fs-md:  clamp(15px, 2vw,   17px);
  --fs-lg:  clamp(18px, 2.5vw, 22px);
  --fs-xl:  clamp(24px, 3.5vw, 36px);
  --fs-2xl: clamp(38px, 7vw,   76px);
  --fs-tag: clamp(10px, 1.1vw, 12px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, sans-serif;
  font-size: var(--fs-md);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 60px);
  transition: background .4s, backdrop-filter .4s, padding .3s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-monogram {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #000;
  letter-spacing: -.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,165,0,.3), inset 0 1px 0 rgba(255,255,255,.3);
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-wm-main {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff 35%, var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-wm-sub {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-vote-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,.85);
}
.nav-live-dot.is-waiting {
  background: #f59e0b;
  box-shadow: none;
}
.nav-live-dot.is-pulse {
  animation: nav-live-pulse 1.4s ease-in-out infinite;
}
@keyframes nav-live-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,.5); transform: scale(1); }
  50% { box-shadow: 0 0 14px rgba(34,197,94,.95); transform: scale(1.15); }
}
.is-hidden { display: none !important; }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-weight: 700 !important;
}
.nav-cta:hover { opacity: .85; }
/* mobile nav in public.css */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px,15vh,160px) clamp(20px,5vw,60px) clamp(60px,10vh,120px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: '';
  position: absolute;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  top: -20%; left: -15%;
  background: radial-gradient(circle, rgba(0,48,160,.28) 0%, transparent 70%);
  animation: aurora1 20s ease-in-out infinite;
  filter: blur(70px);
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  border-radius: 50%;
  bottom: -15%; right: -10%;
  background: radial-gradient(circle, rgba(11,47,134,.22) 0%, transparent 70%);
  animation: aurora2 26s ease-in-out infinite;
  filter: blur(80px);
  will-change: transform;
}
.hero-glow {
  position: absolute;
  width: 50vw; height: 50vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  top: 25%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,165,0,.08) 0%, transparent 70%);
  animation: aurora3 16s ease-in-out infinite;
  filter: blur(50px);
  will-change: transform, opacity;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
}
@keyframes aurora1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(5%,8%) scale(1.08); }
  66%      { transform: translate(-3%,4%) scale(.96); }
}
@keyframes aurora2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-6%,-5%) scale(1.06); }
  66%      { transform: translate(4%,-8%) scale(1.04); }
}
@keyframes aurora3 {
  0%,100% { transform: translateX(-50%) scale(1);   opacity: .6; }
  50%      { transform: translateX(-50%) scale(1.3); opacity: 1;  }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,165,0,.1);
  border: 1px solid rgba(255,165,0,.22);
  color: var(--gold-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fade-up .8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1;  transform: scale(1);  }
  50%      { opacity: .4; transform: scale(.7); }
}
.hero-title {
  font-size: var(--fs-2xl);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  animation: fade-up .8s .15s ease both;
}
.hero-title .grad {
  background: linear-gradient(135deg, #fff 25%, var(--gold-2) 65%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: var(--fs-lg);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.6;
  animation: fade-up .8s .3s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fade-up .8s .45s ease both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, opacity .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn-primary {
  background: linear-gradient(135deg, #001A6A, #0030A0);
  color: #fff;
  box-shadow: 0 4px 20px rgba(47,156,255,.35);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(47,156,255,.5); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface-hov); border-color: rgba(255,255,255,.15); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000;
  box-shadow: 0 4px 20px rgba(255,165,0,.32);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(255,165,0,.45); }

/* ── Sections ── */
.section {
  padding: clamp(64px,10vw,120px) clamp(20px,5vw,60px);
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: var(--fs-xl);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-lead {
  color: var(--muted);
  font-size: var(--fs-md);
  max-width: 520px;
  margin-bottom: 48px;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── Bento Grid ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.s7  { grid-column: span 7; }
.s5  { grid-column: span 5; }
.s4  { grid-column: span 4; }
.s3  { grid-column: span 3; }
.s12 { grid-column: span 12; }

@media (max-width: 900px) {
  .s7, .s5, .s4, .s3 { grid-column: span 6; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .s7, .s5, .s4, .s3, .s12 { grid-column: span 1; }
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(22px,4vw,36px);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}
.bento-card:hover {
  border-color: var(--border-acc);
  background: var(--surface-hov);
  transform: translateY(-4px);
  box-shadow: var(--shadow-acc);
}
.card-hero-feat {
  background: linear-gradient(135deg, rgba(0,48,160,.14) 0%, rgba(168,85,247,.07) 100%);
  border-color: rgba(0,48,160,.2);
}
.card-hero-feat::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0,48,160,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bento-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.bento-tag {
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
  opacity: .7;
}
.bento-h {
  font-size: var(--fs-lg);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.bento-p {
  color: var(--muted);
  font-size: var(--fs-sm);
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.pill {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 11px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--muted);
}

/* ── Download ── */
.download-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download-card {
  background: linear-gradient(135deg, rgba(255,165,0,.08) 0%, rgba(251,191,36,.04) 100%);
  border: 1px solid rgba(255,165,0,.2);
  border-radius: var(--r-xl);
  padding: clamp(36px,5vw,60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 640px) { .download-card { grid-template-columns: 1fr; } }
.download-version {
  font-size: var(--fs-2xl);
  font-weight: 900;
  line-height: 1;
  margin: 8px 0 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.download-date { color: var(--muted); font-size: var(--fs-sm); margin-bottom: 20px; }
.download-mobile-title {
  font-size: var(--fs-xl);
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0 6px;
  color: var(--text);
}
.download-mobile-lead {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin: 0 0 16px;
  line-height: 1.6;
}
.download-card-mobile {
  background: linear-gradient(135deg, rgba(99,102,241,.08) 0%, rgba(6,182,212,.04) 100%);
  border-color: rgba(0,48,160,.2);
}
.download-card-mobile .download-version,
.download-card-mobile .download-mobile-title {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--text);
}
.download-card-mobile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: start;
}
.download-card-mobile .dl-notes-full {
  grid-column: 1 / -1;
  margin-top: 0;
}
.download-apk-hint {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: 1.5;
  text-align: right;
}
@media (max-width: 640px) {
  .download-card-mobile { grid-template-columns: 1fr; }
  .download-apk-hint { text-align: left; }
}
.check-list { display: flex; flex-direction: column; gap: 9px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--muted);
}
.check-item .ok { color: var(--success); font-size: 14px; }
.download-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  min-width: 220px;
}
@media (max-width: 640px) {
  .download-right { align-items: stretch; }
  .download-right .btn { justify-content: center; }
}
.download-req {
  font-size: var(--fs-xs);
  color: var(--muted);
  text-align: right;
  line-height: 1.7;
}
@media (max-width: 640px) { .download-req { text-align: left; } }
.download-req a { color: var(--accent); }

/* ── Release Notes compact (in Download-Box) ── */
.dl-notes {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,165,0,.16);
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,158,11,.3) transparent;
}
.dl-notes-label {
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-2);
  opacity: .75;
  margin-bottom: 8px;
}
.dl-notes .changelog-body h2 { display: none; }
.dl-notes .changelog-body h3 { display: none; }
.dl-notes .changelog-body ul { padding-left: 16px; margin: 0 0 6px; }
.dl-notes .changelog-body li { font-size: var(--fs-xs); color: var(--muted); line-height: 1.6; margin-bottom: 2px; }
.dl-notes .changelog-body p  { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 6px; }
.dl-notes .changelog-body hr { display: none; }

/* ── Compat Check ── */
.compat-block { display: flex; flex-direction: column; gap: 7px; width: 100%; }
.compat-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: var(--fs-xs); line-height: 1.5;
}
.compat-ok    { color: var(--success); }
.compat-warn  { color: var(--gold-2); }
.compat-info  { color: var(--muted); }
.compat-error { color: #f87171; }
.compat-item .ci-icon { flex-shrink: 0; font-size: 13px; margin-top: 1px; font-style: normal; }
.compat-item a { color: var(--accent); font-weight: 600; text-decoration: none; }
.compat-item a:hover { text-decoration: underline; }
.download-unavail {
  padding: 14px 28px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
}
.download-mobile-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  .download-mobile-row { justify-content: stretch; }
}
.btn-mobile {
  font-size: var(--fs-sm);
  padding: 14px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  width: 100%;
}
.btn-mobile:hover {
  border-color: rgba(255,165,0,.32);
  background: rgba(255,165,0,.07);
}
.btn-mobile.is-disabled {
  opacity: .5;
  pointer-events: none;
  cursor: not-allowed;
  border-style: dashed;
}
.btn-android::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  background: #3ddc84;
}

/* ── Access Cards ── */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .access-grid { grid-template-columns: 1fr; } }
.access-grid.access-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .access-grid.access-grid-2 { grid-template-columns: 1fr; } }
.access-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}
.access-card:hover {
  border-color: var(--border-acc);
  background: var(--surface-hov);
  transform: translateY(-4px);
  box-shadow: var(--shadow-acc);
}
.access-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.access-h  { font-size: var(--fs-lg); font-weight: 800; }
.access-p  { color: var(--muted); font-size: var(--fs-sm); flex: 1; }
.access-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--accent);
  transition: gap .2s;
}
.access-card:hover .access-cta { gap: 10px; }

/* ── Divider / Footer ── */
.divider { border: none; border-top: 1px solid var(--border); }
.footer {
  padding: clamp(32px,5vw,56px) clamp(20px,5vw,60px);
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-xs);
}
.footer a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer a:hover { color: var(--text); }

/* ── Changelog ── */
.changelog-card {
  background: linear-gradient(135deg, rgba(255,165,0,.08) 0%, rgba(251,191,36,.04) 100%);
  border: 1px solid rgba(255,165,0,.2);
  border-radius: var(--r-xl);
  padding: clamp(36px,5vw,60px);
}
.changelog-body h2 {
  font-size: var(--fs-lg); font-weight: 800;
  color: var(--gold-2); margin: 0 0 6px;
  border-bottom: 1px solid rgba(255,165,0,.22);
  padding-bottom: 8px;
}
.changelog-body h3 {
  font-size: var(--fs-md); font-weight: 700;
  color: var(--text); margin: 20px 0 8px;
}
.changelog-body ul { padding-left: 20px; margin-bottom: 12px; }
.changelog-body li {
  color: var(--muted); font-size: var(--fs-sm);
  line-height: 1.7; margin-bottom: 4px;
}
.changelog-body p {
  color: var(--muted); font-size: var(--fs-sm);
  line-height: 1.65; margin-bottom: 10px;
}
.changelog-body hr { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.changelog-body a { color: var(--accent); }
.changelog-body strong { color: var(--text); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Screenshots ── */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.screenshot-card {
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  border: 2px dashed var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-align: center;
  padding: 20px;
  transition: border-color .3s, background .3s;
  overflow: hidden;
  position: relative;
}
.screenshot-card:hover { border-color: rgba(255,255,255,.18); background: var(--surface-hov); }
.screenshot-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: none;
}
.screenshot-card img.loaded { display: block; }
.screenshot-placeholder-icon { font-size: 28px; opacity: .4; }
.screenshot-label {
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .5;
}

/* ── Handbook Teaser ── */
.handbook-teaser {
  background: linear-gradient(135deg, rgba(255,165,0,.07) 0%, rgba(99,102,241,.06) 100%);
  border: 1px solid rgba(255,165,0,.16);
  border-radius: var(--r-xl);
  padding: clamp(36px,5vw,60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 640px) { .handbook-teaser { grid-template-columns: 1fr; } }
.handbook-book-icon {
  width: 96px; height: 120px;
  background: linear-gradient(160deg, #2d1805 0%, #1a0c00 100%);
  border-radius: 4px 12px 12px 4px;
  box-shadow: -4px 0 0 #c49a3a, 4px 8px 24px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}
.handbook-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
@media (max-width: 640px) {
  .handbook-right { align-items: stretch; }
  .handbook-right .btn { justify-content: center; }
}
