/* ==========================================================================
   MachineLabs — design tokens, base, layout, primitives
   ========================================================================== */

:root {
  --bg: #05060a;
  --bg-elev: #0a0c13;
  --bg-elev-2: #0e111a;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --surface-3: rgba(255, 255, 255, 0.085);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --border-3: rgba(255, 255, 255, 0.22);
  --text: #eef0f7;
  --text-2: #a9afc3;
  --text-3: #707790;
  --violet: #8b5cf6;
  --violet-2: #a78bfa;
  --cyan: #22d3ee;
  --lime: #c3f53c;
  --pink: #f472b6;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --grad: linear-gradient(120deg, #c4b5fd 0%, #8b5cf6 38%, #22d3ee 100%);
  --grad-strong: linear-gradient(120deg, #8b5cf6 0%, #6366f1 45%, #06b6d4 100%);
  --grad-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(34, 211, 238, 0.08));
  --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
  --font-serif: 'Instrument Serif', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.75);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 68px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
table { border-collapse: collapse; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }
::selection { background: rgba(139, 92, 246, 0.45); color: #fff; }
:focus-visible { outline: 2px solid var(--violet-2); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1d2130; border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2a3044; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { margin: 0 0 0.5em; font-weight: 600; letter-spacing: -0.025em; line-height: 1.12; color: var(--text); text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 4.8vw, 3.75rem); letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.8rem); letter-spacing: -0.03em; line-height: 1.08; }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
.display { font-size: clamp(2.7rem, 6.4vw, 5.4rem); line-height: 1; letter-spacing: -0.045em; font-weight: 600; }

h1 em, h2 em, h3 em, .display em, .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em;
  margin-right: -0.04em;
}

.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.65; color: var(--text-2); max-width: 62ch; text-wrap: pretty; }
.muted { color: var(--text-2); }
.subtle { color: var(--text-3); }
.small { font-size: 0.875rem; }
.xsmall { font-size: 0.78rem; }
.mono { font-family: var(--font-mono); font-feature-settings: normal; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nowrap { white-space: nowrap; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(195, 245, 60, 0.12), 0 0 14px rgba(195, 245, 60, 0.7);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { width: 100%; max-width: calc(820px + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(72px, 10vw, 128px); }
.section-sm { position: relative; padding-block: clamp(48px, 6vw, 72px); }
.section + .section { padding-top: clamp(24px, 4vw, 48px); }
.divider-top { border-top: 1px solid var(--border); }

.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }

.stack { display: flex; flex-direction: column; gap: var(--gap, 16px); }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: var(--gap, 12px); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Section heading ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { margin: 0; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.section-head--split > div { max-width: 720px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-h: 44px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--btn-h);
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn .icon { width: 17px; height: 17px; flex: none; transition: transform 0.25s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn.is-loading { opacity: 0.6; pointer-events: none; }
.btn-primary { background: #f5f6fb; color: #06070b; }
.btn-primary:hover { background: #fff; box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.22), 0 12px 32px -12px rgba(139, 92, 246, 0.9); }
.btn-brand { background: var(--grad-strong); color: #fff; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn-brand:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 0 0 4px rgba(139, 92, 246, 0.25), 0 14px 36px -12px rgba(99, 102, 241, 0.9); }
.btn-secondary { background: var(--surface-2); border-color: var(--border-2); color: var(--text); backdrop-filter: blur(8px); }
.btn-secondary:hover { background: var(--surface-3); border-color: var(--border-3); }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--text); background: var(--surface-2); }
.btn-danger { background: rgba(248, 113, 113, 0.12); border-color: rgba(248, 113, 113, 0.35); color: #fecaca; }
.btn-danger:hover { background: rgba(248, 113, 113, 0.2); }
.btn-lg { --btn-h: 52px; padding: 0 26px; font-size: 1rem; }
.btn-sm { --btn-h: 36px; padding: 0 14px; font-size: 0.86rem; }
.btn-block { width: 100%; }
.btn .spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid currentColor; border-right-color: transparent; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.link { color: var(--violet-2); text-decoration: underline; text-decoration-color: rgba(167, 139, 250, 0.4); text-underline-offset: 3px; transition: color 0.2s, text-decoration-color 0.2s; }
.link:hover { color: #fff; text-decoration-color: currentColor; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--text); font-weight: 500; font-size: 0.94rem; }
.link-arrow .icon { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------- Badges & chips ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 10px; border-radius: 999px; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.01em; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text-2); white-space: nowrap; }
.badge .icon { width: 13px; height: 13px; }
.badge-brand { background: rgba(139, 92, 246, 0.14); border-color: rgba(167, 139, 250, 0.35); color: #ddd6fe; }
.badge-success { background: rgba(52, 211, 153, 0.12); border-color: rgba(52, 211, 153, 0.35); color: #a7f3d0; }
.badge-warning { background: rgba(251, 191, 36, 0.12); border-color: rgba(251, 191, 36, 0.35); color: #fde68a; }
.badge-danger { background: rgba(248, 113, 113, 0.12); border-color: rgba(248, 113, 113, 0.35); color: #fecaca; }
.badge-cyan { background: rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.3); color: #a5f3fc; }

.chip { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--border-2); background: var(--surface); color: var(--text-2); font-size: 0.88rem; transition: all 0.2s var(--ease); white-space: nowrap; }
.chip:hover { color: var(--text); border-color: var(--border-3); background: var(--surface-2); }
.chip.is-active { color: #fff; background: rgba(139, 92, 246, 0.18); border-color: rgba(167, 139, 250, 0.55); }
.chip .count { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); }
.chip.is-active .count { color: #ddd6fe; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: minmax(0, 1fr); } }
.field { display: grid; gap: 8px; }
.field > label, .label { font-size: 0.86rem; font-weight: 500; color: var(--text-2); }
.field .hint { font-size: 0.8rem; color: var(--text-3); }
.input, .select, .textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
.select { padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a9afc3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.select option { background: var(--bg-elev-2); color: var(--text); }
.input::placeholder, .textarea::placeholder { color: var(--text-3); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--border-3); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--violet-2); background: rgba(139, 92, 246, 0.05); box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.18); }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { border-color: rgba(248, 113, 113, 0.7); }
.field-error { font-size: 0.8rem; color: #fca5a5; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text-2); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--violet); flex: none; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Alerts ---------- */
.alert { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border-2); background: var(--surface-2); font-size: 0.92rem; color: var(--text); }
.alert .icon { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.alert-success { border-color: rgba(52, 211, 153, 0.35); background: rgba(52, 211, 153, 0.08); }
.alert-success .icon { color: var(--success); }
.alert-error { border-color: rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.08); }
.alert-error .icon { color: var(--danger); }
.alert-info { border-color: rgba(34, 211, 238, 0.3); background: rgba(34, 211, 238, 0.06); }
.alert-info .icon { color: var(--cyan); }
.alert-warning { border-color: rgba(251, 191, 36, 0.35); background: rgba(251, 191, 36, 0.07); }
.alert-warning .icon { color: var(--warning); }
.flash-stack { position: fixed; z-index: 90; top: calc(var(--header-h) + 14px); right: 16px; display: grid; gap: 10px; width: min(420px, calc(100vw - 32px)); }
.flash-stack .alert { background: rgba(14, 17, 26, 0.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-lg); animation: flash-in 0.4s var(--ease) both; }
@keyframes flash-in { from { opacity: 0; transform: translateY(-8px); } }

/* ---------- Announcement ---------- */
.announcement { position: relative; z-index: 51; background: linear-gradient(90deg, rgba(139, 92, 246, 0.22), rgba(34, 211, 238, 0.14)); border-bottom: 1px solid var(--border); font-size: 0.86rem; }
.announcement a { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 9px var(--gutter); color: var(--text); }
.announcement .icon { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); background: rgba(5, 6, 10, 0.55); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s; }
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(5, 6, 10, 0.78); }
.nav { height: 100%; display: flex; align-items: center; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1.08rem; letter-spacing: -0.02em; color: var(--text); flex: none; }
.logo-mark { width: 30px; height: 30px; }
.logo-word span { color: var(--text-3); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 12px; }
.nav-link { position: relative; padding: 8px 12px; border-radius: 999px; font-size: 0.92rem; color: var(--text-2); transition: color 0.2s, background 0.2s; }
.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.is-active { color: var(--text); }
.nav-link.is-active::after { content: ''; position: absolute; left: 50%; bottom: 1px; width: 4px; height: 4px; margin-left: -2px; border-radius: 50%; background: var(--violet-2); box-shadow: 0 0 10px var(--violet); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--border-2); background: var(--surface); }
.nav-toggle .icon { width: 20px; height: 20px; }
.mobile-nav { position: fixed; inset: var(--header-h) 0 0 0; z-index: 49; background: rgba(5, 6, 10, 0.97); backdrop-filter: blur(20px); padding: 24px var(--gutter) 40px; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s; }
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a.m-link { display: flex; justify-content: space-between; align-items: center; padding: 16px 4px; border-bottom: 1px solid var(--border); font-size: 1.15rem; color: var(--text); }
.mobile-nav a.m-link .icon { width: 18px; height: 18px; color: var(--text-3); }
.mobile-nav .m-actions { display: grid; gap: 10px; margin-top: 28px; }
body.nav-open { overflow: hidden; }
@media (max-width: 1024px) {
  .nav-links, .nav-actions .hide-mobile { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Footer ---------- */
.site-footer { position: relative; margin-top: clamp(40px, 6vw, 80px); border-top: 1px solid var(--border); background: linear-gradient(180deg, rgba(10, 12, 19, 0.6), var(--bg)); overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.6), rgba(34, 211, 238, 0.6), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, minmax(0, 1fr)); gap: 40px; padding-block: 72px 48px; }
.footer-brand p { color: var(--text-2); font-size: 0.92rem; max-width: 34ch; margin: 18px 0 20px; }
.footer-contact { display: grid; gap: 10px; font-size: 0.9rem; color: var(--text-2); }
.footer-contact a, .footer-contact span { display: inline-flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon { width: 17px; height: 17px; margin-top: 3px; color: var(--text-3); flex: none; }
.footer-contact a:hover { color: var(--text); }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 24px 32px; border-top: 1px solid var(--border); font-size: 0.84rem; color: var(--text-3); }
.footer-bottom .cluster { --gap: 18px; }
.footer-wordmark { font-size: clamp(4rem, 17vw, 15rem); font-weight: 700; letter-spacing: -0.06em; line-height: 0.8; text-align: center; margin: 0 0 -0.12em; background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; pointer-events: none; white-space: nowrap; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Icons ---------- */
.icon { width: 20px; height: 20px; flex: none; }
.icon-tile { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); border: 1px solid rgba(167, 139, 250, 0.25); color: #ddd6fe; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06); }
.icon-tile .icon { width: 22px; height: 22px; }

/* ---------- Motion ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--delay, 0s); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Currency switcher ---------- */
.cur-switch { display: inline-flex; align-items: center; padding: 3px; border-radius: 999px; border: 1px solid var(--border-2); background: var(--surface); }
.cur-switch a { padding: 5px 11px; border-radius: 999px; font-size: 0.8rem; font-weight: 500; color: var(--text-3); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.cur-switch a:hover { color: var(--text); }
.cur-switch a.is-active { background: var(--surface-3); color: var(--text); }
.cur-note { display: inline-flex; align-items: center; gap: 8px; }
.mobile-nav .cur-switch { margin-top: 18px; }

/* ---------- Utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; }
.w-full { width: 100%; }
@media (max-width: 680px) { .hide-sm { display: none !important; } }
