:root {
  color-scheme: light dark;

  --bg: #ffffff;
  --bg-elev: #f7f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.10);

  --accent: #e11d48;
  --accent-2: #ef4444;
  --accent-soft: rgba(225, 29, 72, 0.14);

  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.12);

  --radius-md: 14px;
  --radius-lg: 22px;

  --container: 1760px;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;

  --bg: #ffffff;
  --bg-elev: #f7f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.10);

  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] {
  color-scheme: dark;

  --bg: #000000;
  --bg-elev: #0c0c0c;
  --surface: #0c0c0c;
  --text: #e6eaf3;
  --muted: #a8b3c7;
  --border: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 22px 52px rgba(0, 0, 0, 0.6);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --bg-elev: #0c0c0c;
    --surface: #0c0c0c;
    --text: #e6eaf3;
    --muted: #a8b3c7;
    --border: rgba(255, 255, 255, 0.08);

    --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 22px 52px rgba(0, 0, 0, 0.6);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(1200px 650px at 18% -12%, rgba(225, 29, 72, 0.14), transparent 60%),
    radial-gradient(900px 520px at 95% 6%, rgba(239, 68, 68, 0.12), transparent 52%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.4rem;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--accent-soft) 40%, transparent);
}

.nav a[aria-current="page"] {
  color: var(--text);
  background: color-mix(in srgb, var(--accent-soft) 58%, transparent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border-color: rgba(225, 29, 72, 0.35);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 42px rgba(225, 29, 72, 0.30);
}

.btn-primary:hover {
  box-shadow: 0 22px 54px rgba(225, 29, 72, 0.36);
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
}

.icon-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
}

.hero {
  padding: 4.25rem 0 3.25rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-elev) 85%, transparent);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(225, 29, 72, 0.15);
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin: 0.75rem 0 0.8rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 1.35rem;
}

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

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}

.mini-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.panel {
  width: 100%;
  max-width: 1000px;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 420ms ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0.5rem;
}

.carousel-slide img {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-md);
}

@media (prefers-color-scheme: dark) {
  .carousel-slide img {
    background: #0a0f1c;
  }
}

.carousel-controls {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  pointer-events: none;
}

.carousel-controls .btn {
  pointer-events: auto;
}

.carousel-dots {
  position: relative;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--muted) 15%, transparent);
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot[aria-current="true"] {
  width: 22px;
  background: var(--accent);
  border-color: rgba(225, 29, 72, 0.45);
}

.section {
  padding: 3.25rem 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  padding: 1.1rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
}

.card h3 {
  margin: 0.6rem 0 0.35rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-soft) 75%, transparent);
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
}

.card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 auto;
  box-shadow: 0 14px 32px rgba(225, 29, 72, 0.25);
}

.step h3 {
  margin: 0;
  font-size: 1rem;
}

.step p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}


.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-elev) 85%, transparent);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.badge-accent {
  color: #fff;
  border-color: rgba(225, 29, 72, 0.30);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.cta-band {
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--border));
  background: radial-gradient(800px 400px at 10% 20%, rgba(225, 29, 72, 0.25), transparent 55%),
    radial-gradient(650px 360px at 90% 0%, rgba(239, 68, 68, 0.20), transparent 55%),
    color-mix(in srgb, var(--surface) 88%, transparent);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  margin: 0 0 0.25rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 2.75rem 0 1.4rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0.65rem 0 0;
}

.page-hero p {
  color: var(--muted);
  margin: 0.85rem 0 0;
}

.notice {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-elev) 88%, transparent);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  color: var(--muted);
}

.notice-strong {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
}

.form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

label {
  font-weight: 700;
  font-size: 0.95rem;
}

input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: var(--surface);
  color: var(--text);
  outline: none;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  box-shadow: 0 0 0 6px rgba(225, 29, 72, 0.14);
}

.form-feedback {
  min-height: 1.2rem;
  font-weight: 700;
  color: var(--muted);
}

.form-feedback.is-error {
  color: var(--accent);
}

/* New Pricing Cards Styles */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  align-items: stretch;
}

.price-card {
  background: linear-gradient(145deg, #e11d48, #ef4444);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem 1.75rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(225, 29, 72, 0.25);
}

.price-card h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-info {
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.platform-icon {
  margin: 0.5rem 0 1rem;
  width: 64px;
  height: 64px;
  color: #fff;
  display: grid;
  place-items: center;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
}

html[data-theme="dark"] .price-card {
  background: linear-gradient(145deg, #e11d48, #ef4444);
}

.requirements-list {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: left;
  font-size: 0.85rem;
}

.requirements-list h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.requirements-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.requirements-list li {
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
}

.requirements-list li span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 70px rgba(225, 29, 72, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.price-card--featured {
  z-index: 1;
}


.price-tag {
  font-size: 3.4rem;
  font-weight: 900;
  color: #ffffff;
  margin: 1.5rem 0 0.5rem;
  text-align: center;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.price-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-align: center;
  margin-top: auto;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.plan-features {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-features h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #fff;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.plan-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.plan-features li::before {
  content: "•";
  position: absolute;
  left: 0.4rem;
  color: #fff;
  font-weight: bold;
}

.btn-subscribe {
  background: #ffffff;
  color: #e11d48;
  border: none;
  border-radius: 14px;
  padding: 1.1rem;
  width: 100%;
  font-weight: 800;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-subscribe:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: #be123c;
}

@media (max-width: 768px) {
  .pricing-grid-new {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

/* Auth Card Tweaks */
.price-card.auth-card {
  text-align: left;
  align-items: stretch;
  padding: 2.5rem 2rem;
}

.price-card.auth-card h2 {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.price-card.auth-card input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.price-card.auth-card input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.price-card.auth-card input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.price-card.auth-card .form-feedback {
  color: #fff;
  opacity: 0.9;
}

.price-card.auth-card .form-feedback.is-error {
  color: #ffdce0;
}

.price-card.auth-card .btn-subscribe {
  margin-top: 1rem;
}

.price-card.auth-card a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Feature Showcase Big Cards */
.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 2rem auto;
}

.feature-big-card {
  background: linear-gradient(145deg, #e11d48, #ef4444);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(225, 29, 72, 0.25);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.feature-big-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 70px rgba(225, 29, 72, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-big-card h2 {
  margin: 0 0 0.4rem;
  font-size: 2rem;
  font-weight: 900;
}

.feature-desc {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 500;
}

.feature-carousel {
  width: 75%;
  aspect-ratio: 16 / 10;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.feature-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 500ms ease;
}

.feature-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-slide span {
  color: #bbb;
  font-size: 1rem;
  font-weight: 600;
}

.feature-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-indicator {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}

.f-bar {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 300ms ease, width 300ms ease;
  cursor: pointer;
}

.f-bar.active {
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
}

@media (max-width: 768px) {
  .feature-big-card {
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 22px;
  }

  .feature-img-placeholder {
    width: 90%;
  }

  .feature-big-card h2 {
    font-size: 1.6rem;
  }
}

.footer {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
}

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

.copyright {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 160ms ease;
}

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

/* Policy page content */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.policy-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.policy-content a:hover {
  color: var(--accent-2);
}

details {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

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

/* Mobile */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .grid-3,
  .grid-2,
  .pricing-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 74px 1rem auto 1rem;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0.75rem;
  }

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

  .footer-links {
    justify-content: center;
  }

  .card-info {
    height: auto;
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .carousel-track {
    transition: none;
  }
}