/* =====================================================
   VERIS SHARED CSS
   Extracted from homepage. Shared across all subpages.
===================================================== */

/* TOKENS */
:root {
  --black:   #000000;
  --bg:      #05080f;
  --bg-2:    #080c18;
  --bg-3:    #0d1224;
  --surf:    rgba(255,255,255,0.032);
  --bdr:     rgba(255,255,255,0.068);
  --bdr-2:   rgba(255,255,255,0.10);
  --amber:   #f5a623;
  --amber-d: #d4880d;
  --a10:     rgba(245,166,35,0.10);
  --a20:     rgba(245,166,35,0.20);
  --green:   #22c55e;
  --red:     #ef4444;
  --blue:    #60a5fa;
  --purple:  #a78bfa;
  --t1:      rgba(255,255,255,0.92);
  --t2:      rgba(255,255,255,0.54);
  --t3:      rgba(255,255,255,0.28);
  --t4:      rgba(255,255,255,0.12);
  --font:    'Figtree', system-ui, sans-serif;
  --mono:    'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-family: var(--font); -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { background: var(--black); color: var(--t1); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
img { display: block; }

.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* =====================================================
   NAV
===================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.96) 52%,
    rgba(255,255,255,0.55) 76%,
    rgba(255,255,255,0.00) 100%
  );
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: none;
  transition: background 0.3s ease;
}
nav.nav--scrolled {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.98) 52%,
    rgba(255,255,255,0.65) 76%,
    rgba(255,255,255,0.00) 100%
  );
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
}
.nav-row {
  height: 112px;
  display: flex; align-items: flex-start;
  padding-top: 28px; gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  flex: 0 0 auto; text-decoration: none;
}
.nav-logo-icon { width: 30px; height: 30px; display: block; flex-shrink: 0; }
.nav-logo-word {
  font-size: 0.95rem; font-weight: 800; color: #0c0a07;
  letter-spacing: 0.11em; text-transform: uppercase;
}
.nav-center {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 2px;
}
.nav-center-inner {
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-center a {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(0,0,0,0.52);
  padding: 6px 14px; border-radius: 8px;
  transition: color 0.14s, background 0.14s;
  white-space: nowrap;
}
.nav-center a:hover {
  color: #0c0a07;
  background: rgba(0,0,0,0.04);
}
.nav-right {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 7px;
}
.nav-divider {
  width: 1px; height: 16px;
  background: rgba(0,0,0,0.09); margin: 0 3px;
}
.nav-btn-outline {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.80rem; font-weight: 600;
  color: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,0,0.11);
  border-radius: 9px; padding: 6px 14px;
  background: rgba(0,0,0,0.025);
  transition: all 0.14s;
}
.nav-btn-outline:hover {
  border-color: rgba(0,0,0,0.20);
  color: #0c0a07;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700;
  background: linear-gradient(135deg, #f7b030 0%, #e8860e 100%);
  color: #0c0a07;
  border-radius: 10px; padding: 7px 17px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 3px 14px rgba(245,166,35,0.35);
  transition: all 0.18s cubic-bezier(0.22,1,0.36,1);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 8px 28px rgba(245,166,35,0.48);
}

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-drop-trigger {
  font-size: 0.85rem; font-weight: 500; color: rgba(0,0,0,0.52);
  padding: 6px 14px; border-radius: 8px; transition: color 0.14s, background 0.14s;
  white-space: nowrap; cursor: pointer; display: inline-flex; align-items: center; gap: 4px;
}
.nav-drop-trigger:hover { color: #0c0a07; background: rgba(0,0,0,0.04); }
.nav-drop-trigger svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 260px; padding: 12px 0; margin-top: 6px;
  background: rgba(255,255,255,0.98); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  opacity: 0; visibility: hidden; transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown:hover .nav-drop-panel {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-drop-panel a {
  display: block; padding: 8px 20px; font-size: 0.83rem; font-weight: 500;
  color: rgba(0,0,0,0.58); transition: color 0.12s, background 0.12s;
}
.nav-drop-panel a:hover { color: #0c0a07; background: rgba(0,0,0,0.03); }
.nav-drop-label {
  display: block; padding: 6px 20px 4px; font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(0,0,0,0.28);
}
.nav-drop-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 6px 0; }

/* Language Switcher */
.lang-sw { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 0.80rem; font-weight: 700;
  color: rgba(0,0,0,0.52); background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.10); border-radius: 9px;
  padding: 6px 10px; cursor: pointer; letter-spacing: 0.02em;
  transition: all 0.14s;
}
.lang-btn:hover { background: rgba(0,0,0,0.07); color: #0c0a07; border-color: rgba(0,0,0,0.18); }
.lang-btn-flag { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.lang-btn-chevron { flex-shrink: 0; transition: transform 0.2s; opacity: 0.5; }
.lang-sw.open .lang-btn-chevron { transform: rotate(180deg); }
.lang-drop {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: rgba(255,255,255,0.98); border: 1px solid rgba(0,0,0,0.09);
  border-radius: 12px; padding: 6px; min-width: 154px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.13), 0 1px 6px rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
  opacity: 0; transform: translateY(-6px) scale(0.97); pointer-events: none;
  transition: opacity 0.18s, transform 0.18s; z-index: 600;
}
.lang-sw.open .lang-drop { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-opt {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 11px; border-radius: 8px; cursor: pointer;
  font-size: 0.83rem; font-weight: 500; color: rgba(0,0,0,0.58);
  transition: background 0.12s, color 0.12s;
}
.lang-opt:hover { background: rgba(0,0,0,0.05); color: #0c0a07; }
.lang-opt.active { color: #0c0a07; font-weight: 700; }
.lang-opt-flag { font-size: 1.05rem; line-height: 1; flex-shrink: 0; }
.lang-opt-name { flex: 1; }
.lang-opt-check { color: #f5a623; display: none; flex-shrink: 0; }
.lang-opt.active .lang-opt-check { display: block; }

/* =====================================================
   SECTION BASES
===================================================== */
.sec { padding: 88px 0; }
.sec-dark { padding: 88px 0; background: var(--black); }
.sec-mid { padding: 88px 0; background: var(--bg); }
.sec-alt { padding: 88px 0; background: var(--bg-2); }

/* Section headers */
.eyebrow {
  display: block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--amber);
  margin-bottom: 10px; opacity: 0.7;
}
.sec-title {
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
  font-weight: 900; line-height: 1.10; letter-spacing: -0.038em; color: #fff;
}
.sec-sub {
  font-size: 1.02rem; color: var(--t2); line-height: 1.76;
  margin-top: 14px; max-width: none;
}

/* BUTTONS */
.btn-solid {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; font-weight: 700;
  background: var(--amber); color: #000;
  border-radius: 10px; padding: 13px 26px;
  transition: all 0.16s cubic-bezier(0.22,1,0.36,1);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,166,35,0.38); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 600;
  background: rgba(255,255,255,0.046); color: var(--t2);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; padding: 13px 22px;
  transition: all 0.14s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); color: var(--t1); }

/* =====================================================
   LIGHT SECTIONS
===================================================== */
.sec-light { padding: 88px 0; background: #f7f4ee; }
.sec-light .eyebrow { color: rgba(0,0,0,0.40); }
.sec-light .sec-title { color: #0c0a07; }
.sec-light .sec-sub { color: #7a7470; }

/* Stat cards (light sections) */
.stat-stack { display: flex; flex-direction: column; gap: 14px; }
.stat-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 1px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.07);
}
.stat-num {
  font-size: 4rem; font-weight: 900; letter-spacing: -0.055em;
  color: #0c0a07; line-height: 1;
}
.stat-unit { font-size: 2rem; color: var(--amber); font-weight: 900; }
.stat-desc { font-size: 0.81rem; color: #7a7470; line-height: 1.52; margin-top: 10px; }

/* Card grid for light sections */
.card-grid { display: grid; gap: 16px; margin-top: 48px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.lt-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 1px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.07);
}
.lt-card-title { font-size: 0.94rem; font-weight: 800; color: #0c0a07; margin-bottom: 9px; letter-spacing: -0.02em; }
.lt-card-desc { font-size: 0.82rem; color: #7a7470; line-height: 1.60; }

/* Card grid for dark sections */
.dk-card {
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.068);
  border-radius: 16px;
  padding: 28px 24px;
}
.dk-card-title { font-size: 0.94rem; font-weight: 800; color: #fff; margin-bottom: 9px; letter-spacing: -0.02em; }
.dk-card-desc { font-size: 0.82rem; color: var(--t2); line-height: 1.60; }

/* Icon box */
.card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon-amber { background: var(--amber); }
.card-icon-dark { background: #0c0a07; }

/* Two-column layout */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

/* Steps */
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: #0c0a07; color: var(--amber);
  font-size: 0.94rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

/* Chain grid (5x2) */
.chain-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-top: 48px;
}
.chain-item {
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.068);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  font-size: 0.82rem; font-weight: 600; color: var(--t2);
  transition: border-color 0.14s;
}
.chain-item:hover { border-color: rgba(245,166,35,0.3); }
.chain-item-active { border-color: rgba(245,166,35,0.4); color: var(--amber); }

/* =====================================================
   CTA SECTION
===================================================== */
.sec-cta {
  padding: 108px 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.055);
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 900; letter-spacing: -0.048em; line-height: 1.04;
  color: #fff; margin-bottom: 16px;
}
.cta-title em { color: var(--amber); font-style: normal; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.44); line-height: 1.70; margin-bottom: 36px; }

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: #f9f8f5; border-top: 1px solid rgba(0,0,0,0.08);
  padding: 72px 0 0; position: relative; z-index: 10;
}
.ft-main {
  display: grid; grid-template-columns: 260px 1fr; gap: 64px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ft-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.ft-logo-icon { width: 28px; height: 28px; display: block; flex-shrink: 0; }
.ft-logo-word { font-size: 0.94rem; font-weight: 800; color: #0c0a07; letter-spacing: 0.12em; text-transform: uppercase; }
.ft-tagline { font-size: 0.82rem; color: rgba(0,0,0,0.44); line-height: 1.68; margin-bottom: 20px; max-width: 210px; }
.ft-fluxa-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; color: rgba(0,0,0,0.38); }
.ft-fluxa-tag strong { color: rgba(0,0,0,0.60); font-weight: 700; }
.ft-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ft-col-title { font-size: 0.67rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.11em; color: rgba(0,0,0,0.35); margin-bottom: 16px; }
.ft-col a { display: block; font-size: 0.82rem; color: rgba(0,0,0,0.52); margin-bottom: 10px; transition: color 0.13s; }
.ft-col a:hover { color: #0c0a07; }
.ft-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: rgba(0,0,0,0.52); margin-bottom: 10px; }
.ft-contact-item svg { flex-shrink: 0; margin-top: 2px; color: rgba(0,0,0,0.35); }
.ft-social { display: flex; gap: 8px; margin-top: 12px; }
.ft-social-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600; color: rgba(0,0,0,0.42);
  padding: 5px 10px; border-radius: 7px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.13s;
}
.ft-social-btn:hover { color: #0c0a07; border-color: rgba(0,0,0,0.18); }
.ft-badges-row { display: flex; gap: 6px; flex-wrap: wrap; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.ft-badge { font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(0,0,0,0.30); border: 1px solid rgba(0,0,0,0.09); border-radius: 5px; padding: 3px 8px; }
.ft-disclaimer { padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.ft-disclaimer p { font-size: 0.72rem; color: rgba(0,0,0,0.30); line-height: 1.72; }
.ft-disclaimer strong { color: rgba(0,0,0,0.42); font-weight: 700; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 20px 0; }
.ft-copy { font-size: 0.72rem; color: rgba(0,0,0,0.28); }
.ft-copy a { color: rgba(0,0,0,0.36); transition: color 0.13s; }
.ft-copy a:hover { color: rgba(0,0,0,0.65); }
.ft-tagline-right { font-size: 0.72rem; color: rgba(0,0,0,0.22); font-style: italic; letter-spacing: 0.01em; }

/* =====================================================
   COOKIE BANNER
===================================================== */
.ck-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 48px); max-width: 780px;
  background: #0f1520; border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px; box-shadow: 0 8px 48px rgba(0,0,0,0.55);
  padding: 20px 24px; transition: opacity 0.25s, transform 0.25s;
}
.ck-banner.ck-hidden {
  opacity: 0; transform: translateX(-50%) translateY(16px); pointer-events: none;
}
.ck-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ck-icon { flex-shrink: 0; }
.ck-text { flex: 1; min-width: 200px; }
.ck-title { font-size: 0.88rem; font-weight: 700; color: #fff; display: block; margin-bottom: 4px; }
.ck-desc { font-size: 0.78rem; color: rgba(255,255,255,0.44); line-height: 1.55; margin: 0; }
.ck-desc a { color: #f5a623; text-decoration: none; }
.ck-desc a:hover { text-decoration: underline; }
.ck-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.ck-btn {
  font-family: var(--font); font-size: 0.80rem; font-weight: 600;
  padding: 8px 16px; border-radius: 8px; cursor: pointer; border: none;
  transition: all 0.13s; white-space: nowrap;
}
.ck-customize {
  background: transparent; color: rgba(255,255,255,0.50);
  border: 1px solid rgba(255,255,255,0.12);
}
.ck-customize:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.80); }
.ck-reject {
  background: transparent; color: rgba(255,255,255,0.50);
  border: 1px solid rgba(255,255,255,0.12);
}
.ck-reject:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.80); }
.ck-accept {
  background: #f5a623; color: #0c0a07; border: 1px solid transparent;
}
.ck-accept:hover { background: #f7b84b; }

/* Cookie Modal */
.ck-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.ck-modal-overlay[hidden] { display: none; }
.ck-modal {
  background: #0f1520; border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px; width: 100%; max-width: 440px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.60);
}
.ck-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ck-modal-header strong { font-size: 0.92rem; font-weight: 700; color: #fff; }
.ck-modal-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.36); padding: 4px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.13s;
}
.ck-modal-close:hover { color: rgba(255,255,255,0.80); }
.ck-modal-body { padding: 8px 24px; }
.ck-toggle-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ck-toggle-row:last-child { border-bottom: none; }
.ck-toggle-name { font-size: 0.84rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.ck-toggle-desc { font-size: 0.76rem; color: rgba(255,255,255,0.38); line-height: 1.55; }
.ck-toggle {
  flex-shrink: 0; width: 40px; height: 22px; border-radius: 11px;
  background: rgba(255,255,255,0.12); position: relative;
  cursor: pointer; transition: background 0.2s; margin-top: 2px;
  outline: none;
}
.ck-toggle:focus-visible { box-shadow: 0 0 0 2px #f5a623; }
.ck-toggle--on { background: #f5a623; }
.ck-toggle--locked { opacity: 0.5; cursor: not-allowed; }
.ck-toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: transform 0.2s;
}
.ck-toggle--on .ck-toggle-thumb { transform: translateX(18px); }
.ck-modal-footer {
  display: flex; gap: 8px; justify-content: flex-end;
  padding: 16px 24px 20px; border-top: 1px solid rgba(255,255,255,0.07);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1000px) {
  .nav-center { display: none; }
  .ft-main { grid-template-columns: 1fr; gap: 40px; }
  .ft-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .two-col { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .chain-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .sec, .sec-dark, .sec-mid, .sec-alt, .sec-light, .sec-cta { padding: 64px 0; }
}
@media (max-width: 680px) {
  .ft-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .chain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ck-banner { bottom: 12px; padding: 16px; }
  .ck-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ck-actions { width: 100%; }
  .ck-btn { flex: 1; text-align: center; }
}
