/* ============================================================
   OMNICRAFT — Institutional Site
   Design System & Styles
   ============================================================ */

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

/* === VARIABLES === */
:root {
  --snow: #f2f4f5;
  --white: #ffffff;
  --black: #000000;
  --z950: #09090b;
  --z900: #2e2e33;
  --z800: #27272a;
  --z700: #3f3f46;
  --z600: #52525b;
  --z500: #71717a;
  --z400: #a1a1aa;
  --z300: #d4d4d8;
  --z200: #e4e4e7;

  --font: 'Inter', -apple-system, sans-serif;
  --tracking-logo: 0.2em;
  --tracking-wide: 0.12em;
  --tracking-mid: 0.06em;
  --tracking-subtle: 0.03em;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1200px;
  --gutter: 24px;
}

@media (min-width: 768px) {
  :root { --gutter: 48px; }
}
@media (min-width: 1200px) {
  :root { --gutter: 64px; }
}

/* === BASE === */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--snow);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--z600);
  color: var(--snow);
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
.t-display {
  font-weight: 300;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.t-h1 {
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.t-h2 {
  font-weight: 300;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.t-h3 {
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
}

.t-body {
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: var(--z400);
}

.t-body-lg {
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--z400);
}

.t-label {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--z600);
}

.t-caption {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: var(--z600);
}

.t-muted { color: var(--z600); }
.t-accent { color: var(--z200); }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
}

@media (min-width: 1024px) {
  .section { padding: 100px 0; }
}

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

@media (min-width: 768px) {
  .section--sm { padding: 56px 0; }
}

/* === PAGE TRANSITION OVERLAY === */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  display: flex;
}

.page-transition__panel {
  flex: 1;
  background: var(--z950);
  transform: scaleY(0);
  transform-origin: bottom;
  will-change: transform;
}

/* Enter: panels scale up to cover screen */
body.transition-out .page-transition {
  pointer-events: all;
}

body.transition-out .page-transition__panel {
  animation: panelIn 0.35s var(--ease-in-out) forwards;
}

body.transition-out .page-transition__panel:nth-child(2) {
  animation-delay: 0.04s;
}
body.transition-out .page-transition__panel:nth-child(3) {
  animation-delay: 0.08s;
}
body.transition-out .page-transition__panel:nth-child(4) {
  animation-delay: 0.12s;
}

@keyframes panelIn {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

/* Exit: panels scale down to reveal new page */
body.transition-in .page-transition__panel {
  transform: scaleY(1);
  transform-origin: top;
  animation: panelOut 0.35s var(--ease-in-out) forwards;
  animation-delay: 0.15s;
}

body.transition-in .page-transition__panel:nth-child(2) {
  animation-delay: 0.19s;
}
body.transition-in .page-transition__panel:nth-child(3) {
  animation-delay: 0.23s;
}
body.transition-in .page-transition__panel:nth-child(4) {
  animation-delay: 0.27s;
}

@keyframes panelOut {
  from { transform: scaleY(1); transform-origin: top; }
  to { transform: scaleY(0); transform-origin: top; }
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--z900);
}

.nav__logo {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: var(--tracking-logo);
  text-transform: uppercase;
  color: var(--snow);
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.nav__logo:hover { opacity: 0.7; }

.nav__menu {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav__menu { display: flex; }
}

.nav__link {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: var(--tracking-subtle);
  color: var(--z500);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--snow);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--snow);
}

.nav__link.active::after,
.nav__link:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px;
  margin-right: -14px;
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--snow);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.menu-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu - slide from left, below nav */
.nav__mobile-overlay {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

body.menu-open .nav__mobile-overlay {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile {
  position: fixed;
  top: 72px;
  left: -90%;
  bottom: 0;
  width: 90%;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: left 0.55s var(--ease-out);
}

body.menu-open .nav__mobile {
  left: 0;
}

body.menu-open .nav {
  background: var(--black);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  padding: 32px 48px 0;
}

.nav__mobile-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-30px);
  transition: transform 0.5s var(--ease-out), opacity 0.45s var(--ease-out);
}

body.menu-open .nav__mobile-link {
  transform: translateX(0);
  opacity: 1;
}

.nav__mobile-num {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  color: var(--z700);
  min-width: 22px;
}

.nav__mobile-label {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--z500);
  transition: color 0.3s ease;
}

.nav__mobile-link.active .nav__mobile-label {
  color: var(--snow);
}

.nav__mobile-link.active .nav__mobile-num {
  color: var(--z400);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 var(--gutter);
  position: relative;
  overflow: hidden;
}

.hero__logo-text {
  font-weight: 300;
  font-size: clamp(32px, 8vw, 96px);
  letter-spacing: var(--tracking-logo);
  text-transform: uppercase;
  color: var(--snow);
  text-align: center;
  line-height: 1;
  overflow: hidden;
}

.hero__logo-text span {
  display: inline-block;
  opacity: 0;
  transform: rotateX(-90deg) translateY(20px);
  transform-origin: bottom center;
}

.hero__subtitle {
  margin-top: 32px;
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: var(--tracking-subtle);
  color: var(--z500);
  text-align: center;
  max-width: 500px;
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.hero__scroll-text {
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--z700);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--z600), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* === FOLD SECTIONS (Origami Effect) === */
.fold {
  perspective: 1200px;
  perspective-origin: center top;
}

.fold__inner {
  transform-origin: top center;
  transform: rotateX(-60deg);
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* === HORIZONTAL LINE DIVIDER === */
.line-divider {
  height: 1px;
  background: var(--z800);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  margin: 0 auto;
  max-width: var(--container);
}

/* === SECTION HEADER === */
.section-header {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 48px; }
}

.section-header__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-header__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--z600);
}

.section-header__title {
  max-width: 640px;
}

/* === CONTENT GRID === */
.grid {
  display: grid;
  gap: 1px;
  background: var(--z800);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* === SERVICE / FEATURE CARDS === */
.card {
  background: var(--black);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

@media (min-width: 768px) {
  .card { padding: 48px 40px; }
}

.card:hover {
  background: var(--z950);
}

.card__number {
  font-weight: 300;
  font-size: 48px;
  color: var(--z900);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}

.card:hover .card__number {
  color: var(--z800);
}

.card__title {
  font-weight: 400;
  font-size: 18px;
  color: var(--snow);
  margin-top: 15px;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.card__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: var(--z500);
}

.card__line {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--z800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.card:hover .card__line {
  transform: scaleX(1);
}

/* === STATS ROW === */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--z800);
  border-bottom: 1px solid var(--z800);
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.stat {
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--z800);
  }
}

.stat__number {
  font-weight: 300;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--snow);
  letter-spacing: -0.03em;
}

.stat__label {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: var(--tracking-mid);
  color: var(--z500);
  text-transform: uppercase;
  margin-top: 15px;
}

/* === CASE STUDY BLOCK === */
.case-block {
  background: var(--z950);
  border: 1px solid var(--z800);
  overflow: hidden;
}

.case-block__header {
  padding: 48px 32px;
  border-bottom: 1px solid var(--z800);
}

@media (min-width: 768px) {
  .case-block__header { padding: 64px 56px; }
}

.case-block__body {
  padding: 48px 32px;
}

@media (min-width: 768px) {
  .case-block__body {
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.case-block__product {
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--snow);
  line-height: 1;
}

.case-block__product-sub {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: var(--tracking-subtle);
  color: var(--z600);
  margin-top: 8px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.feature-list li {
  font-weight: 400;
  font-size: 15px;
  color: var(--z300);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--z500);
}

/* === PROJECT CARDS (Home - compact showcase) === */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--z800);
  border: 1px solid var(--z800);
}

@media (min-width: 768px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .projects-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

.project-card {
  background: var(--z950);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease;
  position: relative;
  text-decoration: none;
}

@media (min-width: 768px) {
  .project-card { padding: 48px 40px; }
}

.project-card:hover {
  background: #0f0f11;
}

.project-card__tag {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--z500);
}

.project-card__title {
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--snow);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.project-card__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--z400);
  flex-grow: 1;
}

.project-card__arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--z500);
  margin-top: 8px;
  transition: color 0.2s ease;
}

.project-card:hover .project-card__arrow {
  color: var(--snow);
}

.project-card__arrow::after {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

.project-card:hover .project-card__arrow::after {
  width: 28px;
}

/* === CTA BUTTON === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: var(--tracking-subtle);
  color: var(--snow);
  padding: 16px 32px;
  border: 1px solid var(--z700);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  border-color: var(--z400);
  background: rgba(255,255,255,0.03);
}

.btn__arrow {
  width: 20px;
  height: 1px;
  background: var(--z500);
  position: relative;
  transition: width 0.3s var(--ease-out);
}

.btn__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--z500);
  border-top: 1px solid var(--z500);
  transform: rotate(45deg);
}

.btn:hover .btn__arrow {
  width: 32px;
}

/* === PROCESS STEPS === */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process { grid-template-columns: repeat(4, 1fr); }
}

.process__step {
  padding: 40px 0;
  border-top: 1px solid var(--z800);
}

@media (min-width: 768px) {
  .process__step {
    padding: 40px 32px;
    border-left: 1px solid var(--z800);
  }

  .process__step:first-child {
    padding-left: 0;
    border-left: none;
  }
}

@media (min-width: 1024px) {
  .process__step:nth-child(3) {
    border-left: 1px solid var(--z800);
  }
}

.process__number {
  font-weight: 300;
  font-size: 56px;
  color: var(--z900);
  line-height: 1;
  letter-spacing: -0.03em;
}

.process__name {
  font-weight: 400;
  font-size: 17px;
  color: var(--snow);
  margin-top: 15px;
  margin-bottom: 12px;
}

.process__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--z500);
}

/* === TECH GRID === */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .tech-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

@media (min-width: 1024px) {
  .tech-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.tech-category__title {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--z400);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--z800);
  margin-bottom: 20px;
}

.tech-category__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-category__item {
  font-weight: 400;
  font-size: 15px;
  color: var(--z300);
  padding: 8px 0;
  border-bottom: 1px solid rgba(39, 39, 42, 0.4);
  transition: color 0.2s ease;
}

.tech-category__item:hover {
  color: var(--snow);
}

/* === MANIFESTO / QUOTE === */
.manifesto-text {
  font-weight: 300;
  font-size: clamp(22px, 3.5vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--snow);
  max-width: 900px;
}

.manifesto-text em {
  font-style: normal;
  color: var(--z600);
}

/* === VALUE BLOCKS === */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .values { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.value {
  padding: 32px;
  border: 1px solid var(--z800);
  transition: border-color 0.3s ease;
}

.value:hover {
  border-color: var(--z600);
}

.value__title {
  font-weight: 400;
  font-size: 17px;
  color: var(--snow);
  margin-bottom: 12px;
}

.value__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--z500);
}

/* === CONTACT === */
.contact-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-block__email {
  font-weight: 300;
  font-size: clamp(18px, 3vw, 32px);
  letter-spacing: var(--tracking-subtle);
  color: var(--z500);
  border-bottom: 1px solid var(--z800);
  padding: 16px 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-block__email:hover {
  color: var(--snow);
  border-bottom-color: var(--z600);
}

/* === FOOTER === */
.footer {
  padding: 40px var(--gutter) 48px;
  text-align: center;
  border-top: 1px solid var(--z900);
}

.footer__copy {
  font-weight: 400;
  font-size: 11px;
  color: var(--z800);
  letter-spacing: var(--tracking-subtle);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: 120px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 140px;
    padding-bottom: 64px;
  }
}

.page-hero__label {
  margin-bottom: 24px;
}

.page-hero__title {
  max-width: 800px;
}

.page-hero__desc {
  margin-top: 32px;
  max-width: 600px;
}

/* === STAGGER CHILDREN === */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
}

/* === GRAIN OVERLAY === */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* === UTILITIES === */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
