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

:root {
  /* Brand */
  --blue: #3B82F6;
  --yellow: #EAB308;
  --green: #22C55E;
  --purple: #A855F7;
  --orange: #F97316;

  /* Light mode (default) */
  --bg: #FFFFFF;
  --surface: #F5F5F5;
  --border: #E5E5E5;
  --text-primary: #0A0A0A;
  --text-secondary: #737373;

  /* Intent tints – light */
  --idea-bg: rgb(235, 242, 255);
  --question-bg: rgb(255, 250, 230);
  --task-bg: rgb(235, 255, 242);
  --evidence-bg: rgb(245, 240, 255);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Typography ── */
h1 { font-size: 36px; font-weight: 700; line-height: 1.2; }
h2 { font-size: 24px; font-weight: 600; line-height: 1.3; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.4; }
.hero-title { font-size: clamp(36px, 5.4vw, 58px); font-weight: 700; line-height: 1.1; }
.text-secondary { color: var(--text-secondary); }
.text-small { font-size: 14px; }
.text-tiny { font-size: 12px; font-weight: 500; }

/* ── Layout ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #262626;
}

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

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

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-logo span {
  font-family: 'Lexend Exa', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FAFAFA;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #A3A3A3;
  transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
  color: #FAFAFA;
}

.nav-links a.btn-primary {
  color: #fff;
  font-weight: 700;
}

.nav-links a.btn-primary:hover {
  color: #fff;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #2563EB;
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
  transform: scale(1.02);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* ── Hero ── */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-logo {
  width: 64px;
  height: 64px;
  margin: 0 0 24px;
  animation: float 6s ease-in-out infinite;
}

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

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 20px);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 32px;
  flex-wrap: nowrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  white-space: nowrap;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.store-badge:hover {
  border-color: var(--text-secondary);
  transform: scale(1.02);
}

.store-badge .badge-icon {
  font-size: 24px;
}

.store-badge .badge-text {
  text-align: left;
}

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

.store-badge .badge-store {
  font-size: 16px;
  font-weight: 600;
}

/* ── Transition Line ── */
.transition-section {
  padding: 16px 0 64px;
  text-align: center;
}

.transition-headline {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #737373;
}

/* ── Preview Slideshow ── */
.preview-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.preview-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.preview-tab:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.preview-tab.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.slideshow-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.slideshow {
  display: none;
}

.slideshow.active {
  display: block;
}

.slideshow-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
}

/* macOS slides: landscape */
#slideshow-macos .slideshow-track {
  aspect-ratio: 16 / 10;
}

/* iOS slides: portrait, constrain height */
#slideshow-ios .slideshow-track {
  aspect-ratio: 9 / 19.5;
  max-height: 600px;
  margin: 0 auto;
  max-width: 280px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}

.slide-arrow:hover {
  background: var(--border);
  transform: translateY(-50%) scale(1.05);
}

.slide-nav-mobile {
  display: contents;
}

.slide-prev { left: -20px; }
.slide-next { right: -20px; }

/* Dots */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 0;
}

.slide-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .slideshow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slideshow.active {
    display: block;
    width: 100%;
  }

  .slide-arrow {
    position: static;
    transform: none;
    width: 36px;
    height: 36px;
  }

  .slide-arrow:hover {
    transform: scale(1.05);
  }

  .slide-nav-mobile {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
  }

  #slideshow-ios .slideshow-track {
    max-height: 480px;
    max-width: 240px;
  }
}

/* ── Features Grid ── */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-header p {
  color: var(--text-secondary);
  margin-top: 12px;
}

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

.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-card.idea { background: var(--idea-bg); }
.feature-card.question { background: var(--question-bg); }
.feature-card.task { background: var(--task-bg); }
.feature-card.evidence { background: var(--evidence-bg); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card.idea .feature-icon { background: rgba(59, 130, 246, 0.15); color: var(--blue); }
.feature-card.question .feature-icon { background: rgba(234, 179, 8, 0.15); color: var(--yellow); }
.feature-card.task .feature-icon { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.feature-card.evidence .feature-icon { background: rgba(168, 85, 247, 0.15); color: var(--purple); }

.feature-card h3 {
  margin-bottom: 8px;
}

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

/* ── Problem Statement ── */
.problem-section {
  padding: 64px 0 80px;
  border-top: 1px solid var(--border);
}

.problem-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.problem-block h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.problem-block p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.problem-punch {
  margin-top: 16px !important;
  color: var(--text-primary) !important;
  font-weight: 600;
}

/* ── Section Callout ── */
.section-callout {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
}

.section-callout p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-callout p + p {
  margin-top: 12px;
}

.callout-accent {
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 17px;
}

.section-callout code {
  background: var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

/* ── Section Image ── */
.section-image {
  max-width: 720px;
  margin: -16px auto 24px;
}

.section-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ── Feature List (AI, Loops) ── */
.feature-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.2s ease-in-out;
}

.feature-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-list-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list-icon.purple-glow {
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple);
}

.feature-list-icon.blue-glow {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue);
}

.feature-list-icon.orange-glow {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}

.feature-list-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.feature-list-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.feature-list-item code {
  background: var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ── Commits Grid ── */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.commit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.2s ease-in-out;
}

.commit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.commit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.commit-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.commit-card code {
  background: var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ── Insights Grid ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.insight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s ease-in-out;
}

.insight-item:hover {
  background: var(--surface);
}

.insight-item:last-child {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

.insight-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.insight-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* ── Privacy Grid ── */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
}

.privacy-item svg {
  margin: 0 auto 16px;
  color: var(--text-secondary);
}

.privacy-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.privacy-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  gap: 16px;
}

.pricing-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

@media (hover: none) {
  .pricing-card:hover {
    border-color: var(--border);
    box-shadow: none;
  }

  .pricing-card:active {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue);
  }
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-badge.save-badge {
  background: var(--blue);
}

.pricing-tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  display: inline-block;
}

.pricing-features li.included::before {
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-features li.excluded {
  color: var(--text-secondary);
  opacity: 0.5;
}

.pricing-features li.excluded::before {
  background: var(--border);
}

.founding-note {
  font-size: 13px;
  color: var(--purple);
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
}

.cta-section p {
  color: var(--text-secondary);
  margin: 12px auto 32px;
  max-width: 480px;
}

.cta-section .hero-ctas {
  justify-content: center;
}

.cta-subline {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary) !important;
}

/* ── Footer ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

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

.footer-inner p {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

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

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

/* ── Contact Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 32px;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.2s ease-in-out;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease-in-out;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(2).fade-in { transition-delay: 0.1s; }
.feature-card:nth-child(3).fade-in { transition-delay: 0.2s; }
.feature-card:nth-child(4).fade-in { transition-delay: 0.3s; }

.step:nth-child(2).fade-in { transition-delay: 0.1s; }
.step:nth-child(3).fade-in { transition-delay: 0.2s; }

nav.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo {
    margin: 0 auto 24px;
  }

  .hero-subtitle {
    margin: 16px auto 0;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-links {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .commit-grid {
    grid-template-columns: 1fr;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .pricing-grid.four-col {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
