@font-face {
  font-family: "Coxx";
  src: url("assets/fonts/coxx.woff2") format("woff2");
  font-display: swap;
  font-weight: 400 700;
}

@font-face {
  font-family: "FigtreeLocal";
  src: url("assets/fonts/figtree.woff2") format("woff2");
  font-display: swap;
  font-weight: 300 900;
}

:root {
  --rw-black: #1b1b1b;
  --rw-white: #f4f4f4;
  --rw-green: #afff9f;
  --background: #1a1a1a;
  --foreground: #efefef;
  --muted-foreground: #a4a4a4;
  --border: #3c3c3c;
  --soft-border: #292929;
  --card: #1c1c1c;
  --muted: #242424;
  --heading: "Coxx", "FigtreeLocal", Arial, sans-serif;
  --sans: "FigtreeLocal", Arial, sans-serif;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
}

.pricing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(14px);
}

.pricing-header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 22px;
}

.pricing-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.pricing-brand img {
  width: 176px;
  height: auto;
}

.pricing-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #c9c9c9;
  font-size: 17px;
  font-weight: 530;
}

.pricing-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  transition: color 150ms ease;
}

.pricing-nav a:hover,
.pricing-nav a.is-active {
  color: var(--foreground);
}

.pricing-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--rw-green);
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.72;
}

.pricing-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.icon-only {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #d6d6d6;
  cursor: pointer;
}

.icon-only svg {
  width: 21px;
  height: 21px;
}

.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--foreground);
  font-size: 16px;
  font-weight: 680;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.pricing-button:active {
  transform: translateY(1px);
}

.pricing-button-ghost {
  border-color: var(--border);
  background: var(--background);
}

.pricing-button-ghost:hover {
  background: var(--muted);
}

.pricing-button-primary {
  background: var(--rw-green);
  color: var(--rw-black);
}

.pricing-button-primary:hover {
  background: rgba(175, 255, 159, 0.72);
}

.sign-up {
  height: 39px;
  min-width: 118px;
  padding: 0 13px 0 17px;
}

.north-east {
  width: 14px;
  height: 14px;
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 72% 100%, 72% 38%, 14% 96%, 0 82%, 58% 24%, 0 24%);
  background: currentColor;
}

.north-east.mini {
  width: 12px;
  height: 12px;
}

.pricing-menu {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--foreground);
  padding: 9px;
}

.pricing-menu span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.pricing-mobile-menu {
  border-top: 1px solid var(--border);
  background: rgba(26, 26, 26, 0.98);
  padding: 18px 24px 24px;
}

.pricing-mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #d6d6d6;
}

.pricing-mobile-menu div {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.pricing-hero {
  min-height: 833px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.pricing-hero-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: center;
  gap: clamp(56px, 6vw, 110px);
  padding: 78px 78px 92px;
}

.pricing-hero-copy {
  padding-top: 28px;
}

.pricing-hero-copy h1 {
  max-width: 740px;
  margin: 0;
  color: var(--foreground);
  font-family: var(--heading);
  font-size: clamp(64px, 5.2vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 560;
}

.pricing-hero-copy p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #eeeeee;
  font-size: 20px;
  line-height: 1.45;
}

.pricing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 51px;
}

.hero-cta {
  height: 40px;
  padding: 0 21px;
}

.hero-cta svg {
  width: 18px;
  height: 18px;
}

.pricing-showcase {
  width: min(100%, clamp(420px, 36vw, 560px));
  justify-self: center;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #242424;
}

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

.showcase-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.18));
}

.showcase-info {
  position: absolute;
  top: 31px;
  right: 31px;
  left: 31px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}

.showcase-info h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  font-weight: 720;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.showcase-price {
  display: flex;
  align-items: center;
  gap: 16px;
}

.showcase-price span,
.showcase-price strong {
  display: inline-flex;
  align-items: center;
  height: 42px;
  border-radius: 7px;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1;
}

.showcase-price span {
  background: rgba(26, 26, 26, 0.58);
  color: #f2f2f2;
  backdrop-filter: blur(9px);
}

.showcase-price strong {
  background: var(--rw-green);
  color: var(--rw-black);
  font-weight: 760;
}

.showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.showcase-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #555;
}

.showcase-dots span.is-active {
  width: 40px;
  background: var(--rw-green);
}

.pricing-tabs-shell {
  border-bottom: 1px solid var(--border);
}

.pricing-tabs {
  max-width: 1600px;
  min-height: 91px;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0 auto;
  padding: 0 78px;
  overflow-x: auto;
}

.pricing-tabs button {
  position: relative;
  height: 91px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #ececec;
  cursor: pointer;
  font-size: 20px;
  white-space: nowrap;
}

.pricing-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  background: var(--rw-green);
}

.pricing-tabs svg {
  width: 21px;
  height: 21px;
  color: #9a9a9a;
}

.pricing-tabs em {
  color: #9a9a9a;
  font-style: normal;
  font-size: 15px;
}

.pricing-tabs strong {
  display: inline-flex;
  align-items: center;
  height: 22px;
  border-radius: 999px;
  background: var(--rw-green);
  color: var(--rw-black);
  padding: 0 11px;
  font-size: 13px;
  font-weight: 750;
}

.pricing-models {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 78px 84px;
}

.pricing-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 29px;
}

.pricing-search {
  width: min(100%, 842px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  background: transparent;
  padding: 0 20px;
}

.pricing-search svg {
  width: 26px;
  height: 26px;
  color: #e4e4e4;
}

.pricing-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--foreground);
  font-size: 18px;
}

.pricing-search input::placeholder {
  color: #cfcfcf;
}

.pricing-count {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d9d9d9;
  font-size: 17px;
}

.expand-all,
.table-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  color: #efefef;
  padding: 0 16px;
  cursor: pointer;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #1b1b1b;
}

.price-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(320px, 2.1fr) minmax(320px, 1.85fr) minmax(160px, 0.85fr) minmax(190px, 0.95fr) minmax(140px, 0.7fr);
  align-items: center;
  border-top: 1px solid var(--soft-border);
  padding: 0 22px;
  column-gap: 24px;
  color: var(--foreground);
  font-size: 18px;
}

.price-row:first-child {
  border-top: 0;
}

.table-head {
  min-height: 60px;
  color: #efefef;
  font-size: 17px;
}

.model-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.model-copy {
  display: grid;
  justify-items: start;
  gap: 7px;
  min-width: 0;
}

.vendor-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex: 0 0 auto;
  color: #101010;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 10px 28px rgba(0, 0, 0, 0.22);
}

.model-cell strong {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
}

.vendor-heygen {
  background: linear-gradient(135deg, #c7ff5d, #59ddff);
}

.vendor-pruna {
  background: linear-gradient(135deg, #ffef72, #ff7a59);
}

.vendor-happyhorse {
  background: linear-gradient(135deg, #ffe066, #9bff87 58%, #7ac7ff);
}

.vendor-skyreels {
  background: linear-gradient(135deg, #9bd5ff, #b293ff);
}

.vendor-kling {
  background: linear-gradient(135deg, #ffcc66, #ff5f8f);
}

.vendor-pixverse {
  background: linear-gradient(135deg, #8cffd2, #6f8dff);
}

.vendor-sync {
  background: linear-gradient(135deg, #ffffff, #9effd1);
}

.vendor-bytedance {
  background: linear-gradient(135deg, #5ef7ff, #ff5ad6);
}

.vendor-alibaba {
  background: linear-gradient(135deg, #ffb000, #ff6a00);
}

.vendor-google {
  background: conic-gradient(from 45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  color: #fff;
}

.vendor-topaz {
  background: linear-gradient(135deg, #b0c8ff, #ffffff 52%, #87f6ff);
}

.vendor-ltx {
  background: linear-gradient(135deg, #e8ff70, #88ffea);
}

.vendor-vidu {
  background: linear-gradient(135deg, #7dff86, #00d4ff);
}

.vendor-grok {
  background: linear-gradient(135deg, #e8e8e8, #8e8e8e);
}

.vendor-logo {
  background: #242424;
  padding: 8px;
}

.vendor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.config-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--foreground);
  padding: 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}

.config-toggle span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 150ms ease;
}

.config-toggle[aria-expanded="true"] span {
  transform: rotate(225deg) translate(-1px, -1px);
}

.muted {
  color: var(--muted-foreground);
}

.price {
  color: #f6f6f6;
  font-size: 18px;
  font-weight: 620;
  white-space: nowrap;
}

.official-price {
  color: #c7c7c7;
  font-size: 18px;
  white-space: nowrap;
}

.discount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 30px;
  border-radius: 999px;
  background: rgba(175, 255, 159, 0.14);
  color: var(--rw-green);
  border: 1px solid rgba(175, 255, 159, 0.45);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 760;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #5a5a5a;
  border-radius: 6px;
  color: #f0f0f0;
  padding: 0 12px;
  font-size: 14px;
}

.info-dot {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
  border: 1.7px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

.sort {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  color: #b7b7b7;
  vertical-align: 1px;
}

.sort-down {
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.sort-both {
  position: relative;
}

.sort-both::before,
.sort-both::after {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.sort-both::before {
  top: -4px;
  transform: rotate(225deg);
}

.sort-both::after {
  top: 5px;
  transform: rotate(45deg);
}

.config-row {
  display: none;
  min-height: 58px;
  background: rgba(255, 255, 255, 0.01);
}

.config-row.is-visible {
  display: grid;
}

.model-row.is-hidden,
.config-row.is-hidden {
  display: none;
}

.table-pagination {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--soft-border);
  padding: 0 20px;
  color: #e0e0e0;
  font-size: 15px;
}

.table-pagination div {
  display: flex;
  gap: 10px;
}

.table-pagination button {
  height: 36px;
  border-radius: 7px;
  color: #f3f3f3;
  font-size: 16px;
  gap: 10px;
}

.table-pagination button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.left-arrow,
.right-arrow {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.left-arrow {
  transform: rotate(135deg);
}

.right-arrow {
  transform: rotate(-45deg);
}

.volume-link {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 47px;
  color: #d9d9d9;
  font-size: 21px;
}

.pricing-faq {
  max-width: 1126px;
  margin: 0 auto;
  padding: 117px 0 119px;
}

.pricing-faq h2 {
  margin: 0 0 47px;
  font-family: var(--heading);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 560;
  letter-spacing: -0.012em;
}

.faq-stack {
  display: grid;
  gap: 21px;
}

.faq-stack details {
  overflow: hidden;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  background: #1a1a1a;
}

.faq-stack summary {
  min-height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 31px;
  cursor: pointer;
  list-style: none;
  color: #eeeeee;
  font-size: 20px;
  font-weight: 520;
}

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

.faq-stack summary span {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.faq-stack details[open] summary span {
  transform: rotate(45deg) translateY(-3px);
}

.faq-content {
  padding: 6px 31px 26px;
}

.faq-content article {
  border-top: 1px solid var(--soft-border);
  padding: 25px 0 22px;
}

.faq-content article:first-child {
  border-top: 0;
}

.faq-content h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 650;
}

.faq-content p {
  margin: 0;
  color: #d4d4d4;
  font-size: 17px;
  line-height: 1.42;
}

.pricing-footer {
  border-top: 1px solid var(--border);
}

.footer-main {
  max-width: 1760px;
  min-height: 476px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  gap: 80px;
  margin: 0 auto;
  padding: 92px 78px 64px;
}

.footer-brand-block img {
  width: 42px;
  height: 42px;
  margin-bottom: 31px;
}

.footer-brand-block p {
  margin: 0 0 27px;
  color: #dfdfdf;
  font-size: 18px;
}

.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  color: #d7d7d7;
  font-size: 0;
}

.socials a::before {
  content: attr(aria-label);
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #d7d7d7;
  font-size: 10px;
  font-weight: 760;
  text-transform: lowercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 78px;
}

.footer-links div {
  display: grid;
  gap: 18px;
}

.footer-links h3 {
  margin: 0 0 6px;
  color: #f2f2f2;
  font-size: 17px;
  font-weight: 680;
}

.footer-links a {
  color: #c9c9c9;
  font-size: 18px;
}

.footer-status {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 0 99px;
  color: #dedede;
  font-size: 16px;
}

.footer-status small {
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 650ms ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 90ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .pricing-nav,
  .pricing-actions {
    display: none;
  }

  .pricing-menu {
    display: block;
  }

  .pricing-hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .pricing-showcase {
    max-width: 560px;
  }

  .price-table {
    overflow-x: auto;
  }

  .price-row {
    min-width: 1120px;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pricing-header-inner {
    height: 64px;
    padding: 0 18px;
  }

  .pricing-brand img {
    width: 146px;
  }

  .pricing-hero {
    min-height: auto;
  }

  .pricing-hero-inner,
  .pricing-tabs,
  .pricing-models,
  .footer-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pricing-hero-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .pricing-hero-copy h1 {
    font-size: 48px;
  }

  .pricing-hero-copy p {
    font-size: 17px;
  }

  .showcase-info h2 {
    font-size: 24px;
  }

  .showcase-price {
    gap: 8px;
  }

  .showcase-price span,
  .showcase-price strong {
    height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }

  .pricing-tabs {
    gap: 24px;
  }

  .pricing-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-count {
    justify-content: space-between;
  }

  .pricing-faq {
    padding: 76px 18px;
  }

  .pricing-faq h2 {
    font-size: 32px;
  }

  .footer-status {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Reference correction pass for the pricing copy. */
:root {
  --border: #343434;
  --soft-border: #292929;
  --muted-foreground: #a4a4a4;
}

.pricing-header-inner {
  height: 64px;
  gap: 28px;
  padding: 0 24px;
}

.pricing-brand img {
  width: auto;
  height: 16px;
}

.pricing-nav {
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.pricing-nav a {
  height: 30px;
  gap: 4px;
}

.pricing-nav a.is-active::after {
  bottom: -17px;
  height: 1px;
}

.chevron {
  width: 6px;
  height: 6px;
}

.pricing-actions {
  gap: 14px;
}

.icon-only {
  width: 32px;
  height: 32px;
}

.icon-only svg {
  width: 17px;
  height: 17px;
}

.pricing-button {
  height: 32px;
  gap: 6px;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 650;
}

.sign-up {
  height: 30px;
  min-width: 0;
  padding: 0 10px 0 13px;
}

.north-east {
  width: 10px;
  height: 10px;
}

.pricing-hero {
  min-height: auto;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-hero-inner {
  max-width: 1600px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(40px, 5vw, 72px);
  padding: 76px 64px 72px;
}

.pricing-hero-copy {
  padding-top: 0;
}

.pricing-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.pricing-hero-copy p {
  max-width: 610px;
  margin-top: 20px;
  color: var(--foreground);
  font-size: 16px;
  line-height: 1.45;
}

.pricing-cta-row {
  gap: 12px;
  margin-top: 28px;
}

.hero-cta {
  height: 32px;
  padding: 0 14px;
}

.hero-cta svg {
  width: 15px;
  height: 15px;
}

.pricing-showcase {
  width: min(100%, 420px);
}

.showcase-card {
  border-radius: 12px;
}

.showcase-info {
  top: 20px;
  right: 20px;
  left: 20px;
  gap: 10px;
}

.showcase-info h2 {
  max-width: 300px;
  font-size: 24px;
  font-weight: 650;
}

.showcase-price {
  gap: 8px;
}

.showcase-price span,
.showcase-price strong {
  height: 30px;
  border-radius: 7px;
  padding: 0 10px;
  font-size: 12px;
}

.showcase-dots {
  gap: 8px;
  margin-top: 14px;
}

.showcase-dots span {
  width: 7px;
  height: 7px;
}

.showcase-dots span.is-active {
  width: 28px;
}

.pricing-tabs-shell {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-tabs {
  min-height: 56px;
  gap: 8px;
  padding: 10px 64px;
}

.pricing-tabs button {
  height: 32px;
  gap: 7px;
  border-radius: 8px;
  color: var(--muted-foreground);
  padding: 0 10px;
  font-size: 14px;
  transition: color 150ms ease, background 150ms ease;
}

.pricing-tabs button:hover,
.pricing-tabs button.is-active {
  background: rgba(175, 255, 159, 0.1);
  color: var(--rw-green);
}

.pricing-tabs button.is-active::after {
  display: none;
}

.pricing-tabs svg {
  width: 16px;
  height: 16px;
}

.pricing-tabs em {
  font-family: "JetBrainsLocal", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.pricing-tabs strong {
  height: 17px;
  padding: 0 7px;
  font-size: 10px;
}

.pricing-models {
  max-width: 1600px;
  padding: 28px 64px 64px;
}

.pricing-tools {
  gap: 18px;
  margin-bottom: 18px;
}

.pricing-search {
  width: min(100%, 760px);
  height: 40px;
  gap: 10px;
  border-color: var(--border);
  background: var(--background);
  padding: 0 12px;
}

.pricing-search svg {
  width: 17px;
  height: 17px;
  color: var(--muted-foreground);
}

.pricing-search input {
  font-size: 14px;
}

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

.pricing-count {
  gap: 10px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.expand-all,
.table-pagination button {
  height: 30px;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 13px;
}

.price-table {
  border-color: var(--border);
  border-radius: 12px;
  background: var(--card);
}

.price-row {
  min-height: 60px;
  grid-template-columns: minmax(250px, 2fr) minmax(230px, 1.55fr) minmax(120px, 0.8fr) minmax(148px, 0.9fr) minmax(100px, 0.62fr);
  column-gap: 16px;
  padding: 0 16px;
  color: var(--foreground);
  font-size: 14px;
}

.table-head {
  min-height: 44px;
  color: var(--muted-foreground);
  font-family: "JetBrainsLocal", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-transform: uppercase;
}

.model-cell {
  gap: 12px;
}

.model-copy {
  gap: 4px;
}

.vendor-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #242424;
  color: var(--rw-green);
  font-size: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.vendor-heygen,
.vendor-pruna,
.vendor-happyhorse,
.vendor-skyreels,
.vendor-kling,
.vendor-pixverse,
.vendor-sync,
.vendor-bytedance,
.vendor-alibaba,
.vendor-google,
.vendor-topaz,
.vendor-ltx,
.vendor-vidu,
.vendor-grok {
  background: #242424;
  color: var(--rw-green);
}

.vendor-logo {
  padding: 6px;
}

.model-cell strong {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
}

.config-toggle {
  gap: 6px;
  color: var(--muted-foreground);
  font-size: 12px;
}

.config-toggle span {
  width: 6px;
  height: 6px;
}

.price,
.official-price {
  font-size: 14px;
}

.price {
  font-weight: 650;
}

.discount-pill {
  min-width: 48px;
  height: 24px;
  padding: 0 9px;
  font-family: "JetBrainsLocal", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.sort {
  margin-left: 5px;
  transform: scale(0.82);
  transform-origin: center;
}

.config-row {
  min-height: 42px;
}

.table-pagination {
  min-height: 52px;
  padding: 0 16px;
  color: var(--muted-foreground);
  font-size: 13px;
}

.table-pagination button {
  height: 30px;
  font-size: 13px;
  gap: 7px;
}

.volume-link {
  gap: 6px;
  margin-top: 28px;
  color: var(--muted-foreground);
  font-size: 15px;
}

.pricing-faq {
  max-width: 896px;
  padding: 64px 24px 76px;
}

.pricing-faq h2 {
  margin-bottom: 28px;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.faq-stack {
  gap: 12px;
}

.faq-stack details {
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--background);
}

.faq-stack summary {
  min-height: 52px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
}

.faq-stack summary span {
  width: 9px;
  height: 9px;
  border-width: 1.5px;
}

.faq-content {
  padding: 0 18px 16px;
}

.faq-content article {
  padding: 16px 0;
}

.faq-content h3 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 650;
}

.faq-content p {
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-footer {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.pricing-footer-inner {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.3fr);
  gap: 48px;
  margin: 0 auto;
  padding: 52px 24px;
}

.pricing-footer-brand img {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
}

.pricing-footer-brand p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
}

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

.pricing-footer-links div {
  display: grid;
  gap: 9px;
}

.pricing-footer-links h3 {
  margin: 0 0 4px;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 650;
}

.pricing-footer-links a {
  color: var(--muted-foreground);
  font-size: 13px;
}

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

.pricing-footer-status {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 0 max(24px, calc((100vw - 1280px) / 2 + 24px));
  color: var(--muted-foreground);
  font-size: 13px;
}

.pricing-footer-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--rw-green);
}

.pricing-footer-status small {
  font-size: 13px;
}

@media (max-width: 1180px) {
  .pricing-hero-inner {
    grid-template-columns: 1fr;
    padding-left: 32px;
    padding-right: 32px;
  }

  .pricing-tabs,
  .pricing-models {
    padding-left: 32px;
    padding-right: 32px;
  }

  .price-table {
    overflow-x: auto;
  }

  .price-row {
    min-width: 860px;
  }
}

@media (max-width: 767px) {
  .pricing-header-inner {
    height: 64px;
    padding: 0 18px;
  }

  .pricing-brand img {
    height: 15px;
    width: auto;
  }

  .pricing-menu {
    width: 38px;
    height: 38px;
  }

  .pricing-hero-inner,
  .pricing-tabs,
  .pricing-models {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pricing-hero-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .pricing-hero-copy h1 {
    font-size: 42px;
  }

  .pricing-hero-copy p {
    font-size: 15px;
  }

  .pricing-showcase {
    width: min(100%, 360px);
  }

  .pricing-tabs {
    min-height: 52px;
  }

  .pricing-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-count {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-faq {
    padding: 56px 18px 64px;
  }

  .pricing-footer-inner {
    grid-template-columns: 1fr;
    padding: 42px 18px;
  }

  .pricing-footer-links {
    grid-template-columns: 1fr;
  }

  .pricing-footer-status {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 18px;
  }
}

/* Pricing hero background graphic: abstract infrastructure, no model cover imagery. */
.pricing-showcase {
  width: min(100%, 420px);
}

.pricing-showcase .tech-card {
  isolation: isolate;
  min-height: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(237, 237, 237, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 74% 18%, rgba(175, 255, 159, 0.16), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(175, 255, 159, 0.08), transparent 30%),
    linear-gradient(145deg, #1c1c1c, #111111 76%);
  box-shadow: none;
}

.pricing-showcase .tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 56% 48%, #000 0 54%, transparent 82%);
}

.pricing-showcase .tech-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(175, 255, 159, 0.08));
  pointer-events: none;
}

.tech-grid,
.tech-orb,
.tech-flow,
.tech-panel,
.tech-status {
  position: absolute;
}

.tech-grid {
  inset: 22px;
  border: 1px solid rgba(237, 237, 237, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(175, 255, 159, 0.12) 49% 50%, transparent 50%),
    linear-gradient(180deg, transparent 0 49%, rgba(175, 255, 159, 0.1) 49% 50%, transparent 50%);
}

.tech-orb {
  width: 154px;
  height: 154px;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(175, 255, 159, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(175, 255, 159, 0.22), rgba(175, 255, 159, 0.04) 46%, transparent 67%),
    #151515;
  transform: translate(-50%, -50%);
}

.tech-orb::before,
.tech-orb::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(237, 237, 237, 0.1);
  border-radius: inherit;
}

.tech-orb::after {
  inset: 52px;
  background: var(--rw-green);
  box-shadow: 0 0 24px rgba(175, 255, 159, 0.34);
}

.tech-flow {
  inset: 0;
  pointer-events: none;
}

.tech-flow span {
  position: absolute;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(175, 255, 159, 0.5), transparent);
}

.tech-flow span:nth-child(1) {
  top: 34%;
  left: 12%;
  width: 70%;
}

.tech-flow span:nth-child(2) {
  top: 61%;
  right: 10%;
  width: 58%;
  opacity: 0.62;
}

.tech-flow span:nth-child(3) {
  top: 16%;
  bottom: 16%;
  left: 58%;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(175, 255, 159, 0.42), transparent);
}

.tech-panel {
  z-index: 2;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(237, 237, 237, 0.1);
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(12px);
  padding: 13px 14px;
}

.tech-panel span,
.tech-panel em,
.tech-status span {
  color: var(--muted-foreground);
  font-family: "JetBrainsLocal", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-panel strong {
  color: var(--foreground);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.tech-panel-main {
  top: 34px;
  left: 34px;
  min-width: 184px;
}

.tech-panel-main em {
  color: var(--rw-green);
}

.tech-panel-price {
  right: 32px;
  bottom: 36px;
  min-width: 148px;
}

.tech-panel-price strong {
  color: var(--rw-green);
}

.tech-panel-models {
  left: 36px;
  bottom: 54px;
  min-width: 138px;
}

.tech-status {
  z-index: 2;
  top: 34px;
  right: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(237, 237, 237, 0.1);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.74);
  padding: 8px 11px;
}

.tech-status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--rw-green);
}

@media (max-width: 767px) {
  .pricing-showcase .tech-card {
    min-height: 320px;
  }

  .tech-panel-main,
  .tech-status {
    top: 20px;
  }

  .tech-panel-main,
  .tech-panel-models {
    left: 20px;
  }

  .tech-status,
  .tech-panel-price {
    right: 20px;
  }

  .tech-panel-price,
  .tech-panel-models {
    bottom: 22px;
  }
}

/* Pricing hero background: restrained neutral material. */
.pricing-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 76% 22%, rgba(175, 255, 159, 0.045), transparent 34%),
    radial-gradient(ellipse at 18% 84%, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(135deg, #2b2b2b 0%, #222222 44%, #181818 100%);
}

.pricing-hero::before,
.pricing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pricing-hero::before {
  background:
    radial-gradient(ellipse at 72% 24%, rgba(255, 255, 255, 0.055), transparent 36%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.035) 48%, transparent 72%);
  opacity: 0.82;
}

.pricing-hero::after {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.62) 0%, transparent 26%, transparent 72%, var(--background) 100%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.08));
}

.pricing-hero-inner {
  position: relative;
  z-index: 3;
  min-height: 352px;
  max-width: calc(1440px - 32px);
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 29px 56px;
}

.pricing-hero-copy {
  width: min(100%, 680px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--foreground);
  padding: 0;
  backdrop-filter: none;
}

.pricing-hero-copy h1 {
  max-width: 620px;
  color: var(--foreground);
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.pricing-hero-copy p {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(237, 237, 237, 0.72);
  font-size: 15px;
  line-height: 1.35;
}

.pricing-hero .pricing-cta-row {
  margin-top: 22px;
}

.pricing-hero .pricing-button-ghost {
  border-color: rgba(237, 237, 237, 0.14);
  background: rgba(26, 26, 26, 0.52);
  color: var(--foreground);
}

.pricing-hero .pricing-button-ghost:hover {
  background: rgba(237, 237, 237, 0.08);
}

.pricing-showcase {
  width: min(100%, 512px);
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-left: auto;
  transform: translateY(18px);
}

.pricing-showcase-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(237, 237, 237, 0.12);
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.pricing-showcase-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  opacity: 1;
  transition: opacity 320ms ease;
}

.pricing-showcase-card img.is-fading {
  opacity: 0;
}

.pricing-showcase-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02) 58%);
  pointer-events: none;
}

.pricing-showcase-title {
  position: absolute;
  top: 30px;
  right: 26px;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.035em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.pricing-showcase-tags {
  position: absolute;
  top: 70px;
  right: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pricing-showcase-tags strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.pricing-showcase-tags strong {
  color: var(--rw-black);
  background: var(--rw-green);
  border: 1px solid rgba(175, 255, 159, 0.9);
}

.pricing-showcase-metric {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(14, 14, 14, 0.58);
  backdrop-filter: blur(14px);
}

.pricing-showcase-metric span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.pricing-showcase-metric strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.1;
}

.pricing-showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-showcase-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(237, 237, 237, 0.24);
  padding: 0;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
}

.pricing-showcase-dots button:hover {
  background: rgba(237, 237, 237, 0.42);
}

.pricing-showcase-dots .is-active {
  width: 38px;
  background: rgba(237, 237, 237, 0.42);
}

@media (max-width: 1180px) {
  .pricing-hero-inner {
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
  }

  .pricing-showcase {
    width: min(100%, 560px);
    margin-left: 0;
    transform: none;
  }
}

@media (max-width: 767px) {
  .pricing-hero {
    min-height: auto;
    margin: 0;
  }

  .pricing-hero-inner {
    min-height: auto;
    padding: 24px;
    gap: 34px;
  }

  .pricing-hero-copy {
    padding: 0;
  }

  .pricing-hero-copy h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .pricing-showcase {
    width: 100%;
  }

  .pricing-showcase-card {
    height: auto;
    aspect-ratio: 1.06;
  }

  .pricing-showcase-tags {
    top: 64px;
    right: 16px;
    gap: 8px;
  }

  .pricing-showcase-title {
    top: 22px;
    right: 16px;
  }

  .pricing-showcase-metric {
    left: 16px;
    bottom: 16px;
  }

}

/* Theme layer: fixed dark theme for the pricing experience. */
:root {
  color-scheme: dark;
  --theme-bg-glass: rgba(26, 26, 26, 0.95);
  --theme-mobile-menu-bg: rgba(26, 26, 26, 0.98);
  --theme-text-soft: #c4c4c4;
  --theme-text-dim: #7b7b7b;
  --theme-green-ink: var(--rw-green);
  --theme-green-tint: rgba(175, 255, 159, 0.1);
  --theme-green-border: rgba(175, 255, 159, 0.45);
  --theme-button-hover: #242424;
  --theme-hero-bg:
    radial-gradient(ellipse at 76% 22%, rgba(175, 255, 159, 0.045), transparent 34%),
    radial-gradient(ellipse at 18% 84%, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(135deg, #2b2b2b 0%, #222222 44%, #181818 100%);
  --theme-hero-grid:
    radial-gradient(ellipse at 72% 24%, rgba(255, 255, 255, 0.055), transparent 36%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.035) 48%, transparent 72%);
  --theme-hero-overlay:
    linear-gradient(180deg, rgba(26, 26, 26, 0.62) 0%, transparent 26%, transparent 72%, var(--background) 100%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.08));
  --theme-hero-muted: rgba(237, 237, 237, 0.72);
  --theme-hero-ghost-bg: rgba(26, 26, 26, 0.52);
  --theme-hero-ghost-hover: rgba(237, 237, 237, 0.08);
  --theme-hero-ghost-border: rgba(237, 237, 237, 0.14);
  --theme-table-head-bg: transparent;
  --theme-row-hover: rgba(255, 255, 255, 0.018);
  --theme-config-row-bg: rgba(255, 255, 255, 0.01);
  --theme-vendor-bg: #242424;
  --theme-vendor-ink: var(--rw-green);
  --theme-vendor-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  --theme-faq-border: rgba(255, 255, 255, 0.1);
  --theme-tech-card-bg:
    radial-gradient(circle at 74% 18%, rgba(175, 255, 159, 0.16), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(175, 255, 159, 0.08), transparent 30%),
    linear-gradient(145deg, #1c1c1c, #111111 76%);
  --theme-tech-card-line: rgba(255, 255, 255, 0.035);
  --theme-tech-panel-bg: rgba(20, 20, 20, 0.82);
  --theme-tech-status-bg: rgba(20, 20, 20, 0.74);
}


.pricing-header {
  border-bottom-color: var(--border);
  background: var(--theme-bg-glass);
}

.pricing-mobile-menu {
  border-top-color: var(--border);
  background: var(--theme-mobile-menu-bg);
}

.pricing-mobile-menu a,
.pricing-nav,
.pricing-count,
.volume-link,
.table-pagination {
  color: var(--muted-foreground);
}

.pricing-nav a:hover,
.pricing-nav a.is-active,
.pricing-mobile-menu a:hover,
.pricing-mobile-menu a.is-active {
  color: var(--foreground);
}

.pricing-button-ghost,
.expand-all,
.table-pagination button {
  border-color: var(--border);
  background: var(--background);
  color: var(--foreground);
}

.pricing-button-ghost:hover,
.expand-all:hover,
.table-pagination button:hover:not(:disabled) {
  background: var(--theme-button-hover);
}

.pricing-hero {
  background: var(--theme-hero-bg);
}

.pricing-hero::before {
  background: var(--theme-hero-grid);
  opacity: 0.82;
}

.pricing-hero::after {
  background: var(--theme-hero-overlay);
}

.pricing-hero-copy p {
  color: var(--theme-hero-muted);
}

.pricing-hero .pricing-button-ghost {
  border-color: var(--theme-hero-ghost-border);
  background: var(--theme-hero-ghost-bg);
  color: var(--foreground);
}

.pricing-hero .pricing-button-ghost:hover {
  background: var(--theme-hero-ghost-hover);
}

.pricing-tabs-shell,
.pricing-hero {
  border-bottom-color: var(--border);
}

.pricing-tabs button {
  color: var(--muted-foreground);
}

.pricing-tabs button:hover,
.pricing-tabs button.is-active {
  background: var(--theme-green-tint);
  color: var(--theme-green-ink);
}

.pricing-tabs svg,
.pricing-tabs em,
.pricing-search svg,
.sort {
  color: var(--muted-foreground);
}

.pricing-search {
  border-color: var(--border);
  background: var(--card);
}

.pricing-search:focus-within {
  border-color: var(--theme-green-border);
}

.pricing-search input {
  color: var(--foreground);
}

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

.price-table {
  border-color: var(--border);
  background: var(--card);
}

.price-row {
  border-top-color: var(--soft-border);
  color: var(--foreground);
}

.price-row.model-row:hover {
  background: var(--theme-row-hover);
}

.table-head {
  background: var(--theme-table-head-bg);
  color: var(--muted-foreground);
}

.vendor-badge,
.vendor-heygen,
.vendor-pruna,
.vendor-happyhorse,
.vendor-skyreels,
.vendor-kling,
.vendor-pixverse,
.vendor-sync,
.vendor-bytedance,
.vendor-alibaba,
.vendor-google,
.vendor-topaz,
.vendor-ltx,
.vendor-vidu,
.vendor-grok {
  background: var(--theme-vendor-bg);
  color: var(--theme-vendor-ink);
  box-shadow: var(--theme-vendor-shadow);
}

.vendor-logo {
  background: var(--theme-vendor-bg);
}

.config-toggle,
.muted,
.official-price {
  color: var(--muted-foreground);
}

.price {
  color: var(--foreground);
}

.discount-pill {
  border-color: var(--theme-green-border);
  background: var(--theme-green-tint);
  color: var(--theme-green-ink);
}

.config-row {
  background: var(--theme-config-row-bg);
}

.faq-stack details {
  border-color: var(--theme-faq-border);
  background: var(--card);
}

.faq-stack summary {
  color: var(--foreground);
}

.faq-content article {
  border-top-color: var(--soft-border);
}

.faq-content p {
  color: var(--muted-foreground);
}

.pricing-showcase .tech-card {
  border-color: var(--theme-faq-border);
  background: var(--theme-tech-card-bg);
}

.pricing-showcase .tech-card::before {
  background:
    linear-gradient(90deg, var(--theme-tech-card-line) 1px, transparent 1px),
    linear-gradient(180deg, var(--theme-tech-card-line) 1px, transparent 1px);
}

.pricing-showcase .tech-card::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(175, 255, 159, 0.08));
}

.tech-grid,
.tech-orb,
.tech-orb::before,
.tech-panel,
.tech-status {
  border-color: var(--theme-faq-border);
}

.tech-orb {
  background:
    radial-gradient(circle, rgba(175, 255, 159, 0.22), rgba(175, 255, 159, 0.04) 46%, transparent 67%),
    var(--background);
}

.tech-panel {
  background: var(--theme-tech-panel-bg);
}

.tech-status {
  background: var(--theme-tech-status-bg);
}

.tech-panel strong {
  color: var(--foreground);
}

.tech-panel span,
.tech-panel em,
.tech-status span {
  color: var(--muted-foreground);
}

.tech-panel-main em,
.tech-panel-price strong {
  color: var(--theme-green-ink);
}
