﻿/**
 * Home landing — semantic classes only (no utility framework).
 * Colors align with areas/public/includes/header.php tailwind.config brand + slate/zinc.
 */

 .home-page {
  /* Accent green: growth arrows, paid/mock status, hero Play icon — CTAs stay black/white. */
  --bk-green: #22c55e;
  --bk-red: #ef4444;
  --bk-dark-bg: #000000;
  --bk-dark-surface: #0a0a0a;
  --bk-light-bg: #fafafa;
  --bk-light-border: #e5e5e5;
  --bk-light-elevated: #f5f5f5;
  --bk-shadow-soft-light: 0 8px 30px -4px rgba(0, 0, 0, 0.03);
  --bk-shadow-soft-dark: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  --bk-slate-50: #fafafa;
  --bk-slate-100: #f5f5f5;
  --bk-slate-200: #e5e5e5;
  --bk-slate-300: #d4d4d4;
  --bk-slate-400: #a3a3a3;
  --bk-slate-500: #737373;
  --bk-slate-600: #525252;
  --bk-slate-800: #171717;
  --bk-slate-900: #000000;
  --bk-zinc-300: #d4d4d4;
  --bk-zinc-400: #a3a3a3;
  --bk-zinc-500: #737373;
  --bk-zinc-700: #404040;
  --bk-zinc-800: #262626;
  --bk-zinc-900: #171717;
  --bk-black: #000000;
  --bk-white: #ffffff;
}

html.dark .home-page {
  color-scheme: dark;
}

/* Tap: no text selection flash on buttons, links, cards, icons */
.home-page a,
.home-page button,
.home-page [role="button"],
.home-page img,
.home-page i,
.home-page svg,
.home-page .home-hero-badge,
.home-page .home-screenshot-slide,
.home-page .home-faq-item__trigger {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* ---------- Hero ---------- */
.home-hero-region {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.home-hero-region:not(.home-hero-region--has-bg) {
  padding: 7rem 0 3rem;
}

.home-hero-region--has-bg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: var(--bk-light-bg);
  background-image: var(--hero-bg-light-mobile, var(--hero-bg-light-desktop, none));
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
}

html.dark .home-hero-region--has-bg {
  background-color: var(--bk-dark-bg);
  background-image: var(--hero-bg-dark-mobile, var(--hero-bg-dark-desktop, var(--hero-bg-light-mobile, var(--hero-bg-light-desktop, none))));
}

.home-hero-region__inner {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  box-sizing: border-box;
}

.home-hero-region--has-bg .home-hero-region__inner {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}

.home-hero-region__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  justify-items: start;
  width: 100%;
}

.home-hero-content {
  width: 100%;
  max-width: 42rem;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  z-index: 10;
}

.home-hero-lead {
  margin-left: 0;
  margin-right: 0;
}

.home-hero-actions {
  align-items: flex-start;
  justify-content: flex-start;
}

/* Phone: hero height follows uploaded mobile background image ratio */
@media (max-width: 767px) {
  .home-hero-region--has-bg {
    width: 100%;
    min-height: auto;
    aspect-ratio: var(
      --hero-aspect-light-mobile,
      var(--hero-aspect-light-desktop, 9 / 16)
    );
    background-size: 100% 100%;
  }

  html.dark .home-hero-region--has-bg {
    aspect-ratio: var(
      --hero-aspect-dark-mobile,
      var(
        --hero-aspect-dark-desktop,
        var(--hero-aspect-light-mobile, var(--hero-aspect-light-desktop, 9 / 16))
      )
    );
  }

  .home-hero-region--has-bg .home-hero-region__inner {
    position: absolute;
    inset: 0;
    flex: none;
    align-items: flex-end;
    padding: 5.5rem 1rem 2rem;
    box-sizing: border-box;
  }
}

/* Tablet: fixed hero height (not tied to background image dimensions) */
@media (min-width: 768px) and (max-width: 1023px) {
  .home-hero-region--has-bg {
    min-height: 80rem;
    aspect-ratio: auto;
    background-size: cover;
  }

  .home-hero-region--has-bg .home-hero-region__inner {
    position: absolute;
    inset: 0;
    flex: none;
    align-items: flex-end;
    padding: 6rem 1.5rem 2.5rem;
    box-sizing: border-box;
  }
}

/* Phone + tablet: centered hero copy */
@media (max-width: 1023px) {
  .home-hero-region__grid {
    justify-items: center;
    align-content: end;
  }

  .home-hero-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-actions {
    align-items: center;
    justify-content: center;
  }

  .home-hero-actions__btn {
    width: 100%;
    max-width: 18rem;
  }
}

@media (min-width: 640px) {
  .home-hero-region__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .home-hero-region:not(.home-hero-region--has-bg) {
    padding: 9rem 0 5rem;
  }

  .home-hero-region--has-bg {
    min-height: 55rem;
    aspect-ratio: auto;
    padding: 6.5rem 0 3rem;
    background-image: var(--hero-bg-light-desktop, var(--hero-bg-light-mobile, none));
    background-size: cover;
  }

  .home-hero-region--has-bg .home-hero-region__inner {
    position: relative;
    inset: auto;
    flex: 1;
    padding: 0 2rem;
  }

  html.dark .home-hero-region--has-bg {
    background-image: var(--hero-bg-dark-desktop, var(--hero-bg-dark-mobile, var(--hero-bg-light-desktop, var(--hero-bg-light-mobile, none))));
  }

  .home-hero-region__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .home-hero-region__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    justify-items: stretch;
  }

  .home-hero-region--has-bg .home-hero-region__inner {
    align-items: center;
  }

  .home-hero-content {
    grid-column: 1;
    justify-self: start;
  }
}

/* ---------- Hero copy ---------- */
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--bk-slate-100);
  border: 1px solid var(--bk-slate-200);
  font-size: 13px;
  font-weight: 500;
}
html.dark .home-hero-badge {
  background: var(--bk-dark-surface);
  border-color: var(--bk-zinc-800);
}

.home-hero-badge__dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--bk-green);
}

.home-hero-badge__label {
  color: var(--bk-slate-600);
}
html.dark .home-hero-badge__label {
  color: var(--bk-zinc-300);
}

.home-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
@media (min-width: 640px) {
  .home-hero-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .home-hero-title {
    font-size: 3rem;
  }
}

.home-hero-title__highlight {
  color: transparent;
  background: linear-gradient(to right, var(--bk-slate-900), var(--bk-slate-500));
  -webkit-background-clip: text;
  background-clip: text;
}
html.dark .home-hero-title__highlight {
  background: linear-gradient(to right, var(--bk-white), var(--bk-zinc-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.home-hero-lead {
  font-size: 1rem;
  color: var(--bk-slate-600);
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 36rem;
}
@media (min-width: 640px) {
  .home-hero-lead {
    font-size: 1.125rem;
  }
}
html.dark .home-hero-lead {
  color: var(--bk-zinc-400);
}

.home-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .home-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.home-hero-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.home-hero-actions__btn--primary {
  background: var(--bk-slate-900);
  color: var(--bk-white);
  box-shadow: var(--bk-shadow-soft-light);
}
.home-hero-actions__btn--primary:hover {
  transform: scale(1.05);
}
html.dark .home-hero-actions__btn--primary {
  background: var(--bk-white);
  color: var(--bk-black);
  box-shadow: var(--bk-shadow-soft-dark);
}

.home-hero-actions__btn--secondary {
  background: var(--bk-white);
  color: var(--bk-slate-900);
  border: 1px solid var(--bk-slate-200);
  box-shadow: var(--bk-shadow-soft-light);
}
.home-hero-actions__btn--secondary:hover {
  background: var(--bk-slate-50);
}
html.dark .home-hero-actions__btn--secondary {
  background: var(--bk-dark-surface);
  color: var(--bk-white);
  border-color: var(--bk-zinc-800);
  box-shadow: none;
}
html.dark .home-hero-actions__btn--secondary:hover {
  background: var(--bk-zinc-800);
}

.home-hero-actions__btn .home-icon--brand {
  font-size: 1.25rem;
}

.home-hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  font-size: 13px;
  color: var(--bk-slate-500);
}
@media (max-width: 1023px) {
  .home-hero-trust-points {
    justify-content: center;
    width: 100%;
  }
}
html.dark .home-hero-trust-points {
  color: var(--bk-zinc-400);
}

.home-hero-trust-points__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.home-hero-trust-points__item .home-icon--brand {
  color: var(--bk-green);
}

/* ---------- Audience marquee strip ---------- */
.home-audience-strip {
  border-top: 1px solid var(--bk-light-border);
  border-bottom: 1px solid var(--bk-light-border);
  background: var(--bk-white);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
  z-index: 20;
  overflow: hidden;
}
html.dark .home-audience-strip {
  border-color: rgba(39, 39, 42, 0.5);
  background: #0a0a0c;
}

.home-audience-strip__heading-wrap {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.home-audience-strip__heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bk-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
html.dark .home-audience-strip__heading {
  color: var(--bk-zinc-400);
}

.home-audience-strip__marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.home-audience-strip__fade-left,
.home-audience-strip__fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 768px) {
  .home-audience-strip__fade-left,
  .home-audience-strip__fade-right {
    width: 6rem;
  }
}

.home-audience-strip__fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bk-white), transparent);
}
html.dark .home-audience-strip__fade-left {
  background: linear-gradient(to right, #0a0a0c, transparent);
}

.home-audience-strip__fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bk-white), transparent);
}
html.dark .home-audience-strip__fade-right {
  background: linear-gradient(to left, #0a0a0c, transparent);
}

@keyframes home-marquee-x {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.home-audience-strip__marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: home-marquee-x 25s linear infinite;
  cursor: default;
}
.home-audience-strip__marquee-track:hover {
  animation-play-state: paused;
}

.home-audience-strip__marquee-row {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  color: var(--bk-slate-700);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .home-audience-strip__marquee-row {
    column-gap: 3rem;
    padding-right: 3rem;
  }
}
html.dark .home-audience-strip__marquee-row {
  color: var(--bk-zinc-300);
}

.home-audience-strip__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.home-audience-strip__marquee-item i {
  font-size: 1.125rem;
}

/* ---------- Features ---------- */
.home-features-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--bk-light-bg);
  position: relative;
}
@media (min-width: 768px) {
  .home-features-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
html.dark .home-features-section {
  background: var(--bk-dark-bg);
}

.home-features-section__inner {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .home-features-section__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-features-section__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.home-features-section__intro {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.home-features-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .home-features-section__title {
    font-size: 1.875rem;
  }
}

.home-features-section__subtitle {
  font-size: 1rem;
  color: var(--bk-slate-600);
}
html.dark .home-features-section__subtitle {
  color: var(--bk-zinc-400);
}

.home-features-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .home-features-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .home-features-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-feature-card {
  background: var(--bk-white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--bk-light-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.home-feature-card:hover {
  box-shadow: var(--bk-shadow-soft-light);
}
html.dark .home-feature-card {
  background: var(--bk-dark-surface);
  border-color: var(--bk-zinc-800);
}
html.dark .home-feature-card:hover {
  box-shadow: var(--bk-shadow-soft-dark);
}

.home-feature-card__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.2s ease;
}
html.dark .home-feature-card__icon-wrap {
  background: rgba(34, 197, 94, 0.12);
}
.home-feature-card:hover .home-feature-card__icon-wrap {
  transform: scale(1.1);
}

.home-feature-card__icon-wrap i {
  font-size: 1.5rem;
  color: var(--bk-green);
}
html.dark .home-feature-card__icon-wrap i {
  color: var(--bk-green);
}

.home-feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.home-feature-card__text {
  color: var(--bk-slate-600);
  font-size: 0.875rem;
  line-height: 1.625;
}
html.dark .home-feature-card__text {
  color: var(--bk-zinc-400);
}

/* ---------- Screenshots ---------- */
.home-screenshots-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--bk-white);
  border-top: 1px solid var(--bk-slate-100);
  border-bottom: 1px solid var(--bk-slate-100);
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-screenshots-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
html.dark .home-screenshots-section {
  background: #050505;
  border-color: var(--bk-zinc-900);
}

.home-screenshots-section__intro {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .home-screenshots-section__intro {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-screenshots-section__intro {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.home-screenshots-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .home-screenshots-section__title {
    font-size: 1.875rem;
  }
}

.home-screenshots-section__subtitle {
  font-size: 1rem;
  color: var(--bk-slate-600);
}
html.dark .home-screenshots-section__subtitle {
  color: var(--bk-zinc-400);
}

.home-screenshots-slider {
  display: flex;
  overflow-x: auto;
  gap: 1.25rem;
  padding-left: 1rem;
  width: 100%;
  align-items: flex-start;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.home-screenshots-slider::-webkit-scrollbar {
  display: none;
}
.home-screenshots-slider.home-screenshots-slider--dragging {
  cursor: grabbing;
}
@media (min-width: 640px) {
  .home-screenshots-slider {
    padding-left: 1.5rem;
  }
}
@media (min-width: 768px) {
  .home-screenshots-slider {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .home-screenshots-slider {
    padding-left: calc((100vw - 1280px) / 2 + 2rem);
  }
}

.home-screenshot-slide {
  flex: none;
  width: 240px;
  display: flex;
  flex-direction: column;
  user-select: none;
}
@media (min-width: 640px) {
  .home-screenshot-slide {
    width: 280px;
  }
}
@media (min-width: 768px) {
  .home-screenshot-slide {
    width: 300px;
  }
}

.home-screenshot-slide__frame {
  background: var(--bk-slate-100);
  border-radius: 2rem;
  padding: 0.375rem;
  border: 1px solid var(--bk-slate-200);
  box-shadow: var(--bk-shadow-soft-light);
  pointer-events: none;
  margin-top: 0.5rem;
  transition: transform 0.3s ease;
}
html.dark .home-screenshot-slide__frame {
  background: var(--bk-dark-bg);
  border-color: var(--bk-zinc-800);
  box-shadow: var(--bk-shadow-soft-dark);
}
.home-screenshot-slide:hover .home-screenshot-slide__frame {
  transform: translateY(-0.25rem);
}

.home-screenshot-slide__frame img {
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
  object-fit: cover;
  border: 1px solid var(--bk-slate-200);
  vertical-align: middle;
}
html.dark .home-screenshot-slide__frame img {
  border-color: var(--bk-zinc-700);
}

.home-screenshot-slide__caption-title {
  text-align: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
  color: var(--bk-slate-900);
  line-height: 1.25;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .home-screenshot-slide__caption-title {
    font-size: 1.5rem;
  }
}
html.dark .home-screenshot-slide__caption-title {
  color: var(--bk-white);
}

.home-screenshot-slide__caption-text {
  text-align: center;
  font-size: 13px;
  color: var(--bk-slate-500);
}
@media (min-width: 768px) {
  .home-screenshot-slide__caption-text {
    font-size: 0.875rem;
  }
}
html.dark .home-screenshot-slide__caption-text {
  color: var(--bk-zinc-400);
}

.home-screenshot-slide--offline .home-screenshot-slide__frame,
.home-screenshot-slide--offline .home-screenshot-slide__caption-title,
.home-screenshot-slide--offline .home-screenshot-slide__caption-text {
  position: relative;
  z-index: 10;
}

.home-screenshots-slider__end-spacer {
  flex: none;
  width: 1px;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .home-screenshots-slider__end-spacer {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-screenshots-slider__end-spacer {
    padding-right: calc((100vw - 1280px) / 2 + 2rem);
  }
}

/* ---------- How it works ---------- */
.home-how-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--bk-light-bg);
}
@media (min-width: 768px) {
  .home-how-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
html.dark .home-how-section {
  background: var(--bk-dark-bg);
}

.home-how-section__inner {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .home-how-section__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.home-how-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .home-how-section__title {
    font-size: 1.875rem;
  }
}

.home-how-steps {
  position: relative;
}
.home-how-steps > * + * {
  margin-top: 2.5rem;
}

.home-how-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-left: 1rem;
  transform: translateX(-1px);
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--bk-light-border), transparent);
  pointer-events: none;
}
html.dark .home-how-steps::before {
  background: linear-gradient(to bottom, transparent, var(--bk-zinc-800), transparent);
}
@media (min-width: 768px) {
  .home-how-steps::before {
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }
}

.home-step-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .home-step-row {
    justify-content: normal;
  }
  .home-how-steps > .home-step-row:nth-child(odd) {
    flex-direction: row-reverse;
  }
}

.home-step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 3px solid var(--bk-light-bg);
  background: var(--bk-slate-900);
  color: var(--bk-white);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--bk-shadow-soft-light);
  flex-shrink: 0;
  z-index: 10;
}
html.dark .home-step-marker {
  border-color: var(--bk-dark-bg);
  background: var(--bk-white);
  color: var(--bk-black);
}
@media (min-width: 768px) {
  .home-step-marker {
    order: 1;
  }
  .home-how-steps > .home-step-row:nth-child(odd) .home-step-marker {
    transform: translateX(-50%);
  }
  .home-how-steps > .home-step-row:nth-child(even) .home-step-marker {
    transform: translateX(50%);
  }
}

.home-step-card {
  width: calc(100% - 3rem);
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: var(--bk-white);
  border: 1px solid var(--bk-light-border);
  box-shadow: var(--bk-shadow-soft-light);
  transition: transform 0.2s ease;
}
.home-step-card:hover {
  transform: translateY(-0.25rem);
}
html.dark .home-step-card {
  background: var(--bk-dark-surface);
  border-color: var(--bk-zinc-800);
}
@media (min-width: 768px) {
  .home-step-card {
    width: calc(50% - 2rem);
  }
}

.home-step-card__title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.home-step-card__text {
  color: var(--bk-slate-600);
  font-size: 14px;
  line-height: 1.625;
}
html.dark .home-step-card__text {
  color: var(--bk-zinc-400);
}

/* ---------- Testimonials ---------- */
.home-testimonials-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--bk-white);
  border-top: 1px solid var(--bk-slate-100);
}
@media (min-width: 768px) {
  .home-testimonials-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
html.dark .home-testimonials-section {
  background: #050505;
  border-color: var(--bk-zinc-900);
}

.home-testimonials-section__inner {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .home-testimonials-section__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-testimonials-section__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.home-testimonials-section__intro {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.home-testimonials-section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bk-green);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.home-testimonials-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .home-testimonials-section__title {
    font-size: 1.875rem;
  }
}

.home-testimonials-section__subtitle {
  font-size: 1rem;
  color: var(--bk-slate-600);
  margin: 0;
}
html.dark .home-testimonials-section__subtitle {
  color: var(--bk-zinc-400);
}

.home-testimonials-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .home-testimonials-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .home-testimonials-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--bk-slate-50);
  border: 1px solid var(--bk-slate-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-testimonial-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--bk-shadow-soft-light);
}
html.dark .home-testimonial-card {
  background: var(--bk-dark-surface);
  border-color: var(--bk-zinc-800);
}
html.dark .home-testimonial-card:hover {
  box-shadow: var(--bk-shadow-soft-dark);
}

.home-testimonial-card__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
  color: #f59e0b;
}
html.dark .home-testimonial-card__stars {
  color: #fbbf24;
}

.home-testimonial-card__stars i {
  font-size: 1rem;
}

.home-testimonial-card__quote {
  margin: 0 0 1.25rem;
  flex: 1;
}

.home-testimonial-card__quote p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--bk-slate-700);
}
html.dark .home-testimonial-card__quote p {
  color: var(--bk-zinc-300);
}

.home-testimonial-card__quote p::before {
  content: "\201C";
  color: var(--bk-green);
  font-weight: 700;
  margin-right: 0.125rem;
}

.home-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--bk-slate-200);
}
html.dark .home-testimonial-card__author {
  border-color: var(--bk-zinc-700);
}

.home-testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.home-testimonial-card__avatar--purple {
  background: rgba(168, 85, 247, 0.15);
  color: #7c3aed;
}
html.dark .home-testimonial-card__avatar--purple {
  background: rgba(168, 85, 247, 0.22);
  color: #c4b5fd;
}

.home-testimonial-card__avatar--rose {
  background: rgba(244, 63, 94, 0.12);
  color: #e11d48;
}
html.dark .home-testimonial-card__avatar--rose {
  background: rgba(244, 63, 94, 0.2);
  color: #fda4af;
}

.home-testimonial-card__avatar--green {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
html.dark .home-testimonial-card__avatar--green {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.home-testimonial-card__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--bk-slate-900);
}
html.dark .home-testimonial-card__name {
  color: var(--bk-white);
}

.home-testimonial-card__role {
  display: block;
  font-size: 0.75rem;
  color: var(--bk-slate-500);
  margin-top: 0.125rem;
}
html.dark .home-testimonial-card__role {
  color: var(--bk-zinc-400);
}

/* ---------- Download CTA ---------- */
.home-download-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-download-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.home-download-section__bg-tint {
  position: absolute;
  inset: 0;
  background: rgb(137 137 137 / 7%);
  pointer-events: none;
}
html.dark .home-download-section__bg-tint {
  background: rgba(17, 17, 17, 0.45);
}

.home-download-section__bg-orb {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -5rem;
  margin-top: -5rem;
  width: 25rem;
  height: 30rem;
  border-radius: 9999px;
  background: rgb(149 149 149 / 24%);
  filter: blur(60px);
  pointer-events: none;
}
html.dark .home-download-section__bg-orb {
  background: rgba(255, 255, 255, 0.1);
}

.home-download-section__inner {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .home-download-section__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.home-download-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid var(--bk-light-border);
  box-shadow: var(--bk-shadow-soft-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) {
  .home-download-card {
    padding: 3rem;
    flex-direction: row;
  }
}
html.dark .home-download-card {
  background: rgba(21, 21, 21, 0.9);
  border-color: var(--bk-zinc-800);
  box-shadow: var(--bk-shadow-soft-dark);
}

.home-download-card__copy {
  width: 100%;
  max-width: 36rem;
  text-align: center;
}
@media (min-width: 768px) {
  .home-download-card__copy {
    text-align: left;
  }
}

.home-download-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .home-download-card__title {
    font-size: 2.25rem;
  }
}

.home-download-card__lead {
  font-size: 1rem;
  color: var(--bk-slate-600);
  margin-bottom: 1.5rem;
}
html.dark .home-download-card__lead {
  color: var(--bk-zinc-400);
}

.home-download-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .home-download-card__actions {
    flex-direction: row;
    width: auto;
  }
}

.home-download-card__store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  background: var(--bk-black);
  color: var(--bk-white);
  font-weight: 600;
  text-decoration: none;
  width: 70%;
  transition: transform 0.2s ease;
}
.home-download-card__store-btn:hover {
  transform: scale(1.05);
}
@media (min-width: 640px) {
  .home-download-card__store-btn {
    width: auto;
    max-width: none;
  }
}
html.dark .home-download-card__store-btn {
  background: var(--bk-white);
  color: var(--bk-black);
}

.home-download-card__store-btn i {
  font-size: 1.75rem;
  color: inherit;
  flex-shrink: 0;
  line-height: 1;
}

.home-download-card__store-lines {
  text-align: left;
}
.home-download-card__store-lines small {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  line-height: 1;
}
.home-download-card__store-lines span {
  font-size: 1rem;
  line-height: 1.25;
}

.home-download-card__note {
  font-size: 13px;
  color: var(--bk-slate-500);
  font-weight: 500;
}
html.dark .home-download-card__note {
  color: var(--bk-zinc-500);
}

.home-download-card__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 12.5rem;
  background: var(--bk-slate-50);
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--bk-slate-200);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .home-download-card__qr {
    width: auto;
    max-width: none;
    padding: 1.25rem;
  }
}
html.dark .home-download-card__qr {
  background: var(--bk-zinc-900);
  border-color: var(--bk-zinc-800);
}

.home-download-card__qr-frame {
  width: 10rem;
  height: 10rem;
  background: var(--bk-white);
  border-radius: 0.875rem;
  padding: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-download-card__qr-frame {
    width: 10.5rem;
    height: 10.5rem;
  }
}

.home-download-card__qr-mount {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 6.5rem;
}

.home-download-card__qr-mount img,
.home-download-card__qr-mount canvas {
  display: block;
  width: 8rem !important;
  height: 8rem !important;
  max-width: 100%;
  border-radius: 0.25rem;
}
@media (min-width: 768px) {
  .home-download-card__qr-mount img,
  .home-download-card__qr-mount canvas {
    width: 8.5rem !important;
    height: 8.5rem !important;
  }
}

.home-download-card__qr-mount table {
  border: 0 !important;
  border-collapse: collapse;
}

.home-download-card__qr-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--bk-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
html.dark .home-download-card__qr-label {
  color: var(--bk-zinc-400);
}

/* ---------- FAQ ---------- */
.home-faq-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--bk-light-bg);
}
@media (min-width: 768px) {
  .home-faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
html.dark .home-faq-section {
  background: var(--bk-dark-bg);
}

.home-faq-section__inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .home-faq-section__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.home-faq-section__title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.home-faq-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .home-faq-section__title {
    font-size: 1.875rem;
  }
}

.home-faq-list > * + * {
  margin-top: 0.75rem;
}

.home-faq-item {
  background: var(--bk-white);
  border: 1px solid var(--bk-light-border);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
html.dark .home-faq-item {
  background: var(--bk-dark-surface);
  border-color: var(--bk-zinc-800);
}

.home-faq-item__trigger {
  width: 100%;
  padding: 1.25rem 1.25rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-radius: 1rem;
  position: relative;
  z-index: 10;
  background: transparent;
  cursor: pointer;
}
.home-faq-item__trigger:focus {
  outline: none;
}

.home-faq-item__question {
  font-weight: 600;
  font-size: 1rem;
  color: var(--bk-slate-800);
}
html.dark .home-faq-item__question {
  color: var(--bk-zinc-300);
}

.home-faq-item__chevron {
  font-size: 1.125rem;
  color: var(--bk-slate-400);
  transition: transform 0.3s ease;
}

.faq-content {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
}
.faq-content.faq-content-open {
  opacity: 1;
}

.home-faq-item__answer {
  padding: 0 1.25rem 1rem;
  font-size: 14px;
  line-height: 1.625;
  color: var(--bk-slate-600);
}
html.dark .home-faq-item__answer {
  color: var(--bk-zinc-400);
}
