/* ============================================================
   IntegritySystems.io — Shared Stylesheet
   Refined utilitarian aesthetic for B2B IT audit tools
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Surface */
  --ground:       #F5EFE6;
  --ground-dim:   #EDE5D8;
  --ground-deep:  #E3D9CA;
  --card:         #FFFFFF;
  --card-hover:   #FAFAFA;
  /* Ink */
  --ink1:         #1C1C1E;
  --ink2:         #3A3A3C;
  --ink3:         #636366;
  --ink4:         #8E8E93;
  --ink5:         #C7C7CC;
  --ink6:         #E5E5EA;
  /* Accent */
  --accent:       #4A86E8;
  --accent-h:     #3A6FD4;
  --accent-soft:  #E8F0FD;
  --accent-glow:  rgba(74,134,232,0.12);
  /* Status */
  --ok-bg:        #E8F5E9;
  --ok-ink:       #2E7D32;
  --warn-bg:      #FFF3E0;
  --warn-ink:     #BF6900;
  --err-bg:       #FDECEA;
  --err-ink:      #C62828;
  /* Elevation */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  --shadow:       0 2px 16px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-xl:    0 16px 48px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  /* Shape */
  --radius-xs:    6px;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
  /* Layout */
  --max-w:        1140px;
  --max-w-narrow: 860px;
  --nav-h:        72px;
  --section-pad:  clamp(64px, 10vw, 120px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink2);
  background: var(--ground);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-h); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* --- Dot grid background (Japanese stationery feel) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.032;
  background-image: radial-gradient(circle, #8E8E93 0.8px, transparent 0.8px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* --- Gradient accent text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #2AACB8 55%, #4A86E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Logo checkmark draw animation --- */
.nav__logo-icon svg .check-path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: drawCheck 0.5s ease 0.3s forwards;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* --- Card 3D tilt on hover --- */
.tool-card {
  transform-style: preserve-3d;
  perspective: 800px;
}
.tool-card:hover {
  transform: translateY(-3px) rotateX(1.5deg) rotateY(-1.5deg);
}

/* --- Evidence pack typing animation --- */
.evidence-preview__content {
  margin-top: 20px;
  white-space: pre;
}
.evidence-preview--animated .evidence-preview__content .ep-line {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.evidence-preview--animated .evidence-preview__content .ep-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.evidence-preview__cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: #89B4FA;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* --- Count-up animation for numbers --- */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink1);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p + p { margin-top: 1em; }
.text-sm { font-size: 0.9rem; }
.text-xs { font-size: 0.8rem; }
.text-mono { font-family: var(--font-mono); font-size: 0.88em; }
.text-muted { color: var(--ink4); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.container--narrow { max-width: var(--max-w-narrow); }
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--card); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,239,230,0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  transition: box-shadow .2s ease;
}
.nav--scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink1);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
}
.nav__logo-icon svg { width: 18px; height: 18px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink3);
  transition: color .15s ease;
  letter-spacing: -0.01em;
}
.nav__link:hover { color: var(--ink1); }
.nav__cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background .15s ease, transform .1s ease;
  letter-spacing: -0.01em;
}
.nav__cta:hover { background: var(--accent-h); color: #fff; transform: translateY(-1px); }

/* Mobile nav */
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--ink2);
}
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ground);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav__links--open { display: flex; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: all .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(74,134,232,0.25);
}
.btn--primary:hover {
  background: var(--accent-h);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(74,134,232,0.3);
}
.btn--secondary {
  background: var(--card);
  color: var(--ink2);
  border: 1.5px solid var(--ink6);
}
.btn--secondary:hover {
  border-color: var(--ink5);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  color: var(--ink1);
}
.btn--ghost {
  color: var(--accent);
  padding: 13px 16px;
}
.btn--ghost:hover { color: var(--accent-h); }
.btn--sm { font-size: 0.85rem; padding: 9px 18px; }
.btn--lg { font-size: 1.05rem; padding: 16px 36px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Cards --- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 3vw, 36px);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card--flat { box-shadow: none; border: 1.5px solid var(--ink6); }
.card--flat:hover { box-shadow: var(--shadow-sm); border-color: var(--ink5); }
.card--accent {
  border: 2px solid var(--accent);
  position: relative;
}

/* --- Evidence Pack Preview --- */
.evidence-preview {
  background: #1E1E2E;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: #CDD6F4;
  overflow-x: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.evidence-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: #181825;
  border-radius: var(--radius) var(--radius) 0 0;
}
.evidence-preview__dots {
  position: absolute;
  top: 10px; left: 14px;
  display: flex; gap: 6px;
}
.evidence-preview__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.evidence-preview__dot--red { background: #F38BA8; }
.evidence-preview__dot--yellow { background: #F9E2AF; }
.evidence-preview__dot--green { background: #A6E3A1; }
.evidence-preview__content {
  margin-top: 20px;
  white-space: pre;
}
.evidence-preview .hl-key { color: #89B4FA; }
.evidence-preview .hl-str { color: #A6E3A1; }
.evidence-preview .hl-num { color: #FAB387; }
.evidence-preview .hl-head { color: #CBA6F7; font-weight: 500; }
.evidence-preview .hl-dim { color: #6C7086; }

/* --- Feature grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__text h4 { margin-bottom: 4px; }
.feature__text p { font-size: 0.9rem; color: var(--ink3); line-height: 1.5; }

/* --- Pricing table --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--ink6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow), 0 0 0 4px var(--accent-glow);
  position: relative;
}
.pricing-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pricing-card__tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink1);
  margin-bottom: 4px;
}
.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--ink4);
  margin-bottom: 20px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--ink1);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price-note {
  font-size: 0.82rem;
  color: var(--ink4);
  margin-bottom: 24px;
}
.pricing-card__features {
  margin-bottom: 28px;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--ink2);
}
.pricing-card__feature svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ok-ink);
}
.pricing-card__feature--disabled {
  color: var(--ink5);
}
.pricing-card__feature--disabled svg { color: var(--ink5); }

/* --- Tool cards (homepage) --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.tool-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--ink6);
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}
.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.tool-card__icon {
  width: 52px; height: 52px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.tool-card__icon svg { width: 26px; height: 26px; }
.tool-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink1);
  margin-bottom: 8px;
}
.tool-card__desc {
  font-size: 0.9rem;
  color: var(--ink3);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}
.tool-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink1);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.tool-card__price span { color: var(--ink4); font-weight: 400; }
.tool-card__actions {
  display: flex;
  gap: 10px;
}

/* --- Trust bar --- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 32px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink3);
  font-family: var(--font-display);
}
.trust-item svg {
  width: 20px; height: 20px;
  color: var(--ok-ink);
  flex-shrink: 0;
}

/* --- Hero --- */
.hero {
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 80px));
  padding-bottom: clamp(48px, 8vw, 80px);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.hero__title {
  max-width: 720px;
  margin-bottom: 20px;
}
.hero__subtitle {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink3);
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero__visual {
  margin-top: 48px;
}

/* --- Comparison table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink4);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--ink6);
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink6);
  color: var(--ink2);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--ok-ink); font-weight: 600; }
.comparison-table .cross { color: var(--ink5); }
.comparison-table .highlight-col {
  background: var(--accent-soft);
}

/* --- Email capture --- */
.email-capture {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.email-capture h3 { margin-bottom: 8px; }
.email-capture p { color: var(--ink3); margin-bottom: 24px; font-size: 0.95rem; }
.email-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}
.email-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--ink6);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink1);
  background: var(--ground);
  transition: border-color .15s ease;
  outline: none;
}
.email-form input[type="email"]:focus { border-color: var(--accent); }
.email-form input[type="email"]::placeholder { color: var(--ink5); }
.email-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: background .15s ease;
  white-space: nowrap;
}
.email-form button:hover { background: var(--accent-h); }
.email-form__success {
  display: none;
  color: var(--ok-ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 0;
}
@media (max-width: 480px) {
  .email-form { flex-direction: column; }
}

/* --- Footer --- */
.footer {
  padding: 48px 0 36px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--ink4);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.5;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink4);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: var(--ink3);
  padding: 4px 0;
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.82rem;
  color: var(--ink4);
}
@media (max-width: 480px) {
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1.5px solid var(--ink6);
  padding: 28px 24px;
  transition: all .2s ease;
}
.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.blog-card__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink1);
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--ink3);
  line-height: 1.5;
  margin-bottom: 16px;
}
.blog-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
}
.blog-card__link:hover { color: var(--accent-h); }

/* --- Legal pages --- */
.legal { padding-top: calc(var(--nav-h) + 48px); }
.legal h1 { margin-bottom: 8px; }
.legal .last-updated { color: var(--ink4); font-size: 0.9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.25rem; margin-top: 36px; margin-bottom: 12px; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 12px 0; padding-left: 24px; }
.legal ul li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--ink2);
}

/* --- Scroll animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* --- Utility --- */
.spacer { height: 24px; }
.spacer--lg { height: 48px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.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; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
