/*! TikTok Live Recorder */
:root {
  --bg: #f6f7f9;
  --bg-lift: #ffffff;
  --ink: #0f1117;
  --muted: #5f6775;
  --accent: #e23d2d;
  --accent-deep: #c93324;
  --accent-glow: rgba(226, 61, 45, 0.12);
  --line: #e2e5eb;
  --success: #1f8a5a;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 0.95rem 1.6rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(226, 61, 45, 0.28);
}
.btn-primary:hover {
  background: var(--accent-deep);
  box-shadow: 0 6px 20px rgba(226, 61, 45, 0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.8);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: #fff;
  border-color: #c9ced8;
  box-shadow: var(--shadow-md);
}

/* —— Topbar —— */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(246,247,249,0.75);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.topbar.scrolled {
  background: rgba(255,255,255,0.92);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.topbar-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.topbar-nav a { transition: color 0.2s; }
.topbar-nav a:hover { color: var(--ink); }

.topbar-cta {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.topbar-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* —— Hero —— */
.hero {
  position: relative;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 85% 10%, rgba(226,61,45,0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 80%, rgba(226,61,45,0.06), transparent 50%),
    linear-gradient(135deg, #eef1f5 0%, #f8f9fb 50%, #fdece9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: #fff;
  border: 1px solid rgba(226,61,45,0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1.1rem;
}
.brand-mark em {
  font-style: normal;
  color: var(--accent);
}

.hero-lede {
  margin: 0 0 1.6rem;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 30rem;
  line-height: 1.6;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.social-avatars {
  display: flex;
}
.social-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
}
.social-avatars img:first-child { margin-left: 0; }

.hero-social p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.hero-social strong { color: var(--ink); }

/* Hero visual — app window mockup */
.hero-visual {
  position: relative;
  perspective: 1200px;
}
.window-frame {
  background: #1c1c1e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.25);
}
.window-frame.tilt {
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.6s ease;
}
.window-frame.tilt:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.window-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #2c2c2e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.traffic-lights {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.traffic-lights span {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: block;
}
.red { background: #ff5f57; }
.yellow { background: #febc2e; }
.green { background: #28c840; }

.window-title {
  font-size: 0.8rem;
  color: #8e8e93;
  font-weight: 500;
  margin: 0 auto;
  padding-right: 52px;
}

.window-content img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top center;
  background: linear-gradient(145deg, #eef1f5, #fdece9);
}

.floating-tag {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.tag-dot.live { background: var(--success); }
.tag-dot.saved { background: var(--accent); }

.tag-1 { top: 18%; right: -1.5rem; animation-delay: 0s; }
.tag-2 { bottom: 22%; left: -2rem; animation-delay: 1.5s; }

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

/* —— Trust bar —— */
.trust {
  padding: 1.25rem 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* —— Problem —— */
.problem {
  padding: 5.5rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.problem-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.problem-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.problem-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.ghost-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  max-width: 320px;
  margin-left: auto;
}
.ghost-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.ghost-text {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* —— How it works —— */
.how-it-works {
  padding: 5.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 3rem;
}
.step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--line);
  font-weight: 700;
  padding-top: 2.5rem;
  flex-shrink: 0;
}

/* —— Features —— */
.features {
  padding: 5.5rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.feature {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-lift);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  transform: translateY(16px);
}
.feature.in {
  opacity: 1;
  transform: none;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d1d5db;
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--icon-bg, #f3f4f6);
  color: var(--icon-color, var(--ink));
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* —— Preview —— */
.preview {
  padding: 5.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.preview-stage {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preview-frame {
  max-width: 900px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.preview-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.preview-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.preview-tab img {
  width: 28px; height: 20px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--bg);
}
.preview-tab:hover { border-color: #c9ced8; }
.preview-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* —— Testimonials —— */
.testimonials {
  padding: 5.5rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial {
  margin: 0;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-lift);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(14px);
}
.testimonial.in {
  opacity: 1;
  transform: none;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial > p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.25rem;
  font-style: italic;
}
.testimonial .testfoot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding: 0;
}
.testimonial .testfoot img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
}

/* —— Pricing —— */
.pricing {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 60% 35% at 50% 0%, rgba(226,61,45,0.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--bg-lift);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pricing-card.paid {
  border-color: rgba(226,61,45,0.25);
  box-shadow: 0 0 0 1px rgba(226,61,45,0.08), var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.pricing-header { text-align: center; margin-bottom: 1.25rem; }
.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 0.2rem;
  line-height: 1;
}
.pricing-price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.pricing-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.pricing-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--success);
  font-weight: 700;
  font-size: 0.9rem;
}
.pricing-list li:last-child { border-bottom: none; }

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  color: var(--success);
  font-weight: 600;
}

.pricing-faq {
  max-width: 640px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.2s ease;
}
.pricing-faq details:hover { box-shadow: var(--shadow-sm); }
.pricing-faq summary {
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-faq summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.2s;
}
.pricing-faq details[open] summary::after { transform: rotate(45deg); }
.pricing-faq details p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.pricing-faq details code {
  font-size: 0.85em;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.15em 0.4em;
  color: var(--ink);
}

/* —— Download —— */
.download {
  padding: 5.5rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.download-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.download-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}
.download-card > p {
  color: var(--muted);
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}
.download-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.download-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.download-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— Final CTA —— */
.final-cta {
  padding: 5rem 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  line-height: 1.15;
}
.final-cta .btn-primary {
  background: var(--accent);
  box-shadow: 0 8px 30px rgba(226,61,45,0.35);
}
.final-cta .btn-primary:hover {
  background: #ff4d3d;
  box-shadow: 0 10px 35px rgba(226,61,45,0.45);
}
.final-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

/* —— Footer —— */
footer {
  padding: 3rem 0 2.5rem;
  background: #0c0e12;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { color: #fff; }
.footer-brand p {
  margin: 0.5rem 0 0;
  max-width: 280px;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* —— Reusable section styles —— */
.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.6rem;
}
.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
  line-height: 1.55;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .window-frame.tilt { transform: none; }
  .floating-tag { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ghost-card { margin: 0 auto; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .topbar-nav { display: none; }
}

@media (max-width: 560px) {
  .hero { padding-top: 7rem; }
  .brand-mark { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .download-row { flex-direction: column; }
  .download-row .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { margin-inline: auto; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}