/* =====================================================================
   Bingocore — Landing page styles
   Editorial, premium B2B SaaS aesthetic. Light-first. Stripe/Notion-inspired.
   ===================================================================== */

/* --------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------- */
   :root {
    /* Palette — cadetblue primary, warm bronze + teal-navy secondaries */
    --bg:            #ffffff;
    --bg-soft:       #F6F5F4;
    --bg-elevated:   #f4f7f7;
    --bg-line:       #eef3f3;
    --ink:           #444;
    --ink-1:         #1f2a2e;
    --ink-2:         #4a565b;
    --ink-3:         #6b777c;
    --ink-4:         #9aa6aa;
    --line:          #e4ebec;
    --line-2:        #eef3f3;
  
    /* Primary — cadetblue family */
    --accent:        #5f9ea0;
    --accent-dark:   #4a8385;
    --accent-deeper: #355f61;
    --accent-soft:   #eaf3f3;
    --accent-tint:   #c9dfdf;
    --accent-light:  #b7d6d7;     /* readable on dark backgrounds */
    --accent-lighter:#dcebec;
    --accent-bright: #87c2c4;
  
    /* Deep teal-navy used for premium dark surfaces */
    --navy:          #0f2a2e;
    --navy-2:        #143438;
    --navy-3:        #1f4a4d;
    --navy-4:        #235f62;
  
    /* Warm complement (bronze) — pairs with cadetblue */
    --gold:          #b88a4a;
    --gold-soft:     #f5ebd9;
    --gold-bright:   #d4a574;
  
    --success:       #128a5a;
    --success-soft:  #e6f4ed;
    --warn:          #b67100;
    --danger:        #b6243d;
  
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
  
    --shadow-xs: 0 1px 0 rgba(13, 18, 30, 0.04);
    --shadow-sm: 0 1px 2px rgba(13, 18, 30, 0.05), 0 1px 1px rgba(13, 18, 30, 0.04);
    --shadow-md: 0 4px 12px rgba(13, 18, 30, 0.06), 0 1px 2px rgba(13, 18, 30, 0.04);
    --shadow-lg: 0 20px 50px -20px rgba(13, 18, 30, 0.18), 0 8px 20px -10px rgba(13, 18, 30, 0.08);
    --shadow-xl: 0 30px 80px -30px rgba(13, 18, 30, 0.25), 0 12px 30px -10px rgba(13, 18, 30, 0.12);
  
    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Poppins", Helvetica, Arial, sans-serif;
    --font-brand: "Agbalumo", "Inter", system-ui, sans-serif;
    --font-mono: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  
    --container: 1200px;
    --container-narrow: 980px;
  }
  
  /* --------------------------------------------------------------------
     2. Reset & base
     -------------------------------------------------------------------- */
  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
  html.scroll-instant { scroll-behavior: auto !important; }
  body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }
  code { font-family: var(--font-mono); font-size: 0.875em; color: var(--ink-1); }
  ul { list-style: none; padding: 0; margin: 0; }
  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
  }
  
  /* Headings — Poppins, Helvetica fallback */
  h1, h2, h3, h4,
  .section__title,
  .hero__title,
  .hero__title-em,
  .pillar h3,
  .comp__big h3,
  .comp__bottom h4,
  .ops-card h4,
  .resource h4,
  .cta__card h2,
  .cta__success h4,
  .stack__label,
  .wallet__title,
  .steps strong,
  .quote blockquote {
    font-family: var(--font-heading);
  }
  
  /* --------------------------------------------------------------------
     3. Utilities & primitives
     -------------------------------------------------------------------- */
  .container {
    width: 100%;
    max-width: var(--container);
    padding: 0 24px;
    margin: 0 auto;
  }
  
  .pill {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .pill--soft { background: var(--accent-soft); color: var(--accent-deeper); }
  
  .dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--ink-4); }
  .dot--green { background: #21c07a; box-shadow: 0 0 0 3px rgba(33, 192, 122, 0.18); }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--ink-2);
    box-shadow: var(--shadow-xs);
  }
  .badge--outline { background: transparent; }
  .badge--link { transition: border-color 0.15s ease, transform 0.15s ease; }
  .badge--link:hover { border-color: #d8d9e0; transform: translateY(-1px); }
  .badge__sep { color: var(--ink-4); }
  .badge__cta { color: var(--accent); font-weight: 600; }
  
  .eyebrow {
    display: inline-block;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .eyebrow--light { color: var(--accent-light); }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
  }
  .btn--sm { padding: 8px 14px; font-size: 13.5px; }
  .btn--full { width: 100%; }
  .btn--primary {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .btn--primary:hover { background: #000; }
  .btn--primary:active { transform: translateY(1px); }
  .btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
  }
  .btn--ghost:hover { border-color: #d2d3da; background: var(--bg-soft); }
  
  .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14.5px;
  }
  .link-arrow .arr { transition: transform 0.2s ease; }
  .link-arrow:hover .arr { transform: translateX(3px); }
  
  /* Section primitives */
  .section { padding: 60px 0; }
  .section--alt { background: var(--bg-soft); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
  .section--dark {
    background: var(--navy);
    color: #cdd0d9;
  }
  
  .section__head {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: left;
  }
  .section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
  .section__head--center .section__lede {
    margin-left: auto;
    margin-right: auto;
  }
  .section__head--row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 80px;
    align-items: end;
    max-width: var(--container);
    text-align: left;
  }
  .section__title {
    font-size: clamp(34px, 4.2vw, 52px);
    letter-spacing: -0.025em;
    font-weight: 600;
    line-height: 1.05;
    color: var(--ink);
    margin: 0 0 18px;
  }
  .section__title--light { color: #fff; }
  .section__lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-2);
    margin: 0;
    max-width: 640px;
  }
  .section__lede--side { margin: 0; padding-bottom: 6px; }
  .section__lede--light { color: #a4a8b6; }
  
  .m-0 { margin: 0 !important; }
  
  /* --------------------------------------------------------------------
     4. Topbar + Nav
     -------------------------------------------------------------------- */
  .topbar {
    background: var(--navy);
    color: #d1dcdd;
    font-size: 13px;
  }
  .topbar__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    justify-content: center;
  }
  .topbar__link { color: #fff; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.4); }
  .topbar__link:hover { border-color: #fff; }
  
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid rgba(232, 233, 238, 0.6);
    transition: box-shadow 0.2s ease;
    box-shadow: var(--shadow-md);
  }
  .nav.is-scrolled { box-shadow: 0 6px 22px -16px rgba(13,18,30, 0.18); }
  
  .nav__inner {
    display: flex;
    align-items: center;
    height: 85px;
    gap: 36px;
  }
  .nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    min-height: 32px;
  }
  .nav__brand-mark {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    flex: 0 0 32px;
  }
  .nav__brand-text {
    font-family: var(--font-brand);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    transform: translateY(-2px);
  }
  
  .nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    margin-left: 16px;
  }
  .nav__link, .nav__menu-trigger {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2);
    background: none;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .nav__link:hover, .nav__menu-trigger:hover { color: var(--ink); background: var(--bg-elevated); }
  .nav__link--quiet { color: var(--ink-2); }
  
  .nav__menu { position: relative; }
  .nav__menu-trigger { cursor: pointer; }
  .nav__menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 320px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 60;
  }
  .nav__menu-panel a {
    display: block;
    padding: 12px 12px;
    border-radius: 8px;
  }
  .nav__menu-panel a:hover { background: var(--bg-soft); }
  .nav__menu-panel strong { display: block; font-size: 14px; color: var(--ink); font-weight: 600; }
  .nav__menu-panel span { display: block; font-size: 13px; color: var(--ink-3); margin-top: 2px; }
  .nav__menu:hover .nav__menu-panel,
  .nav__menu:focus-within .nav__menu-panel { display: block; }
  
  .nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav.is-hero-cta-visible .nav__cta > .btn { display: none; }

  .nav__lang { position: relative; }
  .nav__lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    letter-spacing: 0.02em;
  }
  .nav__lang-trigger svg:first-child { color: var(--ink-3); }
  .nav__lang-trigger:hover {
    color: var(--ink);
    background: var(--bg-elevated);
    border-color: var(--ink-3);
  }
  .nav__lang-current { line-height: 1; }
  .nav__lang-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 6px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 60;
  }
  .nav__lang-panel form { margin: 0; }
  .nav__lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    color: var(--ink-2);
    font: inherit;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .nav__lang-option:hover { background: var(--bg-soft); color: var(--ink); }
  .nav__lang-option.is-active { color: var(--ink); background: var(--bg-elevated); }
  .nav__lang-code {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--ink-3);
    background: var(--bg-soft);
    padding: 3px 6px;
    border-radius: 5px;
    min-width: 28px;
    text-align: center;
  }
  .nav__lang-option.is-active .nav__lang-code { color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 2px 5px; }
  .nav__lang-name { font-size: 13.5px; font-weight: 500; }
  .nav__lang:hover .nav__lang-panel,
  .nav__lang:focus-within .nav__lang-panel { display: block; }

  .nav__toggle {
    display: none;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
  .nav__toggle span {
    width: 16px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
  }
  
  /* --------------------------------------------------------------------
     5. Hero
     -------------------------------------------------------------------- */
  .hero {
    position: relative;
    padding: 96px 0 0;
    overflow: hidden;
  }
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 25px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero__copy { max-width: 620px; }
  .hero__title {
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 600;
    margin: 18px 0 24px;
  }
  .hero__title-em {
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--accent);
  }
  .hero__lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 560px;
    margin: 0 0 32px;
  }
  .hero__ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  .hero__bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14.5px;
    color: var(--ink-2);
  }
  .hero__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero__bullets svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: var(--accent);
  }
  
  .hero__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.94;
    min-height: 460px;
  }
  
  .screenshot {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
  }
  .screenshot::after {
    content: attr(data-placeholder);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-4);
    background: var(--bg-elevated);
    pointer-events: none;
  }
  .screenshot__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #fff;
  }
  .screenshot__chrome span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #e6e7ec;
  }
  .screenshot__chrome span:nth-child(1) { background: #ff5f57; opacity: 0.75; }
  .screenshot__chrome span:nth-child(2) { background: #febc2e; opacity: 0.75; }
  .screenshot__chrome span:nth-child(3) { background: #28c840; opacity: 0.75; }
  .screenshot__chrome--inline { padding: 6px 10px; }
  .screenshot__url {
    margin-left: 10px;
    font-size: 11.5px;
    color: var(--ink-4);
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 2px 10px;
    font-family: var(--font-mono);
    width: auto;
    height: auto;
    border-radius: 999px;
  }
  .screenshot__body {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: var(--bg-elevated);
  }
  
  .screenshot--xl {
    position: absolute;
    height: auto;
  }
  /* .screenshot--xl .screenshot__body { min-height: 360px; } */
  
  .screenshot--phone {
    position: absolute;
    left: 300px;
    bottom: 65px;
    width: 30%;
    aspect-ratio: 8.2 / 17;
    border-radius: 26px;
    box-shadow: var(--shadow-xl);
    border-width: 6px;
    border-color: #1a1a24;
    background: #1a1a24;
  }
  .screenshot--phone .screenshot__body--mobile {
    border-radius: 18px;
    background: var(--bg-elevated);
  }
  .screenshot--phone::after {
    border-radius: 18px;
  }
  .screenshot--mini {
    position: absolute;
    left: -6%;
    bottom: 12%;
    width: 36%;
    aspect-ratio: 5 / 3;
    box-shadow: var(--shadow-lg);
  }
  .screenshot--inline {
    margin-top: 18px;
    box-shadow: var(--shadow-sm);
  }
  .screenshot--inline .screenshot__body { min-height: 180px; }
  
  .screenshot--has-image::after { content: none; }
  .screenshot__image {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .hero__floater {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-1);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: floaty 7s ease-in-out infinite;
  }
  .hero__floater--a {
    left: -14px;
    top: 16%;
  }
  .hero__floater--b {
    right: -10px;
    bottom: 6%;
    animation-delay: 1.5s;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .hero__floater--b strong { font-size: 16px; }
  .hero__floater--b small { color: var(--ink-3); font-size: 12px; }
  
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }
  
  /* Logo strip */
  .hero__strip { padding: 90px 0 110px; }
  .hero__strip-label {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin: 0 0 24px;
  }
  .logo-strip {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: center;
    gap: 24px;
    opacity: 0.85;
  }
  .logo-strip__item {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--ink-1);
    text-align: center;
    white-space: nowrap;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.15s ease;
  }
  .logo-strip__item:hover { opacity: 0.95; }
  .logo-strip__item span:not(.logo-strip__dot) {
    display: inline-block;
    margin-left: 4px;
    font-weight: 400;
    color: var(--ink-3);
    font-size: 13px;
  }
  .logo-strip__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    vertical-align: middle;
    margin: 0 6px;
  }
  
  /* --------------------------------------------------------------------
     6. Metrics
     -------------------------------------------------------------------- */
  .metrics {
    padding: 56px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
  }
  .metric {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .metric__value {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-height: 42px;
    flex-shrink: 0;
  }
  .metric__unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-3);
    letter-spacing: 0;
  }
  .metric__label {
    font-size: 14px;
    color: var(--ink-2);
    margin-top: 12px;
    line-height: 1.5;
    max-width: 28ch;
  }
  
  /* --------------------------------------------------------------------
     7. Pillars
     -------------------------------------------------------------------- */
  .pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pillar {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .pillar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #dedfe6;
  }
  .pillar__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-deeper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .pillar__icon svg { width: 22px; height: 22px; }
  .pillar h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 10px;
    color: var(--ink);
  }
  .pillar p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-2);
    margin: 0 0 18px;
  }
  .pillar__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-1);
  }
  .pillar__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }
  .pillar__list li::before {
    content: "";
    flex: 0 0 4px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--accent);
    margin-top: 9px;
  }
  
  /* --------------------------------------------------------------------
     8. Tournaments
     -------------------------------------------------------------------- */
  .tournaments-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    margin-bottom: 56px;
  }
  
  .tournaments-split__visual {
    position: sticky;
    top: 96px;
  }
  .tournaments-split__visual .screenshot--inline {
    margin-top: 0;
    max-height: 620px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .tournaments-split__visual .screenshot__body {
    min-height: 0;
    padding: 0;
  }
  .tournaments-split__visual .screenshot--inline::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
    z-index: 2;
  }
  .tournaments-split__caption {
    margin: 16px 4px 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-3);
  }
  
  .tournaments-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .tlist-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .tlist-item:hover {
    border-color: var(--accent-tint);
    box-shadow: var(--shadow-sm);
  }
  .tlist-item__num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 600;
    padding-top: 4px;
  }
  .tlist-item__body { min-width: 0; }
  .tlist-item__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
    color: var(--ink-1);
  }
  .tlist-item__desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0 0 12px;
  }
  .tcard__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
  }
  .chip {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-elevated);
    color: var(--ink-1);
    border: 1px solid transparent;
    font-weight: 500;
  }
  .chip--light { background: #fff; border-color: var(--line); color: var(--ink-2); }
  
  .callout {
    margin: 28px 0 0;
    max-width: 760px;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--accent);
    background: none;
    border-radius: 0;
    box-shadow: none;
  }
  .callout__eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .callout p { margin: 0; font-size: 15.5px; color: var(--ink-1); max-width: 760px; line-height: 1.55; }
  
  /* --------------------------------------------------------------------
     9. Jackpot stack
     -------------------------------------------------------------------- */
  .stack {
    position: relative;
    padding: 12px 0 0;
    margin-bottom: 56px;
  }
  .stack__row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    position: relative;
  }
  .stack__row--mid { justify-content: center; }
  .stack__row--bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  
  .stack__node {
    position: relative;
    padding: 22px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    text-align: center;
    min-width: 220px;
  }
  .stack__label {
    display: block;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .stack__sub {
    display: block;
    font-size: 13px;
    color: var(--ink-3);
  }
  .stack__node--mega {
    background: var(--navy);
    color: #fff;
    border-color: transparent;
    min-width: 340px;
  }
  .stack__node--mega .stack__label { color: #fff; }
  .stack__node--mega .stack__sub { color: var(--accent-lighter); }
  .stack__node--progressive {
    background: var(--accent-soft);
    border-color: var(--accent-tint);
    min-width: 300px;
  }
  .stack__node--fixed { background: #fff; }
  .stack__node--btg { background: var(--bg-soft); }
  .stack__node--lines { background: var(--bg-soft); }
  
  .stack::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 70px;
    bottom: 80px;
    width: 0;
    border-left: 1px dashed #ccc;
    z-index: 0;
    transform: translateX(-50%);
  }
  .stack__feeds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed #ccc;
  }
  .stack__feed {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
  }
  .stack__feed strong {
    display: block;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .stack__feed span {
    font-size: 12.5px;
    color: var(--ink-3);
  }
  
  .kvs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .kv {
    padding: 20px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line-2);
  }
  .kv strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
  .kv span { display: block; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
  
  /* --------------------------------------------------------------------
     10. Dashboard
     -------------------------------------------------------------------- */
  .dashboard-shot {
    margin-top: 0;
    margin-bottom: 36px;
    box-shadow: var(--shadow-lg);
    border-radius: 18px;
  }
  .dashboard-shot .screenshot__body { min-height: 0; padding: 0; }
  
  .ops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .ops-card {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .ops-card h4 { margin: 0 0 6px; font-size: 15.5px; font-weight: 600; letter-spacing: -0.005em; color: var(--ink); }
  .ops-card p { margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.55; }
  
  /* --------------------------------------------------------------------
     12. Integrate (dark section)
     -------------------------------------------------------------------- */
  .integrate {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 64px;
    align-items: start;
  }
  .integrate__copy p { color: #a4a8b6; line-height: 1.55; font-size: 14.5px; margin: 4px 0 0; }
  .steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 22px;
  }
  .steps li {
    display: flex;
    gap: 16px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
  }
  .steps__num {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(95, 158, 160, 0.18);
    color: var(--accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(95, 158, 160, 0.40);
  }
  .steps strong { display: block; color: #fff; font-size: 15px; font-weight: 600; }
  .steps code {
    color: var(--accent-lighter);
    background: rgba(95, 158, 160, 0.15);
    padding: 1px 5px;
    border-radius: 4px;
  }
  
  .themes {
    display: flex;
    gap: 16px;
    padding: 14px 16px;
  }
  .themes__spacer {
    flex: 0 0 32px;
    width: 32px;
  }
  .themes__body {
    flex: 1;
    min-width: 0;
  }
  .themes__label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8c91a0;
    margin-bottom: 12px;
  }
  .themes__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .theme {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
  }
  .theme--old-blue { background: #1d2e63; border-color: rgba(255,255,255,0.15); }
  .theme--luxury    { background: #3d2810; color: #f0c25a; border-color: rgba(240,194,90,0.35); }
  .theme--neon      { background: #190a3a; color: #6ce9ff; border-color: rgba(108, 233, 255, 0.35); }
  .theme--retro     { background: #8c2468; color: #fff5a8; border-color: rgba(255,245,168,0.4); }
  .theme--irish     { background: #1f4a32; color: #f6e1b1; border-color: rgba(246,225,177,0.35); }
  .theme--scandi    { background: #ffffff; color: #111; border-color: #e1e1e6; }
  .theme--custom    { background: transparent; color: #cdd0d9; border-style: dashed; border-color: #4a4f5e; }
  
  .integrate__code {
    position: relative;
    min-width: 0;
    width: 100%;
  }
  .codeblock {
    background: #15171f;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.65;
    color: #c8cbd6;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  }
  .codeblock__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 8px;
    background: #0e1017;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .codeblock__tab {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #8a8fa0;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .codeblock__tab:hover { color: #fff; }
  .codeblock__tab.is-active { background: rgba(255,255,255,0.05); color: #fff; }
  .codeblock__copy {
    margin-left: auto;
    padding: 6px;
    color: #8a8fa0;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .codeblock__copy:hover { background: rgba(255,255,255,0.05); color: #fff; }
  .codeblock__body {
    margin: 0;
    padding: 18px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: pre;
    min-width: 0;
    max-width: 100%;
  }
  .codeblock__body.is-hidden { display: none; }
  .codeblock__body code {
    display: block;
    font: inherit;
    color: inherit;
  }
  .t-c { color: #6a7480; }
  .t-tag { color: #e89a8a; }
  .t-attr { color: #d3c374; }
  .t-str { color: #9cd5be; }
  .t-k { color: #9fd3d5; }
  .t-fn { color: #87c2c4; }
  .t-key { color: #e89a8a; }
  
  .endpoints {
    margin-top: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px 18px;
  }
  .endpoints__title {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8c91a0;
    margin-bottom: 10px;
  }
  .endpoints ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
  }
  .endpoints li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12.5px;
  }
  .endpoints li code {
    display: inline-block;
    min-width: 38px;
    font-size: 11px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(95, 158, 160, 0.22);
    color: var(--accent-light);
    text-align: center;
  }
  .endpoints li span { color: #c8cbd6; }
  
  /* --------------------------------------------------------------------
     13. Wallet
     -------------------------------------------------------------------- */
  .wallet {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
    background: var(--bg-soft);
    border: 1px solid var(--line-2);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 28px;
  }
  .wallet__col {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
  }
  .wallet__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .wallet__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
  }
  .wallet__dot--game { background: var(--accent); }
  .wallet__dot--wallet { background: var(--success); }
  .wallet__col p { font-size: 14px; color: var(--ink-2); margin: 0 0 12px; line-height: 1.55; }
  .wallet__col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13.5px;
    color: var(--ink-1);
  }
  .wallet__col li {
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
  }
  .wallet__col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 1.5px;
    background: var(--accent);
  }
  .wallet__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 140px;
  }
  .wallet__arrow-line {
    width: 100%;
    height: 1.5px;
    background: var(--line);
    position: relative;
  }
  .wallet__arrow-line::before,
  .wallet__arrow-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: var(--accent);
  }
  .wallet__arrow-line::before { left: -4px; }
  .wallet__arrow-line::after  { right: -4px; }
  .wallet__arrow-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-3);
    text-align: center;
  }
  
  .wallet__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .wallet__card {
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .wallet__card strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 6px; font-weight: 600; }
  .wallet__card p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.5; }
  
  /* --------------------------------------------------------------------
     14. Compliance
     -------------------------------------------------------------------- */
  .comp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .comp__big {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 30px;
  }
  .comp__big header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .comp__big h3 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--ink);
  }
  .comp__big > p {
    font-size: 15px;
    color: var(--ink-2);
    margin: 0 0 18px;
    line-height: 1.6;
  }
  .comp__checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13.5px;
    color: var(--ink-1);
  }
  .comp__checks li {
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
  }
  .comp__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--success-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3.5 8l3 3 6-6' stroke='%23128a5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/11px 11px no-repeat;
  }
  
  .comp__bottom {
    margin-top: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
  }
  .comp__bottom h4 {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
    margin: 0 0 14px;
  }
  .labrow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .labrow li {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink-1);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    background: var(--bg-soft);
  }
  .comp__bottom-right p {
    margin: 0;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
  }
  .comp__bottom-right code {
    display: block;
    margin: 8px 0 0;
    background: var(--ink);
    color: #cdd0d9;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    overflow-x: auto;
  }
  
  /* --------------------------------------------------------------------
     15. Certification
     -------------------------------------------------------------------- */
  .certs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .cert-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-sm);
  }
  .cert-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-2);
  }
  .cert-card__logo {
    height: 28px;
    width: auto;
  }
  .cert-card__badge {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--accent-tint);
    color: var(--accent);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .cert-card__badge--pending {
    background: var(--gold-soft);
    color: var(--warn);
  }
  .cert-card__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 16px;
  }
  .cert-card__meta {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
  }
  .cert-card__meta div {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }
  .cert-card__meta dt {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
    margin: 0;
  }
  .cert-card__meta dd {
    margin: 0;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.45;
  }
  .cert-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
  }
  .cert-card__link:hover { color: var(--ink); }
  .cert-card__link::after {
    content: "→";
    font-size: 13px;
  }
  .certs__note {
    margin: 24px 0 0;
    text-align: center;
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.55;
  }
  
  /* --------------------------------------------------------------------
     16. Multi-tenant
     -------------------------------------------------------------------- */
  .tenant {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }
  .tenant__tree {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }
  .tenant__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
  .tenant__row--sites { grid-template-columns: repeat(4, 1fr); }
  .tenant__node {
    padding: 14px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .tenant__type {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
  }
  .tenant__name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
  .tenant__meta { font-size: 12px; color: var(--ink-3); font-family: var(--font-mono); }
  .tenant__node--root {
    background: var(--navy);
    border-color: transparent;
    color: #fff;
  }
  .tenant__node--root .tenant__type { color: var(--accent-light); }
  .tenant__node--root .tenant__name { color: #fff; font-size: 16px; }
  .tenant__node--root .tenant__meta { color: var(--accent-lighter); }
  .tenant__node--brand {
    background: var(--accent-soft);
    border-color: var(--accent-tint);
  }
  .tenant__node--site {
    font-size: 12.5px;
    color: var(--ink-1);
    font-weight: 500;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .tenant__node--site .tenant__type {
    background: #fff;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 10px;
  }
  
  .tenant__copy { display: flex; flex-direction: column; gap: 16px; }
  .tenant__bullet {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .tenant__bullet strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
  .tenant__bullet p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
  .tenant__bullet code { background: var(--bg-elevated); padding: 1px 5px; border-radius: 4px; }
  .tenant__bullet--feature {
    background: var(--navy);
    border-color: var(--navy);
    padding: 22px 24px;
    box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.45);
  }
  .tenant__bullet--feature strong {
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.005em;
  }
  .tenant__bullet--feature p {
    color: #cdd0d9;
    font-size: 14px;
  }
  .tenant__bullet--feature code {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  
  /* --------------------------------------------------------------------
     16. Quote
     -------------------------------------------------------------------- */
  .quote {
    padding: 100px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .quote figure {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
  .quote blockquote {
    font-style: italic;
    font-weight: 500;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 28px;
    position: relative;
  }
  .quote blockquote::before {
    content: "“";
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    font-size: 80px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.4;
    position: absolute;
    left: -28px;
    top: -32px;
  }
  .quote figcaption {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .quote__avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--accent);
  }
  .quote__who {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .quote__who strong { font-weight: 600; color: var(--ink); font-size: 14.5px; }
  .quote__who span { font-size: 13px; color: var(--ink-3); }
  
  /* --------------------------------------------------------------------
     17. Resources
     -------------------------------------------------------------------- */
  .resources {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .resource {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }
  .resource:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #dadbe3;
  }
  .resource__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 4px;
  }
  .resource h4 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
  .resource p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; flex: 1; }
  .resource__cta { font-size: 13.5px; color: var(--accent); font-weight: 600; margin-top: 4px; }
  
  /* --------------------------------------------------------------------
     18. CTA
     -------------------------------------------------------------------- */
  .cta { padding: 100px 0 130px; }
  .cta__card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    background: var(--navy);
    color: #fff;
    border-radius: 28px;
    padding: 56px;
  }
  .cta__card .eyebrow { color: var(--accent-light); }
  .cta__card h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    letter-spacing: -0.025em;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 14px;
  }
  .cta__card p {
    font-size: 16px;
    color: #b6bac6;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 480px;
  }
  .cta__tagline {
    font-family: var(--font-heading);
    font-size: 18px !important;
    color: #fff !important;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.35 !important;
    margin: 0 0 26px !important;
    max-width: 480px;
    padding-top: 18px;
  
  }
  .cta__points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .cta__points span {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    color: #cdd0d9;
    font-size: 12.5px;
    font-weight: 500;
  }
  
  .cta__form {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    color: var(--ink);
    box-shadow: var(--shadow-xl);
  }
  .cta__fields { display: flex; flex-direction: column; gap: 14px; }
  .field { display: flex; flex-direction: column; gap: 6px; }
  .field label { font-size: 12.5px; color: var(--ink-2); font-weight: 600; }
  .field input,
  .field select {
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
  }
  .field input:focus,
  .field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(95, 158, 160, 0.18);
  }
  .field__error {
    margin: 0;
    font-size: 12.5px;
    color: #c44;
    font-weight: 500;
  }
  .field--invalid input,
  .field--invalid select {
    border-color: #c44;
  }
  .field__hint {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--ink-4);
    line-height: 1.5;
  }
  .cta__success { padding: 14px 4px; }
  .cta__success h4 { margin: 0 0 6px; font-size: 18px; font-weight: 600; }
  .cta__success p { margin: 0; color: var(--ink-2); font-size: 14px; }
  
  /* --------------------------------------------------------------------
     19. Footer
     -------------------------------------------------------------------- */
  .footer {
    background: #fafbfc;
    border-top: 1px solid var(--line-2);
    padding: 64px 0 28px;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.5fr);
    gap: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line-2);
  }
  .footer__brand p {
    font-size: 14px;
    color: var(--ink-2);
    margin: 12px 0 18px;
    max-width: 320px;
    line-height: 1.55;
  }
  .footer__legal-row {
    display: flex;
    gap: 10px;
    font-size: 12.5px;
    color: var(--ink-4);
  }
  .footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .footer__cols h5 {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 16px;
  }
  .footer__cols ul { display: flex; flex-direction: column; gap: 8px; }
  .footer__cols a { color: var(--ink-2); font-size: 14px; }
  .footer__cols a:hover { color: var(--ink); }
  
  .footer__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-2);
  }
  .footer__trust-logo {
    height: 26px;
    width: auto;
    opacity: 0.88;
  }
  .footer__trust-text {
    font-size: 13.5px;
    color: var(--ink-3);
  }
  .footer__trust-text a {
    color: var(--accent);
    font-weight: 600;
  }
  .footer__trust-text a:hover { color: var(--ink); }
  
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    color: var(--ink-3);
  }
  .footer__bottom small { font-size: 12.5px; }
  .footer__bottom a { color: var(--ink-3); margin: 0 4px; }
  .footer__bottom a:hover { color: var(--ink); }
  
  /* --------------------------------------------------------------------
     20. Placeholder "screenshot here" — flat neutral fill
     -------------------------------------------------------------------- */
  .screenshot__body--game,
  .screenshot__body--builder,
  .screenshot__body--mobile {
    background: var(--bg-elevated);
  }
  
  /* --------------------------------------------------------------------
     21. Reveal on scroll
     -------------------------------------------------------------------- */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  
  /* --------------------------------------------------------------------
     22. Responsive
     -------------------------------------------------------------------- */
  @media (max-width: 1100px) {
    .section { padding: 90px 0; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { min-height: 420px; }
    .section__head--row { grid-template-columns: 1fr; gap: 24px; }
    .integrate { grid-template-columns: 1fr; gap: 40px; }
    .tenant { grid-template-columns: 1fr; gap: 32px; }
    .resources { grid-template-columns: repeat(2, 1fr); }
    .ops-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars__grid { grid-template-columns: 1fr; }
    .tournaments-split { grid-template-columns: 1fr; gap: 36px; }
    .tournaments-split__visual { position: static; }
    .tournaments-split__visual .screenshot--inline { max-height: 440px; }
    .comp { grid-template-columns: 1fr; }
    .stack__row--bottom { grid-template-columns: 1fr; }
    .stack__feeds { grid-template-columns: 1fr; }
    .kvs { grid-template-columns: 1fr; }
    .wallet { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
    .wallet__arrow { display: none; }
    .wallet__cards { grid-template-columns: repeat(2, 1fr); }
    .certs { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__cols { grid-template-columns: repeat(2, 1fr); }
    .cta__card { grid-template-columns: 1fr; padding: 36px; }
    .nav__links { display: none; }
    .nav__cta { margin-left: auto; }
    .metrics__grid { grid-template-columns: repeat(2, 1fr); }
    .metric__label { max-width: none; }
    .comp__bottom { grid-template-columns: 1fr; gap: 18px; }
    .logo-strip { grid-template-columns: repeat(3, 1fr); gap: 18px 24px; }
  }
  
  @media (max-width: 640px) {
    .topbar__inner { font-size: 12px; padding: 8px 16px; }
    .topbar__text { text-align: center; }
    .nav__inner { height: 60px; }
    .nav__lang-trigger { padding: 6px 10px; }
    .nav__lang-trigger > svg:first-child { display: none; }
    .nav__lang-panel { right: -8px; min-width: 168px; }
    .hero { padding-top: 56px; }
    .hero__title { font-size: 38px; }
    .hero__lede { font-size: 16px; }
    .hero__visual { min-height: 360px; }
    .screenshot--mini { display: none; }
    .screenshot--phone { left: 175px; bottom: 35px; }
    .hero__floater--a { left: 0; top: 8%; font-size: 11.5px; }
    .hero__floater--b { right: 0; }
    .section__title { font-size: 30px; }
    .section__lede { font-size: 16px; }
    .resources, .wallet__cards, .footer__cols { grid-template-columns: 1fr; }
    .cert-card__head { flex-direction: column; align-items: flex-start; }
    .cert-card__meta div { grid-template-columns: 1fr; gap: 4px; }
    .ops-grid { grid-template-columns: 1fr; }
    .tenant__row--sites { grid-template-columns: repeat(2, 1fr); }
    .stack__node--mega, .stack__node--progressive { min-width: 0; width: 100%; }
    .stack__row { flex-wrap: wrap; }
    .stack::before { display: none; }
    .quote blockquote::before { left: 0; top: -28px; font-size: 60px; }
    .cta__card { padding: 28px; border-radius: 20px; }
    .endpoints ul { grid-template-columns: 1fr; }
    .logo-strip { grid-template-columns: repeat(2, 1fr); }
    .codeblock__head { padding: 6px; gap: 2px; }
    .codeblock__tab { padding: 5px 8px; font-size: 11px; }
    .codeblock__body { padding: 14px 12px; font-size: 11.5px; }
  }
  
  /* Company subpages */
  .page-hero {
    padding: 100px 0 50px;
    border-bottom: 1px solid var(--line-2);
  }
  
  .page-hero__inner {
    max-width: 720px;
  }
  
  .page-hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  
  .page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  
  .page-hero__lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-2);
  }
  
  .page-content__inner {
    max-width: 720px;
  }
  
  .page-content__block + .page-content__block {
    margin-top: 48px;
  }
  
  .page-content__block h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .page-content__block p {
    color: var(--ink-2);
    line-height: 1.7;
  }
  
  .page-content__block p + p {
    margin-top: 14px;
  }
  
  .page-content__block a {
    color: var(--accent);
    text-decoration: none;
  }
  
  .page-content__block a:hover {
    text-decoration: underline;
  }
  
  .page-list {
    margin: 14px 0;
    padding-left: 1.25rem;
    color: var(--ink-2);
    line-height: 1.7;
  }
  
  .page-list li + li {
    margin-top: 8px;
  }
  
  .page-status-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    margin-bottom: 48px;
    border: 1px solid var(--line-2);
  }
  
  .page-status-banner--ok {
    background: var(--success-soft);
    border-color: rgba(18, 138, 90, 0.2);
  }
  
  .page-status-banner__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--success);
  }
  
  .page-status-banner strong {
    display: block;
    margin-bottom: 4px;
  }
  
  .page-status-banner p {
    font-size: 14px;
    color: var(--ink-2);
    margin: 0;
  }
  
  .page-status-list {
    list-style: none;
    display: grid;
    gap: 10px;
  }
  
  .page-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    background: var(--bg-soft);
  }
  
  .page-status-item__name {
    font-weight: 500;
    color: var(--ink-1);
  }
  
  .page-status-item__badge {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
  }
  
  .page-status-item__badge--ok {
    color: var(--success);
    background: var(--success-soft);
  }
  
  .page-content__cta {
    margin-top: 48px;
  }
  
  .page-content__note {
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line-2);
  }
  
  .page-facts {
    display: grid;
    gap: 20px;
  }
  
  .page-facts dt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 4px;
  }
  
  .page-facts dd {
    color: var(--ink-2);
    line-height: 1.6;
  }
  
  .page-boilerplate {
    padding: 20px 22px;
    border-left: 3px solid var(--accent);
    background: var(--bg-soft);
    border-radius: 0 12px 12px 0;
  }
  
  .page-jobs {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }
  
  .page-job {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border: 1px solid var(--line-2);
    border-radius: 14px;
    background: var(--bg-soft);
  }
  
  .page-job h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .page-job p {
    font-size: 14px;
    color: var(--ink-3);
  }
  
  .page-job__status {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line-2);
  }
  
  @media (max-width: 640px) {
    .page-hero { padding: 120px 0 56px; }
    .page-job { flex-direction: column; align-items: flex-start; }
  }
  
  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }
  