/* Hoofy — Bold-inspired dark SaaS (ref: az-bold.webflow.io) */
:root {
  --bg-deep: #0a0a0c;
  --bg-elevated: #111114;
  --bg-panel: #16161a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --accent: #e8a54b;
  --accent-soft: rgba(232, 165, 75, 0.15);
  --accent-2: #c08457;
  --green-stat: #4ade80;
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(232, 165, 75, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 20%, rgba(99, 102, 241, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(192, 132, 87, 0.06), transparent 40%),
    var(--bg-deep);
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #f5c56d;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

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

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-2) 0%, #8b4513 100%);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(232, 165, 75, 0.35), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-desktop a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.35rem;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-panel);
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.nav-mobile {
  display: none;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.header-row {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) 0.75rem;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .header-row {
    display: block;
  }

  .nav-toggle:checked ~ .header-row .nav-mobile {
    display: block;
  }

  .header-inner {
    flex-wrap: nowrap;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #c97b1e 100%);
  color: #0a0a0c !important;
  box-shadow: 0 4px 24px rgba(232, 165, 75, 0.35);
  text-decoration: none;
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(232, 165, 75, 0.45);
  color: #0a0a0c !important;
}

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border-strong);
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #0a0a0c !important;
  padding: 0.7rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  color: #0a0a0c !important;
}

.btn-appstore small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.65;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-appstore > span {
  display: block;
  text-align: left;
  line-height: 1.2;
}

.btn-appstore .btn-appstore-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ——— Layout ——— */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem) 4rem;
}

/* Bold-style hero */
.hero-bold {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
  min-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-badge strong {
  color: var(--text);
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.hero-title .line {
  display: block;
}

.hero-title .grad {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 2rem;
  line-height: 1.65;
}

.hero-actions-bold {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-subnote {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-visual {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232, 165, 75, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .hero-stat-row {
    grid-template-columns: 1fr;
  }
}

.hero-stat {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.35;
}

/* Meet section */
.section-meet {
  padding: clamp(3rem, 10vw, 6rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
  border-top: 1px solid var(--border);
}

.meet-display {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.05em;
  border: 0;
  padding: 0;
}

.meet-line {
  display: block;
  font-size: clamp(3rem, 12vw, 7rem);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.meet-line--hoofy {
  font-size: clamp(3.5rem, 14vw, 8rem);
  margin-top: -0.12em;
}

.meet-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin: 1.5rem auto 0;
}

/* Stats strip (Bold-style metrics) */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
}

@media (max-width: 900px) {
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

.stat-block {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.stat-block .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.stat-block .num.accent {
  color: var(--green-stat);
}

.stat-block .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.65rem;
}

.stat-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
  line-height: 1.45;
}

/* Feature band */
.section-band {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--border);
}

.section-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: 20ch;
}

.section-band .section-lead {
  margin-bottom: 2.5rem;
}

/* Dark / night callout */
.night-band {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(22, 22, 26, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.night-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.night-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .night-band-inner {
    grid-template-columns: 1fr;
  }
}

.night-band h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.night-band p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-section {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--border);
}

.testimonial-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin: 0 0 2.5rem;
  letter-spacing: -0.03em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  font-style: italic;
}

.testimonial-card .who {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-card .role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(232, 165, 75, 0.1), transparent 55%);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.cta-band .sub {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Newsletter (static) */
.newsletter {
  max-width: 420px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-strong);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.newsletter a {
  font-weight: 600;
}

/* Legacy hero (inner pages) */
.hero {
  padding: clamp(2rem, 6vw, 3rem) 0 clamp(2rem, 5vw, 3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

h1,
.h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: var(--text);
}

h1 em,
.h1 em {
  font-style: normal;
  color: var(--accent);
}

.lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 80%;
  background: radial-gradient(circle, rgba(232, 165, 75, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

section.block {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-lead {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, rgba(232, 165, 75, 0.2), rgba(99, 102, 241, 0.15));
  border: 1px solid var(--border);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card a {
  color: var(--accent);
}

.price-box {
  background: var(--bg-panel);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 420px;
  text-align: center;
}

.price-box .price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-box .per {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-list {
  text-align: left;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-stat);
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item a {
  color: var(--accent);
}

.legal {
  max-width: 40rem;
  margin: 0 auto;
}

.legal h1 {
  font-size: 1.75rem;
}

.legal h2 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  color: var(--accent);
}

.legal p,
.legal li {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal p strong,
.legal li {
  color: var(--text);
}

.legal ul {
  padding-left: 1.25rem;
}

.legal a {
  color: var(--accent);
}

.site-footer {
  margin-top: auto;
  padding: 2.5rem clamp(1rem, 4vw, 2rem);
  background: #050506;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.25rem 0;
  text-decoration: none;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.stack-center {
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card:hover,
  .btn-appstore:hover {
    transform: none;
  }
}
