    /* ─── RESET ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body {
      width: 100%; height: 100%;
      font-family: 'Inter', 'Helvetica Neue', Arial, system-ui, -apple-system, sans-serif;
      background: #0a0f1e;
      overflow: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── DECK SHELL ─────────────────────────────── */
    #deck {
      width: 100vw;
      height: 100vh;
      position: relative;
    }

    /* ─── SLIDES ─────────────────────────────────── */
    .slide {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 60px 80px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.08s ease, transform 0.08s ease;
      transform: translateX(40px);
    }
    .slide.active {
      opacity: 1;
      pointer-events: all;
      transform: translateX(0);
    }
    .slide.exit-left {
      opacity: 0;
      transform: translateX(-40px);
    }

    /* ─── BRAND COLORS ───────────────────────────── */
    :root {
      --blue:     #1a4fd6;
      --blue-lt:  #3b82f6;
      --blue-dim: rgba(26,79,214,0.15);
      --navy:     #0f172a;
      --navy-2:   #1e293b;
      --slate:    #475569;
      --slate-lt: #94a3b8;
      --white:    #ffffff;
      --green:    #22c55e;
      --red:      #dc2626;
      --amber:    #d97706;
      --bg-light: #f8fafc;
    }

    /* ─── SLIDE BACKGROUNDS ──────────────────────── */
    .bg-dark   { background: linear-gradient(150deg, #0f172a 0%, #0d1f4a 100%); }
    .bg-light  { background: linear-gradient(160deg, #f8fafc 0%, #eff6ff 60%, #f0fdf4 100%); }
    .bg-white  { background: #ffffff; }
    .bg-navy   { background: #0f172a; }
    .bg-split  {
      background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    }

    /* ─── TYPOGRAPHY ─────────────────────────────── */
    .eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue-lt);
      margin-bottom: 16px;
    }
    .eyebrow.light { color: #93c5fd; }
    .eyebrow.dark  { color: var(--blue); }

    h1.slide-title {
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: #ffffff;
      margin-bottom: 24px;
      max-width: 820px;
      text-align: center;
    }
    h1.slide-title .hl { color: var(--blue-lt); }
    h1.slide-title.dark-text { color: var(--navy); }
    h1.slide-title.dark-text .hl { color: var(--blue); }

    h2.slide-h2 {
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: #ffffff;
      margin-bottom: 20px;
    }
    h2.slide-h2.dark-text { color: var(--navy); }
    h2.slide-h2.dark-text .hl { color: var(--blue); }
    h2.slide-h2 .hl { color: #93c5fd; }

    .subtitle {
      font-size: clamp(16px, 1.6vw, 20px);
      color: var(--slate-lt);
      line-height: 1.65;
      max-width: 640px;
      text-align: center;
    }
    .subtitle.dark-text { color: var(--slate); }

    /* ─── SLIDE COUNTER ──────────────────────────── */
    #counter {
      position: fixed;
      bottom: 28px;
      right: 36px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.05em;
      z-index: 200;
    }

    /* ─── NAV ARROWS ─────────────────────────────── */
    .nav-btn {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      z-index: 200;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.5);
      width: 44px; height: 44px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      backdrop-filter: blur(8px);
    }
    .nav-btn:hover {
      background: rgba(26,79,214,0.3);
      border-color: var(--blue);
      color: #ffffff;
    }
    #btn-prev { left: 20px; }
    #btn-next { right: 20px; }

    /* ─── PROGRESS DOTS ──────────────────────────── */
    #dots {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 200;
    }
    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .dot.active {
      background: var(--blue-lt);
      width: 20px;
      border-radius: 3px;
    }

    /* ─── LOGO BADGE ─────────────────────────────── */
    .slide-logo {
      position: fixed;
      top: 24px;
      left: 36px;
      z-index: 200;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #ffffff;
      opacity: 0.7;
    }
    .slide-logo span { color: var(--blue-lt); }

    /* ─── TRUST BADGES ───────────────────────────── */
    .trust-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 32px;
    }
    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--slate-lt);
      font-size: 11px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 100px;
      letter-spacing: 0.04em;
    }
    .trust-badge .dot-g {
      width: 5px; height: 5px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .trust-badge.blue-badge {
      background: rgba(26,79,214,0.15);
      border-color: rgba(26,79,214,0.35);
      color: #93c5fd;
    }

    /* ─── 3-COLUMN GRID ──────────────────────────── */
    .cols-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      width: 100%;
      max-width: 1000px;
    }
    .cols-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      width: 100%;
      max-width: 1000px;
    }

    /* ─── CARDS ──────────────────────────────────── */
    .card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 28px;
    }
    .card.bad {
      background: rgba(220,38,38,0.07);
      border-color: rgba(220,38,38,0.2);
    }
    .card.mid {
      background: rgba(217,119,6,0.07);
      border-color: rgba(217,119,6,0.2);
    }
    .card.good {
      background: rgba(26,79,214,0.12);
      border: 2px solid var(--blue);
    }
    .card.white {
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
    }
    .card.white:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(26,79,214,0.08); }

    .card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .card-label.red   { color: #f87171; }
    .card-label.amber { color: #fbbf24; }
    .card-label.blue  { color: #93c5fd; }
    .card-label.dark  { color: var(--blue); }

    .card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .card.bad h3, .card.mid h3 { color: #f1f5f9; }
    .card.good h3 { color: #bfdbfe; }
    .card.white h3 { color: var(--navy); }

    .card p {
      font-size: 13px;
      line-height: 1.6;
      color: var(--slate-lt);
    }
    .card.white p { color: var(--slate); }

    /* ─── SOLUTION CASTLES ───────────────────────── */
    .solution-castles {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      width: 100%;
      max-width: 980px;
      margin-top: 4px;
    }
    .castle-card {
      min-height: 330px;
      border-radius: 16px;
      padding: 22px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .castle-card.lego {
      background: rgba(26,79,214,0.14);
      border: 2px solid rgba(59,130,246,0.75);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }
    .castle-card.sand {
      background: rgba(245,158,11,0.08);
      border: 1px solid rgba(245,158,11,0.36);
    }
    .castle-title {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 14px;
    }
    .castle-title h3 {
      font-size: 20px;
      line-height: 1.15;
      color: #f8fafc;
    }
    .castle-title span {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .castle-card.lego .castle-title span { color: #93c5fd; }
    .castle-card.sand .castle-title span { color: #fbbf24; }
    .castle-visual {
      height: 150px;
      position: relative;
      margin: 8px auto 18px;
      width: 100%;
      max-width: 350px;
    }
    .lego-castle-svg {
      width: min(350px, 100%);
      height: 150px;
      display: block;
      margin: 0 auto;
      overflow: visible;
    }
    .lego-castle-svg .lego-block use {
      stroke: rgba(255,255,255,0.2);
      stroke-width: 1;
      filter: drop-shadow(0 7px 8px rgba(0,0,0,0.18));
    }
    .lego-castle-svg .fill-a { fill: url(#godoBrickA); }
    .lego-castle-svg .fill-b { fill: url(#godoBrickB); }
    .lego-castle-svg .fill-c { fill: url(#godoBrickC); }
    .lego-castle-svg .lego-shadow { fill: rgba(2,6,23,0.34); }
    .lego-castle-svg .lego-door,
    .lego-castle-svg .lego-window {
      fill: #0a1d4c;
      stroke: rgba(147,197,253,0.32);
      stroke-width: 1;
    }
    .sand-scene {
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 300px;
      height: 140px;
      transform: translateX(-50%);
    }
    .sand-mound {
      position: absolute;
      left: 90px;
      right: 90px;
      bottom: 38px;
      height: 68px;
      background: linear-gradient(180deg, #fde68a 0%, #d97706 100%);
      clip-path: polygon(50% 0, 100% 100%, 0 100%);
      opacity: 0.92;
      z-index: 2;
    }
    .sand-wall {
      position: absolute;
      left: 70px;
      right: 70px;
      bottom: 26px;
      height: 46px;
      background: linear-gradient(180deg, #fcd34d 0%, #b45309 100%);
      border-radius: 8px 8px 4px 4px;
      opacity: 0.9;
      z-index: 1;
    }
    .sand-wall::before {
      content: '';
      position: absolute;
      left: 12px;
      right: 12px;
      top: -13px;
      height: 14px;
      background: repeating-linear-gradient(90deg, #fde68a 0 13px, transparent 13px 20px);
      border-radius: 3px 3px 0 0;
    }
    .sand-door {
      position: absolute;
      left: 50%;
      bottom: 26px;
      width: 32px;
      height: 36px;
      transform: translateX(-50%);
      background: rgba(120,53,15,0.55);
      border-radius: 18px 18px 4px 4px;
      z-index: 4;
    }
    .sand-tower {
      position: absolute;
      bottom: 26px;
      width: 58px;
      height: 92px;
      background: linear-gradient(180deg, #fde68a 0%, #d97706 100%);
      border-radius: 13px 13px 5px 5px;
      opacity: 0.95;
      z-index: 3;
    }
    .sand-tower::before {
      content: '';
      position: absolute;
      left: 8px;
      right: 8px;
      top: -14px;
      height: 16px;
      background: repeating-linear-gradient(90deg, #fde68a 0 10px, transparent 10px 15px);
      border-radius: 3px 3px 0 0;
    }
    .sand-tower.left { left: 42px; transform: rotate(-4deg); }
    .sand-tower.right { right: 42px; transform: rotate(5deg); }
    .sand-flag {
      position: absolute;
      left: 154px;
      top: 4px;
      width: 3px;
      height: 42px;
      background: rgba(255,255,255,0.7);
      z-index: 5;
    }
    .sand-flag::after {
      content: '';
      position: absolute;
      left: 3px;
      top: 4px;
      width: 30px;
      height: 18px;
      background: #f87171;
      clip-path: polygon(0 0, 100% 50%, 0 100%);
    }
    .wave {
      position: absolute;
      left: -10px;
      right: -10px;
      bottom: 0;
      height: 34px;
      background: linear-gradient(180deg, rgba(147,197,253,0.28), rgba(59,130,246,0.45));
      border-radius: 100% 100% 0 0;
      z-index: 6;
    }
    .castle-card p {
      font-size: 14px;
      line-height: 1.55;
      color: #cbd5e1;
    }
    .castle-card strong { color: #f8fafc; }
    .castle-points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }
    .castle-chip {
      font-size: 11px;
      font-weight: 700;
      color: #bfdbfe;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 6px 10px;
    }
    .castle-card.sand .castle-chip { color: #fde68a; }

    /* ─── CHECK LIST ─────────────────────────────── */
    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: left;
    }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: #e2e8f0;
      line-height: 1.5;
    }
    .check-list li .ic {
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 15px;
    }
    .check-list li .ic.green { color: var(--green); }
    .check-list li .ic.red   { color: #f87171; }

    /* ─── TABLE ──────────────────────────────────── */
    .slide-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      max-width: 900px;
    }
    .slide-table th, .slide-table td {
      padding: 12px 18px;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .slide-table th {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--slate-lt);
      background: rgba(255,255,255,0.03);
    }
    .slide-table th.hl-col { color: #93c5fd; background: rgba(26,79,214,0.12); }
    .slide-table td { color: #cbd5e1; font-weight: 500; }
    .slide-table td.hl-col { color: #bfdbfe; font-weight: 700; background: rgba(26,79,214,0.08); }
    .slide-table .yes  { color: var(--green); font-size: 17px; }
    .slide-table .no   { color: #f87171; font-size: 17px; }
    .slide-table .part { color: #fbbf24; font-size: 15px; font-weight: 700; }

    /* ─── STAT BLOCKS ────────────────────────────── */
    .stat-block {
      text-align: center;
      padding: 24px 20px;
    }
    .stat-num {
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 800;
      color: var(--blue-lt);
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 13px;
      font-weight: 600;
      color: #e2e8f0;
      margin-bottom: 8px;
    }
    .stat-sub {
      font-size: 12px;
      color: var(--slate-lt);
      line-height: 1.5;
    }

    /* ─── STEP BLOCKS ────────────────────────────── */
    .steps-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      width: 100%;
      max-width: 900px;
      position: relative;
    }
    .steps-row::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(16.66% + 12px);
      right: calc(16.66% + 12px);
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--blue) 50%, transparent);
      z-index: 0;
    }
    .step-block {
      text-align: center;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 56px; height: 56px;
      background: var(--navy-2);
      border: 2px solid var(--blue);
      color: var(--blue-lt);
      font-size: 18px;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .step-block h3 {
      font-size: 15px;
      font-weight: 700;
      color: #f1f5f9;
      margin-bottom: 10px;
    }
    .step-block p {
      font-size: 13px;
      color: var(--slate-lt);
      line-height: 1.6;
    }

    /* ─── QUOTE BLOCK ────────────────────────────── */
    .quote-block {
      border-left: 3px solid var(--blue);
      padding: 16px 20px;
      margin-bottom: 16px;
      background: rgba(26,79,214,0.07);
      border-radius: 0 10px 10px 0;
      text-align: left;
    }
    .quote-block p {
      font-size: 14px;
      font-style: italic;
      color: #cbd5e1;
      line-height: 1.65;
      margin-bottom: 8px;
    }
    .quote-block .source {
      font-size: 12px;
      font-weight: 600;
      color: var(--blue-lt);
      font-style: normal;
    }

    /* ─── GAP VISUAL ─────────────────────────────── */
    .gap-visual {
      display: flex;
      align-items: stretch;
      gap: 0;
      width: 100%;
      max-width: 800px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      overflow: hidden;
    }
    .gap-col {
      flex: 1;
      padding: 28px 24px;
      text-align: center;
    }
    .gap-col.left  { background: rgba(220,38,38,0.08); border-right: 1px solid rgba(255,255,255,0.06); }
    .gap-col.mid   { background: rgba(26,79,214,0.18); border-right: 1px solid rgba(255,255,255,0.06); flex: 0.8; }
    .gap-col.right { background: rgba(217,119,6,0.08); }
    .gap-col .gc-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .gap-col.left  .gc-label { color: #f87171; }
    .gap-col.mid   .gc-label { color: #93c5fd; }
    .gap-col.right .gc-label { color: #fbbf24; }
    .gap-col .gc-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .gap-col.left  .gc-title { color: #fca5a5; }
    .gap-col.mid   .gc-title { color: #bfdbfe; }
    .gap-col.right .gc-title { color: #fde68a; }
    .gap-col p {
      font-size: 12px;
      color: var(--slate-lt);
      line-height: 1.5;
    }

    /* ─── COMPLIANCE GRID ────────────────────────── */
    .compliance-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      max-width: 760px;
      width: 100%;
    }
    .cred-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
    }
    .cred-icon {
      width: 32px; height: 32px;
      background: rgba(26,79,214,0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }
    .cred-text h4 {
      font-size: 13px;
      font-weight: 700;
      color: #f1f5f9;
      margin-bottom: 2px;
      text-align: left;
    }
    .cred-text p {
      font-size: 11px;
      color: var(--slate-lt);
      margin: 0;
      text-align: left;
    }

    /* ─── SLIDE CONTENT WIDTHS ───────────────────── */
    .content-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
      gap: 0;
    }
    .content-wide {
      width: 100%;
      max-width: 1040px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .slide-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .slide-header.tight { margin-bottom: 24px; }

    /* ─── TWO COLUMN LAYOUT ──────────────────────── */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      width: 100%;
      max-width: 1000px;
    }

    /* ─── CTA BUTTON ─────────────────────────────── */
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue);
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 8px;
      margin-top: 32px;
      transition: all 0.2s ease;
      text-decoration: none;
      cursor: pointer;
    }
    .cta-btn:hover {
      background: #1539b3;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(26,79,214,0.35);
    }

    /* ─── PILL TAGS ──────────────────────────────── */
    .pill {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
    }
    .pill-blue { background: rgba(26,79,214,0.15); border: 1px solid rgba(26,79,214,0.35); color: #93c5fd; }
    .pill-green { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }

    /* ─── THRESHOLD TABLE ────────────────────────── */
    .threshold-table {
      width: 100%;
      max-width: 800px;
      border-collapse: collapse;
    }
    .threshold-table th {
      padding: 12px 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(255,255,255,0.04);
      color: var(--slate-lt);
      text-align: center;
    }
    .threshold-table th.hl { color: #93c5fd; background: rgba(26,79,214,0.15); }
    .threshold-table td {
      padding: 14px 20px;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 14px;
      color: #cbd5e1;
    }
    .threshold-table td:first-child { text-align: left; font-weight: 600; color: #f1f5f9; }
    .threshold-table td.hl {
      background: rgba(26,79,214,0.08);
      color: #bfdbfe;
      font-weight: 700;
    }
    .threshold-table .strikethrough { text-decoration: line-through; color: var(--slate-lt); }

    /* ─── VERTICAL TAGS ──────────────────────────── */
    .vertical-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 24px;
    }
    .v-tag {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--slate-lt);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 8px;
      letter-spacing: 0.02em;
    }

    /* ─── RESPONSIVE ─────────────────────────────── */
    @media (max-width: 900px) {
      .cols-3, .steps-row { grid-template-columns: 1fr; }
      .steps-row::before { display: none; }
      .solution-castles { grid-template-columns: 1fr; }
      .castle-card { min-height: auto; }
      .castle-visual { height: 120px; margin-bottom: 12px; }
      .lego-castle-svg { height: 120px; }
      .sand-scene { transform: translateX(-50%) scale(0.86); transform-origin: bottom center; }
      .cols-2, .two-col  { grid-template-columns: 1fr; }
      .compliance-grid   { grid-template-columns: 1fr; }
      .slide { padding: 40px 32px; }
      .gap-visual { flex-direction: column; }
    }
