/*
  Fixerly Landing Styles - Premium Edition
  Inspired by Apple, Linear, Stripe
*/

:root {
  --font-heading: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', system-ui, sans-serif;
  --bg: #000000;
  --bg-subtle: #0a0a0a;
  --panel: #111111;
  --text: #ffffff;
  --text-secondary: #a1a1a1;
  --text-tertiary: #6b6b6b;
  --accent: #0ea5e9;
  --accent-hover: #38bdf8;
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --success: #10b981;
  --error: #ef4444;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.32);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html { 
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-heading); 
  font-weight: 600; 
  letter-spacing: -0.03em;
  line-height: 1.1;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-mark { 
  font-size: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav { 
  display: flex;
  gap: 32px; 
  align-items: center; 
}

.nav-link { 
  color: var(--text-secondary); 
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-link:hover { 
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: var(--font-sans);
}

.button:hover { 
  border-color: var(--border-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.button:active { 
  transform: translateY(0); 
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button-primary { 
  background: var(--accent-gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.button-primary:hover {
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.button-small { 
  padding: 8px 16px; 
  font-size: 14px; 
}

.button-ghost {
  background: transparent;
  border-color: var(--border);
}

/* Hero Section */
.hero { 
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow { 
  color: var(--accent); 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-title { 
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.05;
  margin: 0 auto 32px;
  max-width: 900px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.accent { 
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-subtitle { 
  color: var(--text-secondary); 
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* Lead Form */
.lead-form { 
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.lead-form input { 
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  outline: none;
  font-size: 15px;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.lead-form input::placeholder {
  color: var(--text-tertiary);
}

.lead-form input:focus { 
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: var(--bg-subtle);
}

.form-success { 
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
}

.form-subtext {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.lead-form-inline {
  max-width: 720px;
}

@media (max-width: 640px) { 
  .lead-form { 
    flex-direction: column;
    align-items: stretch;
  }
  .lead-form input {
    width: 100%;
  }
  .button {
    width: 100%;
  }
}

/* Flow Demo */
.hero-aside {
  margin-top: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.flow {
  display: grid;
  gap: 24px;
}

.flow-step {
  position: relative;
  padding-left: 48px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.flow-step:nth-child(1) { animation-delay: 0.2s; }
.flow-step:nth-child(2) { animation-delay: 0.4s; }
.flow-step:nth-child(3) { animation-delay: 0.6s; }

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

.step-badge {
  position: absolute;
  left: 0;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

/* Email Preview */
.email {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 12px;
}

.email-topbar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.email-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.email-row {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin: 8px 0;
  align-items: baseline;
}

.email-label {
  display: inline-block;
  min-width: 60px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.email-row span:last-child {
  color: var(--text-secondary);
}

.email-body {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.mono {
  font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Courier New', monospace;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.email-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.note-inline {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  color: var(--success);
  font-size: 13px;
}

/* Card */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 12px;
}

.checks {
  list-style: none;
  margin: 0;
}

.checks li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
}

/* Stats Section */
.section-stats {
  padding: 80px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-card {
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 12px;
}

.lead {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Value Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card h3 {
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.value-card p:last-child {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Calculator Section */
.calculator-section {
  max-width: 800px;
  margin: 0 auto;
}

.calculator {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.calculator-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .calculator-inputs {
    grid-template-columns: 1fr;
  }
  
  .calculator {
    padding: 32px 24px;
  }
}

.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.input-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .calculator-results {
    grid-template-columns: 1fr;
  }
}

.result-card {
  text-align: center;
  padding: 24px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

.result-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.result-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.result-card-money {
  grid-column: 1 / -1;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.result-value-money {
  color: var(--success);
}

.calculator-disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  font-style: italic;
}

@media (max-width: 640px) {
  .result-card-money {
    grid-column: 1;
  }
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 968px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.list {
  list-style: none;
  margin: 24px 0;
}

.list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-secondary);
  font-size: 17px;
}

.list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(59, 130, 246, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 15px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.step p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Integrations */
.integrations {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

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

.integration-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.badge-integration {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.insights {
  display: grid;
  gap: 24px;
}

.insight-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border: 2px solid var(--accent);
  background: rgba(59, 130, 246, 0.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text);
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.pricing-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
  font-size: 18px;
}

/* Testimonial */
.testimonial {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 22px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 48px;
  color: var(--accent);
  line-height: 0;
  display: inline-block;
  margin-right: 8px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  color: var(--text);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .testimonial {
    padding: 32px 24px;
  }
  
  .testimonial-quote {
    font-size: 18px;
  }
}

/* CTA */
.cta {
  text-align: center;
  padding: 120px 0;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ */
#faq {
  max-width: 800px;
  margin: 0 auto;
}

#faq h2 {
  margin-bottom: 48px;
  text-align: center;
}

#faq details {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

#faq details:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
}

#faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  position: relative;
}

#faq summary::-webkit-details-marker {
  display: none;
}

#faq summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

#faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

#faq details[open] summary {
  border-bottom: 1px solid var(--border);
}

#faq details p {
  padding: 24px 28px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-subtle);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.muted {
  color: var(--text-tertiary);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

/* Utility */
.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;
}

.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .container {
    padding: 0 24px;
  }
  
  h2 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}