/* AceIt Landing — styles
 * Mirrors src/theme + in-app component styling:
 * - Headers: Roboto-Bold (display)
 * - Body: Open Sans
 * - Radius: 8px (componentRadius.button / .card)
 * - Cards: white bg, #ddd border, soft shadow, NO bottom 3D border
 * - Buttons: flat, primary #00ADB5, white text, OpenSans
 */

:root {
  /* Brand */
  --color-primary: #00adb5;
  --color-primary-light: #11999e;
  --color-secondary: #11999e;

  /* Neutrals (mirror src/theme/colors.ts) */
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f7fafa;
  --color-border: #dddddd;
  --color-disabled: #dddddd;
  --color-disabled-text: #aaaaaa;
  --color-text: #1f2937;
  --color-text-muted: #5b6470;
  --color-gray-500: #6b7280;
  --color-gray-900: #111827;

  /* Semantic */
  --color-success: #008000;
  --color-error: #ff0000;

  /* Subject accents */
  --color-edpm: #e91e9c;
  --color-geography: #8b4563;
  --color-history: #2c3e50;
  --color-biology: #f5a623;
  --color-chemistry: #1abc9c;
  --color-additional-math: #b19cd9;
  --color-poa: #a8c5da;
  --color-mathematics: #3498db;
  --color-english: #e74c3c;
  --color-physics: #9b59b6;
  --color-spanish: #f39c12;
  --color-social-studies: #27ae60;

  /* Layout — 8px grid */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  --radius: 8px; /* componentRadius.button / .card */
  --radius-sm: 6px;
  --radius-pill: 999px;

  /* Shadows — match BaseCard exactly:
     shadowOffset {0,1}, opacity 0.12, radius 1.22, elevation 4 */
  --shadow-card: 0 1px 1.22px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-button: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 6px 16px rgba(15, 23, 42, 0.08);
  --shadow-hero: 0 24px 60px rgba(0, 173, 181, 0.18);

  /* Typography (mirror src/theme/typography.ts) */
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Roboto', 'Open Sans', sans-serif;

  /* Font sizes from theme */
  --fs-xs: 14px;
  --fs-sm: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 22px;
  --fs-2xl: 24px;
  --fs-3xl: 27px;
  --fs-4xl: 33px;
  --fs-5xl: 40px;
  --fs-6xl: 44px;
  --fs-7xl: 52px;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  z-index: 1000;
}
.skip-link:focus {
  left: var(--space-2);
  top: var(--space-2);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.container.narrow {
  max-width: 820px;
}

/* ---------- Header (mirrors app top-of-screen feel) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}
.brand-mark {
  /* Uses the real app icon (assets/images/ace-it.png) */
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-button);
  background: #fff;
}
.brand-mark.small {
  width: 28px;
  height: 28px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: var(--space-6);
}
.site-nav a {
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-xs);
}
.site-nav a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* ---------- Buttons (replicate PrimaryButton/SecondaryButton flat style) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 50px; /* PrimaryButton medium height */
  padding: 0 var(--space-5);
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease;
}
.btn-sm {
  height: 40px;
  padding: 0 var(--space-4);
  font-size: var(--fs-xs);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-light);
  text-decoration: none;
}
.btn-primary:active {
  opacity: 0.9;
}
.btn-primary:focus-visible {
  outline: 3px solid rgba(0, 173, 181, 0.35);
  outline-offset: 2px;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(900px 360px at 10% 0%, rgba(0, 173, 181, 0.14), transparent 60%),
    radial-gradient(900px 360px at 90% 10%, rgba(17, 153, 158, 0.1), transparent 60%),
    var(--color-bg);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  max-width: 600px;
}

.eyebrow {
  /* Replicates app "overline" textStyle: uppercase, letterspaced, primary tint */
  display: inline-block;
  padding: 6px var(--space-3);
  background: rgba(0, 173, 181, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.hero h1 {
  /* H1 in app: Roboto-Bold, fontSize 33, lineHeight 42; scaled up for web hero */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-4);
  color: var(--color-gray-900);
}
.grad {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  /* bodyLarge: OpenSans-Regular, fontSize 20, lineHeight 30 */
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: 30px;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-6);
  max-width: 540px;
}
.hero-foot {
  /* caption: OpenSans-Regular, fontSize 14 */
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}

/* ---------- Store badges (disabled “Coming soon”) ---------- */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.store-row-cta {
  justify-content: center;
  margin-top: var(--space-6);
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 18px 10px 14px;
  border-radius: var(--radius);
  background: #1f2937;
  color: #fff;
  border: 1px solid #1f2937;
  cursor: not-allowed;
  /* Replicates app PrimaryButton.disabled: bg #DDD, text #AAA */
  opacity: 0.55;
  filter: grayscale(0.4);
  font-family: var(--font-body);
  min-width: 200px;
  text-align: left;
  box-shadow: var(--shadow-button);
}
.store-badge svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: none;
}
.store-badge span.label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.store-tiny {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.store-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  margin-top: 2px;
}
.badge-soon {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px var(--space-2);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 173, 181, 0.4);
  filter: none;
  opacity: 1;
}

a.store-badge-active {
  cursor: pointer;
  opacity: 1;
  filter: none;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
a.store-badge-active:hover,
a.store-badge-active:focus-visible {
  background: #111827;
  border-color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
a.store-badge-active:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ---------- Hero phone preview (looks like the actual app Home + Learn) ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
}
.hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0, 173, 181, 0.22), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
/* iPhone-shaped frame: ~9:19.5 aspect, deeply rounded, with side button + notch */
.phone {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 560px;
  background: #0e1116;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    var(--shadow-hero),
    0 0 0 6px rgba(255, 255, 255, 0.04) inset;
  transform: rotate(-3deg);
}
/* Side power button — sells the phone illusion */
.phone::before {
  content: '';
  position: absolute;
  right: -2px;
  top: 130px;
  width: 3px;
  height: 60px;
  background: #0e1116;
  border-radius: 0 2px 2px 0;
}
/* Volume buttons */
.phone::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 110px;
  width: 3px;
  height: 40px;
  background: #0e1116;
  border-radius: 2px 0 0 2px;
  box-shadow:
    0 60px 0 0 #0e1116,
    0 60px 0 0 #0e1116;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-bg-alt);
  border-radius: 36px;
  padding: 38px 12px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Dynamic-island style notch (instead of a centered top pill bar) */
.phone-bar {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #0e1116;
  border-radius: 999px;
  z-index: 2;
}

/* App-like greeting block */
.phone-greeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.phone-greeting .g-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.phone-greeting .g-eyebrow {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-gray-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.phone-greeting .g-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-gray-900);
}
.phone-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
}

/* App-like card (replicates BaseCard) */
.phone-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 9px 10px;
  box-shadow: var(--shadow-card);
  margin-bottom: 8px;
  border: 1px solid var(--color-border);
}
.phone-card.streak {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 4px solid var(--color-primary);
  padding: 8px 10px;
}
.phone-card.streak .emoji {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(0, 173, 181, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: none;
}
.phone-card.streak .streak-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.phone-card.streak .streak-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-secondary);
}
.phone-card.streak .streak-sub {
  font-size: 10px;
  color: var(--color-gray-500);
}

.phone-pill {
  display: inline-block;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(52, 152, 219, 0.12);
  color: var(--color-mathematics);
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}
.phone-pill.alt {
  background: rgba(245, 166, 35, 0.14);
  color: var(--color-biology);
}
.phone-pill.alt2 {
  background: rgba(26, 188, 156, 0.14);
  color: var(--color-chemistry);
}

.phone-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-gray-900);
  margin: 0 0 5px;
}
.phone-line {
  height: 5px;
  background: #e2e8eb;
  border-radius: 4px;
  margin-bottom: 4px;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}

.phone-progress {
  height: 5px;
  background: #e2e8eb;
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-top: 6px;
}
.phone-progress span {
  display: block;
  height: 100%;
  width: 65%;
  background: var(--color-mathematics);
  border-radius: var(--radius-pill);
}
.phone-progress.alt span {
  width: 40%;
  background: var(--color-biology);
}
.phone-progress.alt2 span {
  width: 80%;
  background: var(--color-chemistry);
}

/* Bottom tab preview — anchored to bottom of phone screen */
.phone-tabs {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 8px 4px 14px;
  margin-left: -12px;
  margin-right: -12px;
  background: #fff;
  border-top: 1px solid var(--color-border);
}
.phone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.phone-tab.active {
  color: var(--color-primary);
}
.phone-tab .dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.6;
}
.phone-tab.active .dot {
  opacity: 1;
}

/* ---------- Sections ---------- */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  /* H1 textStyle: Roboto-Bold, 33px / 42px */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
  color: var(--color-gray-900);
}
.section-sub {
  /* body textStyle: OpenSans, 18px / 26 */
  color: var(--color-text-muted);
  margin: 0 0 var(--space-8);
  font-size: var(--fs-md);
  line-height: 1.55;
  max-width: 640px;
}

/* ---------- Cards (replicates BaseCard exactly) ---------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}
.card-accent {
  /* showLeftBorder pattern from BaseCard */
  border-left: 4px solid var(--accent, var(--color-primary));
}

/* ---------- Features grid (Home Quick Actions feel) ---------- */
.grid.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}
.feature h3 {
  /* H3 textStyle: Roboto-Bold, 24 / 32 */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 1.3;
  margin: var(--space-3) 0 var(--space-1);
  color: var(--color-gray-900);
}
.feature p {
  /* bodySmall: OpenSans, 16 / 22 */
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 22px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent, var(--color-primary)) 14%, white);
  color: var(--accent, var(--color-primary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
}

/* ---------- Subjects (replicates subject chip / topicTitle styling) ---------- */
.subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.subject-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px var(--space-4) 10px 28px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  /* subjectCardTitle: OpenSans-SemiBold, 16 / 22 */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 22px;
  position: relative;
  box-shadow: var(--shadow-button);
}
.subject-chip::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c, var(--color-primary));
}

/* ---------- Steps (numbered cards) ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px var(--space-6);
  position: relative;
  box-shadow: var(--shadow-card);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 28px;
  margin: var(--space-3) 0 var(--space-1);
  color: var(--color-gray-900);
}
.step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 22px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-button);
}

/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-5);
  box-shadow: var(--shadow-card);
}
.faq details {
  border-top: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-1);
}
.faq details:first-of-type {
  border-top: 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  font-size: var(--fs-xl);
  color: var(--color-primary);
  line-height: 1;
}
.faq details[open] summary::after {
  content: '−';
}
.faq p {
  margin: var(--space-2) 0 var(--space-1);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 22px;
}

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-md);
  margin: 0;
}
.cta .store-badge {
  background: #0e1116;
  border-color: #0e1116;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0e1116;
  color: #c9ced6;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-brand-row {
  display: inline-flex;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-left: var(--space-2);
}
.footer-links {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.footer-links a {
  color: #c9ced6;
  font-size: var(--fs-xs);
}
.footer-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: #8b93a0;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .hero-visual {
    min-height: 460px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .site-nav {
    display: none;
  }
  .section {
    padding: 56px 0;
  }
  .hero {
    padding: 56px 0 64px;
  }
  .store-badge {
    min-width: 0;
    flex: 1;
  }
}
