/* ============================================================
   StrangeLoop — Global Stylesheet
   strangeloop.engineering
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #07080a;
  --bg-surface:   #0d0f12;
  --bg-raised:    #111418;
  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(0,229,255,0.25);
  --accent:       #00e5ff;
  --accent-dim:   rgba(0,229,255,0.12);
  --accent-glow:  rgba(0,229,255,0.06);
  --amber:        #ffaa00;
  --amber-dim:    rgba(255,170,0,0.12);
  --text:         #edf0f3;
  --text-muted:   #6b7280;
  --text-dim:     #3d4450;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;
  --radius:       2px;
  --radius-sm:    1px;
  --transition:   150ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  /* Subtle grid overlay */
  background-image:
    linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition);
}
a:hover { opacity: 0.75; }

img { max-width: 100%; display: block; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.mono {
  font-family: var(--font-mono);
  font-size: 0.8em;
  letter-spacing: 0.04em;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-amber  { color: var(--amber); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,8,10,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

.logo-bars {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
  opacity: 1;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  transition: all 0.2s;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
}

.btn--primary {
  background: var(--accent);
  color: #07080a;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: #33eaff;
  border-color: #33eaff;
  opacity: 1;
  color: #07080a;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn--ghost:hover {
  color: var(--text);
  opacity: 1;
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: var(--radius-sm);
}

.badge--cyan {
  color: var(--accent);
  border-color: var(--border-accent);
  background: var(--accent-dim);
}

.badge--amber {
  color: var(--amber);
  border-color: rgba(255,170,0,0.3);
  background: var(--amber-dim);
}

.badge--dot::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition);
}

.card:hover {
  border-color: var(--border-accent);
}

.card--raised {
  background: var(--bg-raised);
}

/* ── Dividers ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  margin-bottom: 60px;
}

.section-header .label {
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Grid ─────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 1px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid-gap {
  display: grid;
  gap: 24px;
}
.grid-gap--3 { grid-template-columns: repeat(3, 1fr); }
.grid-gap--2 { grid-template-columns: repeat(2, 1fr); }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#spectrum-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── Capability Pillars ───────────────────────────────────── */
.pillar {
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:hover::before { opacity: 1; }

.pillar__number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.pillar__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.pillar h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.pillar p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.stats-bar__inner {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 32px 40px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item__value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__value span {
  color: var(--accent);
}

.stat-item__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Tech Architecture ────────────────────────────────────── */
.arch-diagram {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
}

.arch-layer {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1px;
}

.arch-node {
  flex: 1;
  padding: 20px 24px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.arch-node--accent {
  border-color: var(--border-accent);
  background: var(--accent-dim);
}

.arch-node__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.arch-node__title {
  font-size: 0.85rem;
  font-weight: 600;
}

.arch-arrow {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.7rem;
}

/* ── Use Case Cards ───────────────────────────────────────── */
.usecase-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.usecase-card:hover {
  border-color: var(--border-accent);
}

.usecase-card__header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.usecase-card__icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.usecase-card__body {
  padding: 28px 32px;
}

.usecase-card h3 {
  font-size: 1rem;
  margin: 0;
}

.usecase-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.usecase-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.usecase-card ul li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.usecase-card ul li::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Spec Table ───────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 14px 0;
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--text-muted);
  width: 45%;
  letter-spacing: 0.04em;
}

.spec-table td:last-child {
  color: var(--text);
  font-weight: 500;
}

/* ── Terminal Block ───────────────────────────────────────── */
.terminal {
  background: #050607;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.terminal__header {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.terminal__dots {
  display: flex;
  gap: 6px;
}

.terminal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.terminal__dot:nth-child(1) { background: #ff5f57; }
.terminal__dot:nth-child(2) { background: #febc2e; }
.terminal__dot:nth-child(3) { background: #28c840; }

.terminal__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.terminal__body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.terminal__body .prompt { color: var(--accent); }
.terminal__body .cmd    { color: var(--text); }
.terminal__body .out    { color: #4ade80; }
.terminal__body .comment{ color: var(--text-dim); }

/* ── About Section ────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item__dot {
  width: 33px;
  height: 33px;
  border: 1px solid var(--border-accent);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-item__dot-inner {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.timeline-item__content h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.timeline-item__content p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Contact Form ─────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236b7280' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 48px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: var(--text);
  opacity: 1;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-decoration: none;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, transparent 100%);
  opacity: 0.4;
}

.page-hero .label {
  margin-bottom: 20px;
  display: block;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ── Scan Line Effect ─────────────────────────────────────── */
.scanline {
  position: relative;
  overflow: hidden;
}

.scanline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

/* ── Corner Decoration ────────────────────────────────────── */
.corner-marks {
  position: relative;
}

.corner-marks::before,
.corner-marks::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.4;
}

.corner-marks::before {
  top: -1px; left: -1px;
  border-width: 1px 0 0 1px;
}

.corner-marks::after {
  bottom: -1px; right: -1px;
  border-width: 0 1px 1px 0;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease both;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ── Cursor Blink ─────────────────────────────────────────── */
.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid--3, .grid-gap--3 {
    grid-template-columns: 1fr;
  }
  .grid--2, .grid-gap--2 {
    grid-template-columns: 1fr;
  }
  .stats-bar__inner {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }
  .footer__links {
    gap: 32px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav__links, .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(7,8,10,0.98);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    z-index: 99;
  }
  .section { padding: 64px 0; }
  .pillar { padding: 28px; }
  .hero__title { font-size: 2.2rem; }
  .stat-item {
    flex: 1 1 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Utility ──────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
