/* Shared interior theme — matches the cream homepage (Geist, serif headlines, ink text). */

@font-face {
  font-family: Geist;
  src: url("/assets/fonts/geist-sans.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Geist;
  src: url("/assets/fonts/geist-medium.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-serif.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #05070c;
  --fg: #eef1f7;
  --muted: #9aa3b8;
  --line: rgba(255, 255, 255, 0.08);
  --card: #121824;
  --pill: #f5f5f5;
  --ink: #05070c;
  --gold: #e8c547;
  --cyan: #5ec8d8;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: Geist, system-ui, -apple-system, sans-serif;
  --font-display: var(--serif);
  --font-body: var(--sans);
  --text: var(--fg);
  --panel: var(--card);
  --panel-solid: var(--card);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="light"] {
  --bg: #eef2f7;
  --fg: #141414;
  --muted: #5c5c5c;
  --line: rgba(20, 20, 20, 0.08);
  --card: #ffffff;
  --pill: #ffffff;
  --ink: #141414;
  --gold: #8a6414;
  --gold-soft: #8a6414;
  --cyan: #141414;
  --cyan-dim: rgba(20, 20, 20, 0.2);
  --text: #141414;
  --panel: #ffffff;
  --panel-solid: #ffffff;
}

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
}

body.studio,
body.page-fade,
body.antialiased {
  background: var(--bg) !important;
  color: var(--fg) !important;
  font-family: var(--sans) !important;
}

html[data-theme="light"] .studio-atmosphere {
  opacity: 1;
  visibility: visible;
}

.studio-nav,
header.studio-nav {
  display: none !important;
}

/* —— Homepage-matching header —— */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 20px 0;
  pointer-events: none;
}

.header > * {
  pointer-events: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--pill);
  color: var(--ink);
  border-radius: 12px;
  min-height: 44px;
  padding: 4px;
  box-shadow: 0 12px 36px -14px rgba(0, 0, 0, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px 0 6px;
  font-weight: 560;
  font-size: 14.5px;
  letter-spacing: -0.02em;
  color: inherit;
  text-decoration: none;
}

.mark {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  padding-right: 6px;
}

.nav-links a {
  font-size: 13px;
  padding: 8px 9px;
  border-radius: 999px;
  color: #404040;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  background: #ececec;
  color: #111;
}

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

.theme {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--pill);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 36px -14px rgba(0, 0, 0, 0.8);
  flex-shrink: 0;
}

.theme--bar {
  position: static;
}

html[data-theme="light"] .pill,
html[data-theme="light"] .theme {
  box-shadow: 0 10px 28px -16px rgba(20, 28, 44, 0.28);
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.menu-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 16px auto;
  z-index: 59;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 12px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #f4f1ea;
  text-decoration: none;
}

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

html[data-theme="light"] .mobile-nav {
  background: #fff;
}

html[data-theme="light"] .mobile-nav a {
  color: #141414;
}

html[data-theme="light"] .mobile-nav a[aria-current="page"],
html[data-theme="light"] .mobile-nav a:hover {
  background: #ececec;
}

.studio-shell {
  padding-top: 4.75rem;
}

body.iw-site:not(:has(.studio-shell)):not(:has(.hero)) {
  padding-top: 4.75rem;
}

@media (min-width: 1180px) {
  .nav-links {
    display: flex;
  }

  .menu-btn {
    display: none;
  }
}

/* —— Type: same as homepage —— */
h1,
h2,
.studio-display,
.studio-hero__headline,
.studio-tile h2,
.studio-tile h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-shadow: none !important;
}

.studio-kicker,
.home-kicker {
  color: var(--gold) !important;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-lead,
.studio-hero__sub,
.studio-tile p,
.studio-crumbs {
  color: var(--muted);
  text-shadow: none !important;
  font-family: var(--sans);
}

.studio-crumbs a {
  color: var(--fg);
  text-decoration: none;
}

a {
  color: inherit;
}

html[data-theme="light"] a[href]:not(.studio-btn):not(.brand):not(.nav-links a):not(.mobile-nav a):not(.theme) {
  color: inherit;
}

html[data-theme="light"] .text-cyan-300,
html[data-theme="light"] .text-cyan-400,
html[data-theme="light"] .text-sky-400,
html[data-theme="light"] .text-blue-400,
html[data-theme="light"] .text-blue-500 {
  color: #8a6414 !important;
}

.studio-tile,
.studio-band,
.studio-card {
  background: var(--card);
  border-color: var(--line);
  color: var(--fg);
}

.studio-tile p,
.studio-band p {
  color: var(--muted);
}

html[data-theme="light"] .studio-tile:hover {
  border-color: rgba(20, 20, 20, 0.18);
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

.studio-btn--primary,
body.studio a.studio-btn--primary,
body.studio a.studio-btn--primary:visited,
html[data-theme="light"] body.studio a.studio-btn--primary {
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: #111 !important;
  box-shadow: none !important;
}

.studio-btn--ghost,
body.studio a.studio-btn--ghost,
body.studio a.studio-btn--ghost:visited,
html[data-theme="light"] body.studio a.studio-btn--ghost {
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: #111 !important;
}

.studio-chip {
  background: var(--card);
  border-color: var(--line);
  color: var(--fg);
}

html[data-theme="light"] .studio-chip:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* —— Footer —— */
.studio-footer {
  background: transparent;
  border-top: 1px solid var(--line);
  color: var(--fg);
}

.studio-footer h4,
.studio-footer__wordmark,
.studio-footer a {
  color: var(--fg);
}

.studio-footer p,
.studio-footer__legal,
.studio-footer__trust {
  color: var(--muted);
}

html[data-theme="light"] .studio-footer a:hover {
  color: #111;
}

/* —— Tailwind landers —— */
html[data-theme="light"] .bg-zinc-950,
html[data-theme="light"] .bg-zinc-900,
html[data-theme="light"] .bg-zinc-800,
html[data-theme="light"] .bg-black,
html[data-theme="light"] [class*="bg-zinc-950"],
html[data-theme="light"] [class*="bg-zinc-900"] {
  background-color: #ffffff !important;
}

html[data-theme="light"] body.bg-black,
html[data-theme="light"] body.bg-zinc-950,
html[data-theme="light"] body[class*="bg-zinc"] {
  background-color: #eef2f7 !important;
}

html[data-theme="light"] .text-zinc-100,
html[data-theme="light"] .text-zinc-200,
html[data-theme="light"] .text-white,
html[data-theme="light"] .text-zinc-300 {
  color: #141414 !important;
}

html[data-theme="light"] .text-zinc-400,
html[data-theme="light"] .text-zinc-500,
html[data-theme="light"] .text-zinc-600 {
  color: #5c5c5c !important;
}

html[data-theme="light"] .border-zinc-800,
html[data-theme="light"] .border-zinc-700,
html[data-theme="light"] .border-zinc-600 {
  border-color: rgba(20, 20, 20, 0.1) !important;
}

html[data-theme="light"] input,
html[data-theme="light"] textarea,
html[data-theme="light"] select {
  color: #141414;
}

html[data-theme="light"] input.bg-zinc-900,
html[data-theme="light"] textarea.bg-zinc-900,
html[data-theme="light"] .bg-zinc-900.px-4,
html[data-theme="light"] input[type="email"],
html[data-theme="light"] input[type="text"] {
  background: #fff !important;
  border-color: #111 !important;
  color: #141414 !important;
}

html[data-theme="light"] .seo-404 a,
html[data-theme="light"] .studio-tile-link,
html[data-theme="light"] .studio-footer a {
  color: #141414;
}

/* Support page: cream page, keep the form readable */
html[data-theme="light"] .support-stage {
  background: #fff !important;
  background-image: none !important;
  border-color: rgba(20, 20, 20, 0.1) !important;
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.06) !important;
  color: #141414;
}

html[data-theme="light"] .support-stage__grid,
html[data-theme="light"] .support-stage__beam {
  opacity: 0.12 !important;
}

html[data-theme="light"] .support-field,
html[data-theme="light"] textarea.support-field {
  background: #fff !important;
  color: #141414 !important;
  border-color: rgba(20, 20, 20, 0.14) !important;
}

html[data-theme="light"] .support-drop {
  background: #f4f1ea !important;
  color: #141414 !important;
  border-color: rgba(20, 20, 20, 0.14) !important;
}

html[data-theme="light"] [class*="text-emerald"],
html[data-theme="light"] .text-emerald-400 {
  color: #0f766e !important;
}

/* Chat panel — cream like homepage */
html[data-theme="light"] .studio-chat__panel {
  background: #fff;
  color: #141414;
  border-color: rgba(20, 20, 20, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .studio-chat__head,
html[data-theme="light"] .studio-chat__chips {
  background: #faf8f3;
  border-color: rgba(20, 20, 20, 0.08);
}

html[data-theme="light"] .studio-chat__title {
  color: #141414;
}

html[data-theme="light"] .studio-chat__sub {
  color: #5c5c5c;
}

html[data-theme="light"] .studio-chat__icon-btn {
  background: #fff;
  color: #141414;
  border-color: rgba(20, 20, 20, 0.08);
}

html[data-theme="light"] .studio-chat__row--bot .studio-chat__bubble {
  background: #f4f1ea;
  color: #141414;
  border: 1px solid rgba(20, 20, 20, 0.08);
}

html[data-theme="light"] .studio-chat__row--user .studio-chat__bubble {
  background: #111;
  color: #fff;
}

html[data-theme="light"] .studio-chat__chip {
  background: #fff;
  color: #141414;
  border-color: rgba(20, 20, 20, 0.08);
}

html[data-theme="light"] .studio-chat__chip:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

html[data-theme="light"] .studio-chat__link {
  color: #8a6414;
}

/* —— Footer: align with header, readable lockup, visible socials —— */
html[data-theme="light"] .studio-footer {
  background: transparent !important;
  color: #5c5c5c !important;
  border-top: 1px solid rgba(20, 20, 20, 0.08) !important;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0 !important;
}

html[data-theme="light"] .studio-footer::after {
  content: "";
  display: block;
  height: 5.5rem;
  pointer-events: none;
}

html[data-theme="light"] .studio-footer .studio-wrap,
html[data-theme="light"] .studio-footer .studio-footer__grid {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

html[data-theme="light"] .studio-footer .studio-footer__legal {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding-left: 20px;
  padding-right: 8.75rem;
  box-sizing: border-box;
}

html[data-theme="light"] .studio-footer.is-enhanced .studio-footer__grid {
  grid-template-columns: minmax(14rem, 1.4fr) repeat(2, minmax(0, 1fr)) auto;
  gap: 2rem 2.5rem;
  align-items: start;
}

html[data-theme="light"] .studio-footer__brand-row {
  align-items: center;
  gap: 10px;
}

html[data-theme="light"] .studio-footer__mark {
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

html[data-theme="light"] .studio-footer__wordmark,
html[data-theme="light"] .studio-footer__wordmark span {
  margin: 0 !important;
  font-family: var(--sans) !important;
  font-size: 15px !important;
  font-weight: 560 !important;
  letter-spacing: -0.02em !important;
  color: #141414 !important;
  text-transform: none !important;
}

html[data-theme="light"] .studio-footer__brand > p,
html[data-theme="light"] .studio-footer__grid > div:first-child > p:not(.studio-footer__trust) {
  color: #5c5c5c !important;
}

html[data-theme="light"] .studio-footer__trust {
  color: #5c5c5c !important;
}

html[data-theme="light"] .studio-footer__trust-icon {
  color: #8a6414 !important;
}

html[data-theme="light"] .studio-footer h4,
html[data-theme="light"] .studio-footer__social-label {
  color: #141414 !important;
  font-family: var(--sans) !important;
}

html[data-theme="light"] .studio-footer a,
html[data-theme="light"] .studio-footer__col a {
  color: #141414 !important;
}

html[data-theme="light"] .studio-footer__legal {
  color: #5c5c5c !important;
  border-top-color: rgba(20, 20, 20, 0.08) !important;
}

html[data-theme="light"] .studio-footer__social-link {
  width: 38px !important;
  height: 38px !important;
  color: #141414 !important;
  border: 1px solid rgba(20, 20, 20, 0.16) !important;
  background: #fff !important;
}

html[data-theme="light"] .studio-footer__social-link:hover,
html[data-theme="light"] .studio-footer__social-link:focus,
html[data-theme="light"] .studio-footer__social-link:focus-visible {
  color: #fff !important;
  background: #111 !important;
  border-color: #111 !important;
}

html[data-theme="light"] .studio-footer__social-link svg {
  stroke: currentColor !important;
  color: inherit !important;
}

html[data-theme="light"] .studio-footer__social-link svg.studio-footer__social-svg--fill {
  fill: currentColor !important;
  stroke: none !important;
}

/* —— FAQ, benefits, tiles: cream cards, ink type —— */
html[data-theme="light"] .seo-faq details,
html[data-theme="light"] .studio-feature,
html[data-theme="light"] .studio-tile,
html[data-theme="light"] .studio-panel {
  background: #fff !important;
  border: 1px solid rgba(20, 20, 20, 0.1) !important;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04);
  backdrop-filter: none !important;
}

html[data-theme="light"] .seo-faq summary,
html[data-theme="light"] .studio-feature h3,
html[data-theme="light"] .studio-tile h3,
html[data-theme="light"] .studio-panel h2,
html[data-theme="light"] .studio-panel h3 {
  color: #141414 !important;
  font-family: var(--sans) !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .seo-faq details p,
html[data-theme="light"] .seo-faq details p strong,
html[data-theme="light"] .studio-feature p,
html[data-theme="light"] .studio-tile p,
html[data-theme="light"] .studio-lead {
  color: #5c5c5c !important;
}

html[data-theme="light"] .seo-faq details p strong {
  color: #141414 !important;
  font-weight: 650;
}

/* —— Comparison tables (vs SellerAmp, Helium 10, Keepa, etc.) —— */
html[data-theme="light"] .seo-table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: #fff !important;
  border: 1px solid rgba(20, 20, 20, 0.1) !important;
  overflow: hidden;
}

html[data-theme="light"] body[data-studio-seo] .seo-table th,
html[data-theme="light"] .seo-table th {
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: var(--sans) !important;
  font-weight: 600 !important;
  border-color: #1a1a1a !important;
}

html[data-theme="light"] body[data-studio-seo] .seo-table td,
html[data-theme="light"] .seo-table td {
  background: #fff !important;
  color: #5c5c5c !important;
  border-color: rgba(20, 20, 20, 0.08) !important;
}

html[data-theme="light"] body[data-studio-seo] .seo-table td:first-child,
html[data-theme="light"] .seo-table td:first-child {
  color: #141414 !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .seo-table tbody tr:nth-child(even) td {
  background: #faf8f3 !important;
}

html[data-theme="light"] .studio-hero__headline,
html[data-theme="light"] .studio-display,
html[data-theme="light"] .studio-hero__sub {
  text-shadow: none !important;
}

/* —— C + hilview lockup → small mark + full word —— */
html[data-theme="light"] .studio-hero__copy,
html[data-theme="light"] .studio-hero__brand,
html[data-theme="light"] .studio-hero__brand-text,
html[data-theme="light"] .studio-hero__headline,
html[data-theme="light"] .studio-hero__sub,
html[data-theme="light"] .studio-display,
html[data-theme="light"] .studio-lead,
html[data-theme="light"] .studio-kicker,
html[data-theme="light"] .studio-crumbs,
html[data-theme="light"] .studio-section .studio-wrap > .studio-kicker,
html[data-theme="light"] .studio-section .studio-wrap > .studio-display,
html[data-theme="light"] .studio-section .studio-wrap > .studio-lead,
html[data-theme="light"] body.studio * {
  text-shadow: none !important;
}

html[data-theme="light"] .studio-hero__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-family: var(--serif) !important;
  font-size: clamp(1.85rem, 4vw, 3.15rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #141414 !important;
  white-space: normal;
  filter: none !important;
}

html[data-theme="light"] .studio-hero__brand-c {
  width: 0.78em !important;
  height: 0.78em !important;
  filter: none !important;
  transform: none !important;
}

html[data-theme="light"] .studio-hero__brand-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: #141414 !important;
  -webkit-text-fill-color: #141414 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  white-space: normal;
  filter: none !important;
}

/* —— Company: framed C building, no watermark smear —— */
html[data-theme="light"] body[data-studio-company] .studio-atmosphere__c-tower,
html[data-theme="light"] body[data-studio-company] .studio-atmosphere__c-tower-glow {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

body[data-studio-company]:has(.company-hero-photo) .studio-atmosphere__c-tower,
body[data-studio-company]:has(.company-hero-photo) .studio-atmosphere__c-tower-glow {
  display: none !important;
}

html[data-theme="light"] body[data-studio-company] .studio-hero {
  min-height: auto !important;
  padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
}

.company-hero-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0c1018;
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 50px rgba(20, 20, 20, 0.12);
}

.company-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

html[data-theme="light"] .company-hero-photo {
  border: 1px solid rgba(20, 20, 20, 0.08);
}

html[data-theme="light"] body[data-studio-company] .studio-hero__sub {
  max-width: 36rem;
}

html[data-theme="light"] body[data-studio-company] .studio-panel,
html[data-theme="light"] body[data-studio-company] .studio-section--tight .studio-split > .studio-reveal {
  background: #fff !important;
  border: 1px solid rgba(20, 20, 20, 0.1) !important;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04);
  backdrop-filter: none !important;
  color: #141414 !important;
}

html[data-theme="light"] body[data-studio-company] .studio-team-card {
  background: #fff !important;
  border: 1px solid rgba(20, 20, 20, 0.1) !important;
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.06) !important;
  overflow: hidden;
}

html[data-theme="light"] body[data-studio-company] .studio-team-card__body {
  background: #fff !important;
  border-top: 1px solid rgba(20, 20, 20, 0.08) !important;
}

html[data-theme="light"] body[data-studio-company] .studio-team-card__body .studio-display {
  color: #141414 !important;
}

html[data-theme="light"] body[data-studio-company] .studio-team-card__bio {
  color: #5c5c5c !important;
}

html[data-theme="light"] body[data-studio-company] .studio-team-card__body .studio-tile-link {
  color: #141414 !important;
}

html[data-theme="light"] body[data-studio-company] .studio-facts dt {
  color: #8a6414 !important;
}

html[data-theme="light"] body[data-studio-company] .studio-facts dd {
  color: #141414 !important;
}

html[data-theme="light"] body[data-studio-company] .studio-hero__sub {
  background: #fff !important;
  background-image: none !important;
  border: 1px solid rgba(20, 20, 20, 0.1) !important;
  color: #5c5c5c !important;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html[data-theme="light"] body[data-studio-company] .studio-hero__headline {
  color: #141414 !important;
  text-shadow: none !important;
}

html[data-theme="light"] body[data-studio-company] .studio-section--tight .studio-split > .studio-reveal .studio-display,
html[data-theme="light"] body[data-studio-company] .studio-leadership-head .studio-display,
html[data-theme="light"] body[data-studio-company] .studio-section:not(.studio-section--tight) .studio-display {
  color: #141414 !important;
  text-shadow: none !important;
}

html[data-theme="light"] body[data-studio-company] .studio-section--tight .studio-split > .studio-reveal .studio-lead,
html[data-theme="light"] body[data-studio-company] .studio-leadership-head .studio-lead,
html[data-theme="light"] body[data-studio-company] .studio-section:not(.studio-section--tight) .studio-lead {
  color: #5c5c5c !important;
  text-shadow: none !important;
}

html[data-theme="light"] body[data-studio-company] .studio-leadership-head {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* —— Support: gold readable on cream, standby badge —— */
html[data-theme="light"] .support-kicker__label,
html[data-theme="light"] .text-yellow-200,
html[data-theme="light"] .text-yellow-300,
html[data-theme="light"] .text-yellow-400,
html[data-theme="light"] [class*="text-yellow-"],
html[data-theme="light"] [class*="text-[#f1c40f]"],
html[data-theme="light"] .support-trust svg {
  color: #8a6414 !important;
  -webkit-text-fill-color: #8a6414 !important;
}

html[data-theme="light"] h1 .bg-clip-text,
html[data-theme="light"] h1 .text-transparent,
html[data-theme="light"] [class*="from-yellow-"] {
  color: #8a6414 !important;
  -webkit-text-fill-color: #8a6414 !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

html[data-theme="light"] .support-standby {
  background: #fff !important;
  border: 1px solid rgba(138, 100, 20, 0.35) !important;
  color: #141414 !important;
  font-weight: 650 !important;
  letter-spacing: 0.02em;
  font-size: 0.8rem !important;
  padding: 0.38rem 0.85rem 0.38rem 0.62rem !important;
}

html[data-theme="light"] .support-standby__dot {
  background: #8a6414 !important;
}

html[data-theme="light"] a.text-yellow-200,
html[data-theme="light"] a[class*="text-yellow-"] {
  color: #8a6414 !important;
  border-color: rgba(138, 100, 20, 0.4) !important;
}

@media (max-width: 767px) {
  html[data-theme="light"] .studio-footer.is-enhanced .studio-footer__grid {
    grid-template-columns: 1fr;
  }
}
