/*
 * DirectoryForge Marketing Theme
 *
 * Clean, light, professional aesthetic for agency owners & entrepreneurs
 * Primary: Deep slate (trust, professionalism)
 * Accent: Teal/emerald (growth, success)
 * Style: Clean, airy, confident
 */

/* ================================================================
   CSS RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
  /* Brand color palette - Slate */
  --color-brand-50: #f8fafc;
  --color-brand-100: #f1f5f9;
  --color-brand-200: #e2e8f0;
  --color-brand-300: #cbd5e1;
  --color-brand-400: #94a3b8;
  --color-brand-500: #64748b;
  --color-brand-600: #475569;
  --color-brand-700: #334155;
  --color-brand-800: #1e293b;
  --color-brand-900: #0f172a;
  --color-brand-950: #020617;

  /* Accent color palette - Teal */
  --color-accent-50: #f0fdfa;
  --color-accent-100: #ccfbf1;
  --color-accent-200: #99f6e4;
  --color-accent-300: #5eead4;
  --color-accent-400: #2dd4bf;
  --color-accent-500: #14b8a6;
  --color-accent-600: #0d9488;
  --color-accent-700: #0f766e;
  --color-accent-800: #115e59;
  --color-accent-900: #134e4a;
  --color-accent-950: #042f2e;

  /* Warm amber for stars/highlights */
  --color-warm-400: #fbbf24;
  --color-warm-500: #f59e0b;

  /* Custom fonts */
  --df-font-display: 'Inter', system-ui, sans-serif;
  --df-font-body: 'Inter', system-ui, sans-serif;
  --df-font-mono: 'JetBrains Mono', 'SF Mono', monospace;
}

/* ================================================================
   BASE STYLES
   ================================================================ */
.brand-landing {
  font-family: var(--df-font-body);
  background: white;
  color: var(--color-brand-700);
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.df-display {
  font-family: var(--df-font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--color-brand-900);
}

.df-display-light {
  font-family: var(--df-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.df-mono {
  font-family: var(--df-font-mono);
  font-size: 0.8125rem;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.df-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #0d9488;
  color: #ffffff;
  font-family: var(--df-font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 8px;
  transition: all 0.15s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  line-height: 1.5;
  cursor: pointer;
}

.df-btn-primary:hover {
  background-color: #0f766e;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  color: #ffffff;
}

.df-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #334155;
  font-family: var(--df-font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  transition: all 0.15s ease;
  text-decoration: none;
  line-height: 1.5;
  cursor: pointer;
}

.df-btn-secondary:hover {
  border-color: #94a3b8;
  background-color: #f8fafc;
  color: #1e293b;
}

/* ================================================================
   CARDS
   ================================================================ */
.df-feature-card {
  position: relative;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.df-feature-card:hover {
  border-color: #0d9488;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.df-niche-card {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.df-niche-card:hover {
  border-color: #0d9488;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ================================================================
   BADGES & TAGS
   ================================================================ */
.df-step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--color-accent-600);
  border-radius: 6px;
  font-family: var(--df-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.df-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.df-tag-accent {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #0f766e;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.df-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-accent-600);
}

.df-stat {
  font-family: var(--df-font-display);
  font-weight: 700;
  color: var(--color-accent-600);
}

/* ================================================================
   BROWSER MOCKUP
   ================================================================ */
.df-browser {
  background: white;
  border: 1px solid var(--color-brand-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.df-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--color-brand-100);
  border-bottom: 1px solid var(--color-brand-200);
}

.df-browser-dots {
  display: flex;
  gap: 6px;
}

.df-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.df-browser-dots span:nth-child(1) { background: #ff5f57; }
.df-browser-dots span:nth-child(2) { background: #febc2e; }
.df-browser-dots span:nth-child(3) { background: #28c840; }

.df-browser-url {
  flex: 1;
  margin-left: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: white;
  border-radius: 4px;
  font-family: var(--df-font-mono);
  font-size: 0.75rem;
  color: var(--color-brand-500);
}

/* ================================================================
   CODE BLOCKS
   ================================================================ */
.df-code {
  font-family: var(--df-font-mono);
  background: var(--color-brand-900);
  color: var(--color-brand-200);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  overflow-x: auto;
}

.df-code .highlight {
  color: var(--color-accent-400);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes df-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.df-animate-fade-up {
  animation: df-fade-up 0.5s ease-out forwards;
  opacity: 0;
}

.df-animate-scale-in {
  animation: df-fade-up 0.5s ease-out forwards;
  opacity: 0;
}

.df-delay-1 { animation-delay: 0.1s; }
.df-delay-2 { animation-delay: 0.15s; }
.df-delay-3 { animation-delay: 0.2s; }
.df-delay-4 { animation-delay: 0.25s; }
.df-delay-5 { animation-delay: 0.3s; }

/* ================================================================
   UTILITY CLASSES (Tailwind-like)
   ================================================================ */

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }

/* Flex */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.-space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: -0.5rem; }

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Sizing */
.w-1\.5 { width: 0.375rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.h-1\.5 { height: 0.375rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-auto { height: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-lg { max-width: 32rem; }

/* Spacing */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-4 { margin-left: 1rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.p-3 { padding: 0.75rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-3 { padding-top: 0.75rem; }
.pb-3 { padding-bottom: 0.75rem; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-relaxed { line-height: 1.625; }

/* Colors */
.text-white { color: #ffffff; }
.bg-white { background-color: #ffffff; }

/* Borders */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-2 { border-width: 2px; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }

/* Other */
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }

/* ================================================================
   HEADER
   ================================================================ */
.df-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #e5eeec; /* Slate-gray with subtle teal undertone */
  border-bottom: 1px solid var(--color-brand-200);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.df-hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, var(--color-brand-100) 0%, var(--color-brand-50) 100%);
  overflow: hidden;
}

.df-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.df-hero__container {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .df-hero {
    padding: 6rem 0 8rem;
  }

  .df-hero__container {
    padding: 0 2rem;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* Hero Content */
.df-hero__content {
  max-width: 36rem;
}

.df-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  background: white;
  border: 1px solid var(--color-brand-200);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-brand-600);
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.df-hero__eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-accent-500);
  border-radius: 50%;
  animation: df-pulse 2s ease-in-out infinite;
}

@keyframes df-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.df-hero__headline {
  font-family: var(--df-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-brand-900);
  margin-bottom: 1.5rem;
}

.df-hero__headline-line {
  display: block;
}

.df-hero__headline-line--accent {
  color: var(--color-accent-600);
}

.df-hero__subhead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-brand-600);
  margin-bottom: 2rem;
  max-width: 28rem;
}

/* Hero CTAs */
.df-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.df-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-accent-600);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(13, 148, 136, 0.15);
}

.df-hero__cta-primary:hover {
  background: var(--color-accent-700);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(13, 148, 136, 0.25);
  transform: translateY(-1px);
}

.df-hero__cta-primary svg {
  transition: transform 0.2s ease;
}

.df-hero__cta-primary:hover svg {
  transform: translateX(2px);
}

.df-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  background: white;
  color: var(--color-brand-700);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid var(--color-brand-200);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.df-hero__cta-secondary:hover {
  border-color: var(--color-brand-300);
  background: var(--color-brand-50);
  color: var(--color-brand-900);
}

/* Hero Social Proof */
.df-hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.df-hero__proof-avatars {
  display: flex;
}

.df-hero__proof-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--color-brand-200);
  margin-left: -0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.df-hero__proof-avatar:first-child {
  margin-left: 0;
}

.df-hero__proof-text {
  font-size: 0.875rem;
  color: var(--color-brand-500);
}

.df-hero__proof-stat {
  font-weight: 600;
  color: var(--color-brand-800);
}

.df-hero__proof-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.df-hero__proof-rating svg {
  color: var(--color-warm-400);
}

/* Hero Visual */
.df-hero__visual {
  display: none;
  position: relative;
  height: 400px;
}

@media (min-width: 1024px) {
  .df-hero__visual {
    display: block;
  }
}

.df-hero__card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Capability Cards */
.df-hero__capability {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--color-brand-200);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  animation: df-float 6s ease-in-out infinite;
  z-index: 2;
}

.df-hero__capability--1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.df-hero__capability--2 {
  top: 40%;
  right: 0;
  animation-delay: -2s;
}

.df-hero__capability--3 {
  bottom: 15%;
  left: 15%;
  animation-delay: -4s;
}

@keyframes df-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.df-hero__capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-accent-50);
  border-radius: 8px;
  color: var(--color-accent-600);
  flex-shrink: 0;
}

.df-hero__capability-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.df-hero__capability-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-brand-500);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.df-hero__capability-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-brand-800);
}

/* Hero Graphic */
.df-hero__graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 1;
}

.df-hero__graphic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 24px;
  background: white;
  border: 1px solid var(--color-brand-200);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.df-hero__graphic-cell {
  width: 40px;
  height: 40px;
  background: var(--color-brand-100);
  border-radius: 6px;
  transition: all 0.3s ease;
  animation: df-cell-pulse 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.df-hero__graphic-cell:nth-child(1),
.df-hero__graphic-cell:nth-child(5),
.df-hero__graphic-cell:nth-child(9) {
  background: var(--color-accent-100);
}

.df-hero__graphic-cell:nth-child(5) {
  background: var(--color-accent-500);
}

@keyframes df-cell-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.df-hero__graphic-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border: 1px solid var(--color-accent-200);
  border-radius: 50%;
  animation: df-ring-pulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes df-ring-pulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:items-center { align-items: center; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:mb-16 { margin-bottom: 4rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
