/* ==========================================================================
   Printoble Launching Screen — Cybernetic Forge Design System
   Big Logo Showcase, Timeline Countdown & Interactive Telemetry
   ========================================================================== */

:root {
  /* Foundational Surfaces */
  --bg-base: #090b14;
  --bg-surface-lowest: #0c0e17;
  --bg-surface-1: #0f1424;
  --bg-surface-2: #161f36;
  --bg-surface-3: #1d1f29;
  --bg-glass: rgba(15, 20, 36, 0.75);
  --bg-glass-card: rgba(15, 20, 36, 0.7);

  /* Neon Accents */
  --primary: #8b5cf6;
  --primary-light: #a855f7;
  --primary-tint: #d0bcff;
  --secondary: #06b6d4;
  --secondary-light: #4cd7f6;
  --tertiary: #f59e0b;
  --tertiary-light: #ffb95f;
  --emerald: #10b981;

  /* Hairlines & Borders */
  --border-hairline: rgba(139, 92, 246, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Fonts */
  --font-headline: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Image Download & Drag Protection */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

::selection {
  background: var(--primary);
  color: #ffffff;
}

/* Typography Utility Classes */
.font-headline { font-family: var(--font-headline); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: var(--font-mono); }

/* Color Gradients */
.text-gradient-violet {
  background: linear-gradient(135deg, #d0bcff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #acedff 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-amber {
  background: linear-gradient(135deg, #ffddb8 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Background Slicer Grid & Ambient Glows */
.slicer-grid-bg {
  position: absolute;
  inset: 0;
  background-size: 36px 36px;
  background-image: 
    linear-gradient(to right, rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.ambient-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(130px);
  pointer-events-none;
  opacity: 0.4;
}

.glow-violet {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(124, 58, 237, 0) 70%);
}

.glow-cyan {
  top: 45%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0) 70%);
}

.glow-amber {
  bottom: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
}

/* Subtle Animated Laser Beam Traveling Down the Screen */
.laser-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5) 20%, rgba(139, 92, 246, 0.6) 50%, rgba(6, 182, 212, 0.5) 80%, transparent);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
  pointer-events-none;
  opacity: 0.5;
  animation: laserScan 14s ease-in-out infinite alternate;
}

@keyframes laserScan {
  0% { top: 10%; opacity: 0.15; }
  50% { opacity: 0.5; }
  100% { top: 90%; opacity: 0.15; }
}

/* Glass Surfaces */
.glass-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

.glass-surface-sm {
  background: rgba(15, 20, 36, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Big Logo Floating Aura (Subtle & Crisp) */
#mainLogo {
  animation: logoFloat 6s ease-in-out infinite alternate;
}

@keyframes logoFloat {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.25));
  }
  100% {
    transform: translateY(-5px);
    filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.35));
  }
}

/* Descriptions */
.hero-description-main {
  color: #ffffff;
}

.hero-description-sub {
  color: #cbd5e1 !important; /* Bright crisp silver-slate */
}

/* TIMELINE COUNTDOWN CARDS (ENLARGED & PROMINENT) */
.timeline-card {
  background: rgba(15, 20, 36, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 12px 36px rgba(0, 0, 0, 0.55);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 16px 40px rgba(139, 92, 246, 0.45);
}

.timeline-digit-wrapper {
  overflow: hidden;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-number {
  font-family: var(--font-headline);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

@media (max-width: 640px) {
  .timeline-card {
    padding: 14px 6px;
    border-radius: 14px;
  }
  .timeline-digit-wrapper {
    height: 42px;
  }
  .timeline-number {
    font-size: 32px;
  }
}

.timeline-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #94a3b8;
  margin-top: 6px;
  text-transform: uppercase;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  box-shadow: 0 4px 20px -2px rgba(139, 92, 246, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 8px 28px -2px rgba(139, 92, 246, 0.65), 0 0 12px 2px rgba(168, 85, 247, 0.4);
}

.btn-ghost-icon {
  background: rgba(15, 20, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-ghost-icon:hover {
  border-color: var(--secondary);
  background: rgba(6, 182, 212, 0.12);
}

/* Role Selector Chips */
.role-chip {
  background: rgba(15, 20, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 7px 12px;
  color: var(--text-secondary);
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.role-chip:hover {
  background: rgba(22, 31, 54, 0.9);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.role-chip.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.35);
}

/* High-Tech VIP Reservation Ticket Pass (Clean, Crisp & Low Glow) */
.pass-card {
  background: rgba(18, 24, 43, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}

.ticket-divider-line {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  margin: 18px 0;
  width: 100%;
}

/* Crisp, Clean Ticket Number Badge (No Overbloom) */
#ticketNumber {
  color: #38bdf8 !important;
  background: rgba(6, 182, 212, 0.12) !important;
  border: 1px solid rgba(6, 182, 212, 0.4) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
}

.pass-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8 !important;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.pass-value-white {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 600;
  color: #f8fafc !important;
  word-break: break-word;
}

.pass-value-cyan {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 600;
  color: #4cd7f6 !important;
}

.pass-value-amber {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 600;
  color: #fbbf24 !important;
}

.barcode-strip {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 36px;
  opacity: 0.85;
}

.barcode-bar {
  background-color: #cbd5e1;
  height: 100%;
  border-radius: 1px;
}

/* Glow Shadows */
.shadow-glow-violet {
  box-shadow: 0 12px 32px -4px rgba(139, 92, 246, 0.35), 0 0 12px 1px rgba(168, 85, 247, 0.25);
}

.shadow-glow-sm {
  box-shadow: 0 0 16px 0 rgba(139, 92, 246, 0.25);
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 4px var(--secondary), 0 0 8px var(--secondary);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 12px var(--secondary), 0 0 18px var(--secondary);
    opacity: 0.6;
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

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

.status-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================================
   Email Input Field — Explicit High-Visibility Styling (No Dark Text)
   ========================================================================== */
#emailInput {
  width: 100% !important;
  background-color: #0c0e17 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 9999px !important;
  padding: 14px 24px !important;
  font-size: 15px !important;
  font-family: var(--font-body) !important;
  outline: none !important;
  caret-color: #06b6d4 !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
  -webkit-text-fill-color: #ffffff !important;
}

#emailInput:focus {
  border-color: #06b6d4 !important;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.35) !important;
  background-color: #0f1424 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#emailInput::placeholder {
  color: #64748b !important;
  -webkit-text-fill-color: #64748b !important;
  opacity: 1 !important;
}

/* Native Autocomplete Styling for WebKit */
#emailInput:-webkit-autofill,
#emailInput:-webkit-autofill:hover, 
#emailInput:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #0c0e17 inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* ==========================================================================
   Self-Contained Utility Classes (Zero External CDN Dependency)
   ========================================================================== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none !important; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.grid-cols-1 { grid-template-columns: repeat(1, 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)); }

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1 { width: 4px; }
.w-2 { width: 8px; }
.w-2\.5 { width: 10px; }
.w-3 { width: 12px; }
.w-3\.5 { width: 14px; }
.w-4 { width: 16px; }
.h-2 { height: 8px; }
.h-2\.5 { height: 10px; }
.h-3\.5 { height: 14px; }
.h-4 { height: 16px; }
.h-6 { height: 24px; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }

.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-h-\[160px\] { max-height: 160px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-7 { padding-top: 1.75rem; }
.pb-4 { padding-bottom: 1rem; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }
.border-emerald-500\/40 { border-color: rgba(16, 185, 129, 0.4); }
.border-secondary\/40 { border-color: rgba(6, 182, 212, 0.4); }

.bg-base { background-color: #090b14; }
.bg-surface-lowest\/70 { background-color: rgba(12, 14, 23, 0.7); }
.bg-surface-lowest\/90 { background-color: rgba(12, 14, 23, 0.9); }
.bg-emerald-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-secondary\/20 { background-color: rgba(6, 182, 212, 0.2); }
.bg-amber { background-color: #f59e0b; }
.bg-emerald-400 { background-color: #34d399; }

.bg-gradient-to-r {
  background-image: linear-gradient(to right, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.15));
}

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.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-white { color: #ffffff !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-muted { color: #64748b !important; }
.text-text-muted { color: #64748b !important; }
.text-primary { color: #8b5cf6 !important; }
.text-cyan { color: #06b6d4 !important; }
.text-amber { color: #f59e0b !important; }
.text-emerald-400 { color: #34d399 !important; }
.text-primary-tint { color: #d0bcff !important; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.whitespace-nowrap { white-space: nowrap; }

.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; -webkit-user-select: none; }
.outline-none { outline: none; }
.blur-3xl { filter: blur(64px); }
.opacity-35 { opacity: 0.35; }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5); }
.shadow-glow-cyan { box-shadow: 0 0 16px rgba(6, 182, 212, 0.4); }

.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.duration-500 { transition-duration: 500ms; }

.hover\:text-cyan:hover { color: #06b6d4 !important; }
.hover\:text-primary:hover { color: #8b5cf6 !important; }
.hover\:scale-\[1\.01\]:hover { transform: scale(1.01); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }

.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.object-contain { object-fit: contain; }

/* Responsive Overrides */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:w-auto { width: auto; }
  .sm\:p-7 { padding: 1.75rem; }
  .sm\:p-9 { padding: 2.25rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:pt-7 { padding-top: 1.75rem; }
  .sm\:mt-16 { margin-top: 4rem; }
  .sm\:gap-3 { gap: 0.75rem; }
  .sm\:gap-5 { gap: 1.25rem; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:max-h-\[220px\] { max-height: 220px; }
  .sm\:max-w-2xl { max-width: 42rem; }
}

@media (min-width: 768px) {
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:max-h-\[260px\] { max-height: 260px; }
  .md\:max-w-3xl { max-width: 48rem; }
}
