:root,
[data-theme="light"] {
  --font-body: 'General Sans', sans-serif;
  --font-display: 'Cabinet Grotesk', sans-serif;
  --animox-bg: #f6f4ee;
  --animox-surface: #fffdf8;
  --animox-text: #1d1b17;
  --animox-muted: #68645c;
  --animox-border: #d9d1c4;
  --animox-primary: #01696f;
  --animox-secondary: #0c8a90;
  --animox-accent: #d19900;
  --animox-button-bg: #01696f;
  --animox-button-text: #ffffff;
  --animox-button-border: #01696f;
  --animox-header-bg: #101523;
  --animox-header-text: #edf2ff;
  --animox-header-border: #243046;
  --animox-header-cta-bg: #01696f;
  --animox-header-cta-text: #ffffff;
  --animox-header-cta-border: #01696f;
  --animox-footer-bg: #101523;
  --animox-footer-text: #edf2ff;
  --animox-footer-link: #8fb4ff;
  --animox-footer-border: #243046;
  --animox-card-bg: #fffdf8;
  --bg: var(--animox-bg);
  --surface: var(--animox-surface);
  --surface-2: #f1ede4;
  --panel: #fbf9f3;
  --line: var(--animox-border);
  --line-strong: #c9beae;
  --text: var(--animox-text);
  --muted: var(--animox-muted);
  --primary: var(--animox-primary);
  --primary-2: var(--animox-secondary);
  --primary-soft: #d9ece9;
  --accent: var(--animox-accent);
  --accent-soft: #f4ebca;
  --body-text: var(--text);
  --btn-primary-1: var(--animox-button-bg);
  --btn-primary-2: var(--animox-secondary);
  --btn-primary-text: var(--animox-button-text);
  --btn-secondary-bg: var(--surface);
  --btn-secondary-text: var(--text);
  --btn-secondary-border: var(--line);
  --btn-outline-bg: transparent;
  --btn-outline-text: var(--primary);
  --btn-outline-border: var(--line-strong);
  --success: #437a22;
  --danger: #a12c7b;
  --header-bg: var(--animox-header-bg);
  --header-text: var(--animox-header-text);
  --header-border: var(--animox-header-border);
  --panel-bg: rgba(255, 253, 248, 0.82);
  --card-bg: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(241, 237, 228, 0.94));
  --card-bg-soft: linear-gradient(180deg, rgba(251, 249, 243, 0.98), rgba(241, 237, 228, 0.92));
  --footer-bg: var(--animox-footer-bg);
  --footer-text: var(--animox-footer-text);
  --footer-link: var(--animox-footer-link);
  --footer-border: var(--animox-footer-border);
  --shadow-sm: 0 1px 2px rgba(20, 18, 14, 0.05);
  --shadow-md: 0 18px 48px rgba(20, 18, 14, 0.08);
  --shadow-lg: 0 28px 72px rgba(20, 18, 14, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1240px;
  --header-h: 78px;
  --base-font-size: 17px;
  --menu-font-size: 15px;
  --hero-title-max: 72px;
  --button-radius: 999px;
  --section-space: 34px;
  --hero-band-min-h: 430px;
  --transition: 220ms cubic-bezier(.16, 1, .3, 1);
}

[data-theme="dark"] {
  --bg: #10120f;
  --surface: #171a18;
  --surface-2: #202420;
  --panel: #1a1d1b;
  --line: #2f342f;
  --line-strong: #434a44;
  --text: #eff1eb;
  --muted: #a5ada1;
  --primary: #4f98a3;
  --primary-2: #7fbec8;
  --primary-soft: #203338;
  --accent: #edb336;
  --accent-soft: #3a3320;
  --success: #6baa45;
  --danger: #d163a7;
  --header-bg: var(--animox-header-bg);
  --header-text: var(--animox-header-text);
  --header-border: var(--animox-header-border);
  --panel-bg: rgba(23, 26, 24, 0.84);
  --card-bg: linear-gradient(180deg, rgba(23, 26, 24, 0.98), rgba(32, 36, 32, 0.94));
  --card-bg-soft: linear-gradient(180deg, rgba(26, 29, 27, 0.98), rgba(32, 36, 32, 0.92));
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.42);
  --btn-secondary-bg: var(--surface);
  --btn-secondary-text: var(--text);
  --btn-secondary-border: var(--line);
  --btn-outline-bg: transparent;
  --btn-outline-text: var(--primary-2);
  --btn-outline-border: var(--line-strong);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--base-font-size);
  color: var(--body-text);
  background:
    radial-gradient(circle at top right, rgba(1, 105, 111, 0.1), transparent 16%),
    radial-gradient(circle at left bottom, rgba(209, 153, 0, 0.08), transparent 22%),
    var(--bg);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

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

.top-hero-band {
  position: relative;
  overflow: hidden;
  padding: 22px 0 0;
  background:
    radial-gradient(circle at top right, rgba(1, 105, 111, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 55%),
    var(--bg);
}

.top-hero-inner {
  min-height: var(--hero-band-min-h);
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0 30px;
}

.top-hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.top-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.top-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, var(--hero-title-max));
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--text);
  max-width: 12ch;
}

.top-hero-text {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.top-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.top-hero-links,
.top-hero-links .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-hero-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-weight: 700;
}

.top-hero-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.top-hero-media {
  min-height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.top-hero-media img {
  width: 100%;
  height: 100%;
  min-height: calc(var(--hero-band-min-h) - 40px);
  object-fit: cover;
}

.top-hero-band.no-image .top-hero-title {
  max-width: 14ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: var(--header-h);
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  transition: transform var(--transition);
}

.site-header.hide {
  transform: translateY(-100%);
}

.site-header.is-static {
  position: relative;
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.animox-header--logo-left-menu-center-cta-right .desktop-nav {
  flex: 1;
  justify-content: center;
}

.animox-header--logo-left-menu-right .desktop-nav {
  margin-left: auto;
}

.animox-header--centered-logo .header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.animox-header--centered-logo .brand {
  justify-self: center;
}

.animox-header--centered-logo .desktop-nav {
  justify-self: start;
}

.animox-header--centered-logo .header-actions {
  justify-self: end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow-sm);
}

.brand-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 56px;
}

.brand-logo img,
.custom-logo-link img {
  max-height: 46px;
  width: auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.14rem;
  letter-spacing: -0.03em;
  color: var(--header-text);
}

.brand-tagline {
  color: var(--header-text);
  opacity: 0.72;
  font-size: 0.78rem;
  line-height: 1.25;
}

.desktop-nav,
.desktop-nav .menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.desktop-nav a {
  color: var(--header-text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--menu-font-size);
  transition: background var(--transition), color var(--transition);
}

.desktop-nav a:hover,
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a {
  background: var(--primary-soft);
  color: var(--header-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.btn,
.hero-search button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--button-radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn-primary,
.hero-search button,
.front-page-builder .wp-block-button.is-style-fill .wp-block-button__link,
.front-page-builder .btn.btn-primary .wp-block-button__link {
  background: linear-gradient(135deg, var(--btn-primary-1), var(--btn-primary-2));
  color: var(--btn-primary-text);
  box-shadow: 0 14px 34px rgba(1, 105, 111, 0.16);
}

.header-cta {
  background: var(--animox-header-cta-bg);
  color: var(--animox-header-cta-text);
  border-color: var(--animox-header-cta-border);
  box-shadow: 0 14px 34px rgba(1, 105, 111, 0.16);
}

.header-cta:hover,
.btn:hover,
.hero-search button:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.btn-secondary,
.front-page-builder .btn.btn-secondary .wp-block-button__link {
  background: var(--btn-secondary-bg);
  border-color: var(--btn-secondary-border);
  color: var(--btn-secondary-text);
  box-shadow: none;
}

.btn-outline {
  background: var(--btn-outline-bg);
  border-color: var(--btn-outline-border);
  color: var(--btn-outline-text);
  box-shadow: none;
}

.icon-btn,
.menu-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--header-border);
  color: var(--header-text);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.icon-btn:hover,
.menu-btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.menu-btn {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 320;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  padding: 22px;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-links,
.mobile-links .menu,
.footer-links,
.footer-links .menu {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-links a {
  color: var(--header-text);
  font-weight: 700;
}

.mobile-links a {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.mobile-links .current-menu-item > a,
.mobile-links .current_page_item > a {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: transparent;
}

.mobile-cta {
  display: inline-flex;
  width: 100%;
  margin-top: auto;
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--header-border);
  color: var(--header-text);
  font-weight: 700;
  background: transparent;
}

.header-link:hover {
  color: var(--header-text);
  border-color: var(--animox-header-cta-border);
}

.mobile-secondary-link {
  width: 100%;
}

.home-builder .entry-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.home-builder .entry-content > .wp-block + .wp-block {
  margin-top: 0;
}

.home-section {
  padding: var(--section-space) 0;
}

.home-section:first-child {
  padding-top: 28px;
}

.section,
.listing-hero {
  margin-top: 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.hero-card,
.showcase-card,
.section-shell,
.content-card,
.post-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  box-shadow: var(--shadow-md);
}

.hero-card,
.showcase-card {
  padding: clamp(22px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 105, 111, 0.18), transparent 68%);
  pointer-events: none;
}

.section-shell,
.content-card,
.empty-state {
  padding: clamp(22px, 3vw, 32px);
}

.showcase-card {
  background: var(--card-bg-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.showcase-cover {
  margin: -8px -8px 6px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--panel);
  border: 1px solid var(--line);
}

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

.tools-hero {
  max-width: none;
  text-align: left;
  margin: 0;
}

.tools-hero__eyebrow,
.eyebrow,
.section-pill,
.section-puck,
.hero-chip,
.tool-card__badge,
.video-card__duration {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tools-hero__title,
.archive-title,
.section-title,
.single-article h1,
.page-article h1,
.listing-hero h1 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--text);
}

.tools-hero__title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 10ch;
}

.tools-hero__title span {
  display: block;
}

.tools-hero__title .is-accent {
  color: var(--primary);
}

.archive-title,
.section-title,
.listing-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.tools-hero__description,
.archive-description,
.section-description,
.listing-hero p {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.tools-hero__description {
  max-width: 58ch;
  margin: 18px 0 0;
}

.archive-description,
.section-description,
.listing-hero p {
  margin: 12px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-start;
}

.hero-chip-row,
.hero-taxonomies {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-chip-row {
  margin-top: 20px;
}

.hero-chip {
  background: var(--panel);
  border-color: var(--line);
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.hero-highlights,
.hero-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-card,
.hero-stat {
  padding: 16px;
  border-radius: 20px;
  background: var(--panel-bg);
  border: 1px solid var(--line);
}

.mini-card strong,
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.04em;
}

.mini-card span,
.hero-stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-search {
  margin-top: 24px;
  max-width: 760px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-search__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 999px;
}

.hero-search input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  outline: none;
  font-size: 1rem;
}

.hero-search input::placeholder {
  color: var(--muted);
}

.hero-taxonomies {
  margin-top: 18px;
}

.hero-taxonomy {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.hero-taxonomy.is-active,
.hero-taxonomy:hover {
  background: var(--primary-soft);
  border-color: transparent;
  color: var(--primary);
}

.showcase-top,
.section-head,
.post-meta,
.tool-card__top,
.tool-card__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.showcase-top {
  flex-wrap: wrap;
}

.showcase-top h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.showcase-list {
  display: grid;
  gap: 14px;
}

.showcase-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.showcase-item:hover,
.tool-card:hover,
.news-card:hover,
.video-card:hover,
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.showcase-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

.showcase-copy span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase-link,
.section-link,
.news-card__link,
.video-card__link,
.card-link,
.post-card a {
  color: var(--primary);
  font-weight: 800;
}

.section-head {
  margin-bottom: 22px;
}

.section-heading-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section-pill {
  background: var(--accent-soft);
  color: var(--accent);
}

.section-puck {
  background: var(--primary-soft);
  color: var(--primary);
}

.section-link {
  white-space: nowrap;
}

.tool-grid,
.news-grid,
.video-grid,
.post-grid {
  display: grid;
  gap: 18px;
}

.tool-grid,
.news-grid,
.video-grid,
.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-card,
.news-card,
.video-card,
.post-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tool-card__inner,
.video-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tool-card__inner {
  padding: 22px;
}

.tool-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-card__badge {
  background: var(--panel);
  border-color: var(--line);
  color: var(--muted);
}

.tool-card__badge.is-hot {
  background: rgba(161, 44, 123, 0.12);
  color: var(--danger);
}

.tool-card__badge.is-new {
  background: rgba(67, 122, 34, 0.14);
  color: var(--success);
}

.tool-card__badge.is-free {
  background: rgba(1, 105, 111, 0.12);
  color: var(--primary);
}

.tool-card__badge.is-ai {
  background: rgba(209, 153, 0, 0.16);
  color: var(--accent);
}

.tool-card__badge.is-plain {
  background: var(--panel);
  color: var(--muted);
}

.tool-card__title,
.news-card__title,
.video-card__title,
.post-card h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.52rem, 2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--text);
}

.tool-card__excerpt,
.news-card__excerpt,
.video-card__excerpt,
.post-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.tool-card__footer {
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.tool-card__meta {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.tool-card__arrow {
  color: var(--primary);
  font-size: 1.1rem;
}

.news-card__thumb,
.video-card__media,
.featured-media,
.post-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--panel);
}

.news-card__thumb img,
.video-card__media img,
.featured-media img,
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body,
.video-card__body,
.post-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.news-card__date,
.video-card__platform,
.post-meta span {
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.video-card__media {
  display: grid;
  place-items: center;
}

.video-card__fallback {
  color: var(--primary);
  font-size: 3rem;
}

.video-card__duration {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(29, 27, 23, 0.86);
  color: #fff;
}

.content-shell,
.archive-shell {
  padding: 34px 0 72px;
}

.archive-hero {
  display: grid;
  gap: 18px;
}

.page-article,
.single-article,
.single-tool-shell {
  display: grid;
  gap: 20px;
}

.tool-app-shell {
  padding: 12px;
}

.tool-app-frame {
  width: 100%;
  min-height: 920px;
  border: 0;
  border-radius: calc(var(--radius-xl) - 8px);
  background: #ffffff;
  display: block;
}

.single-content-card,
.entry-content,
.content-card {
  color: var(--muted);
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content strong,
.entry-content blockquote,
.entry-content li,
.entry-content code {
  color: var(--text);
}

.entry-content a {
  color: var(--primary);
  text-decoration: underline;
}

.entry-content > * + * {
  margin-top: 1.2em;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2rem;
}

.entry-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--primary);
  background: var(--panel-bg);
  border-radius: 0 14px 14px 0;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-meta {
  margin-bottom: 16px;
}

.post-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid transparent;
}

.pagination-wrap {
  margin-top: 28px;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links .page-numbers {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
}

.nav-links .current {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  color: #fff;
}

.empty-state,
.compact-empty {
  text-align: center;
}

.empty-state h2,
.empty-state h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  color: var(--text);
}

.empty-state p {
  margin: 12px auto 0;
  max-width: 720px;
  color: var(--muted);
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--footer-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent), var(--footer-bg);
  color: var(--footer-text);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 2.05fr);
  gap: 24px;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-col,
.footer-widget {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.footer-col h4,
.footer-widget h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--footer-text);
}

.footer-col p,
.footer-widget p {
  margin: 0;
  color: var(--footer-text);
  opacity: 0.82;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand__copy {
  display: grid;
  gap: 4px;
}

.footer-brand__title {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--footer-text);
}

.footer-brand__tagline {
  color: var(--footer-text);
  opacity: 0.68;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--footer-border);
  border-radius: 999px;
  color: var(--footer-link);
}

.footer-stack-panel {
  display: grid;
  gap: 10px;
}

.footer-widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.footer-widget-area {
  display: grid;
}

.footer-links .menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--footer-border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--footer-text);
  opacity: 0.74;
}

.blk-editor-placeholder {
  min-height: 140px;
}

@media (max-width: 1180px) {
  .top-hero-inner,
  .hero-shell,
  .tool-grid,
  .news-grid,
  .video-grid,
  .post-grid,
  .footer-inner,
  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-nav .header-cta,
  .mobile-cta,
  .mobile-secondary-link {
    display: inline-flex;
  }

  .header-link {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .tool-grid,
  .news-grid,
  .video-grid,
  .post-grid,
  .footer-inner,
  .footer-nav-grid,
  .hero-highlights,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .top-hero-inner {
    grid-template-columns: 1fr;
  }

  .top-hero-media img {
    min-height: 280px;
  }

  .section-head,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .hero-search__icon {
    display: none;
  }

  .showcase-item {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .showcase-link {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .top-hero-band {
    padding-top: 14px;
  }

  .top-hero-inner {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .tools-hero__title,
  .archive-title,
  .listing-hero h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero-card,
  .showcase-card,
  .section-shell,
  .content-card,
  .empty-state {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .home-section:first-child {
    padding-top: 20px;
  }

  .hero-actions .btn,
  .hero-actions .header-cta {
    width: 100%;
  }
}

body.home.page .site-header {
  background: var(--animox-header-bg);
  border-bottom-color: var(--animox-header-border);
}

body.home.page .brand-name,
body.home.page .desktop-nav a,
body.home.page .header-link,
body.home.page .header-search-btn,
body.home.page .icon-btn,
body.home.page .menu-btn {
  color: var(--animox-header-text);
}

body.home.page .brand-tagline {
  color: var(--animox-header-text);
  opacity: 0.72;
}

body.home.page .desktop-nav a:hover,
body.home.page .desktop-nav .current-menu-item > a,
body.home.page .desktop-nav .current_page_item > a {
  background: rgba(61, 131, 255, 0.14);
  color: var(--animox-header-text);
}

body.home.page .header-cta {
  background: var(--animox-header-cta-bg);
  color: var(--animox-header-cta-text);
  border-color: var(--animox-header-cta-border);
  box-shadow: 0 16px 30px rgba(1, 105, 111, 0.24);
}

body.home.page .header-link,
body.home.page .icon-btn,
body.home.page .menu-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--animox-header-border);
}

body.home.page .mobile-nav-panel {
  background: var(--animox-header-bg);
  border-left-color: var(--animox-header-border);
}

body.home.page .mobile-links a {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--animox-header-border);
  color: var(--animox-header-text);
}

.animox-home {
  padding: 30px 0 84px;
  background:
    radial-gradient(circle at top center, rgba(61, 131, 255, 0.18), transparent 30%),
    radial-gradient(circle at 10% 20%, rgba(255, 118, 54, 0.12), transparent 24%),
    linear-gradient(180deg, #0a0f1b 0%, #0d1321 48%, #0a1020 100%);
  color: #ecf1ff;
}

.animox-home .container {
  width: min(calc(100% - 24px), 1240px);
}

.animox-home a {
  color: inherit;
}

.animox-home__hero,
.animox-home__stats,
.animox-home__news,
.animox-home__videos,
.animox-home__discover,
.animox-home__tools-grid,
.animox-home__category-blocks,
.animox-home__solutions,
.animox-home__blog-guides,
.animox-home__content,
.animox-home__faq,
.animox-home__ad-band {
  padding: 18px 0;
}

.animox-hero,
.animox-content-block,
.animox-ad-slot {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(11, 17, 31, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.animox-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.animox-hero::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 118, 54, 0.22), transparent 68%);
  pointer-events: none;
}

.animox-hero__copy,
.animox-hero__visual,
.animox-panel-grid,
.animox-content-columns,
.animox-tools-grid,
.animox-solutions-grid,
.animox-roadmap-grid,
.animox-stats-grid,
.animox-trust-row,
.animox-pill-row,
.animox-faq-list {
  display: grid;
}

.animox-hero__copy {
  gap: 18px;
  align-content: center;
  min-width: 0;
}

.animox-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid var(--primary);
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.animox-pill--accent {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.animox-pill--live {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.2);
  color: #7be5a1;
}

.animox-hero__title,
.animox-section-head h2,
.animox-content-block h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.animox-hero__title {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
  color: #f8fbff;
}

.animox-hero__text,
.animox-section-head p,
.animox-panel-card p,
.animox-tool-card p,
.animox-solution-card p,
.animox-roadmap-card p,
.animox-content-columns p,
.animox-empty-state p,
.animox-faq-item p,
.animox-results-meta {
  margin: 0;
  color: #aab7d4;
}

.animox-hero__text {
  max-width: 60ch;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.animox-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.animox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.animox-btn:hover,
.animox-category-pill:hover,
.animox-text-link:hover {
  transform: translateY(-2px);
}

.animox-btn--primary {
  background: linear-gradient(135deg, var(--btn-primary-1), var(--btn-primary-2));
  color: var(--btn-primary-text);
  box-shadow: 0 18px 34px rgba(1, 105, 111, 0.24);
}

.animox-btn--secondary {
  background: var(--btn-secondary-bg);
  border-color: var(--btn-secondary-border);
  color: var(--btn-secondary-text);
}

.animox-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: #edf2ff;
}

.animox-hero__subactions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.animox-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.animox-trust-badge,
.animox-category-pill,
.animox-roadmap-card__badge,
.animox-solution-card__label,
.animox-tool-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.animox-trust-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d4def5;
}

.animox-hero__visual {
  min-width: 0;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(10, 15, 28, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.animox-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.animox-hero__visual-placeholder {
  display: grid;
  gap: 14px;
  align-content: end;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(160deg, rgba(61, 131, 255, 0.18), transparent 48%),
    radial-gradient(circle at top right, rgba(255, 118, 54, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(10, 15, 28, 0.98));
}

.animox-hero__visual-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #edf2ff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.animox-hero__visual-placeholder strong {
  color: #f8fbff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.animox-hero__visual-placeholder p {
  margin: 0;
  color: #aab7d4;
}

.animox-panel-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.animox-panel-card--lead {
  padding: 22px;
}

.animox-panel-card__label,
.animox-panel-card__number {
  color: #8fb4ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.animox-panel-card strong,
.animox-stat-card strong,
.animox-tool-card h3,
.animox-solution-card h3,
.animox-roadmap-card h3,
.animox-empty-state h3,
.animox-faq-item summary {
  color: #f8fbff;
}

.animox-panel-card strong,
.animox-roadmap-card h3,
.animox-solution-card h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.animox-panel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.animox-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.animox-stat-card {
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 23, 40, 0.96), rgba(11, 17, 30, 0.98));
}

.animox-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.animox-stat-card span {
  display: block;
  margin-top: 8px;
  color: #9fb0d3;
}

.animox-ad-slot {
  min-height: 104px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #8f9cba;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.animox-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
}

.animox-section-head h2,
.animox-content-block h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  color: #f8fbff;
}

.animox-text-link {
  color: #8fb4ff;
  font-weight: 800;
}

.animox-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 16px;
}

.animox-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(61, 131, 255, 0.14);
  color: #8fb4ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.animox-search input {
  width: 100%;
  border: none;
  background: transparent;
  color: #f8fbff;
  outline: none;
  font-size: 1rem;
}

.animox-search input::placeholder {
  color: #94a5c7;
}

.animox-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.animox-category-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ced8ef;
}

.animox-category-pill.is-active {
  background: linear-gradient(135deg, color-mix(in srgb, var(--btn-primary-1) 22%, transparent), color-mix(in srgb, var(--btn-primary-2) 22%, transparent));
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.animox-home__news .news-grid,
.home-section--news .news-grid,
.animox-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.animox-home__news .news-card,
.home-section--news .news-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(10, 15, 28, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.animox-home__news .news-card__body,
.home-section--news .news-card__body {
  display: grid;
  gap: 12px;
}

.animox-home__news .news-card__date,
.animox-home__news .news-card__excerpt,
.home-section--news .news-card__date,
.home-section--news .news-card__excerpt {
  color: #aab7d4;
}

.animox-home__news .news-card__title,
.home-section--news .news-card__title {
  color: #f8fbff;
}

.animox-home__news .news-card__link,
.home-section--news .news-card__link {
  color: #8fb4ff;
}

.animox-tools-grid,
.animox-solutions-grid,
.animox-category-grid,
.animox-roadmap-grid,
.animox-content-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.animox-tool-card,
.animox-category-card,
.animox-solution-card,
.animox-roadmap-card,
.animox-empty-state,
.animox-content-block,
.animox-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 23, 40, 0.95), rgba(10, 15, 26, 0.98));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.animox-tool-card,
.animox-category-card,
.animox-solution-card,
.animox-roadmap-card,
.animox-empty-state {
  border-radius: 26px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.animox-tool-card:hover,
.animox-category-card:hover,
.animox-solution-card:hover,
.animox-roadmap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 180, 255, 0.26);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.animox-tool-card__inner,
.animox-category-card__inner,
.animox-solution-card__inner {
  height: 100%;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.animox-tool-card__top,
.animox-category-card__top,
.animox-tool-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.animox-tool-card__icon,
.animox-category-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.animox-tool-card__badge {
  background: rgba(34, 197, 94, 0.14);
  color: #7be5a1;
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.animox-tool-card h3,
.animox-category-card h3,
.animox-solution-card h3,
.animox-roadmap-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.animox-tool-card__footer,
.animox-category-card__footer {
  margin-top: auto;
  padding-top: 8px;
  color: var(--primary-2);
  font-weight: 800;
}

.animox-solution-card__label,
.animox-category-card__badge,
.animox-roadmap-card__badge {
  width: fit-content;
  background: rgba(255, 255, 255, 0.05);
  color: #cfd9f1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.animox-roadmap-card {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.animox-category-card__inner {
  height: 100%;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.animox-content-block,
.animox-empty-state {
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
}

.animox-content-block {
  display: grid;
  gap: 24px;
}

.animox-content-columns p {
  font-size: 1rem;
}

.animox-empty-state--filter {
  margin-top: 18px;
}

.animox-faq-list {
  gap: 14px;
}

.animox-faq-item {
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
}

.animox-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

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

.animox-faq-item div {
  padding: 0 20px 18px;
}

@media (max-width: 1180px) {
  .animox-hero,
  .animox-tools-grid,
  .animox-category-grid,
  .animox-solutions-grid,
  .animox-roadmap-grid,
  .animox-home__news .news-grid,
  .animox-content-columns,
  .animox-stats-grid,
  .animox-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .animox-home {
    padding-top: 18px;
  }

  .animox-hero,
  .animox-tools-grid,
  .animox-category-grid,
  .animox-solutions-grid,
  .animox-roadmap-grid,
  .animox-home__news .news-grid,
  .animox-content-columns,
  .animox-stats-grid,
  .animox-panel-grid {
    grid-template-columns: 1fr;
  }

  .animox-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .animox-search {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .animox-search__icon {
    min-width: 0;
  }

  .animox-category-pill {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body.home.page .animox-home .container {
    width: min(calc(100% - 20px), 1240px);
  }

  .animox-hero {
    padding: 20px;
    border-radius: 24px;
  }

  .animox-hero__visual {
    min-height: 320px;
  }

  .animox-hero__title,
  .animox-section-head h2,
  .animox-content-block h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .animox-hero__actions {
    grid-template-columns: 1fr;
  }

  .animox-hero__actions {
    display: grid;
  }

  .animox-btn {
    width: 100%;
  }

  .animox-stat-card,
  .animox-tool-card__inner,
  .animox-solution-card__inner,
  .animox-roadmap-card,
  .animox-content-block,
  .animox-empty-state,
  .animox-faq-item summary,
  .animox-faq-item div {
    padding-left: 18px;
    padding-right: 18px;
  }
}

body.post-type-archive-tool .site-header,
body.tax-tool_category .site-header {
  background: var(--animox-header-bg);
  border-bottom-color: var(--animox-header-border);
}

body.post-type-archive-tool .brand-name,
body.post-type-archive-tool .desktop-nav a,
body.post-type-archive-tool .header-link,
body.post-type-archive-tool .header-search-btn,
body.post-type-archive-tool .icon-btn,
body.post-type-archive-tool .menu-btn,
body.tax-tool_category .brand-name,
body.tax-tool_category .desktop-nav a,
body.tax-tool_category .header-link,
body.tax-tool_category .header-search-btn,
body.tax-tool_category .icon-btn,
body.tax-tool_category .menu-btn {
  color: var(--animox-header-text);
}

body.post-type-archive-tool .desktop-nav a:hover,
body.post-type-archive-tool .desktop-nav .current-menu-item > a,
body.post-type-archive-tool .desktop-nav .current_page_item > a,
body.tax-tool_category .desktop-nav a:hover,
body.tax-tool_category .desktop-nav .current-menu-item > a,
body.tax-tool_category .desktop-nav .current_page_item > a {
  background: rgba(61, 131, 255, 0.14);
  color: var(--animox-header-text);
}

body.post-type-archive-tool .header-cta,
body.tax-tool_category .header-cta {
  background: var(--animox-header-cta-bg);
  color: var(--animox-header-cta-text);
  border-color: var(--animox-header-cta-border);
  box-shadow: 0 16px 30px rgba(1, 105, 111, 0.24);
}

body.post-type-archive-tool .header-link,
body.post-type-archive-tool .icon-btn,
body.post-type-archive-tool .menu-btn,
body.tax-tool_category .header-link,
body.tax-tool_category .icon-btn,
body.tax-tool_category .menu-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--animox-header-border);
}

body.post-type-archive-tool .mobile-nav-panel,
body.tax-tool_category .mobile-nav-panel {
  background: var(--animox-header-bg);
  border-left-color: var(--animox-header-border);
}

body.post-type-archive-tool .mobile-links a,
body.tax-tool_category .mobile-links a {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--animox-header-border);
  color: var(--animox-header-text);
}

.animox-directory-page {
  padding: 28px 0 84px;
  background:
    radial-gradient(circle at top center, rgba(61, 131, 255, 0.16), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255, 118, 54, 0.1), transparent 22%),
    linear-gradient(180deg, #0a0f1b 0%, #0d1321 48%, #0a1020 100%);
  color: #ecf1ff;
}

.animox-directory-page .container {
  width: min(calc(100% - 24px), 1240px);
}

.animox-directory-page a {
  color: inherit;
}

.animox-directory-section {
  padding: 18px 0;
}

.animox-directory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(11, 17, 31, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.animox-directory-hero__copy,
.animox-directory-hero__aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.animox-directory-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f8fbff;
  max-width: 12ch;
}

.animox-directory-hero p {
  margin: 0;
  color: #aab7d4;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.animox-directory-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.animox-directory-meta__item,
.animox-directory-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #cfd9f1;
  font-weight: 700;
}

.animox-directory-back:hover {
  color: #ffffff;
  border-color: rgba(143, 180, 255, 0.26);
}

.animox-directory-page .animox-search {
  margin-bottom: 0;
}

.animox-directory-page .animox-content-block--compact {
  gap: 18px;
}

.animox-directory-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.animox-directory-callout p {
  margin: 0;
  color: #aab7d4;
}

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

@media (max-width: 900px) {
  .animox-directory-page {
    padding-top: 18px;
  }

  .animox-directory-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .animox-directory-page .container {
    width: min(calc(100% - 20px), 1240px);
  }

  .animox-directory-hero {
    padding: 20px;
    border-radius: 24px;
  }

  .animox-directory-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }
}

body.single-tool .site-header {
  background: var(--animox-header-bg);
  border-bottom-color: var(--animox-header-border);
}

body.single-tool .brand-name,
body.single-tool .desktop-nav a,
body.single-tool .header-link,
body.single-tool .header-search-btn,
body.single-tool .icon-btn,
body.single-tool .menu-btn {
  color: var(--animox-header-text);
}

body.single-tool .brand-tagline {
  color: var(--animox-header-text);
  opacity: 0.72;
}

body.single-tool .desktop-nav a:hover,
body.single-tool .desktop-nav .current-menu-item > a,
body.single-tool .desktop-nav .current_page_item > a {
  background: rgba(61, 131, 255, 0.14);
  color: var(--animox-header-text);
}

body.single-tool .header-cta {
  background: var(--animox-header-cta-bg);
  color: var(--animox-header-cta-text);
  border-color: var(--animox-header-cta-border);
  box-shadow: 0 16px 30px rgba(1, 105, 111, 0.24);
}

body.single-tool .header-link,
body.single-tool .icon-btn,
body.single-tool .menu-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--animox-header-border);
}

body.single-tool .mobile-nav-panel {
  background: var(--animox-header-bg);
  border-left-color: var(--animox-header-border);
}

body.single-tool .mobile-links a {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--animox-header-border);
  color: var(--animox-header-text);
}

.animox-single-tool {
  padding: 28px 0 84px;
  background:
    radial-gradient(circle at top center, rgba(61, 131, 255, 0.16), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255, 118, 54, 0.1), transparent 22%),
    linear-gradient(180deg, #0a0f1b 0%, #0d1321 48%, #0a1020 100%);
  color: #ecf1ff;
}

.animox-single-tool .container {
  width: min(calc(100% - 24px), 1240px);
}

.animox-single-tool a {
  color: inherit;
}

.animox-single-tool__section {
  padding: 18px 0;
}

.animox-tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(11, 17, 31, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.animox-tool-hero__copy,
.animox-tool-hero__aside {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
}

.animox-tool-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #8fa4cf;
  font-size: 0.92rem;
}

.animox-tool-breadcrumb a:hover {
  color: #f6f9ff;
}

.animox-tool-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.animox-tool-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #f8fbff;
  max-width: 11ch;
}

.animox-tool-hero__excerpt {
  margin: 0;
  max-width: 62ch;
  color: #aab7d4;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.animox-tool-trust-row {
  margin-top: 6px;
}

.animox-tool-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.animox-tool-hero__aside .animox-content-block {
  height: 100%;
}

.animox-tool-nav {
  display: grid;
  gap: 10px;
}

.animox-tool-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #dbe4fb;
  font-weight: 700;
}

.animox-tool-nav__link:hover {
  color: #ffffff;
  border-color: rgba(143, 180, 255, 0.26);
}

.animox-tool-hero__stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.animox-tool-hero__stat strong {
  display: block;
  margin-bottom: 4px;
  color: #f7faff;
}

.animox-tool-hero__stat p {
  margin: 0;
  color: #aab7d4;
}

.animox-tool-hero__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  background: rgba(61, 131, 255, 0.18);
  color: #edf4ff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.animox-tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr);
  gap: 22px;
  align-items: start;
}

.animox-tool-shell,
.animox-tool-context__inner {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(10, 15, 28, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.animox-tool-shell__head,
.animox-tool-context__inner > div:first-child {
  display: grid;
  gap: 10px;
}

.animox-tool-shell__head h2,
.animox-tool-context h2 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.animox-tool-shell__head p,
.animox-tool-context__content p {
  margin: 0;
  color: #aab7d4;
}

.animox-tool-context__content {
  display: grid;
  gap: 14px;
}

.animox-tool-context__content > *:first-child {
  margin-top: 0;
}

.animox-tool-context__content > *:last-child {
  margin-bottom: 0;
}

.animox-tool-context__content ul,
.animox-tool-context__content ol {
  margin: 0;
  padding-left: 20px;
  color: #dfe7fb;
}

.animox-tool-context__content li + li {
  margin-top: 8px;
}

.animox-tool-shell__frame-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #09101c;
}

.animox-tool-shell__frame {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #ffffff;
}

.animox-empty-state--tool {
  padding: clamp(20px, 4vw, 28px);
}

.animox-tool-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.animox-related-tools,
.animox-related-solutions {
  align-items: stretch;
}

.animox-related-solutions .animox-solution-card__inner {
  min-height: 100%;
}

@media (max-width: 1180px) {
  .animox-tool-hero,
  .animox-tool-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .animox-single-tool {
    padding-top: 18px;
  }
}

@media (max-width: 640px) {
  .animox-single-tool .container {
    width: min(calc(100% - 20px), 1240px);
  }

  .animox-tool-hero,
  .animox-tool-shell,
  .animox-tool-context__inner {
    padding: 20px;
    border-radius: 24px;
  }

  .animox-tool-hero__title {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .animox-tool-hero__actions,
  .animox-tool-empty-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .animox-tool-nav__link,
  .animox-tool-hero__actions .animox-btn,
  .animox-tool-empty-actions .animox-btn {
    width: 100%;
  }

  .animox-tool-shell__frame {
    min-height: 640px;
  }
}

body.home.blog .site-header,
body.category .site-header,
body.tag .site-header,
body.author .site-header,
body.date .site-header,
body.single-post .site-header,
body.page-template-page-solutions-php .site-header,
body.page-template-page-solutions .site-header {
  background: var(--animox-header-bg);
  border-bottom-color: var(--animox-header-border);
}

body.home.blog .brand-name,
body.home.blog .desktop-nav a,
body.home.blog .header-link,
body.home.blog .header-search-btn,
body.home.blog .icon-btn,
body.home.blog .menu-btn,
body.category .brand-name,
body.category .desktop-nav a,
body.category .header-link,
body.category .header-search-btn,
body.category .icon-btn,
body.category .menu-btn,
body.tag .brand-name,
body.tag .desktop-nav a,
body.tag .header-link,
body.tag .header-search-btn,
body.tag .icon-btn,
body.tag .menu-btn,
body.author .brand-name,
body.author .desktop-nav a,
body.author .header-link,
body.author .header-search-btn,
body.author .icon-btn,
body.author .menu-btn,
body.date .brand-name,
body.date .desktop-nav a,
body.date .header-link,
body.date .header-search-btn,
body.date .icon-btn,
body.date .menu-btn,
body.single-post .brand-name,
body.single-post .desktop-nav a,
body.single-post .header-link,
body.single-post .header-search-btn,
body.single-post .icon-btn,
body.single-post .menu-btn,
body.page-template-page-solutions-php .brand-name,
body.page-template-page-solutions-php .desktop-nav a,
body.page-template-page-solutions-php .header-link,
body.page-template-page-solutions-php .header-search-btn,
body.page-template-page-solutions-php .icon-btn,
body.page-template-page-solutions-php .menu-btn,
body.page-template-page-solutions .brand-name,
body.page-template-page-solutions .desktop-nav a,
body.page-template-page-solutions .header-link,
body.page-template-page-solutions .header-search-btn,
body.page-template-page-solutions .icon-btn,
body.page-template-page-solutions .menu-btn {
  color: var(--animox-header-text);
}

body.home.blog .brand-tagline,
body.category .brand-tagline,
body.tag .brand-tagline,
body.author .brand-tagline,
body.date .brand-tagline,
body.single-post .brand-tagline,
body.page-template-page-solutions-php .brand-tagline,
body.page-template-page-solutions .brand-tagline,
body.post-type-archive-tool .brand-tagline,
body.tax-tool_category .brand-tagline {
  color: var(--animox-header-text);
  opacity: 0.72;
}

body.home.blog .desktop-nav a:hover,
body.home.blog .desktop-nav .current-menu-item > a,
body.home.blog .desktop-nav .current_page_item > a,
body.category .desktop-nav a:hover,
body.category .desktop-nav .current-menu-item > a,
body.category .desktop-nav .current_page_item > a,
body.tag .desktop-nav a:hover,
body.tag .desktop-nav .current-menu-item > a,
body.tag .desktop-nav .current_page_item > a,
body.author .desktop-nav a:hover,
body.author .desktop-nav .current-menu-item > a,
body.author .desktop-nav .current_page_item > a,
body.date .desktop-nav a:hover,
body.date .desktop-nav .current-menu-item > a,
body.date .desktop-nav .current_page_item > a,
body.single-post .desktop-nav a:hover,
body.single-post .desktop-nav .current-menu-item > a,
body.single-post .desktop-nav .current_page_item > a,
body.page-template-page-solutions-php .desktop-nav a:hover,
body.page-template-page-solutions-php .desktop-nav .current-menu-item > a,
body.page-template-page-solutions-php .desktop-nav .current_page_item > a,
body.page-template-page-solutions .desktop-nav a:hover,
body.page-template-page-solutions .desktop-nav .current-menu-item > a,
body.page-template-page-solutions .desktop-nav .current_page_item > a {
  background: rgba(61, 131, 255, 0.14);
  color: var(--animox-header-text);
}

body.home.blog .header-cta,
body.category .header-cta,
body.tag .header-cta,
body.author .header-cta,
body.date .header-cta,
body.single-post .header-cta,
body.page-template-page-solutions-php .header-cta,
body.page-template-page-solutions .header-cta {
  background: var(--animox-header-cta-bg);
  color: var(--animox-header-cta-text);
  border-color: var(--animox-header-cta-border);
  box-shadow: 0 16px 30px rgba(1, 105, 111, 0.24);
}

body.home.blog .header-link,
body.home.blog .icon-btn,
body.home.blog .menu-btn,
body.category .header-link,
body.category .icon-btn,
body.category .menu-btn,
body.tag .header-link,
body.tag .icon-btn,
body.tag .menu-btn,
body.author .header-link,
body.author .icon-btn,
body.author .menu-btn,
body.date .header-link,
body.date .icon-btn,
body.date .menu-btn,
body.single-post .header-link,
body.single-post .icon-btn,
body.single-post .menu-btn,
body.page-template-page-solutions-php .header-link,
body.page-template-page-solutions-php .icon-btn,
body.page-template-page-solutions-php .menu-btn,
body.page-template-page-solutions .header-link,
body.page-template-page-solutions .icon-btn,
body.page-template-page-solutions .menu-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--animox-header-border);
}

body.home.blog .mobile-nav-panel,
body.category .mobile-nav-panel,
body.tag .mobile-nav-panel,
body.author .mobile-nav-panel,
body.date .mobile-nav-panel,
body.single-post .mobile-nav-panel,
body.page-template-page-solutions-php .mobile-nav-panel,
body.page-template-page-solutions .mobile-nav-panel {
  background: var(--animox-header-bg);
  border-left-color: var(--animox-header-border);
}

body.home.blog .mobile-links a,
body.category .mobile-links a,
body.tag .mobile-links a,
body.author .mobile-links a,
body.date .mobile-links a,
body.single-post .mobile-links a,
body.page-template-page-solutions-php .mobile-links a,
body.page-template-page-solutions .mobile-links a {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--animox-header-border);
  color: var(--animox-header-text);
}

.animox-solutions,
.animox-blog-index,
.animox-article {
  padding: 28px 0 84px;
  background:
    radial-gradient(circle at top center, rgba(61, 131, 255, 0.16), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255, 118, 54, 0.1), transparent 22%),
    linear-gradient(180deg, #0a0f1b 0%, #0d1321 48%, #0a1020 100%);
  color: #ecf1ff;
}

.animox-page-content {
  min-height: 40vh;
}

.animox-editor-hook {
  display: none !important;
}

.animox-page-content--front,
.animox-page-content--solutions {
  padding: 28px 0 84px;
  background:
    radial-gradient(circle at top center, rgba(61, 131, 255, 0.16), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255, 118, 54, 0.1), transparent 22%),
    linear-gradient(180deg, #0a0f1b 0%, #0d1321 48%, #0a1020 100%);
  color: #ecf1ff;
}

.animox-page-content--front > *:first-child,
.animox-page-content--solutions > *:first-child {
  margin-top: 0;
}

.animox-solutions .container,
.animox-blog-index .container,
.animox-article .container {
  width: min(calc(100% - 24px), 1240px);
}

.animox-solutions a,
.animox-blog-index a,
.animox-article a {
  color: inherit;
}

.animox-solutions__section,
.animox-blog-section,
.animox-article__section {
  padding: 18px 0;
}

.animox-solutions-hero,
.animox-blog-hero,
.animox-article-hero {
  min-height: 100%;
}

.animox-workflow-grid,
.animox-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.animox-workflow-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.animox-guide-card {
  min-width: 0;
}

.animox-guide-card__inner {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(10, 15, 28, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.animox-guide-card__inner:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 180, 255, 0.24);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
}

.animox-guide-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(61, 131, 255, 0.16);
  color: #d9e6ff;
  font-weight: 700;
  font-size: 0.88rem;
}

.animox-guide-card h2,
.animox-guide-card h3 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
}

.animox-guide-card p {
  margin: 0;
  color: #aab7d4;
}

.animox-guide-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  color: #dbe5fb;
  font-weight: 700;
}

.animox-article-media {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.animox-article-media img {
  display: block;
  width: 100%;
  height: auto;
}

.animox-article-content {
  display: grid;
  gap: 18px;
}

.animox-article-content > *:first-child {
  margin-top: 0;
}

.animox-article-content > *:last-child {
  margin-bottom: 0;
}

.animox-article-content h2,
.animox-article-content h3,
.animox-article-content h4 {
  color: #f8fbff;
}

.animox-article-content p,
.animox-article-content li,
.animox-solutions__section--page-content p,
.animox-solutions__section--page-content li {
  color: #d9e4fb;
}

.animox-article-content a,
.animox-solutions__section--page-content a {
  color: #9bc0ff;
}

.animox-article-content a:hover,
.animox-solutions__section--page-content a:hover {
  color: #ffffff;
}

.animox-article .animox-directory-meta {
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .animox-workflow-grid,
  .animox-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .animox-solutions,
  .animox-blog-index,
  .animox-article {
    padding-top: 18px;
  }
}

@media (max-width: 640px) {
  .animox-solutions .container,
  .animox-blog-index .container,
  .animox-article .container {
    width: min(calc(100% - 20px), 1240px);
  }

  .animox-workflow-grid,
  .animox-guide-grid {
    grid-template-columns: 1fr;
  }

  .animox-guide-card__inner {
    padding: 18px;
    border-radius: 22px;
  }
}
