/* ───────── Technera Landing — Global Styles ───────── */

:root {
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad: clamp(56px, 7vw, 96px);
  --grid-line: rgba(34, 211, 238, 0.06);
  --grid-line-dk: rgba(255, 255, 255, 0.04);
  --hairline-dk: rgba(255, 255, 255, 0.08);

  /* ───── Semantic accent layer (extends design system, not replaces) ─────
     Cyan stays the brand primary. These are functional accents used for
     flow-typing in animations: integration vs AI vs ERP vs validation vs
     structural lines. Combined, they account for <10% of visual weight. */
  --accent-primary: #22D3EE;           /* cyan — brand primary; integration flow */
  --accent-primary-soft: rgba(34, 211, 238, 0.55);
  --accent-primary-glow: rgba(34, 211, 238, 0.18);

  --accent-ai: #8B5CF6;                /* electric violet — AI, intelligent signals */
  --accent-ai-soft: rgba(139, 92, 246, 0.55);
  --accent-ai-glow: rgba(139, 92, 246, 0.20);

  --accent-erp: #F59E0B;               /* warm amber — ERP, decision points, certifications */
  --accent-erp-soft: rgba(245, 158, 11, 0.55);
  --accent-erp-glow: rgba(245, 158, 11, 0.18);

  --accent-success: #10B981;           /* emerald — QA, validation, stability */
  --accent-success-soft: rgba(16, 185, 129, 0.55);
  --accent-success-glow: rgba(16, 185, 129, 0.18);

  --accent-magenta: #D946EF;           /* soft magenta — used very sparingly, only on AI<>arch gradients */
  --accent-magenta-soft: rgba(217, 70, 239, 0.4);

  --accent-line: #CBD5E1;              /* platinum — structural lines, premium hairlines on dark */
  --accent-line-soft: rgba(203, 213, 225, 0.35);
  --accent-line-dim: rgba(203, 213, 225, 0.18);
}

html, body { background: #0B1220; }
body { color: #0B1220; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
button { font-family: inherit; }

/* ───────── Layout helpers ───────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%; box-sizing: border-box; }
.section { padding: var(--section-pad) 0; position: relative; }
.section.dark { background: #0B1220; color: #F8FAFC; }
.section.graphite { background: #0F1A2E; color: #F8FAFC; }
.section.light { background: #F8FAFC; color: #0B1220; }
.section.cloud { background: #F2F5F9; color: #0B1220; }

/* ───────── Type ───────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-primary);
}
.eyebrow .eb-dash { width: 22px; height: 1px; background: var(--accent-primary); display: inline-block; }
.eyebrow.muted, .eyebrow.muted .eb-dash { color: #64748B; background: #64748B; }
.section.dark .eyebrow.muted, .section.graphite .eyebrow.muted { color: #94A3B8; }
.section.dark .eyebrow.muted .eb-dash, .section.graphite .eyebrow.muted .eb-dash { background: #94A3B8; }

.h-display {
  font-size: clamp(34px, 6.2vw, 68px);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.025em;
  text-wrap: balance;
}
.h-section {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  text-wrap: balance;
}
.h-card {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600; line-height: 1.25; letter-spacing: -0.01em;
}
.p-lead {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65; color: #64748B; font-weight: 400;
}
.section.dark .p-lead, .section.graphite .p-lead { color: rgba(203,213,225,0.78); }
.mono { font-family: 'IBM Plex Mono', monospace; }
.mono-tag { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(34,211,238,0.7); font-weight: 500; }

.tx-cyan { color: #22D3EE; }
.tx-mute { color: #64748B; }
.tx-soft { color: rgba(203, 213, 225, 0.7); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: #22D3EE; color: #0B1220;
  box-shadow: 0 0 0 0 rgba(34,211,238,0.0), 0 1px 0 rgba(255,255,255,0.4) inset;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(255,255,255,0.35), transparent 60%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.btn-primary:hover { background: #38E3FF; box-shadow: 0 0 28px rgba(34,211,238,0.32); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: scale(0.985); }

.btn-ghost-dark {
  background: transparent; color: #F8FAFC;
  border-color: rgba(255,255,255,0.14);
}
.btn-ghost-dark:hover { border-color: rgba(34,211,238,0.5); color: #F8FAFC; background: rgba(34,211,238,0.04); }

.btn-ghost-light {
  background: transparent; color: #0B1220;
  border-color: #CBD5E1;
}
.btn-ghost-light:hover { border-color: #0B1220; background: white; }

.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }

/* ───────── Header ───────── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; display: flex; align-items: center;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  background: transparent; border-bottom: 1px solid transparent;
}
.hdr.scrolled { background: rgba(11,18,32,0.78); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom-color: var(--hairline-dk); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.hdr-logo { display: flex; align-items: center; gap: 10px; color: #F8FAFC; text-decoration: none; }
.hdr-logo-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.hdr-nav { display: flex; align-items: center; gap: 4px; }
.hdr-nav a { padding: 8px 12px; font-size: 13px; font-weight: 500; color: rgba(226,232,240,0.7); text-decoration: none; border-radius: 6px; transition: color 0.15s ease, background 0.15s ease; }
.hdr-nav a:hover { color: #F8FAFC; background: rgba(255,255,255,0.04); }
.hdr-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  color: #22D3EE !important;
  border: 1px solid rgba(34,211,238,0.35);
  margin-left: 4px;
}
.hdr-nav-cta:hover {
  background: rgba(34,211,238,0.10) !important;
  border-color: rgba(34,211,238,0.6);
  box-shadow: 0 0 18px -4px rgba(34,211,238,0.4);
}
.hdr-nav-cta-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22D3EE;
  box-shadow: 0 0 8px rgba(34,211,238,0.7);
  animation: ctaDotPulse 2.2s ease-in-out infinite;
}
@keyframes ctaDotPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.hdr-right { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: inline-flex; align-items: center; gap: 0; padding: 3px; border: 1px solid var(--hairline-dk); border-radius: 8px; background: rgba(255,255,255,0.03); }
.lang-switch button { background: transparent; border: 0; color: rgba(226,232,240,0.6); font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 6px; cursor: pointer; letter-spacing: 0.04em; font-family: 'IBM Plex Mono', monospace; transition: all 0.15s ease; }
.lang-switch button.active { background: rgba(34,211,238,0.14); color: #22D3EE; }
.lang-switch button:hover:not(.active) { color: #F8FAFC; }

.menu-toggle { display: none; background: transparent; border: 1px solid var(--hairline-dk); border-radius: 8px; width: 40px; height: 40px; align-items: center; justify-content: center; color: #F8FAFC; cursor: pointer; }

.mobile-menu { position: fixed; inset: 68px 0 0 0; background: rgba(11,18,32,0.96); backdrop-filter: blur(16px); z-index: 99; padding: 24px var(--gutter); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu a { padding: 14px 0; font-size: 18px; color: #F8FAFC; text-decoration: none; border-bottom: 1px solid var(--hairline-dk); font-weight: 500; }

/* ───────── Backgrounds ───────── */
.bg-tech-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line-dk) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-dk) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 35%, transparent 80%);
}
.bg-light-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(11,18,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}
.bg-glow-cyan {
  position: absolute; pointer-events: none; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(34,211,238,0.14) 0%, rgba(34,211,238,0) 60%);
  filter: blur(20px);
}
/* ───────── Cards ───────── */
.card {
  background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 14px; padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { border-color: rgba(34,211,238,0.55); box-shadow: 0 6px 24px -8px rgba(11,18,32,0.12); }
.card-dk {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.card-dk:hover { border-color: rgba(34,211,238,0.5); box-shadow: 0 0 32px -10px rgba(34,211,238,0.25), inset 0 1px 0 rgba(255,255,255,0.05); }

/* mono label inside cards */
.card-tag { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #64748B; margin-bottom: 12px; }
.card-dk .card-tag { color: rgba(34,211,238,0.65); }

/* corner marks for technical cards */
.corner-marks { position: relative; }
.corner-marks::before, .corner-marks::after,
.corner-marks > .cm-tl, .corner-marks > .cm-tr {
  content: ""; position: absolute; width: 10px; height: 10px;
  border-color: rgba(34,211,238,0.5); border-style: solid; border-width: 0; pointer-events: none;
}
.corner-marks::before { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.corner-marks::after { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }

/* ───────── Reveal animations ─────────
   Fail-open: content is fully visible by default. The .in class
   simply triggers a one-shot entrance animation (opacity + translate)
   when the section enters the viewport. If IO never fires (iframes,
   screenshot pipelines, preview hosts), content is still readable. */
.reveal { opacity: 1; transform: none; }
.reveal.in {
  animation: revealUp 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in.reveal-d-1 { animation-delay: 0.04s; }
.reveal.in.reveal-d-2 { animation-delay: 0.08s; }
.reveal.in.reveal-d-3 { animation-delay: 0.12s; }
.reveal.in.reveal-d-4 { animation-delay: 0.16s; }
.reveal.in.reveal-d-5 { animation-delay: 0.20s; }
.reveal.in.reveal-d-6 { animation-delay: 0.24s; }
@keyframes revealUp {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { animation: none !important; opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
}

/* ───────── WA Sticky ───────── */
#wa-sticky {
  position: fixed; right: 18px; bottom: 18px; z-index: 95;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5), 0 0 0 6px rgba(37,211,102,0.12);
  text-decoration: none; transition: transform 0.2s ease;
}
#wa-sticky:hover { transform: scale(1.06); }
#wa-sticky svg { width: 28px; height: 28px; fill: currentColor; }
#wa-sticky::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  background: rgba(37,211,102,0.25); animation: wapulse 2.4s ease-out infinite; z-index: -1;
}
@keyframes wapulse { 0% { transform: scale(0.7); opacity: 0.7; } 100% { transform: scale(1.4); opacity: 0; } }

/* ───────── Stack visual animation ───────── */
@keyframes nodePulse { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes lineDraw { 0% { stroke-dashoffset: 200; } 100% { stroke-dashoffset: 0; } }
@keyframes dataFlow { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.node-pulse { animation: nodePulse 2.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

/* ───────── Timeline ───────── */
.timeline { position: relative; }
.tl-line {
  position: absolute; left: 22px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg,
    rgba(203,213,225,0.45) 0%,
    rgba(139,92,246,0.5)  20%,
    rgba(34,211,238,0.6)  45%,
    rgba(139,92,246,0.5)  60%,
    rgba(16,185,129,0.55) 80%,
    rgba(34,211,238,0.45) 100%);
}
.tl-step { position: relative; padding-left: 64px; padding-bottom: 32px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute; left: 0; top: 0; width: 44px; height: 44px;
  border-radius: 10px; background: #0B1220; border: 1px solid rgba(34,211,238,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 600; color: #22D3EE;
  box-shadow: 0 0 24px rgba(34,211,238,0.18);
}
.section.light .tl-num { background: #FFFFFF; border-color: #22D3EE; color: #22D3EE; box-shadow: 0 0 18px rgba(34,211,238,0.18); }

/* ───────── Accordion (FAQ) ───────── */
.faq-item { border-bottom: 1px solid #E2E8F0; }
.faq-q { width: 100%; background: transparent; border: 0; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; gap: 24px; }
.faq-q-text { font-size: clamp(15px, 1.3vw, 18px); font-weight: 600; color: #0B1220; }
.faq-icon { flex-shrink: 0; transition: transform 0.25s ease; color: #64748B; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: #22D3EE; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { padding-bottom: 22px; }
.faq-a p { font-size: 15px; line-height: 1.7; color: #64748B; max-width: 720px; }

/* ───────── Bento ───────── */
.bento { display: grid; gap: 16px; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(180px, auto); }
.bento > .b-card { grid-column: span 3; padding: 24px; border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.07); transition: border-color 0.2s; position: relative; overflow: hidden; }
.bento > .b-card:hover { border-color: rgba(34,211,238,0.45); }
.bento > .b-wide { grid-column: span 4; }
.bento > .b-narrow { grid-column: span 2; }
.bento > .b-full { grid-column: span 6; }

/* ───────── Calculator console ───────── */
.console {
  background: linear-gradient(180deg, #0B1220 0%, #0E1A2D 100%);
  border: 1px solid rgba(34,211,238,0.18); border-radius: 16px;
  box-shadow: 0 30px 80px -30px rgba(34,211,238,0.18), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.console-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--hairline-dk); }
.console-dots { display: flex; gap: 6px; }
.console-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.console-body { padding: clamp(20px, 3vw, 36px); color: #F8FAFC; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  color: rgba(226,232,240,0.85); cursor: pointer; transition: all 0.15s ease;
}
.chip:hover { border-color: rgba(34,211,238,0.4); color: #F8FAFC; }
.chip.active { background: rgba(34,211,238,0.12); border-color: #22D3EE; color: #22D3EE; }

/* ───────── Footer ───────── */
.footer { background: #060B14; color: rgba(203,213,225,0.6); padding: 64px 0 24px; }
.footer a { color: rgba(203,213,225,0.6); text-decoration: none; }
.footer a:hover { color: #F8FAFC; }
.footer h5 { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(148,163,184,0.5); margin-bottom: 16px; }

/* ───────── Responsive ───────── */
@media (max-width: 960px) {
  .hdr-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento > .b-card, .bento > .b-wide, .bento > .b-narrow, .bento > .b-full { grid-column: span 2; }
}
@media (max-width: 640px) {
  #wa-sticky { right: 14px; bottom: 88px; width: 50px; height: 50px; }
  #wa-sticky svg { width: 26px; height: 26px; }
  .bento { grid-template-columns: 1fr; }
  .bento > .b-card, .bento > .b-wide, .bento > .b-narrow, .bento > .b-full { grid-column: span 1; }
}

/* Hide the header text-CTA on smaller screens — the hamburger menu and
   the bottom sticky bar both carry the primary CTA, so it's redundant
   and crowds the bar at phone widths. */
@media (max-width: 720px) {
  .hdr-cta { display: none; }
}

/* Pressure map: stack vertically on narrow screens, arrows point down */
@media (max-width: 680px) {
  .pressure-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    justify-items: stretch;
  }
  .pressure-arrow { transform: rotate(90deg); justify-self: center; margin: 2px 0; }
}

/* AI delivery layers: 5 → fewer columns so labels don't clip */
@media (max-width: 560px) {
  .ai-layer-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Sticky mobile CTA bar */
.mob-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none; gap: 8px;
  background: rgba(11,18,32,0.94); backdrop-filter: blur(14px);
  border: 1px solid rgba(34,211,238,0.2); border-radius: 14px; padding: 10px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
}
.mob-cta a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; border-radius: 10px; font-size: 13px; font-weight: 600; text-decoration: none; }
.mob-cta .m-wa { background: #25D366; color: white; }
.mob-cta .m-book { background: #22D3EE; color: #0B1220; }
@media (max-width: 640px) {
  .mob-cta { display: flex; }
  #wa-sticky { display: none; }
  /* Leave room so the fixed bottom CTA bar never covers footer content */
  body { padding-bottom: 84px; }
}

/* ───────── Phone polish ───────── */
@media (max-width: 560px) {
  :root { --section-pad: clamp(48px, 12vw, 72px); }
  /* Hero stats: keep 3 across but tighten so they never overflow */
  .hero-stats { gap: 18px !important; }
  .hero-stats .hs-v { font-size: 24px !important; }
  /* Section eyebrows + leads a touch tighter */
  .h-display { font-size: clamp(30px, 9vw, 44px); }
  /* Console calculator: comfortable tap targets, full-width chips row */
  .console-body { padding: 18px 16px; }
  .chip { padding: 10px 14px; font-size: 13px; }
  /* Service include lists go single column on very small screens */
  .svc-includes { grid-template-columns: 1fr !important; }
  /* Social proof carousels: tighter on phone */
  .sp-logos > div { padding: 0 22px !important; }
  .sp-logo-img { height: 26px !important; }
  .sp-sectors > div { font-size: 11px !important; padding: 8px 16px !important; }
}

/* ───────── Responsive section grids ───────── */
.problem-cards-grid, .cases-grid, .trust-grid { display: grid; }
@media (max-width: 1040px) {
  .problem-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .cases-grid         { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-grid         { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .problem-cards-grid, .cases-grid, .trust-grid { grid-template-columns: 1fr !important; }
}

/* Reduce in-section vertical margins on top sections so consecutive
   alternating sections feel like one continuous scroll, not chapters. */
.section + .section { /* no extra spacing — section padding alone is enough */ }

@media (max-width: 720px) {
  .trust-cert-row { grid-template-columns: auto 1fr !important; }
  .trust-cert-row > *:last-child { grid-column: 1 / -1; }
}

/* utility */

.flex { display: flex; }
.fcol { display: flex; flex-direction: column; }
.grid { display: grid; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-5 { gap: 20px; } .gap-6 { gap: 24px; } .gap-8 { gap: 32px; }
.mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-10 { margin-top: 40px; } .mt-14 { margin-top: 56px; }
.mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; } .mb-10 { margin-bottom: 40px; } .mb-14 { margin-bottom: 56px; }
.text-center { text-align: center; }
