/* ============================================================
   SYNCRA LABS — Design System
   Dark, sleek, gradient-driven. Brand: #1979df → #11d9e1
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --blue: #1f86ed;
  --blue-deep: #1466d6;
  --cyan: #18d3e0;
  --cyan-bright: #12b5cf;
  --grad: linear-gradient(115deg, #1f86ed 0%, #18d3e0 100%);
  --grad-soft: linear-gradient(115deg, #2a7fe6 0%, #19cfe2 100%);

  /* Surfaces (light, cool off-white — never pure white bg) */
  --bg: #f5f7fb;
  --bg-2: #eef2f8;
  --elev-1: #ffffff;
  --elev-2: #f8fafd;
  --surface: #ffffff;
  --surface-2: #f2f6fc;

  /* Lines */
  --line: rgba(20,40,80,0.09);
  --line-2: rgba(20,40,80,0.14);
  --line-glow: rgba(31,134,237,0.34);

  /* Text (dark ink on light) */
  --ink: #0e1b2e;
  --ink-2: #43526a;
  --ink-3: #71809a;
  --ink-4: #93a0b5;

  /* Effects — soft, brand-tinted, layered */
  --glow-blue: 0 20px 50px -20px rgba(31,134,237,0.35);
  --glow-cyan: 0 20px 50px -20px rgba(24,211,224,0.30);
  --shadow-sm: 0 1px 2px rgba(16,32,64,0.04), 0 2px 6px rgba(16,32,64,0.05);
  --shadow-md: 0 2px 6px rgba(16,32,64,0.05), 0 12px 28px -10px rgba(20,60,120,0.14);
  --shadow-lg: 0 6px 16px rgba(16,32,64,0.06), 0 30px 60px -24px rgba(20,70,140,0.20);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.7) inset, 0 12px 30px -18px rgba(20,60,120,0.16);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: rgba(31,134,237,0.20); color: var(--ink); }

/* ---------- Background field (fixed) ---------- */
.bg-field {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(720px 420px at 82% -6%, rgba(24,211,224,0.12), transparent 60%),
    radial-gradient(680px 460px at 6% 8%, rgba(31,134,237,0.10), transparent 62%),
    radial-gradient(900px 600px at 50% 108%, rgba(31,134,237,0.06), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(20,40,80,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,40,80,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}
#bg-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.7; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(44px, 7vw, 90px) 0; position: relative; }
.section-tight { padding: clamp(28px, 4vw, 52px) 0; }
.grid { display: grid; gap: 24px; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Type scale ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; }
.h-xl { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.02; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.h-md { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.h-sm { font-size: 1.2rem; letter-spacing: -0.01em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--ink-2); line-height: 1.55; font-weight: 400; }
.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }
p { text-wrap: pretty; }

.grad-text {
  background: linear-gradient(110deg, #0e1b2e 0%, #1f86ed 55%, #12b5cf 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.measure { max-width: 46ch; }
.measure-wide { max-width: 62ch; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-deep);
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
}
.eyebrow.no-line::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 100px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.4s var(--ease); }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 26px -10px rgba(31,134,237,0.6), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(31,134,237,0.72), inset 0 1px 0 rgba(255,255,255,0.45); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--line-glow); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md, var(--shadow-sm)); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-link { color: var(--ink); font-weight: 600; display: inline-flex; gap: 8px; align-items: center; }
.btn-link svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn-link:hover { color: #fff; }
.btn-link:hover svg { transform: translateX(4px); }
.btn-link .grad-text { transition: opacity 0.3s; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.5s, background 0.5s, box-shadow 0.5s;
  box-shadow: var(--shadow-sm);
}
.card:hover { border-color: var(--line-2); }
.card-hover:hover { transform: translateY(-5px); border-color: var(--line-glow); background: var(--surface-2); box-shadow: var(--shadow-md); }

/* gradient hairline top border on feature cards */
.card-glow::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(31,134,237,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none;
}
.card-glow:hover::before { opacity: 1; }

/* ---------- Icon badge ---------- */
.icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(31,134,237,0.18), rgba(24,211,224,0.07));
  border: 1px solid rgba(31,134,237,0.25);
  color: var(--cyan-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.icon-badge svg { width: 24px; height: 24px; }

/* ---------- Pills / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 100px;
  border: 1px solid var(--line-2); background: var(--surface);
  font-size: 0.85rem; font-weight: 600; color: var(--ink-2);
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-bright); box-shadow: 0 0 10px var(--cyan); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent; padding: 4px 0;
}
.site-header.scrolled {
  background: rgba(247,249,252,0.80); backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line); padding: 8px 0; box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-lockup { display: inline-flex; align-items: center; gap: 11px; }
.logo-lockup img { height: 42px; width: auto; }
.logo-lockup .wm { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; line-height: 1; }
.logo-lockup .wm .t1 { font-size: 1.28rem; color: var(--ink); }
.logo-lockup .wm .t2 { font-size: 1.28rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-lockup .wm small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.5rem; letter-spacing: 0.32em; color: var(--ink-3); margin-top: 3px; }
.footer-logo img { height: 54px; }
.footer-logo .wm .t1, .footer-logo .wm .t2 { font-size: 1.6rem; }
.footer-logo .wm small { font-size: 0.58rem; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.94rem; font-weight: 500; color: var(--ink-2);
  padding: 9px 15px; border-radius: 100px; position: relative;
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--cyan-bright);
  box-shadow: 0 0 8px var(--cyan);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line-2); }

/* ---------- Dropdown nav ---------- */
.nav-item { position: relative; }
.nav-parent { display: inline-flex; align-items: center; gap: 5px; font-size: 0.94rem; font-weight: 500; color: var(--ink-2); padding: 9px 15px; border-radius: 100px; cursor: default; transition: color 0.3s; user-select: none; }
.nav-parent:hover, .nav-item:hover .nav-parent { color: var(--ink); }
.nav-parent.active { color: var(--ink); }
.nav-parent.active::after { content: ''; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--cyan-bright); box-shadow: 0 0 8px var(--cyan); }
.nav-caret { width: 14px; height: 14px; opacity: 0.5; transition: transform 0.3s var(--ease), opacity 0.3s; flex-shrink: 0; }
.nav-item:hover .nav-caret { transform: rotate(180deg); opacity: 1; }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translate(-50%, 6px);
  min-width: 280px; background: rgba(255,255,255,0.98); backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 7px; opacity: 0; pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20,40,80,0.03) inset;
}
.nav-dropdown::before {
  content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 10px;
}
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px; border-radius: 9px;
  font-size: 0.88rem; color: var(--ink-2);
  transition: color 0.25s, background 0.25s;
}
.nav-dropdown a:hover { color: var(--ink); background: var(--surface-2); }
.nav-dropdown a.active { color: var(--ink); background: var(--surface); }
.nav-dropdown a span { display: block; font-weight: 600; font-size: 0.88rem; line-height: 1.2; }
.nav-dropdown a small { font-size: 0.76rem; color: var(--ink-3); font-weight: 400; line-height: 1.3; margin-top: 1px; transition: color 0.25s; }
.nav-dropdown a:hover small { color: var(--ink-2); }
.nav-dropdown-divider { height: 1px; background: var(--line); margin: 5px 7px; }
.nav-toggle span { display: block; width: 15px; height: 1.6px; background: var(--ink); margin: 3px auto; transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(4.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-4.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(247,249,252,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; gap: 6px; padding: 80px var(--gutter) var(--gutter);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; padding: 10px 0; color: var(--ink-2); border-bottom: 1px solid var(--line); transition: color 0.3s, padding-left 0.3s; }
.mobile-menu a:hover { color: var(--ink); padding-left: 10px; }
.mobile-menu a.active { color: var(--blue); padding-left: 10px; }
.mobile-menu .btn { margin-top: 20px; align-self: flex-start; font-size: 0.88rem; padding: 10px 18px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 72px 0 36px; position: relative; background: linear-gradient(180deg, transparent, rgba(31,134,237,0.04)); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; }
.footer-brand .footer-logo { margin-bottom: 18px; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; color: var(--ink-2); font-size: 0.95rem; padding: 6px 0; transition: color 0.3s, transform 0.3s; }
.footer-col a:hover { color: var(--cyan-bright); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom p { color: var(--ink-3); font-size: 0.88rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Stat ---------- */
.stat-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.03em; }
.stat-label { color: var(--ink-2); font-size: 0.96rem; margin-top: 10px; }

/* ---------- Divider glow ---------- */
.hr-glow { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--line-glow), transparent); margin: 0; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll-x 32s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.logo-word { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--ink-3); white-space: nowrap; letter-spacing: -0.01em; transition: color 0.3s; }

/* ---------- Floating animation ---------- */
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse-ring { 0% { transform: scale(0.9); opacity: 0.7; } 100% { transform: scale(2.4); opacity: 0; } }
@keyframes dash-flow { to { stroke-dashoffset: -1000; } }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* ---------- Utility ---------- */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.wrap-flex { flex-wrap: wrap; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }
.mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }
.full { width: 100%; }
.rel { position: relative; }

/* ---------- Section header block ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { font-size: 0.72rem; padding: 6px 11px; }
  .nav-cta .btn svg { width: 13px; height: 13px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn-lg { padding: 15px 26px; }
  .sec-head { margin-bottom: clamp(28px, 5vw, 48px); }
}
@media (max-width: 420px) {
  .footer-top { grid-template-columns: 1fr; }
  .logo-lockup img { height: 34px; }
  .logo-lockup .wm .t1, .logo-lockup .wm .t2 { font-size: 1.08rem; }
  .logo-lockup .wm small { display: none; }
  .card { padding: 22px; }
  .acc-head { padding: 18px 20px; font-size: 1rem; }
}

/* ---------- Page transition (handled via .reveal; body stays visible) ---------- */

/* ---------- Accordion ---------- */
.acc-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--surface); overflow: hidden; transition: border-color 0.4s, background 0.4s; }
.acc-item:hover { border-color: var(--line-2); }
.acc-item.open { border-color: var(--line-glow); background: var(--surface-2); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; text-align: left; font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--ink); letter-spacing: -0.01em; }
.acc-icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.acc-icon::before, .acc-icon::after { content: ''; position: absolute; background: var(--cyan-bright); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.4s; }
.acc-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.acc-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.acc-item.open .acc-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.acc-body-inner { padding: 0 26px 24px; color: var(--ink-2); line-height: 1.65; max-width: 64ch; }
.acc-item.open .acc-body { max-height: 420px; }

/* ---------- Tag list ---------- */
.taglist { display: flex; flex-wrap: wrap; gap: 9px; }
.tag { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); padding: 6px 13px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--line); }

/* ---------- Check list ---------- */
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-2); }
.check-ico { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 2px; background: linear-gradient(160deg, rgba(31,134,237,0.25), rgba(24,211,224,0.12)); border: 1px solid rgba(31,134,237,0.3); }
.check-ico svg { width: 12px; height: 12px; color: var(--cyan-bright); }

/* Cols helpers */
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-