/* Components - Adaptive Human
 *
 * UI components: buttons, cards, badges, navigation, etc.
 * Built on tokens.css foundation.
 */


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--line-tight);
  text-decoration: none;
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 300ms ease-out,
              background 200ms ease-out,
              border-color 200ms ease-out;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

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

/* Primary button - Teal accent with raygun charge-up effect */
.btn-primary {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

/* Energy sweep gradient (raygun charging) */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 600ms ease-out;
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: white;
  box-shadow:
    0 0 20px rgba(0, 168, 171, 0.5),
    0 0 40px rgba(0, 168, 171, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15);
  animation: energyPulse 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes energyPulse {
  0% { transform: translateY(-2px) scale(1); }
  50% { transform: translateY(-2px) scale(1.02); }
  100% { transform: translateY(-2px) scale(1); }
}

/* Secondary button - Orange accent with subtle charge-up */
.btn-secondary {
  background: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(230, 126, 34, 0.2),
    transparent
  );
  transition: left 600ms ease-out;
  pointer-events: none;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  background: var(--color-orange-faint);
  border-color: var(--color-orange-hover);
  color: var(--color-orange-hover);
  box-shadow:
    0 0 20px rgba(230, 126, 34, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Link-style button */
.btn-link {
  background: transparent;
  color: var(--color-accent);
  border: none;
  padding: var(--space-2) 0;
  font-weight: var(--font-medium);
}

.btn-link:hover {
  color: var(--color-accent-hover);
  transform: translateX(2px);
  box-shadow: none;
}

/* Accessibility: Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-link {
    transition: none;
    animation: none;
  }

  .btn::before,
  .btn-primary::before,
  .btn-secondary::before {
    display: none;
  }

  .btn:hover {
    transform: none;
  }

  /* Disable hero animations */
  .hero-name {
    animation: none;
    background: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
  }

  .word-glow {
    transition: none;
  }

  .word-glow:hover {
    text-shadow: none;
  }
}


/* ============================================
   BADGES
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-status {
  background: var(--color-accent-faint);
  color: var(--color-accent);
  border: var(--border-width) solid var(--color-accent);
}


/* ============================================
   LINKS
   ============================================ */

/* External links - animated underline sweep */
.link-external {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: var(--font-medium);
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* Animated underline using pseudo-element */
.link-external::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-burnt-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-external:hover {
  color: var(--color-burnt-orange);
  transform: translateX(3px);
}

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


/* ============================================
   NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--bg-secondary);
  border-bottom: var(--border-width) solid var(--border-light);
  backdrop-filter: blur(8px);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-all-fast);
}

.logo:hover {
  color: var(--color-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-link {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline sweep from left */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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


/* ============================================
   THEME TOGGLE
   ============================================ */

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size-lg);
  height: var(--size-lg);
  padding: 0;
  background: transparent;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-all-fast);
}

.theme-toggle:hover {
  background: var(--bg-hover);
  border-color: var(--color-accent);
}

.theme-icon {
  display: block;
  width: 20px;
  height: 20px;
}

/* Show/hide icons based on theme */
/* Light mode: show moon (clicking goes to dark) */
body:not(.dark-mode) .theme-icon-light {
  display: none;
}

body:not(.dark-mode) .theme-icon-dark {
  display: block;
  /* Color fix: moon needs contrast on light background */
  fill: #6b7280;
  stroke: #374151;
  stroke-width: 1.5;
}

/* Dark mode: show sun (clicking goes to light) */
body.dark-mode .theme-icon-light {
  display: block;
  /* Color fix: sun needs warmth/visibility on dark background */
  fill: #fbbf24;
  stroke: #fbbf24;
}

body.dark-mode .theme-icon-dark {
  display: none;
}


/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: var(--space-20) 0;
  border-bottom: var(--border-width) solid var(--border-light);
  position: relative;
}

.section:last-of-type {
  border-bottom: none;
}

/* Kintsugi "seam" - subtle gold line between sections */
.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold) 20%,
    var(--color-gold) 80%,
    transparent 100%
  );
  opacity: 0.4;
}

.section:last-of-type::after {
  display: none;
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-8);
  color: var(--text-primary);
  /* No border - scribble underline handled by JS */
  display: inline-block;
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: var(--line-relaxed);
}

.section-content {
  margin-bottom: var(--space-8);
}

.section-content:last-child {
  margin-bottom: 0;
}

.section-content h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.section-content h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.section-content p {
  margin-bottom: var(--space-4);
}

.section-content ul,
.section-content ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.section-content li {
  margin-bottom: var(--space-2);
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: var(--space-24) 0 var(--space-8) 0;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

.hero-content {
  max-width: 800px;
  margin: 0 auto var(--space-12) auto;
  text-align: center;
}

.hero-name {
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  margin-bottom: var(--space-4);
  /* Animated shimmer gradient - subtle gold/red sweep (light mode) */
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-primary) 42%,
    var(--color-gold) 48%,
    #ef4444 52%,
    var(--text-primary) 58%,
    var(--text-primary) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: var(--tracking-tight);
  animation: shimmer 15s ease-in-out infinite;
}

/* Dark mode: Blue → Purple shimmer */
body.dark-mode .hero-name {
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-primary) 42%,
    #3b82f6 48%,
    #a855f7 52%,
    var(--text-primary) 58%,
    var(--text-primary) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: var(--text-2xl);
  font-weight: var(--font-normal);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--line-relaxed);
}

/* Word-by-word hover glow - subtle interactive delight */
.word-glow {
  transition: text-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
  display: inline-block;
  padding: 0 2px;
}

/* Light mode: Teal glow */
.word-glow:hover {
  color: var(--color-accent);
  text-shadow: 0 0 16px rgba(0, 168, 171, 0.9),
               0 0 32px rgba(0, 168, 171, 0.6),
               0 0 48px rgba(0, 168, 171, 0.4);
}

/* Dark mode: Orange/amber glow */
body.dark-mode .word-glow:hover {
  color: #ff6b35;
  text-shadow: 0 0 16px rgba(255, 107, 53, 0.9),
               0 0 32px rgba(243, 156, 18, 0.6),
               0 0 48px rgba(244, 208, 63, 0.4);
}

/* Disable word glow on mobile (touch doesn't have accurate hover) */
@media (max-width: 768px) {
  .word-glow {
    pointer-events: none;
  }

  .word-glow:hover {
    text-shadow: none;
  }
}

.hero-philosophy {
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: var(--space-8);
  font-weight: var(--font-medium);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-hook {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--text-lg);
  color: var(--text-tertiary);
  font-style: italic;
  text-align: center;
}


/* ============================================
   PAGE HERO (for content pages like PLAY)
   ============================================ */

.page-hero {
  padding: var(--space-16) 0 var(--space-12) 0;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  border-bottom: var(--border-width) solid var(--border-light);
}

.page-hero h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  letter-spacing: var(--tracking-tight);
}

.page-subtitle {
  font-size: var(--text-lg);
  color: var(--text-tertiary);
  font-weight: var(--font-medium);
}


/* ============================================
   PAGE CONTENT (for long-form pages)
   ============================================ */

.page-content {
  padding: var(--space-16) 0;
}

.content-section {
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-16);
  /* border-bottom removed - using laser beam dividers instead */
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-section h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

.content-section h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  margin-top: var(--space-8);
  color: var(--text-primary);
}

.content-section h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  margin-top: var(--space-6);
  color: var(--text-primary);
}

.content-section p {
  margin-bottom: var(--space-4);
  line-height: var(--line-relaxed);
}

.content-section ul,
.content-section ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.content-section li {
  margin-bottom: var(--space-2);
  line-height: var(--line-relaxed);
}

.content-section li ul,
.content-section li ol {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
}

.content-section pre {
  background: var(--bg-tertiary);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: var(--space-6);
  border: var(--border-width) solid var(--border-color);
}

.content-section code {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}

.highlight-quote {
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-gold);
  text-align: center;
  margin: var(--space-8) 0;
  font-weight: var(--font-medium);
}

.footer-note {
  font-size: var(--text-md);
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: var(--space-6);
}

.section-cta {
  text-align: center;
  padding-top: var(--space-12);
  border-top: var(--border-width) solid var(--border-light);
}


/* ============================================
   WORK PRINCIPLES (How I Work section)
   ============================================ */

.work-principles {
  display: grid;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.principle {
  padding: var(--space-6);
  background: var(--bg-secondary);
  border: var(--border-width) solid var(--border-light);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease,
              background 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Energy sweep effect on hover */
.principle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.08),
    transparent
  );
  transition: left 600ms ease-out;
  pointer-events: none;
}

body.dark-mode .principle::before {
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.12),
    transparent
  );
}

.principle:hover::before {
  left: 100%;
}

.principle:hover {
  border-color: var(--color-accent);
  border-left-color: var(--color-gold-hover);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2),
              0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px) scale(1.01);
  background: var(--bg-tertiary);
}

body.dark-mode .principle:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25),
              0 6px 20px rgba(0, 0, 0, 0.25);
}

.principle h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}

.principle p {
  margin-bottom: var(--space-3);
}

.principle ul,
.principle ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.principle li {
  margin-bottom: var(--space-2);
}


/* ============================================
   CTA BOX
   ============================================ */

.cta-box {
  padding: var(--space-8);
  background: linear-gradient(
    135deg,
    var(--color-accent-faint) 0%,
    var(--color-orange-faint) 100%
  );
  border: var(--border-width-thick) solid var(--color-accent);
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-box h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.cta-box p {
  margin-bottom: var(--space-4);
  line-height: var(--line-relaxed);
}

.cta-box p:last-of-type {
  margin-bottom: var(--space-6);
}


/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.product-card {
  padding: var(--space-8);
  background: var(--bg-secondary);
  border: var(--border-width) solid var(--border-light);
  border-top: 2px solid var(--color-gold);
  border-radius: var(--radius-xl);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease,
              background 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Energy sweep effect on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 168, 171, 0.08),
    transparent
  );
  transition: left 600ms ease-out;
  pointer-events: none;
}

body.dark-mode .product-card::before {
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 168, 171, 0.12),
    transparent
  );
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  border-color: var(--color-accent);
  border-top-color: var(--color-gold-hover);
  box-shadow: 0 0 30px rgba(0, 168, 171, 0.2),
              0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px) scale(1.02);
  background: var(--bg-tertiary);
}

body.dark-mode .product-card:hover {
  box-shadow: 0 0 30px rgba(0, 168, 171, 0.3),
              0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  gap: var(--space-4);
}

.product-header h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
}

.product-description {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-4);
}

.product-proof {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  font-style: italic;
  margin-bottom: var(--space-6);
}

.product-bet {
  font-size: var(--text-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.product-card .btn {
  margin-top: var(--space-4);
}


/* ============================================
   CONNECT SECTION
   ============================================ */

.connect-links {
  display: grid;
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.connect-item {
  padding: var(--space-4);
  background: var(--bg-secondary);
  border: var(--border-width) solid var(--border-light);
  border-radius: var(--radius-md);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease,
              background 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Energy sweep effect on hover */
.connect-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 168, 171, 0.08),
    transparent
  );
  transition: left 600ms ease-out;
  pointer-events: none;
}

body.dark-mode .connect-item::before {
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 168, 171, 0.12),
    transparent
  );
}

.connect-item:hover::before {
  left: 100%;
}

.connect-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(0, 168, 171, 0.15),
              0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px) scale(1.01);
  background: var(--bg-tertiary);
}

body.dark-mode .connect-item:hover {
  box-shadow: 0 0 20px rgba(0, 168, 171, 0.25),
              0 4px 16px rgba(0, 0, 0, 0.2);
}

.connect-item strong {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.connect-description {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-top: var(--space-2);
  margin-bottom: 0;
}

.connect-footer {
  font-size: var(--text-md);
  color: var(--text-secondary);
  margin: var(--space-8) 0 var(--space-6) 0;
}

.connect-tagline {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-gold);
  margin-top: var(--space-8);
}


/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: var(--space-8) 0;
  border-top: var(--border-width) solid var(--border-light);
  text-align: center;
}

.site-footer p {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}


/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  /* Hero adjustments */
  .hero-name {
    font-size: var(--text-4xl);
  }

  .hero-tagline {
    font-size: var(--text-lg);
  }

  .hero-philosophy {
    font-size: var(--text-md);
  }

  .hero-hook {
    font-size: var(--text-md);
  }

  /* Reset asymmetry on mobile for better readability */
  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero-hook {
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  /* Page hero adjustments */
  .page-hero h1 {
    font-size: var(--text-3xl);
  }

  /* Section title adjustments */
  .section-title {
    font-size: var(--text-3xl);
  }

  /* Products grid - single column on mobile */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* Navigation adjustments */
  .nav-actions {
    gap: var(--space-3);
  }

  /* Button adjustments */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
