/* ============================================================
   VARIABLES & RESET
   ============================================================ */

:root {
  --purple:       #6366f1;
  --purple-light: #818cf8;
  --purple-dark:  #4f46e5;
  --blue:         #3b82f6;
  --blue-light:   #60a5fa;
  --cyan:         #06b6d4;

  --bg:           #09090f;
  --bg-card:      rgba(255,255,255,0.03);
  --bg-glass:     rgba(9,9,15,0.75);

  --text:         #ffffff;
  --muted:        rgba(255,255,255,0.45);
  --subtle:       rgba(255,255,255,0.2);

  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(99,102,241,0.4);

  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:        68px;
  --max-w:        1160px;
  --r:            12px;
  --r-lg:         20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }

/* ============================================================
   ACCENT TEXT
   ============================================================ */

.g-text {
  color: var(--purple-light);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav.scrolled {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--purple-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}

/* Secondary globe button — lives inside the nav pill */
.nav-sec {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--border);
}
.nav-sec-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--subtle);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.nav-sec-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--muted);
}
.nav-sec-dropdown {
  position: absolute;
  right: 0; top: calc(100% + 10px);
  background: #0f0f16;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  min-width: 140px;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav-sec-dropdown.open { display: flex; }
.sec-lang { display: flex; align-items: center; gap: 4px; }
.sec-divider { height: 1px; background: var(--border); margin: 5px 0; }
.sec-link {
  font-size: 0.78rem;
  color: var(--subtle);
  padding: 2px 0;
  transition: color 0.15s;
}
.sec-link:hover { color: var(--text); }

/* Lang buttons */
.lang-btn {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--subtle);
  padding: 3px 6px;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
  font-family: var(--font);
}
.lang-btn:hover  { color: var(--muted); }
.lang-btn.active { color: var(--text); background: rgba(255,255,255,0.07); }
.lang-sep { font-size: 0.62rem; color: var(--subtle); user-select: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.nav-mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s;
  pointer-events: none;
}
.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: var(--text); }
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 140px 0;
  position: relative;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 24px;
  display: block;
}

/* ============================================================
   SCENE ANIMATIONS
   ============================================================ */

.scene-el {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}

.scene-el.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scene-el.exit-up {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.45s ease-in, transform 0.45s ease-in;
}

/* Stagger delays within sections */
.app-list-item:nth-child(2)  { transition-delay: 0.1s; }
.app-list-item:nth-child(3)  { transition-delay: 0.2s; }
.feat-item:nth-child(2)       { transition-delay: 0.06s; }
.feat-item:nth-child(3)       { transition-delay: 0.12s; }
.feat-item:nth-child(4)       { transition-delay: 0.18s; }
.feat-item:nth-child(5)       { transition-delay: 0.24s; }
.feat-item:nth-child(6)       { transition-delay: 0.30s; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-title {
  font-size: clamp(5.5rem, 17vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: #ffffff;
  margin-bottom: 32px;
  user-select: none;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 32px);
  font-size: clamp(0.7rem, 1.4vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 64px;
}

.hero-tagline span { white-space: nowrap; }

.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cue-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(99,102,241,0.6), transparent);
  animation: cueAnim 2s ease-in-out infinite;
}

@keyframes cueAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.25); }
}

/* ============================================================
   WHY SECTION
   ============================================================ */

.why-section { padding-top: 160px; padding-bottom: 160px; }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.why-heading {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.why-heading s {
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.25);
  color: var(--subtle);
}

.why-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 56px;
}

.why-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.wstat { display: flex; flex-direction: column; gap: 4px; }

.wstat-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}

.wstat-label { font-size: 0.78rem; color: var(--subtle); font-weight: 500; }
.wstat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   APP SECTION
   ============================================================ */

.app-section { overflow: hidden; }

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Stat chart */
.app-chart-col {
  display: flex;
  justify-content: center;
}

.chart-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px 22px;
}

.chart-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.chart-card-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.chart-card-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
}

.chart-card-value {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: color 0.15s;
  white-space: nowrap;
}
.chart-card-value small {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.tc-card { max-width: none; width: 100%; }

.tc-caption {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}
.tc-caption span:first-child {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.tc-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 22px;
}
.tc-toggle-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.tc-toggle-btn:hover { color: var(--text); }
.tc-toggle-btn.is-active { background: var(--purple); color: #fff; }

.tc-bar {
  fill: var(--purple-light);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.2s ease, d 0.5s cubic-bezier(0.22,1,0.36,1);
}
.tc-bar.is-active { opacity: 1; }

.tc-bar-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  fill: var(--subtle);
  text-anchor: middle;
  transition: fill 0.2s ease, x 0.5s cubic-bezier(0.22,1,0.36,1), y 0.5s cubic-bezier(0.22,1,0.36,1);
}
.tc-bar-label.is-active { fill: var(--purple-light); }

.chart-svg-wrap { position: relative; }

.chart-svg { width: 100%; height: 150px; display: block; overflow: visible; }

.chart-grid { stroke: var(--border); stroke-width: 1; }

.chart-area { fill: rgba(99,102,241,0.08); stroke: none; }

.chart-line {
  fill: none;
  stroke: var(--purple-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-hover-line {
  stroke: var(--subtle);
  stroke-width: 1;
  opacity: 0;
  pointer-events: none;
}

.chart-point {
  fill: var(--bg);
  stroke: var(--purple-light);
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.15s, r 0.15s;
  pointer-events: none;
}

.chart-tooltip {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -100%);
  background: #14141c;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.74rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s;
  z-index: 5;
}
.chart-tooltip .tt-day   { color: var(--muted); margin-right: 6px; }
.chart-tooltip .tt-val   { font-weight: 700; color: var(--text); }

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 2px;
}
.chart-labels span {
  font-size: 0.68rem;
  color: var(--subtle);
  transition: color 0.15s;
}
.chart-labels span.active { color: var(--purple-light); }

/* App text column */
.app-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 40px;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.app-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ali-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--purple-light);
  flex-shrink: 0;
  padding-top: 3px;
  width: 20px;
}

.app-list-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.app-list-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ============================================================
   FEATURES
   ============================================================ */

.feat-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 56px;
}

.feat-list {
  display: flex;
  flex-direction: column;
}

.feat-item {
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  gap: 20px;
  align-items: start;
  padding: 28px;
  margin: 0 -28px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1),
              background 0.2s ease;
}

.feat-item:hover { background: var(--bg-card); transition-delay: 0s; }

.feat-item:first-child { border-top: 1px solid var(--border); }

.feat-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--subtle);
  letter-spacing: 0.05em;
  padding-top: 4px;
}

.feat-content { display: flex; flex-direction: column; gap: 6px; }

.feat-item h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feat-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.feat-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtle);
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s;
}
.feat-item:hover .feat-toggle { color: var(--muted); }
.feat-item.is-open .feat-toggle { color: var(--purple-light); background: rgba(99,102,241,0.12); }

.feat-chevron { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.feat-item.is-open .feat-chevron { transform: rotate(180deg); }

.feat-more-wrap {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22,1,0.36,1);
}
.feat-item.is-open .feat-more-wrap { grid-template-rows: 1fr; }

.feat-more-inner { overflow: hidden; }

.feat-more {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 14px;
  margin-left: 56px;
}

/* ============================================================
   FOMO SECTION
   ============================================================ */

.fomo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fomo-heading {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.fomo-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
}

.fomo-notifs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notif-card {
  display: flex;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(30px);
}

.notif-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
}

.notif-1::before { background: linear-gradient(to bottom, var(--purple), var(--blue)); }
.notif-2::before { background: linear-gradient(to bottom, #f59e0b, #ef4444); }
.notif-3::before { background: linear-gradient(to bottom, var(--blue), var(--cyan)); }

.fomo-notifs.animate .notif-card {
  animation: notifIn 0.55s cubic-bezier(0.22,1,0.36,1) both;
}
.fomo-notifs.animate .notif-1 { animation-delay: 0.05s; }
.fomo-notifs.animate .notif-2 { animation-delay: 0.22s; }
.fomo-notifs.animate .notif-3 { animation-delay: 0.38s; }

@keyframes notifIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.notif-app-icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 34px; height: 34px;
  background: rgba(99,102,241,0.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

.notif-body-inner { flex: 1; min-width: 0; }
.notif-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 3px;
}
.notif-app-name { font-size: 0.68rem; font-weight: 700; color: var(--purple-light); }
.notif-time     { font-size: 0.62rem; color: var(--subtle); }
.notif-title    { font-size: 0.82rem; font-weight: 700; margin-bottom: 3px; line-height: 1.3; }
.notif-text     { font-size: 0.74rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   CTA / DOWNLOAD
   ============================================================ */

.cta-section { padding: 100px 0 140px; }

.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-heading {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #0a0a10;
  padding: 13px 26px;
  border-radius: var(--r);
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-store i { font-size: 1.7rem; }
.btn-store > div { display: flex; flex-direction: column; text-align: left; }
.store-small { font-size: 0.6rem; font-weight: 500; color: rgba(0,0,0,0.5); line-height: 1; }
.store-big   { font-size: 1rem; font-weight: 700; line-height: 1.4; }

.btn-store:hover {
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.72rem;
  color: var(--subtle);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 28px;
  position: relative;
  z-index: 1;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.brand-name { font-size: 0.95rem; font-weight: 700; }
.footer-tagline { font-size: 0.7rem; color: var(--subtle); margin-top: 2px; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social a {
  color: var(--subtle);
  display: flex;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover { color: var(--text); transform: translateY(-2px); }

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--subtle);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-sec { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right { padding: 6px; }

  .app-grid { grid-template-columns: 1fr; gap: 56px; }
  .app-chart-col { order: -1; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }

  .fomo-grid { grid-template-columns: 1fr; gap: 48px; }

  .feat-item { grid-template-columns: 28px 1fr 22px; }
  .feat-more { margin-left: 48px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 0 18px; }
  .section { padding: 100px 0; }

  .why-stats { gap: 24px; }

  .feat-item { grid-template-columns: 24px 1fr 20px; gap: 14px; padding: 24px 18px; margin: 0 -18px; }
  .feat-more { margin-left: 38px; }

  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-right { display: none; }
}

@media (max-width: 400px) {
  .hero-tagline { flex-direction: column; gap: 8px; }
}
