.acv2-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
}

.acv2-nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.acv2-nav-group {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.acv2-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.acv2-brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.acv2-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.acv2-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-transform: uppercase;
}

.acv2-nav-links a.is-active,
.acv2-nav-links a:hover {
  color: var(--color-ink);
}

.acv2-nav-links a.is-active::after {
  width: 100%;
}

.acv2-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.acv2-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.acv2-mobile-toggle:hover {
  background: #fff;
  border-color: #d6d3d1;
  transform: translateY(-1px);
}

.acv2-mobile-toggle i {
  font-size: 1rem;
}

.acv2-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(28, 25, 23, 0.38);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.acv2-drawer-overlay.is-open {
  opacity: 1;
}

.acv2-mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(360px, calc(100vw - 24px));
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow: hidden;
}

.acv2-mobile-drawer.is-open {
  transform: translateX(0);
}

.acv2-mobile-drawer-panel {
  margin-left: auto;
  width: min(22rem, 86vw);
  height: 100%;
  padding: 1.25rem 1.1rem 1.5rem;
  background: #fafaf9;
  border-left: 1px solid #e7e5e4;
  box-shadow: -18px 0 40px -26px rgba(0, 0, 0, 0.32);
}

.acv2-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
}

.acv2-mobile-drawer-nav {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 0 1.25rem;
}

.acv2-mobile-drawer-nav a {
  padding: 0.95rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.acv2-mobile-drawer-nav a:hover,
.acv2-mobile-drawer-nav a[aria-current="page"] {
  background: #f5f5f4;
}

.acv2-mobile-drawer-footer {
  padding-top: 0.25rem;
}

.acv2-mobile-drawer-lang {
  position: relative;
  margin-bottom: 1rem;
}

.acv2-mobile-lang-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem 0.9rem;
  border: 1px solid #ece7e2;
  border-radius: 1.05rem;
  background: #ffffff;
  color: #1c1917;
  text-align: left;
  box-shadow: 0 10px 24px -22px rgba(28, 25, 23, 0.24);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.acv2-mobile-lang-trigger:hover {
  border-color: #d6d3d1;
  background: #ffffff;
  box-shadow: 0 14px 26px -24px rgba(28, 25, 23, 0.26);
}

.acv2-mobile-lang-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  min-width: 0;
}

.acv2-mobile-lang-label {
  display: block;
  color: #78716c;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.acv2-mobile-lang-current {
  display: block;
  color: #1c1917;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
}

.acv2-mobile-lang-trigger .fa-chevron-down {
  color: #78716c;
  font-size: 0.8rem;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.acv2-mobile-lang-trigger[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.acv2-mobile-lang-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  border: 1px solid #ece7e2;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 18px 36px -28px rgba(28, 25, 23, 0.3);
  z-index: 5;
  max-height: min(18rem, calc(100dvh - 13rem));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.acv2-mobile-lang-dropdown[hidden] {
  display: none;
}

.acv2-mobile-lang-dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #1c1917;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.acv2-mobile-lang-dropdown a:hover {
  background: #fafaf9;
}

.acv2-mobile-lang-dropdown a[aria-current="true"] {
  color: #be123c;
  font-weight: 700;
}

.acv2-mobile-lang-dropdown a[aria-current="true"]::after {
  content: "\2713";
  color: #be123c;
}

.acv2-mobile-lang-dropdown a[aria-disabled="true"] {
  cursor: default;
}

.acv2-mobile-drawer-footer .btn {
  width: 100%;
}

.acv2-main {
  padding-top: 0;
}

.acv2-hero-shell {
  background:
    radial-gradient(circle at top left, rgba(190, 18, 60, 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.06), transparent 20%),
    linear-gradient(180deg, #fafaf9 0%, #ffffff 100%);
  border-bottom: 1px solid var(--color-line);
}

.acv2-hero-inner {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.acv2-hero-copy {
  max-width: 760px;
}

.acv2-kicker,
.acv2-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: #ffffff;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.acv2-kicker-dark,
.acv2-section-kicker-dark {
  border-color: rgba(43, 37, 35, 0.92);
  background: rgba(43, 37, 35, 0.98);
  color: #fafaf9;
  box-shadow: 0 12px 24px -18px rgba(28, 25, 23, 0.42);
}

.acv2-hero-title {
  margin-top: 1.25rem;
  max-width: 11ch;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.acv2-hero-accent {
  color: var(--color-accent);
  background-image: linear-gradient(
    180deg,
    transparent 0,
    transparent 70%,
    rgba(190, 18, 60, 0.12) 70%,
    rgba(190, 18, 60, 0.12) 100%
  );
}

.acv2-hero-desc {
  max-width: 650px;
  margin-top: 1.2rem;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
  color: var(--color-ink-light);
}

.acv2-section {
  padding: 5rem 0;
}

.acv2-topics {
  background: #ffffff;
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
}

.acv2-section-contrast {
  background: #ffffff;
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
}

#section-latest {
  background: #fcfbfa;
  border-bottom: 1px solid #ece7e2;
}

#section-faq {
  background: #ffffff;
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
}

.acv2-section-head {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.acv2-section-head-compact {
  margin-bottom: 2rem;
}

.acv2-section-head-split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.acv2-section-title {
  margin-top: 1rem;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.acv2-section-title-content {
  margin-top: 0;
}

.acv2-section-desc {
  margin-top: 0.9rem;
  color: var(--color-ink-light);
  font-size: 1rem;
  line-height: 1.7;
}

.acv2-view-all {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
}

.acv2-section-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid #d6d3d1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #78716c;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.acv2-view-all-mobile-wrap {
  display: none;
  margin-top: 2rem;
  text-align: center;
}

.acv2-view-all-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border: 1.5px solid var(--color-accent);
  border-radius: 0.85rem;
  color: var(--color-accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.acv2-view-all-mobile-disabled {
  border-color: #d6d3d1;
  background: #fafaf9;
  color: #78716c;
  cursor: default;
}

.acv2-topic-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.acv2-empty-inline {
  width: min(100%, 640px);
  padding: 1rem 1.15rem;
  border: 1px dashed rgba(120, 113, 108, 0.32);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-ink-light);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

.acv2-topic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  background: #ffffff;
  color: var(--color-ink);
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.acv2-topic-chip:hover,
.acv2-topic-chip.is-active {
  border-color: rgba(190, 18, 60, 0.28);
  background: rgba(190, 18, 60, 0.06);
  color: var(--color-accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.acv2-topic-toast-wrap {
  min-height: 3.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.acv2-toast {
  min-width: min(22rem, 100%);
  max-width: min(34rem, 100%);
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.96);
  color: #fafaf9;
  box-shadow: 0 18px 40px -24px rgba(28, 25, 23, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  text-align: center;
}

.acv2-toast[hidden] {
  display: none;
}

.acv2-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.acv2-latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1.5rem;
}

.acv2-latest-stack {
  display: grid;
  gap: 1.5rem;
}

.acv2-trending-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.acv2-empty-state {
  grid-column: 1 / -1;
  padding: 2rem 2.1rem;
  border: 1px dashed rgba(120, 113, 108, 0.3);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(190, 18, 60, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 249, 0.96));
  box-shadow: var(--shadow-sm);
}

.acv2-empty-state-eyebrow {
  margin: 0;
  color: #a8a29e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.acv2-empty-state-title {
  margin: 0.95rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.acv2-empty-state-copy {
  max-width: 58ch;
  margin: 0.85rem 0 0;
  color: var(--color-ink-light);
  font-size: 1rem;
  line-height: 1.78;
}

.acv2-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.acv2-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.acv2-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ece7de;
}

.acv2-media-featured {
  aspect-ratio: 16 / 9;
}

.acv2-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.acv2-card-body {
  padding: 1.3rem 1.35rem 1.45rem;
}

.acv2-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-light);
}

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

.acv2-card-title {
  margin-top: 0.85rem;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.15;
}

.acv2-card-secondary .acv2-card-title,
.acv2-card-trending .acv2-card-title {
  font-size: 1.2rem;
}

.acv2-card-copy {
  margin-top: 0.8rem;
  color: var(--color-ink-light);
  font-size: 0.96rem;
  line-height: 1.7;
}

.acv2-card-author {
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-ink);
}

.acv2-faq-shell {
  max-width: 64rem;
}

.acv2-faq-shell .acv2-section-head {
  margin-bottom: 3rem;
}

.acv2-faq-shell .acv2-section-kicker {
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  border: 0;
  background: rgba(190, 18, 60, 0.1);
  color: #be123c;
  box-shadow: none;
}

.acv2-faq-shell .acv2-section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.acv2-faq-shell .acv2-section-desc {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #57534e;
}

.acv2-faq-list {
  display: grid;
  gap: 0;
}

.acv2-faq-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.acv2-faq-item:first-child {
  border-top: 1px solid #e7e5e4;
}

.acv2-faq-item + .acv2-faq-item {
  border-top: 1px solid #e7e5e4;
}

.acv2-faq-item:last-child {
  border-bottom: 1px solid #e7e5e4;
}

.acv2-faq-toggle {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  display: block;
  text-align: left;
  padding: 1.375rem 4rem 1.375rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-ink);
  cursor: pointer;
}

.acv2-faq-toggle i {
  display: none;
}

.acv2-faq-toggle::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border: 1px solid #ece7e2;
  background: #ffffff;
  color: #44403c;
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.03);
  font-size: 1rem;
}

.acv2-faq-item.is-open .acv2-faq-toggle::after {
  content: "-";
  border-color: #f0cfd8;
  background: #fff4f7;
  color: #d9466a;
  box-shadow: 0 1px 2px rgba(217, 70, 106, 0.06);
}

.acv2-faq-answer {
  padding: 0 3.5rem 1.375rem 0;
  color: #57534e;
}

.acv2-faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.acv2-faq-answer[hidden] {
  display: none;
}

.acv2-footer {
  background: #111111;
  color: #ffffff;
  padding: 3.5rem 0 1.5rem;
}

.acv2-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.acv2-footer-brand-col {
  min-width: 0;
}

.acv2-footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.acv2-footer-brand-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
}

.acv2-footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.acv2-footer-copy,
.acv2-footer-link {
  color: rgba(255, 255, 255, 0.78);
}

.acv2-footer-copy {
  margin: 0 0 1.15rem;
  max-width: 18rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.acv2-footer-label {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.acv2-footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.acv2-footer-social {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.acv2-footer-social:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-1px);
}

.acv2-footer-heading {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

#langSwitcher .lang-dropdown a[aria-disabled="true"] {
  color: var(--color-ink-lighter);
  cursor: not-allowed;
  pointer-events: none;
}

#langSwitcher .lang-dropdown a[aria-disabled="true"]:hover {
  background: transparent;
}

.acv2-footer-link {
  display: inline-block;
  margin: 0;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.acv2-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.acv2-footer-link:hover {
  color: #ffffff;
}

.acv2-footer-download-list {
  display: grid;
  gap: 0.75rem;
}

.acv2-footer .btn-store {
  width: 100%;
  min-width: 0;
}

.acv2-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}

.acv2-footer-bottom p {
  margin: 0;
  width: 100%;
  font-size: 0.75rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .acv2-trending-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .acv2-latest-grid {
    grid-template-columns: 1fr;
  }

  .acv2-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .acv2-footer-brand-col,
  .acv2-footer-download {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .acv2-nav-inner {
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .acv2-nav-group {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
  }

  .acv2-brand {
    gap: 0.65rem;
  }

  .acv2-brand-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .acv2-brand-name {
    font-size: 2.2rem;
  }

  .acv2-nav-actions {
    display: none;
  }

  .acv2-mobile-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .acv2-nav-links {
    display: none;
  }

  .acv2-hero-inner {
    padding-top: 3rem;
    padding-bottom: 2.6rem;
  }

  .acv2-hero-title {
    max-width: none;
    font-size: clamp(32px, 10.5vw, 52px);
  }

  .acv2-hero-desc {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.75;
  }

  .acv2-section {
    padding: 3.5rem 0;
  }

  .acv2-section-head-split {
    display: block;
  }

  .acv2-view-all {
    display: none;
  }

  .acv2-view-all-mobile-wrap {
    display: block;
  }

  .acv2-topic-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    justify-content: stretch;
  }

  .acv2-topic-chip {
    width: 100%;
    min-height: 56px;
    justify-content: center;
    padding: 0.95rem 0.9rem;
    font-size: 0.96rem;
  }

  .acv2-toast {
    min-width: 0;
    max-width: 100%;
    font-size: 0.92rem;
  }

  .acv2-card-body {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .acv2-card-title {
    font-size: 1.55rem;
  }

  .acv2-card-secondary .acv2-card-title,
  .acv2-card-trending .acv2-card-title {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .acv2-faq-shell {
    max-width: none;
  }

  .acv2-faq-list {
    gap: 0;
  }

  .acv2-faq-toggle {
    font-size: 1.0625rem;
    padding-right: 3.6rem;
  }

  .acv2-faq-answer {
    padding-right: 2.8rem;
  }

  .acv2-footer {
    padding: 3.5rem 0 4.5rem;
  }

  .acv2-trending-grid,
  .acv2-footer-grid {
    grid-template-columns: 1fr;
  }

  .acv2-footer-grid {
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .acv2-footer-brand-col,
  .acv2-footer-download {
    grid-column: auto;
  }

  .acv2-footer-brand {
    font-size: 2.3rem;
  }

  .acv2-footer-copy {
    max-width: none;
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (max-width: 560px) {
  .acv2-nav-inner {
    min-height: 68px;
    gap: 0.75rem;
  }

  .acv2-brand-name {
    font-size: 1.95rem;
  }

  .acv2-hero-inner {
    padding-top: 2.35rem;
    padding-bottom: 2.2rem;
  }

  .acv2-hero-copy {
    max-width: none;
  }

  .acv2-kicker,
  .acv2-section-kicker {
    padding: 0.38rem 0.72rem;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .acv2-hero-title {
    margin-top: 1rem;
    font-size: clamp(24px, 11vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .acv2-hero-desc {
    max-width: none;
    margin-top: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .acv2-section {
    padding: 3rem 0;
  }

  .acv2-section-head {
    margin-bottom: 1.5rem;
  }

  .acv2-section-title {
    font-size: clamp(24px, 8vw, 34px);
  }

  .acv2-topic-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .acv2-topic-chip {
    min-height: 52px;
    padding: 0.9rem 1rem;
    font-size: 0.94rem;
  }

  .acv2-topic-toast-wrap {
    min-height: 3rem;
    margin-top: 0.85rem;
  }

  .acv2-empty-state {
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
  }
}
