:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-subtle: #eef5fa;
  --primary: #7557ff;
  --accent: #40e0a0;
  --ink: #12283d;
  --ink-soft: #40576b;
  --muted: #6d8092;
  --line: #dce5ec;
  --line-strong: #c9d7e2;
  --navy: #143a5d;
  --container: 1260px;
  --radius: 8px;
  --button-radius: 25px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.68 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: #176eaf; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #0d4d7d; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; color: #fff; background: var(--ink); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { min-height: 68px; display: flex; align-items: center; gap: 28px; }
.brand { color: var(--ink); font-size: 1.05rem; font-weight: 800; letter-spacing: -.025em; text-decoration: none; }
.brand::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 10px; background: var(--primary); border-radius: 2px; }
.header-inner nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.header-inner nav a { color: #53697b; font-size: .91rem; font-weight: 600; text-decoration: none; transition: color .16s ease; }
.header-inner nav a:hover { color: var(--ink); }
.mobile-menu-links { display: flex; align-items: center; gap: 24px; }
.mobile-menu-head, .mobile-menu-index, .mobile-menu-arrow { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 0; place-items: center; color: var(--ink); background: transparent; border: 0; border-radius: 0; box-shadow: none; cursor: pointer; }
.menu-toggle-svg { width: 30px; height: 30px; overflow: visible; transform-origin: center; transition: transform .6s cubic-bezier(.22,.8,.25,1); }
.menu-toggle-svg path { transition: stroke-dasharray .6s cubic-bezier(.22,.8,.25,1),stroke-dashoffset .6s cubic-bezier(.22,.8,.25,1); }
.menu-toggle-morph { stroke-dasharray: 12 63; stroke-dashoffset: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-svg { transform: rotate(-45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-morph { stroke-dasharray: 20 300; stroke-dashoffset: -32.42px; }
.home-page .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 20; color: #fff; background: transparent; border-bottom: 1px solid transparent; backdrop-filter: blur(0); transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
.home-page .site-header.is-scrolled { background: rgba(8, 27, 48, .35); border-bottom-color: rgba(255,255,255,.1); box-shadow: 0 10px 34px rgba(2,12,24,.14); backdrop-filter: blur(20px) saturate(145%); }
.home-page .header-inner { position: relative; min-height: 82px; }
.home-page .brand { color: #fff; font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.35rem; font-weight: 900; font-style: italic; line-height: 1; letter-spacing: -.09em; text-transform: lowercase; }
.home-page .brand::before { display: none; }
.home-page .header-inner nav { position: absolute; left: 50%; gap: 26px; margin-left: 0; transform: translateX(-50%); }
.home-page .mobile-menu-links { gap: 26px; }
.home-page .header-inner nav a { position: relative; padding: 9px 0; color: rgba(255,255,255,.76); background: transparent; border: 0; border-radius: 0; font-size: .7rem; font-weight: 650; letter-spacing: .055em; text-transform: uppercase; white-space: nowrap; transition: color .2s ease; }
.home-page .header-inner nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 1px; background: #fff; transform: scaleX(0); transform-origin: right center; transition: transform .28s cubic-bezier(.22,.8,.25,1); }
.home-page .header-inner nav a:hover { color: #fff; }
.home-page .header-inner nav a:hover::after { transform: scaleX(1); transform-origin: left center; }
.home-page .header-cta { position: relative; flex: 0 0 auto; min-width: 148px; min-height: 36px; margin-left: auto; padding: 8px 20px; color: #090a0e; background: #fff; border-color: #fff; border-radius: 25px; font-size: .68rem; font-weight: 720; letter-spacing: .045em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.home-page .header-cta::before { display: none; }
.home-page .header-cta:hover { color: #090a0e; background: rgba(255,255,255,.9); border-color: rgba(255,255,255,.9); }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 10px 17px;
  color: #fff; background: var(--navy); border: 1px solid var(--navy); border-radius: var(--button-radius);
  font-size: .93rem; font-weight: 700; line-height: 1; text-decoration: none; cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.button:hover { color: #fff; background: #0d2d49; border-color: #0d2d49; transform: translateY(-1px); }
.button:active { transform: scale(.985); }
.button.compact { min-height: 36px; padding: 8px 12px; font-size: .84rem; }
.text-link { color: var(--ink-soft); font-size: .92rem; font-weight: 650; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 4px; transition: transform .16s ease; }
.text-link:hover span { transform: translateX(3px); }

.hero {
  position: relative; left: 50%; isolation: isolate; width: 100vw; height: 100svh; min-height: 560px;
  margin-left: -50vw; overflow: hidden; color: #fff; background: #02030a;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.72) 100%); pointer-events: none; }
.hero-mesh {
  position: absolute; inset: -24%; z-index: -3;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(255,255,255,.98) 0 3%, rgba(157,194,255,.72) 10%, transparent 30%),
    radial-gradient(ellipse at 72% 20%, rgba(116,80,255,.96) 0 9%, rgba(48,30,122,.72) 25%, transparent 48%),
    radial-gradient(ellipse at 48% 76%, rgba(139,92,246,.92) 0 8%, rgba(61,35,134,.68) 28%, transparent 50%),
    radial-gradient(ellipse at 92% 76%, rgba(244,244,255,.75) 0 4%, rgba(83,70,152,.48) 20%, transparent 40%),
    #02030a;
  filter: saturate(1.1) contrast(1.08); transform: scale(1.06); animation: heroMesh 14s ease-in-out infinite alternate;
}
.hero-wire { position: absolute; inset: -20%; z-index: -2; opacity: .22; transform: rotate(-8deg); background: repeating-linear-gradient(104deg, transparent 0 42px, rgba(255,255,255,.22) 43px, transparent 44px 86px); mask-image: radial-gradient(ellipse at 65% 30%, #000, transparent 66%); animation: heroWire 18s linear infinite; }
.hero-filters { position: absolute; width: 0; height: 0; }
.hero-copy { position: absolute; left: max(24px, calc((100vw - var(--container)) / 2)); right: max(24px, calc((100vw - var(--container)) / 2)); bottom: clamp(48px, 7vw, 86px); z-index: 2; max-width: 900px; min-width: 0; }
.hero-badge { position: relative; display: inline-flex; margin: 0 0 18px; padding: 7px 13px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; backdrop-filter: blur(12px); filter: url(#hero-glass); font-size: .72rem; font-weight: 400; }
.hero-badge::before { content: ""; position: absolute; top: 0; left: 10px; right: 10px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); }
.eyebrow { margin: 0 0 20px; color: #2d6f9e; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero h1, .page-header h1, .article-content > header h1 { max-width: 860px; margin: 0; font-size: clamp(2.55rem, 6vw, 4.85rem); line-height: 1.02; letter-spacing: -.052em; text-wrap: balance; }
.hero h1 { color: #fff; font-size: clamp(3rem, 6.6vw, 5.35rem); line-height: .94; letter-spacing: -.06em; }
.hero-title-accent { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; letter-spacing: -.07em; }
.hero-title-tail { white-space: nowrap; }
.lead { max-width: 690px; margin: 24px 0 0; color: var(--ink-soft); font-size: clamp(1.03rem, 1.8vw, 1.2rem); }
.hero .lead { max-width: 590px; margin-top: 18px; color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 400; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.hero-primary, .hero-secondary { min-height: 64px; padding: 18px 40px; border-radius: var(--button-radius); font-size: .84rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s cubic-bezier(.22,.8,.25,1); }
.hero-primary { color: #090a0e; background: #fff; border-color: #fff; box-shadow: 0 10px 34px rgba(255,255,255,.2); }
.hero-primary:hover { color: #090a0e; background: #dff6ff; border-color: #dff6ff; box-shadow: 0 12px 42px rgba(117,211,255,.3); }
.hero-secondary { display: inline-flex; align-items: center; justify-content: center; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.58); box-shadow: none; text-decoration: none; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease; }
.hero-secondary:hover { color: #090a0e; background: #fff; border-color: #fff; box-shadow: none; transform: translateY(-1px); }
.hero-primary:hover, .hero-secondary:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 14px 42px rgba(177,207,255,.28); }
.hero-primary:active, .hero-secondary:active { transform: translateY(0) scale(.985); transition-duration: .08s; }
.hero-disclosure { display: block; margin-top: 15px; color: rgba(255,255,255,.45); font-size: .66rem; }

@keyframes heroMesh { 0% { transform: translate3d(-2%, -2%, 0) scale(1.05) rotate(-1deg); } 50% { transform: translate3d(3%, 1%, 0) scale(1.12) rotate(1deg); } 100% { transform: translate3d(-1%, 4%, 0) scale(1.08) rotate(-.5deg); } }
@keyframes heroWire { to { transform: translate3d(86px, 0, 0) rotate(-8deg); } }

.about-showcase, .popular-showcase { position: relative; left: 50%; width: 100vw; margin-left: -50vw; overflow: hidden; }
.about-showcase { height: 250px; color: var(--ink); background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-section-inner { position: relative; z-index: 1; width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.about-showcase .home-section-inner { height: 100%; display: grid; grid-template-columns: minmax(420px, 1.35fr) minmax(220px, .65fr); align-items: center; gap: clamp(40px, 8vw, 120px); }
.about-heading h2, .popular-heading h2 { margin: 0; color: #fff; font-size: clamp(2.8rem, 5.6vw, 5.2rem); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.about-heading { justify-self: end; min-width: 280px; }
.about-heading h2 { color: var(--ink); font-size: clamp(3.2rem, 5.5vw, 5.2rem); text-align: right; }
.about-heading h2 span { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.about-copy > p { max-width: 850px; margin: 0; color: var(--ink-soft); font-size: clamp(.9rem, 1.2vw, 1.03rem); line-height: 1.65; }

.current-link-showcase { position: relative; left: 50%; width: 100vw; height: 250px; margin-left: -50vw; overflow: hidden; color: var(--ink); background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.current-link-showcase .home-section-inner { height: 100%; display: grid; grid-template-columns: minmax(420px, 1.15fr) minmax(420px, .85fr); align-items: center; gap: clamp(40px, 8vw, 120px); }
.current-link-copy { display: flex; align-items: flex-start; flex-direction: column; gap: 20px; min-width: 0; }
.current-link-copy > p { max-width: 650px; margin: 0; color: var(--ink-soft); font-size: clamp(.94rem, 1.25vw, 1.08rem); line-height: 1.58; letter-spacing: -.012em; }
.current-link-button { min-height: 64px; padding: 18px 40px; color: var(--navy); background: transparent; border-color: var(--navy); border-radius: 25px; box-shadow: none; font-size: .84rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s cubic-bezier(.22,.8,.25,1); }
.current-link-button:hover { color: var(--navy); background: rgba(20,58,93,.065); border-color: var(--navy); box-shadow: 0 12px 30px rgba(20,58,93,.1); transform: translateY(-2px) scale(1.015); }
.current-link-button:active { color: var(--navy); background: rgba(20,58,93,.11); border-color: var(--navy); transform: translateY(0) scale(.985); transition-duration: .08s; }
.current-link-heading { justify-self: end; min-width: 420px; }
.current-link-heading h2 { margin: 0; color: var(--ink); font-size: clamp(2.8rem, 4.5vw, 4.45rem); line-height: .92; letter-spacing: -.06em; text-align: right; }
.current-link-title-accent, .current-link-title-tail { display: block; }
.current-link-title-accent { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.current-link-title-tail { white-space: nowrap; }

.popular-showcase { padding: 64px 0 clamp(64px, 8vw, 104px); color: var(--ink); background: #fff; border-top: 1px solid var(--line); }
.popular-showcase::before { display: none; }
.popular-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: clamp(38px, 6vw, 70px); }
.popular-heading h2 { color: var(--ink); font-size: clamp(2.7rem, 5vw, 4.7rem); }
.popular-heading h2 > span { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.section-link { position: relative; flex: 0 0 auto; padding: 10px 0; color: var(--ink-soft); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.section-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 5px; height: 1px; background: var(--navy); transform: scaleX(.3); transform-origin: left; transition: transform .25s ease; }
.section-link:hover { color: var(--navy); }
.section-link:hover::after { transform: scaleX(1); }
.article-mosaic { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; width: 100%; }
.article-tile { position: relative; min-width: 0; min-height: 200px; display: flex; flex-direction: column; padding: 22px; overflow: hidden; color: var(--ink); background: #f7f9fc; border: 1px solid var(--line); border-radius: var(--button-radius); text-decoration: none; transition: background .24s ease, border-color .24s ease, transform .24s cubic-bezier(.22,.8,.25,1), box-shadow .24s ease; }
.article-tile:nth-child(1), .article-tile:nth-child(6) { grid-column: span 2; }
.article-tile:nth-child(5n+1) { background: linear-gradient(135deg, #f1efff, #f8fbfd 60%); }
.article-tile:nth-child(5n+3) { background: linear-gradient(135deg, #eaf7fd, #f8fbfd 64%); }
.article-tile::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, #7658f5, #55bde9, transparent); opacity: 0; transform: scaleX(.25); transition: opacity .3s ease, transform .3s ease; }
.article-tile:hover { z-index: 2; background-color: #fff; border-color: #9fc5dc; transform: translateY(-4px); box-shadow: 0 18px 44px rgba(24,62,92,.14); }
.article-tile:hover::before { opacity: 1; transform: scaleX(1); }
.tile-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.tile-top time { color: #55758d; font-size: .63rem; font-weight: 650; letter-spacing: .02em; white-space: nowrap; }
.tile-top small { overflow: hidden; color: #718496; font-size: .61rem; font-weight: 700; letter-spacing: .07em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.article-tile h3 { position: relative; z-index: 1; max-width: 520px; margin: 0 0 10px; font-size: clamp(1.05rem, 1.45vw, 1.38rem); line-height: 1.2; letter-spacing: -.025em; }
.article-tile p { position: relative; z-index: 1; max-width: 620px; margin: 0 48px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.5; }
.article-tile:nth-child(1) p, .article-tile:nth-child(6) p { font-size: 1.05rem; line-height: 1.48; }
.tile-arrow { position: absolute; right: 22px; bottom: 18px; z-index: 1; color: #315d7d; font-size: 1.55rem; font-weight: 350; line-height: 1; transition: color .22s ease, transform .22s cubic-bezier(.22,.8,.25,1); }
.article-tile:hover .tile-arrow { color: #7557e8; transform: translate(4px, -4px); }

.home-faq-showcase { position: relative; left: 50%; isolation: isolate; contain: paint; width: 100vw; min-height: 0; margin: 0 0 0 -50vw; padding: 64px 0; overflow: hidden; color: #fff; background: #02030a; }
.home-faq-showcase::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.72) 100%); pointer-events: none; }
.home-faq-showcase .hero-mesh { inset: auto; top: -260px; left: -20vw; width: 140vw; height: 1200px; contain: strict; will-change: transform; backface-visibility: hidden; animation: heroMesh 14s ease-in-out infinite alternate; }
.home-faq-showcase .hero-wire { inset: auto; top: -220px; left: -20vw; width: 140vw; height: 1200px; contain: strict; will-change: transform; backface-visibility: hidden; animation: heroWire 18s linear infinite; }
.home-faq-showcase .home-section-inner { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(480px, 1.22fr); align-items: center; gap: clamp(56px, 9vw, 132px); }
.home-faq-heading { position: relative; top: auto; min-width: 0; }
.home-faq-kicker { margin: 0 0 20px; color: rgba(255,255,255,.52); font-size: .67rem; font-weight: 680; letter-spacing: .1em; text-transform: uppercase; }
.home-faq-heading h2 { max-width: 560px; margin: 0; color: #fff; font-size: clamp(3.15rem, 5.7vw, 5.3rem); line-height: .94; letter-spacing: -.06em; text-wrap: balance; }
.home-faq-heading h2 span { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; letter-spacing: -.07em; }
.home-faq-heading > p:last-child { max-width: 430px; margin: 24px 0 0; color: rgba(255,255,255,.58); font-size: .78rem; line-height: 1.7; }
.home-faq-list { display: grid; gap: 8px; min-width: 0; overflow-anchor: none; }
.home-faq-item { position: relative; overflow: hidden; color: #fff; background: linear-gradient(112deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.22,.8,.25,1); }
.home-faq-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, #fff, #8b5cf6 48%, #70cfff); opacity: 0; transform: scaleY(.3); transition: opacity .25s ease, transform .25s ease; }
.home-faq-item:hover { background: linear-gradient(112deg, rgba(255,255,255,.115), rgba(255,255,255,.04)); border-color: rgba(255,255,255,.24); transform: translateX(-5px); }
.home-faq-item.is-open { background: linear-gradient(112deg, rgba(139,92,246,.17), rgba(255,255,255,.055)); border-color: rgba(190,174,255,.34); }
.home-faq-item.is-open::before { opacity: 1; transform: scaleY(1); }
.faq-summary { width: 100%; min-height: 62px; display: grid; grid-template-columns: 34px minmax(0,1fr) 22px; align-items: center; gap: 12px; padding: 14px 18px; color: inherit; background: transparent; border: 0; border-radius: 0; text-align: left; cursor: pointer; }
.faq-count { color: rgba(255,255,255,.36); font: 650 .64rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .05em; }
.faq-question { color: rgba(255,255,255,.91); font-size: clamp(.96rem, 1.3vw, 1.14rem); font-weight: 620; line-height: 1.35; letter-spacing: -.018em; }
.faq-toggle { position: relative; width: 20px; height: 20px; justify-self: end; transition: transform .3s cubic-bezier(.22,.8,.25,1); }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; left: 3px; right: 3px; top: 9px; height: 1px; background: rgba(255,255,255,.8); }
.faq-toggle::after { transform: rotate(90deg); transition: opacity .2s ease, transform .25s ease; }
.faq-summary[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-answer-wrap { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .42s cubic-bezier(.22,.8,.25,1), opacity .26s ease; }
.home-faq-item.is-open .faq-answer-wrap { max-height: 320px; opacity: 1; }
.faq-answer { min-height: 0; overflow: hidden; }
.faq-answer p { max-width: 620px; margin: 0; padding: 0 56px 20px 64px; color: rgba(255,255,255,.62); font-size: .8rem; line-height: 1.68; }

.immersive-page { background: #fff; }
.inner-hero-kicker { margin: 0 0 18px; color: rgba(255,255,255,.58); font-size: .68rem; font-weight: 680; letter-spacing: .11em; text-transform: uppercase; }
.inner-hero .hero-copy { max-width: 970px; }
.inner-hero .lead { max-width: 620px; }
.hero-title-line { display: block; }
.inner-surface { position: relative; left: 50%; width: 100vw; margin-left: -50vw; padding: clamp(64px, 8vw, 104px) 0; color: var(--ink); background: #fff; border-top: 1px solid var(--line); }
.page-showcase:has(.current-link-prose), .page-showcase:has(.faq-prose), .page-showcase:has(.responsible-prose), .catalog-showcase, .article-showcase { padding-top: clamp(52px,5vw,64px); }
.inner-surface-container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.inner-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 clamp(42px, 6vw, 72px); color: var(--muted); font-size: .72rem; font-weight: 650; letter-spacing: .055em; text-transform: uppercase; }
.inner-breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.inner-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: clamp(38px, 6vw, 68px); }
.inner-section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.inner-section-heading h2 { max-width: 800px; margin: 0; color: var(--ink); font-size: clamp(2.75rem, 5vw, 4.7rem); line-height: .95; letter-spacing: -.058em; text-align: right; }
.inner-section-heading h2 span { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }

.catalog-showcase .inner-section-heading { display: block; margin-bottom: clamp(32px,4vw,48px); }
.catalog-showcase .inner-section-heading h2 { max-width: 720px; margin-left: auto; font-size: clamp(2.45rem,4.3vw,4.15rem); text-align: right; }
.catalog-showcase .catalog-tools { grid-template-columns: 1.45fr .75fr; gap: 10px; margin-bottom: clamp(32px,4vw,48px); padding: 0; background: transparent; border: 0; }
.catalog-showcase .catalog-tools label { color: #577086; font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.catalog-showcase .catalog-tools input, .catalog-showcase .catalog-tools select { min-height: 58px; margin-top: 8px; padding: 13px 18px; color: var(--ink); background: #f5f8fb; border: 1px solid var(--line); border-radius: 18px; font: 500 .9rem/1.2 Inter, ui-sans-serif, system-ui, sans-serif; outline: none; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.catalog-showcase .catalog-tools input:focus, .catalog-showcase .catalog-tools select:focus { background: #fff; border-color: #91b9d3; box-shadow: 0 0 0 4px rgba(71,154,207,.1); }
.catalog-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.catalog-card-grid .card { position: relative; min-height: 270px; padding: 28px; overflow: hidden; background: #f6f8fb; border: 1px solid var(--line); border-radius: 25px; transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.22,.8,.25,1), box-shadow .25s ease; }
.catalog-card-grid .card:nth-child(3n+1) { background: linear-gradient(135deg,#f0efff,#f8fbfd 68%); }
.catalog-card-grid .card:nth-child(3n+2) { background: linear-gradient(135deg,#eaf7fd,#f8fbfd 70%); }
.catalog-card-grid .card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; opacity: 0; background: linear-gradient(90deg,transparent,#7557ff,#60c8ed,transparent); transform: scaleX(.25); transition: opacity .3s ease, transform .3s ease; }
.catalog-card-grid .card:hover { z-index: 1; background-color: #fff; border-color: #9fc5dc; transform: translateY(-4px); box-shadow: 0 20px 48px rgba(24,62,92,.13); }
.catalog-card-grid .card:hover::before { opacity: 1; transform: scaleX(1); }
.catalog-card-grid .card .eyebrow { margin-bottom: 30px; color: #55758d; font-size: .62rem; }
.catalog-card-grid .card h2 { max-width: 520px; margin: 0 0 14px; font-size: clamp(1.4rem,2.2vw,2rem); line-height: 1.08; letter-spacing: -.04em; }
.catalog-card-grid .card h2 a { color: var(--ink); text-decoration: none; }
.catalog-card-grid .card > p:not(.eyebrow) { max-width: 600px; margin: 0 44px 28px 0; color: var(--muted); font-size: .8rem; line-height: 1.58; }
.catalog-card-grid .card > a:last-child { position: absolute; right: 28px; bottom: 24px; color: var(--navy); font-size: .72rem; font-weight: 720; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.catalog-empty { margin: 24px 0 0; color: var(--muted); }
.catalog-article-mosaic .article-tile[hidden] { display: none; }

.article-page .inner-hero .hero-copy { max-width: 1120px; }
.article-page .inner-hero h1 { max-width: 1080px; font-size: clamp(2.5rem,5.5vw,4.85rem); }
.article-editorial { width: 100%; max-width: none; margin: 0; }
.article-editorial > h2 { max-width: 1040px; margin: clamp(60px,7vw,92px) 0 20px; color: var(--ink); font-size: clamp(2rem,3.6vw,3.25rem); line-height: 1.05; letter-spacing: -.05em; text-wrap: balance; }
.article-editorial > h2:first-of-type { margin-top: clamp(52px,6vw,76px); }
.article-editorial > h3 { margin: 42px 0 16px; color: var(--ink); font-size: clamp(1.3rem,2vw,1.75rem); line-height: 1.18; letter-spacing: -.03em; }
.article-editorial > p, .article-editorial > ul, .article-editorial > ol { width: 100%; margin: 0 0 24px; color: var(--ink-soft); font-size: clamp(1.02rem,1.2vw,1.15rem); line-height: 1.8; letter-spacing: -.012em; text-align: justify; text-align-last: left; hyphens: auto; overflow-wrap: break-word; }
.article-editorial > ul, .article-editorial > ol { padding-left: 26px; }
.article-editorial a { overflow-wrap: anywhere; }
.article-editorial .notice { margin: 34px 0; padding: 4px 0 4px 24px; background: transparent; border: 0; border-left: 2px solid #9fc5dc; border-radius: 0; }
.article-editorial .notice p { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.72; }
.article-toc { display: grid; grid-template-columns: minmax(180px,.45fr) minmax(0,1.55fr); gap: 32px; margin: 0; padding: 0 0 clamp(46px,6vw,72px); color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.article-toc strong { color: var(--ink); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.article-toc ol { columns: 2; gap: 42px; margin: 0; padding-left: 20px; }
.article-toc li { break-inside: avoid; margin: 0 0 9px; }
.article-toc a { color: var(--ink-soft); font-size: .86rem; line-height: 1.45; text-decoration: none; }
.article-toc a:hover { color: var(--navy); }
.article-faq-prose { margin-top: clamp(68px,8vw,110px); }
.article-faq-prose > h2 { margin: 0 0 42px; color: var(--ink); font-size: clamp(2.5rem,4.5vw,4.15rem); line-height: .96; letter-spacing: -.058em; text-align: right; }
.article-faq-prose > h2 span { font-family: Georgia,"Times New Roman",serif; font-weight: 400; font-style: italic; }
.article-faq-prose > div { margin-bottom: 34px; }
.article-faq-prose h3 { margin: 0 0 10px; color: var(--ink); font-size: clamp(1.2rem,1.7vw,1.55rem); }
.article-faq-prose p { margin: 0; color: var(--ink-soft); font-size: 1.03rem; line-height: 1.75; text-align: justify; }
.article-cta { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 14px 40px; margin-top: clamp(72px,9vw,120px); padding: clamp(34px,5vw,58px) 0 0; border-top: 1px solid var(--line); }
.article-cta h2 { margin: 0; color: var(--ink); font-size: clamp(2rem,3.7vw,3.25rem); line-height: 1; letter-spacing: -.05em; }
.article-cta p { margin: 0; color: var(--muted); }
.article-cta .current-link-button { grid-column: 2; grid-row: 1 / span 2; min-width: 250px; }
.article-related { margin-top: clamp(82px,10vw,132px); }
.article-related .inner-section-heading { display: block; margin-bottom: clamp(38px,5vw,60px); }
.article-related .inner-section-heading h2 { margin-left: auto; text-align: right; }

.standalone-faq { display: block; }
.standalone-faq .inner-section-heading { display: block; max-width: 760px; margin: 0 0 clamp(42px,5vw,64px) auto; }
.standalone-faq .inner-section-heading h2 { text-align: right; }
.standalone-faq-list { display: grid; gap: 8px; width: 100%; }
.standalone-faq .home-faq-item { color: var(--ink); background: linear-gradient(115deg,#f4f7fa,#fff); border-color: var(--line); border-radius: 20px; }
.standalone-faq .home-faq-item:hover { border-color: #a9c7da; transform: translateX(-3px); }
.standalone-faq .home-faq-item.is-open { background: linear-gradient(115deg,#eef1ff,#f7fbfd); border-color: #b8b5e8; }
.standalone-faq .faq-count { color: #7590a5; }
.standalone-faq .faq-question { color: var(--ink); }
.standalone-faq .faq-toggle::before, .standalone-faq .faq-toggle::after { background: var(--navy); }
.standalone-faq .faq-answer p { color: var(--ink-soft); }

.faq-prose { display: block; }
.faq-prose .inner-section-heading { display: block; max-width: 760px; margin: 0 0 clamp(54px,6vw,82px) auto; }
.faq-prose .inner-section-heading h2 { text-align: right; }
.faq-prose-list { width: 100%; }
.faq-prose-item { width: 100%; margin: 0 0 clamp(52px,6vw,78px); }
.faq-prose-item:last-child { margin-bottom: 0; }
.faq-prose-item h3 { max-width: 1100px; margin: 0 0 18px; color: var(--ink); font-size: clamp(1.3rem,1.9vw,1.8rem); line-height: 1.16; letter-spacing: -.032em; text-wrap: balance; }
.faq-prose-item p { width: 100%; margin: 0; color: var(--ink-soft); font-size: clamp(1.05rem,1.3vw,1.2rem); line-height: 1.82; letter-spacing: -.012em; text-align: justify; text-align-last: left; hyphens: auto; }

.responsible-prose { display: block; max-width: none; margin: 0; }
.responsible-prose .inner-section-heading { display: block; max-width: 760px; margin: 0 0 clamp(54px,6vw,82px) auto; }
.responsible-prose .inner-section-heading h2 { text-align: right; }
.responsible-prose-list { width: 100%; }
.responsible-prose-list p { width: 100%; margin: 0 0 26px; color: var(--ink-soft); font-size: clamp(1.02rem,1.2vw,1.15rem); line-height: 1.8; letter-spacing: -.012em; text-align: justify; text-align-last: left; hyphens: auto; }
.responsible-prose-list p:last-child { margin-bottom: 0; }

.page-content.inner-page-content { display: grid; max-width: none; margin: 0; gap: 10px; }
.inner-page-content:empty { display: none; }
.page-content.inner-page-content > h2 { margin: 0; padding: 34px; color: var(--ink); background: #f6f8fb; border: 1px solid var(--line); border-radius: 25px; font-size: clamp(1.65rem,3vw,2.65rem); line-height: 1.05; letter-spacing: -.045em; }
.inner-page-content .notice, .inner-page-content .responsible-note, .inner-page-content .affiliate-note { margin: 0; padding: 30px; border-radius: 25px; }
.inner-page-content .notice { background: linear-gradient(135deg,#f0efff,#f8fbfd); border-color: #d9d5f2; }
.inner-page-content .notice strong, .inner-page-content .responsible-note strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.inner-page-content .notice p { margin: 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.65; }
.inner-page-content .responsible-note { color: var(--ink-soft); background: #edf7fb; border-color: #cce4ef; }
.inner-page-content .cta-block { margin: 0; padding: clamp(32px,5vw,58px); background: linear-gradient(135deg,#111a31,#34236c 68%,#172947); border: 1px solid rgba(255,255,255,.1); border-radius: 25px; box-shadow: 0 24px 70px rgba(28,28,72,.16); }
.inner-page-content .cta-block h2 { color: #fff; font-size: clamp(2rem,4vw,3.7rem); line-height: .98; letter-spacing: -.052em; }
.inner-page-content .cta-block p { color: rgba(255,255,255,.62); }
.inner-page-content .cta-block small { color: rgba(255,255,255,.42); }
.inner-page-content .cta-block .button { min-height: 58px; padding: 17px 30px; color: #090a0e; background: #fff; border-color: #fff; border-radius: 25px; }
.inner-page-content .cta-block .button:hover { color: #090a0e; background: #dff6ff; border-color: #dff6ff; }
.page-current-link, .page-responsible-gaming { grid-template-columns: repeat(2,minmax(0,1fr)); }
.current-link-prose { display: block; max-width: none; margin: 0; }
.current-link-prose h2 { max-width: 760px; margin: 0 0 clamp(42px,5vw,64px) auto; color: var(--ink); font-size: clamp(2.8rem,5vw,4.7rem); line-height: .96; letter-spacing: -.058em; text-align: right; text-wrap: balance; }
.current-link-prose h2 span { font-family: Georgia,"Times New Roman",serif; font-weight: 400; font-style: italic; letter-spacing: -.065em; }
.current-link-prose > div { width: 100%; }
.current-link-prose p { margin: 0 0 26px; color: var(--ink-soft); font-size: clamp(1.02rem,1.2vw,1.15rem); line-height: 1.8; letter-spacing: -.012em; text-align: justify; text-align-last: left; hyphens: auto; }
.current-link-prose p:last-child { margin-bottom: 0; }
.page-responsible-gaming .responsible-note { grid-column: 1 / -1; }
.page-faq { margin-top: clamp(56px,7vw,90px); }
.page-faq > h2 { display: none; }
.page-faq .responsible-note { grid-column: 1 / -1; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin: clamp(70px, 10vw, 112px) 0 24px; }
.section-heading h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.15; letter-spacing: -.035em; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card, .notice, .toc, .author-box, .responsible-note, .affiliate-note { min-width: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.card { display: flex; min-height: 240px; padding: 22px; flex-direction: column; transition: border-color .18s ease, transform .18s ease; }
.card:hover { transform: translateY(-2px); border-color: #9dbfd7; }
.card .eyebrow { margin-bottom: 8px; color: #4f7a98; }
.card h2 { margin: 8px 0 10px; font-size: 1.17rem; line-height: 1.35; letter-spacing: -.02em; }
.card h2 a { color: var(--ink); text-decoration: none; }
.card p { margin: 0 0 18px; color: var(--muted); font-size: .93rem; }
.card > a:last-child { margin-top: auto; font-size: .88rem; font-weight: 650; text-decoration: none; }
.notice { margin: 26px 0; padding: 20px 22px; border-left: 3px solid var(--primary); }
.notice strong { display: block; margin-bottom: 4px; }
.notice p { margin: 0; }
.warning { background: #fffdf7; border-left-color: #c59033; }

.cta-block { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px 32px; margin: clamp(64px, 9vw, 104px) 0; padding: clamp(26px, 4vw, 42px); background: #e9f3fa; border: 1px solid #c9dce9; border-radius: var(--radius); text-align: left; }
.cta-block h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.2; letter-spacing: -.035em; }
.cta-block p { max-width: 650px; margin: 2px 0 0; color: var(--ink-soft); }
.cta-block .button, .cta-block .link-disabled { grid-column: 2; grid-row: 1 / span 2; margin: 0; white-space: nowrap; }
.cta-block small { grid-column: 1 / -1; margin-top: 12px; color: var(--muted); font-size: .79rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 26px 0; color: var(--muted); font-size: .86rem; }
.page-header { padding: 30px 0 54px; border-bottom: 1px solid var(--line); }
.page-header .lead { margin-top: 18px; }
.article-content, .page-content { min-width: 0; max-width: 800px; margin-inline: auto; }
.article-content > header { padding: 38px 0 20px; }
.article-content h2, .page-content h2 { margin: 54px 0 14px; font-size: clamp(1.5rem, 3.5vw, 2rem); line-height: 1.24; letter-spacing: -.03em; }
.article-content h3 { margin: 36px 0 12px; font-size: 1.28rem; }
.article-content p, .page-content p { color: #354e63; overflow-wrap: break-word; }
.article-content a, .page-content a { overflow-wrap: anywhere; }
.article-content img, .page-content img { max-width: 100%; height: auto; border-radius: 4px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 24px 0; color: var(--muted); font-size: .82rem; }
.article-meta > * { padding-right: 18px; border-right: 1px solid var(--line-strong); }
.article-meta > *:last-child { padding-right: 0; border-right: 0; }
.toc { margin: 28px 0 42px; padding: 22px; background: #f0f5f8; }
.toc ol { columns: 2; margin-bottom: 0; padding-left: 20px; }
.toc li { break-inside: avoid; margin-bottom: 6px; }
.faq { margin-block: 64px; }
.faq details { margin: 0; padding: 17px 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; color: var(--ink); font-weight: 700; }
.faq details p { margin-bottom: 0; }
.catalog-tools { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; margin-bottom: 20px; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.catalog-tools label { color: var(--muted); font-size: .85rem; }
input, select { display: block; width: 100%; margin-top: 5px; padding: 10px 11px; color: var(--ink); background: #fff; border: 1px solid var(--line-strong); border-radius: 6px; }

.site-footer { position: relative; isolation: isolate; margin-top: clamp(80px, 12vw, 140px); padding: 66px 0 28px; overflow: hidden; color: #fff; background: #02030a; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.78)); pointer-events: none; }
.footer-mesh { position: absolute; inset: -85% -22% -70%; z-index: -3; background: radial-gradient(ellipse at 18% 28%, rgba(255,255,255,.94) 0 3%, rgba(157,194,255,.65) 10%, transparent 30%), radial-gradient(ellipse at 72% 20%, rgba(116,80,255,.9) 0 9%, rgba(48,30,122,.68) 25%, transparent 48%), radial-gradient(ellipse at 48% 76%, rgba(139,92,246,.82) 0 8%, rgba(61,35,134,.62) 28%, transparent 50%), radial-gradient(ellipse at 92% 76%, rgba(244,244,255,.68) 0 4%, rgba(83,70,152,.42) 20%, transparent 40%), #02030a; filter: saturate(1.08) contrast(1.08); transform: scale(1.04); animation: footerMesh 18s ease-in-out infinite alternate; }
.footer-wire { position: absolute; inset: -55% -18%; z-index: -2; opacity: .16; background: repeating-linear-gradient(104deg, transparent 0 42px, rgba(255,255,255,.22) 43px, transparent 44px 86px); mask-image: radial-gradient(ellipse at 64% 32%, #000, transparent 66%); transform: rotate(-8deg); pointer-events: none; }
.home-page .site-footer { margin-top: 0; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(220px, .7fr); gap: clamp(48px, 9vw, 140px); }
.footer-intro > p { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: .86rem; line-height: 1.72; }
.footer-identity { display: flex; align-items: baseline; gap: 22px; }
.footer-brand { color: #fff; font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.35rem; font-weight: 900; font-style: italic; line-height: 1; letter-spacing: -.09em; text-decoration: none; text-transform: lowercase; }
.footer-brand:hover { color: #fff; }
.footer-grid nav { display: grid; align-content: start; gap: 11px; padding-top: 3px; }
.footer-grid nav a { position: relative; width: max-content; color: rgba(255,255,255,.72); font-size: .76rem; font-weight: 600; letter-spacing: .02em; text-decoration: none; transition: color .2s ease; }
.footer-grid nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: #fff; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.footer-grid nav a:hover { color: #fff; }
.footer-grid nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.legal { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 36px; margin-top: 46px; padding-top: 22px; color: rgba(255,255,255,.42); font-size: .71rem; line-height: 1.55; border-top: 1px solid rgba(255,255,255,.12); }
.legal p { margin: 0; }
.legal strong { color: rgba(255,255,255,.76); }
@keyframes footerMesh { from { transform: translate3d(-1.5%, -1%, 0) scale(1.04) rotate(-.5deg); } to { transform: translate3d(2%, 2%, 0) scale(1.09) rotate(.5deg); } }
.link-disabled { color: var(--muted); }
:focus-visible { outline: 3px solid #68b6e7; outline-offset: 3px; }

.motion-ready .reveal { opacity: 0; transform: translateY(10px); transition: opacity .42s ease, transform .42s ease; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { min-height: 560px; }
  .about-showcase .home-section-inner { grid-template-columns: minmax(0, 1.35fr) minmax(180px, .65fr); gap: 28px; }
  .article-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-tile:nth-child(1), .article-tile:nth-child(6) { grid-column: auto; }
  .article-tile:nth-child(1) p, .article-tile:nth-child(6) p { font-size: .7rem; }
  .home-faq-showcase .home-section-inner { grid-template-columns: 1fr; gap: 44px; }
  .home-faq-heading { position: relative; top: auto; }
  .home-faq-heading h2 { max-width: 720px; }
  .standalone-faq { grid-template-columns: 1fr; gap: 42px; }
  .standalone-faq .inner-section-heading { position: static; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-toc { grid-template-columns: 1fr; gap: 20px; }
  .header-inner nav { gap: 15px; }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner .button { display: none; }
  body.menu-open { overflow: hidden; }
  .menu-toggle { position: relative; z-index: 32; display: grid; width: 48px; height: 48px; background: transparent; border: 0; border-radius: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header-inner nav { position: fixed; inset: 0 -1px 0 -1px; isolation: isolate; z-index: 31; display: flex; width: auto; min-width: calc(100vw + 2px); height: 100dvh; margin: 0; padding: max(24px,env(safe-area-inset-top)) 25px max(22px,env(safe-area-inset-bottom)); visibility: hidden; opacity: 0; overflow-y: auto; color: #fff; background: radial-gradient(circle at 92% 4%,rgba(112,75,255,.18),transparent 29%),radial-gradient(circle at 4% 100%,rgba(74,190,233,.1),transparent 32%),#000; border: 0; border-radius: 0; box-shadow: none; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 0; pointer-events: none; transform: translate3d(100%,0,0); transition: opacity .3s ease, transform .5s cubic-bezier(.22,.8,.25,1), visibility .5s; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header-inner nav::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .22; background: repeating-linear-gradient(105deg,transparent 0 58px,rgba(255,255,255,.045) 59px,transparent 60px 118px); mask-image: linear-gradient(135deg,transparent,#000 40%,transparent 86%); pointer-events: none; }
  .header-inner nav.open { visibility: visible; opacity: 1; pointer-events: auto; transform: translate3d(0,0,0); }
  .mobile-menu-head { position: relative; z-index: 1; display: flex; align-items: center; justify-content: flex-start; min-height: 52px; padding-right: 68px; }
  .mobile-menu-brand { font-family: "Arial Black",Inter,ui-sans-serif,system-ui,sans-serif; font-size: 1.35rem; font-weight: 900; font-style: italic; line-height: 1; letter-spacing: -.09em; }
  .mobile-menu-links { position: relative; z-index: 1; display: flex; align-items: stretch; flex: 1; justify-content: center; flex-direction: column; gap: 0; width: 100%; padding: 24px 0; }
  .header-inner nav a { position: relative; display: grid; grid-template-columns: 34px minmax(0,1fr) 42px; align-items: center; gap: 12px; padding: 20px 0; color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.13); font-family: Inter,ui-sans-serif,system-ui,sans-serif; font-size: inherit; font-weight: 650; font-style: normal; line-height: 1; letter-spacing: normal; text-decoration: none; transform: translateX(34px); opacity: 0; transition: color .2s ease, opacity .36s ease, transform .44s cubic-bezier(.22,.8,.25,1); }
  .mobile-menu-label { min-width: 0; font-size: clamp(1.8rem,8.7vw,2.75rem); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; }
  .mobile-menu-links a:nth-child(even) .mobile-menu-label { font-family: Georgia,"Times New Roman",serif; font-weight: 400; font-style: italic; letter-spacing: -.06em; }
  .mobile-menu-index { display: block; align-self: start; padding-top: 5px; color: rgba(255,255,255,.3); font: 650 .58rem/1 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing: .06em; }
  .mobile-menu-arrow { display: grid; width: 38px; height: 38px; place-items: center; justify-self: end; color: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; font-size: 1rem; transition: color .2s ease,border-color .2s ease,transform .25s ease; }
  .header-inner nav a:hover .mobile-menu-arrow { color: #fff; border-color: rgba(255,255,255,.5); transform: rotate(45deg); }
  .header-inner nav.open a { opacity: 1; transform: translateX(0); }
  .header-inner nav.open a:nth-child(2) { transition-delay: .055s; }
  .header-inner nav.open a:nth-child(3) { transition-delay: .11s; }
  .header-inner nav.open a:nth-child(4) { transition-delay: .165s; }
  .header-inner nav a:hover { color: #fff; }
  .header-inner nav a:last-child { border-bottom: 0; }
  body.menu-open .menu-toggle { color: #fff; background: transparent; border: 0; box-shadow: none; }
  .hero { height: 100svh; min-height: 560px; }
  .hero-mesh { animation: none; transform: scale(1.06); }
  .hero-wire { display: none; }
  .home-page .header-inner { min-height: 70px; }
  .home-page .site-header.is-scrolled { backdrop-filter: blur(12px) saturate(130%); }
  .home-page .menu-toggle { color: #fff; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .home-page .header-inner nav { inset: 0 -1px 0 -1px; gap: 0; background: radial-gradient(circle at 92% 4%,rgba(112,75,255,.18),transparent 29%),radial-gradient(circle at 4% 100%,rgba(74,190,233,.1),transparent 32%),#000; border-color: transparent; transform: translate3d(100%,0,0); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .home-page .header-inner nav.open { transform: translate3d(0,0,0); }
  body.menu-open .header-inner nav.open { left: -8px; right: -8px; width: auto; min-width: calc(100vw + 16px); padding-left: 33px; padding-right: 33px; }
  .home-page .mobile-menu-links { gap: 0; }
  .home-page .header-inner nav a { padding: 20px 0; color: rgba(255,255,255,.9); border: 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: inherit; font-weight: 650; letter-spacing: normal; text-transform: none; white-space: normal; }
  .home-page .header-inner nav a::after { display: none; }
  .hero-copy { left: 20px; right: 20px; bottom: 32px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.5rem); }
  .hero-title-tail { white-space: normal; }
  .hero-actions { align-items: stretch; flex-direction: column-reverse; gap: 10px; }
  .hero-primary, .hero-secondary { width: 100%; }
  .home-section-inner { width: min(calc(100% - 28px), var(--container)); }
  .inner-surface { padding: 52px 0 60px; }
  .inner-surface-container { width: min(calc(100% - 28px), var(--container)); }
  .inner-breadcrumbs { margin-bottom: 38px; }
  .inner-section-heading { align-items: flex-start; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .inner-section-heading h2 { font-size: clamp(2.65rem,13vw,4rem); text-align: left; }
  .catalog-showcase .catalog-tools { grid-template-columns: 1fr; gap: 20px; }
  .catalog-showcase .catalog-tools label { display: block; width: 100%; }
  .catalog-showcase .catalog-tools input, .catalog-showcase .catalog-tools select { width: 100%; min-height: 58px; margin-top: 8px; padding: 13px 18px; }
  .catalog-card-grid .card { min-height: 250px; padding: 24px; }
  .catalog-card-grid .card > a:last-child { right: 24px; bottom: 22px; }
  .standalone-faq { gap: 34px; }
  .standalone-faq .home-faq-item:hover { transform: none; }
  .faq-prose .inner-section-heading { margin-bottom: 42px; }
  .faq-prose-item { margin-bottom: 44px; }
  .faq-prose-item h3 { margin-bottom: 14px; font-size: clamp(1.25rem,5.8vw,1.6rem); }
  .faq-prose-item p { font-size: 1rem; line-height: 1.74; }
  .article-page .inner-hero h1 { font-size: clamp(2.35rem,11.5vw,4rem); }
  .article-editorial > h2 { margin-top: 54px; font-size: clamp(1.85rem,8.5vw,2.7rem); }
  .article-editorial > p, .article-editorial > ul, .article-editorial > ol { margin-bottom: 22px; font-size: 1rem; line-height: 1.74; }
  .article-toc ol { columns: 1; }
  .article-faq-prose > h2 { margin-bottom: 34px; font-size: clamp(2.35rem,11vw,3.5rem); }
  .article-cta { grid-template-columns: 1fr; align-items: stretch; }
  .article-cta h2, .article-cta p, .article-cta .current-link-button { grid-column: 1; grid-row: auto; }
  .article-cta .current-link-button { width: 100%; min-width: 0; margin-top: 8px; }
  .responsible-prose .inner-section-heading { margin-bottom: 42px; }
  .responsible-prose-list p { margin-bottom: 22px; font-size: 1rem; line-height: 1.74; }
  .page-current-link, .page-responsible-gaming { grid-template-columns: 1fr; }
  .page-current-link .cta-block, .page-responsible-gaming .responsible-note { grid-column: auto; }
  .current-link-prose h2 { margin: 0 0 32px auto; font-size: clamp(2.5rem,12vw,3.6rem); }
  .current-link-prose p { margin-bottom: 22px; font-size: 1rem; line-height: 1.74; }
  .page-content.inner-page-content > h2, .inner-page-content .notice, .inner-page-content .responsible-note, .inner-page-content .affiliate-note { padding: 24px; }
  .inner-page-content .cta-block { padding: 28px 24px; }
  .popular-showcase { padding-top: 48px; padding-bottom: 60px; }
  .about-showcase .home-section-inner { grid-template-columns: 1fr; align-content: center; gap: 16px; }
  .about-heading { grid-row: 1; justify-self: start; min-width: 0; }
  .about-copy { grid-row: 2; }
  .about-heading h2 { font-size: 2.35rem; }
  .about-copy > p { font-size: .75rem; line-height: 1.4; }
  .current-link-showcase { height: auto; min-height: 250px; padding: 42px 0; }
  .current-link-showcase .home-section-inner { grid-template-columns: 1fr; gap: 24px; }
  .current-link-heading { grid-row: 1; justify-self: start; min-width: 0; }
  .current-link-heading h2 { font-size: clamp(2.35rem, 12vw, 3.4rem); text-align: left; }
  .current-link-title-tail { white-space: normal; }
  .current-link-copy { gap: 16px; }
  .current-link-button { width: 100%; }
  .popular-heading { align-items: start; flex-direction: column; }
  .article-mosaic { grid-template-columns: 1fr; }
  .article-tile p, .article-tile:nth-child(1) p, .article-tile:nth-child(6) p { font-size: .78rem; }
  .home-faq-showcase { min-height: 0; margin-top: 0; padding: 52px 0; }
  .home-faq-showcase .home-section-inner { gap: 36px; }
  .home-faq-heading h2 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .home-faq-heading > p:last-child { margin-top: 18px; }
  .home-faq-item { border-radius: 16px; backdrop-filter: none; }
  .home-faq-item:hover { transform: none; }
  .faq-summary { grid-template-columns: 26px minmax(0,1fr) 20px; gap: 9px; min-height: 58px; padding: 13px 15px; }
  .faq-question { font-size: .94rem; }
  .faq-answer p { padding: 0 42px 18px 50px; font-size: .76rem; line-height: 1.65; }
  .card-grid, .catalog-tools, .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding-top: 52px; }
  .footer-grid { gap: 38px; }
  .footer-identity { align-items: flex-start; flex-direction: column; gap: 14px; }
  .footer-intro > p { margin-top: 22px; font-size: .78rem; }
  .legal { grid-template-columns: 1fr; gap: 10px; margin-top: 36px; }
  .card { min-height: 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .cta-block { display: block; }
  .cta-block .button, .cta-block .link-disabled { display: inline-flex; margin-top: 18px; white-space: normal; }
  .cta-block small { display: block; }
  .toc ol { columns: 1; }
}
@media (max-width: 380px) { .container { width: min(calc(100% - 20px), var(--container)); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }
