@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --bg: #06070f;
  --bg-soft: rgba(255, 255, 255, 0.08);
  --bg-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f5ff;
  --text-dim: #b9bddb;
  --border: rgba(255, 255, 255, 0.18);
  --primary: #ff4eb5;
  --primary-strong: #cd2a88;
  --primary-soft: rgba(255, 78, 181, 0.14);
  --accent: #58e3ff;
  --danger: #ff6d6b;
  --warning: #ffbf56;
  --surface-shadow: 0 18px 44px rgba(1, 2, 8, 0.5);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1240px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 74, 176, 0.3), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(82, 217, 255, 0.28), transparent 28%),
    linear-gradient(140deg, #02030a 0%, #100116 45%, #05050d 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  font-family: 'Sora', sans-serif;
}

p {
  margin: 0;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  text-align: left;
  padding: 0.8rem 0.86rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: #eef0ff;
}

th {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8cdef;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.theme-modern .page-main > section,
.theme-modern .site-footer {
  padding-block: clamp(2.8rem, 7vw, 5.8rem);
}

.kicker {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.72rem;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.kicker::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.market-ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #0b4f2f, #0f7d47 45%, #0d6d40);
}

.ticker-track {
  display: inline-block;
  min-width: 100%;
  padding: 0.58rem 1.2rem;
  white-space: nowrap;
  color: #ebfff4;
  font-size: 0.82rem;
  animation: tickerMove 28s linear infinite;
}

.ticker-track strong {
  color: #fff;
}

.ticker-sep {
  margin: 0 0.8rem;
  opacity: 0.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 44;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 18, 0.72);
}

.nav-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, #52002f, #280520 55%, #0d0f1f);
  color: #ffeafb;
}

.nav-topline-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

.nav-topline-inner a {
  font-weight: 700;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.nav-row {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  position: relative;
  overflow: visible;
}

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

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 12px;
  position: relative;
  background: linear-gradient(140deg, var(--primary), #2cb673);
  box-shadow: 0 8px 20px rgba(12, 110, 62, 0.23);
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.74);
}

.brand-name {
  font-size: 1.18rem;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.52rem 0.7rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  flex-wrap: wrap;
}

.nav-item {
  position: static;
}

.nav-link {
  border: 0;
  background: transparent;
  color: #d8d9ec;
  font-weight: 600;
  font-size: 0.91rem;
  padding: 0.58rem 0.74rem;
  border-radius: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.18s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-button {
  font-family: inherit;
}

.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.56rem);
  width: min(1080px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  max-height: min(72vh, 680px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(10, 11, 22, 0.94);
  box-shadow: 0 22px 54px rgba(1, 2, 10, 0.55);
  padding: 1.2rem;
  display: none;
}

.nav-item.mega-open .mega-menu {
  display: block;
  animation: fadeUp 0.2s ease;
}

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

.mega-col {
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mega-col h4 {
  font-size: 0.88rem;
  margin-bottom: 0.72rem;
  color: #fff;
}

.mega-link {
  display: block;
  font-size: 0.86rem;
  color: #d2d6f2;
  padding: 0.44rem 0.48rem;
  border-radius: 8px;
  transition: 0.16s ease;
}

.mega-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 40px;
  padding: 0 1rem;
  color: #fff;
  background: linear-gradient(130deg, var(--primary), #8b34ff);
  box-shadow: 0 12px 28px rgba(145, 38, 184, 0.4);
}

.hero-block {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.hero-media-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media-video,
.hero-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-video {
  filter: saturate(1.25) contrast(1.06) brightness(0.7);
}

.hero-media-image {
  filter: saturate(1.15) contrast(1.05) brightness(0.65);
}

.hero-media-image.has-video {
  opacity: 0.22;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 158, 228, 0.45), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(86, 214, 255, 0.32), transparent 32%),
    linear-gradient(180deg, rgba(3, 3, 11, 0.25) 0%, rgba(4, 4, 12, 0.78) 68%, rgba(3, 4, 10, 0.92) 100%);
}

.hero-liquid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-liquid span {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.36;
}

.hero-liquid span:nth-child(1) {
  width: 42vw;
  min-width: 260px;
  height: 42vw;
  min-height: 260px;
  left: -10vw;
  top: -14vw;
  background: radial-gradient(circle at 30% 30%, rgba(34, 177, 104, 0.5), transparent 60%);
  animation: waterMoveA 18s ease-in-out infinite;
}

.hero-liquid span:nth-child(2) {
  width: 34vw;
  min-width: 230px;
  height: 34vw;
  min-height: 230px;
  right: -8vw;
  top: -8vw;
  background: radial-gradient(circle at 60% 40%, rgba(9, 117, 66, 0.34), transparent 62%);
  animation: waterMoveB 16s ease-in-out infinite;
}

.hero-liquid span:nth-child(3) {
  width: 48vw;
  min-width: 290px;
  height: 20vw;
  min-height: 140px;
  left: 30%;
  bottom: -7vw;
  background: radial-gradient(circle at 50% 50%, rgba(27, 172, 105, 0.24), transparent 66%);
  animation: waterWave 12s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.hero-copy,
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(8, 9, 19, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: var(--surface-shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 4.1vw, 3rem);
  margin-bottom: 0.8rem;
}

.hero-copy > p {
  color: #c4c7df;
  max-width: 62ch;
}

.hero-btn-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-trust-row {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-trust-row span {
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe8ff;
}

.highlight-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.56rem;
}

.highlight-list li {
  display: flex;
  gap: 0.56rem;
  color: #d8dcf3;
  font-size: 0.94rem;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  margin-top: 0.38rem;
  flex: 0 0 auto;
  background: linear-gradient(130deg, var(--primary), var(--accent));
}

.hero-panel h3 {
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.metric-grid {
  display: grid;
  gap: 0.72rem;
}

.metric-card {
  padding: 0.82rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 34, 24, 0.08);
  background: linear-gradient(180deg, #ffffff, #f6fbf8);
}

.metric-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.32rem;
}

.metric-card span {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.mini-note {
  margin-top: 0.95rem;
  color: #bec5e9;
  font-size: 0.82rem;
}

.search-section {
  padding-top: clamp(1.2rem, 4vw, 2.2rem);
}

.search-widget {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: var(--radius-xl);
  background: rgba(9, 10, 21, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 45px rgba(3, 4, 14, 0.5);
}

.search-widget header h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
}

.search-note {
  margin-top: 0.55rem;
  color: #c3c7e3;
  font-size: 0.82rem;
}

.search-form {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.6rem;
}

.search-form input,
.search-form select,
.roi-form input,
.roi-form select,
.contact-form input,
.contact-form textarea,
.chat-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-height: 46px;
  padding: 0.66rem 0.8rem;
  color: #fff;
}

.search-form input:focus,
.search-form select:focus,
.roi-form input:focus,
.roi-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.chat-form input:focus {
  outline: 2px solid rgba(16, 139, 79, 0.22);
  border-color: rgba(16, 139, 79, 0.38);
}

.quick-chip-row {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-chip-row button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f3f5ff;
  min-height: 34px;
  padding: 0 0.66rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.search-status {
  margin-top: 0.8rem;
  color: #d1d6f2;
  font-size: 0.86rem;
}

.search-results {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.result-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(22, 24, 40, 0.85), rgba(14, 16, 30, 0.74));
  padding: 0.9rem;
  box-shadow: 0 18px 36px rgba(1, 2, 10, 0.44);
}

.result-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.result-card h3 {
  font-size: 1rem;
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.status.available {
  background: #d6f5e4;
  color: #0a6a39;
}

.status.taken {
  background: #fde3df;
  color: #8e2e23;
}

.result-source,
.sale-line {
  margin-top: 0.46rem;
  font-size: 0.81rem;
  color: #b3bbdf;
}

.recommendation-line {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.result-actions {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.table-wrap {
  margin-top: 0.72rem;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.table-wrap.small table {
  min-width: 520px;
}

.comparison-row.hostinger td {
  background: rgba(255, 78, 181, 0.16);
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.chip.hostinger {
  background: #d8f6e6;
  color: #0c6f3d;
  border: 1px solid rgba(12, 111, 61, 0.2);
}

.result-card.recommend-hostinger {
  border-color: rgba(255, 135, 206, 0.4);
  box-shadow: 0 18px 34px rgba(164, 42, 150, 0.28);
}

.section-heading {
  margin-bottom: 1.1rem;
}

.section-heading h2 {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
}

.section-heading p:not(.kicker) {
  color: var(--text-dim);
}

.track-grid,
.sales-grid,
.seller-grid,
.trend-grid,
.playbook-grid,
.info-grid,
.faq-grid,
.case-grid,
.roadmap-list,
.service-category-grid,
.service-library-grid,
.service-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.track-card,
.sale-card,
.seller-card,
.trend-card,
.playbook-card,
.info-card,
.faq-card,
.case-card,
.roadmap-item,
.service-category-card,
.service-library-card,
.service-delivery-card,
.contact-card,
.mcp-card,
.roi-output,
.roi-form,
.service-kpi-card article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(12, 13, 25, 0.62);
  box-shadow: 0 18px 36px rgba(2, 3, 12, 0.45);
  padding: 1rem;
}

.track-card h3,
.sale-card h3,
.seller-card h3,
.trend-card h3,
.playbook-card h3,
.info-card h3,
.faq-card h3,
.case-card h3,
.roadmap-item h3,
.service-category-card h3,
.service-library-card h3,
.contact-card h3,
.mcp-card h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.track-card p,
.sale-card p,
.seller-card p,
.trend-card p,
.playbook-card p,
.info-card p,
.faq-card p,
.case-card p,
.roadmap-item p,
.service-category-card p,
.service-library-card p,
.contact-card p,
.mcp-card p {
  color: #b7bddf;
}

.faq-card {
  display: grid;
  gap: 0.62rem;
}

.faq-answer {
  margin: 0;
}

.faq-ask-wrap {
  display: grid;
  gap: 0.5rem;
}

.faq-ask-btn {
  justify-self: start;
  min-height: 34px;
  font-size: 0.8rem;
  padding: 0 0.72rem;
}

.faq-ask-reply {
  margin: 0;
  padding: 0.62rem 0.72rem;
  border-radius: 10px;
  border: 1px dashed rgba(255, 167, 227, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #f3f6ff;
  font-size: 0.83rem;
  display: none;
}

.faq-ask-reply.show {
  display: block;
}

.template-market-section {
  padding-top: clamp(1.8rem, 4vw, 3rem);
}

.template-backend-hint {
  margin: -0.3rem 0 1rem;
  font-size: 0.82rem;
  color: #d2d8f6;
}

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

.template-market-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 24, 0.65);
  padding: 0.82rem;
  display: grid;
  gap: 0.56rem;
}

.template-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 186, 237, 0.45), transparent 36%),
    radial-gradient(circle at 75% 70%, rgba(90, 220, 255, 0.38), transparent 42%),
    linear-gradient(150deg, #090a16 0%, #18051f 48%, #090a15 100%);
}

.template-media img,
.template-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.template-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.template-market-card.active .template-video,
.template-market-card:hover .template-video {
  opacity: 1;
}

.template-media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(2, 2, 10, 0.38));
}

.template-market-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.template-meta {
  margin: 0;
  font-size: 0.79rem;
  color: #c8d0f2;
}

.template-typing {
  margin: 0;
  min-height: 2.5em;
  font-size: 0.82rem;
  color: #f6f8ff;
  display: none;
}

.template-typing.show {
  display: block;
}

.template-upload-path {
  margin: 0;
  font-size: 0.75rem;
  color: #9ea9d7;
}

.template-upload-path code {
  color: #ffcaec;
}

.sale-seller,
.playbook-tld,
.service-tag,
.period {
  color: #ffd5f3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-row {
  margin-top: 0.62rem;
  font-size: 0.8rem;
}

.seller-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.seller-badge {
  font-size: 0.73rem;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  background: rgba(255, 78, 181, 0.16);
  color: #ffd5f3;
  border: 1px solid rgba(255, 169, 226, 0.25);
}

.price-pair {
  margin-top: 0.45rem;
  color: #f2f4ff;
  font-weight: 600;
}

.momentum {
  color: #9be8ff;
  font-weight: 700;
}

.roi-grid,
.contact-grid,
.service-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.roi-form,
.contact-form {
  display: grid;
  gap: 0.72rem;
}

.roi-form label,
.contact-form label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.86rem;
  color: #294738;
}

.contact-note {
  min-height: 1.2em;
  color: #1d5f40;
  font-size: 0.84rem;
}

.mcp-intro {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(11, 12, 24, 0.68);
  margin-bottom: 0.9rem;
}

.mcp-actions {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.52rem;
  flex-wrap: wrap;
}

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

.mcp-card pre {
  margin: 0.7rem 0 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0.8rem;
  overflow: auto;
  max-height: 320px;
}

.mcp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.copy-json-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  min-height: 34px;
  padding: 0 0.72rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f3f4ff;
}

.tld-hero,
.service-hero {
  padding-top: clamp(1.6rem, 4vw, 2.8rem);
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.tld-hero-grid,
.service-hero-grid {
  align-items: start;
}

.tld-stats,
.service-kpi-card {
  display: grid;
  gap: 0.66rem;
}

.tld-stats article,
.service-kpi-card article {
  background: rgba(12, 13, 25, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.86rem;
}

.tld-stats span,
.service-kpi-card span {
  display: block;
  font-size: 0.76rem;
  color: #c0c7ea;
  margin-bottom: 0.3rem;
}

.tld-stats strong,
.service-kpi-card strong {
  font-size: 1rem;
}

.meta-line {
  margin-top: 0.6rem;
  color: #cad0ef;
}

.service-delivery-card p {
  color: #d6dcf8;
}

.track-card,
.sale-card,
.seller-card,
.trend-card,
.playbook-card,
.info-card,
.faq-card,
.case-card,
.roadmap-item,
.service-category-card,
.service-library-card,
.service-delivery-card,
.contact-card,
.mcp-card,
.metric-card,
.result-card,
.template-market-card,
.tld-stats article,
.service-kpi-card article {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.track-card::before,
.sale-card::before,
.seller-card::before,
.trend-card::before,
.playbook-card::before,
.info-card::before,
.faq-card::before,
.case-card::before,
.roadmap-item::before,
.service-category-card::before,
.service-library-card::before,
.service-delivery-card::before,
.contact-card::before,
.mcp-card::before,
.metric-card::before,
.result-card::before,
.template-market-card::before,
.tld-stats article::before,
.service-kpi-card article::before,
.track-card::after,
.sale-card::after,
.seller-card::after,
.trend-card::after,
.playbook-card::after,
.info-card::after,
.faq-card::after,
.case-card::after,
.roadmap-item::after,
.service-category-card::after,
.service-library-card::after,
.service-delivery-card::after,
.contact-card::after,
.mcp-card::after,
.metric-card::after,
.result-card::after,
.template-market-card::after,
.tld-stats article::after,
.service-kpi-card article::after {
  content: '';
  position: absolute;
  inset: -28%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.track-card::before,
.sale-card::before,
.seller-card::before,
.trend-card::before,
.playbook-card::before,
.info-card::before,
.faq-card::before,
.case-card::before,
.roadmap-item::before,
.service-category-card::before,
.service-library-card::before,
.service-delivery-card::before,
.contact-card::before,
.mcp-card::before,
.metric-card::before,
.result-card::before,
.template-market-card::before,
.tld-stats article::before,
.service-kpi-card article::before {
  background: radial-gradient(circle at 60% 26%, rgba(255, 80, 166, 0.45), transparent 48%);
}

.track-card::after,
.sale-card::after,
.seller-card::after,
.trend-card::after,
.playbook-card::after,
.info-card::after,
.faq-card::after,
.case-card::after,
.roadmap-item::after,
.service-category-card::after,
.service-library-card::after,
.service-delivery-card::after,
.contact-card::after,
.mcp-card::after,
.metric-card::after,
.result-card::after,
.template-market-card::after,
.tld-stats article::after,
.service-kpi-card article::after {
  background: radial-gradient(circle at 30% 80%, rgba(79, 227, 255, 0.32), transparent 52%);
}

.track-card:hover,
.sale-card:hover,
.seller-card:hover,
.trend-card:hover,
.playbook-card:hover,
.info-card:hover,
.faq-card:hover,
.case-card:hover,
.roadmap-item:hover,
.service-category-card:hover,
.service-library-card:hover,
.service-delivery-card:hover,
.contact-card:hover,
.mcp-card:hover,
.metric-card:hover,
.result-card:hover,
.template-market-card:hover,
.tld-stats article:hover,
.service-kpi-card article:hover,
.template-market-card.active {
  transform: perspective(1000px) rotateX(5deg) rotateY(-6deg) translateY(-7px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 40px rgba(2, 4, 16, 0.55);
}

.track-card:hover::before,
.sale-card:hover::before,
.seller-card:hover::before,
.trend-card:hover::before,
.playbook-card:hover::before,
.info-card:hover::before,
.faq-card:hover::before,
.case-card:hover::before,
.roadmap-item:hover::before,
.service-category-card:hover::before,
.service-library-card:hover::before,
.service-delivery-card:hover::before,
.contact-card:hover::before,
.mcp-card:hover::before,
.metric-card:hover::before,
.result-card:hover::before,
.template-market-card:hover::before,
.tld-stats article:hover::before,
.service-kpi-card article:hover::before,
.template-market-card.active::before {
  opacity: 0.72;
  animation: firePulse 1.1s linear infinite;
}

.track-card:hover::after,
.sale-card:hover::after,
.seller-card:hover::after,
.trend-card:hover::after,
.playbook-card:hover::after,
.info-card:hover::after,
.faq-card:hover::after,
.case-card:hover::after,
.roadmap-item:hover::after,
.service-category-card:hover::after,
.service-library-card:hover::after,
.service-delivery-card:hover::after,
.contact-card:hover::after,
.mcp-card:hover::after,
.metric-card:hover::after,
.result-card:hover::after,
.template-market-card:hover::after,
.tld-stats article:hover::after,
.service-kpi-card article:hover::after,
.template-market-card.active::after {
  opacity: 0.66;
  animation: waterSweep 2.3s linear infinite;
}

.site-footer {
  background: linear-gradient(160deg, #05060e, #1a0722 58%, #090b16);
  color: #d8dcf3;
  margin-top: clamp(3rem, 8vw, 6rem);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.site-footer h4 {
  color: #fff;
  font-size: 0.96rem;
  margin-bottom: 0.65rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #b9c0e8;
  font-size: 0.84rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 0.92rem;
  font-weight: 700;
  font-size: 0.86rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn-primary {
  color: #fff;
  border-color: rgba(255, 165, 225, 0.34);
  background: linear-gradient(130deg, #ff4eb5, #9336ff);
  box-shadow: 0 12px 24px rgba(146, 41, 178, 0.42);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(146, 41, 178, 0.52);
}

.btn-ghost {
  color: #f5f6ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-ripple .ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%) scale(0);
  animation: ripplePop 0.5s ease;
  pointer-events: none;
}

.chatbot {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
}

.chatbot-toggle {
  border: 0;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(130deg, #ff4eb5, #9534ff);
  box-shadow: 0 12px 24px rgba(145, 44, 181, 0.4);
}

.chatbot-panel {
  width: min(360px, 88vw);
  margin-top: 0.66rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 21, 0.94);
  box-shadow: 0 20px 42px rgba(2, 3, 12, 0.5);
  padding: 0.9rem;
  display: none;
}

.chatbot-panel.open {
  display: block;
}

.chatbot-panel header h3 {
  font-size: 1rem;
}

.chatbot-panel header p {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-top: 0.32rem;
}

.chat-hints {
  margin: 0.62rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.22rem;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.chat-log {
  margin-top: 0.66rem;
  max-height: 240px;
  overflow: auto;
  display: grid;
  gap: 0.48rem;
}

.chat-msg {
  border-radius: 10px;
  padding: 0.56rem 0.66rem;
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eef2ff;
}

.chat-msg.user {
  background: rgba(255, 95, 188, 0.14);
}

.chat-msg.bot {
  background: rgba(101, 220, 255, 0.12);
}

.chat-form {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.42rem;
}

.chat-form button {
  border: 0;
  background: linear-gradient(130deg, #ff4eb5, #9534ff);
  color: #fff;
  border-radius: 10px;
  min-height: 44px;
  padding: 0 0.8rem;
  font-weight: 700;
}

.loading .line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eff5f2, #dbe8e1, #eff5f2);
  animation: skeleton 1.2s linear infinite;
  margin-bottom: 0.58rem;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.45s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ripplePop {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

@keyframes skeleton {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 260px 0;
  }
}

@keyframes waterMoveA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -12px, 0) scale(1.08);
  }
}

@keyframes waterMoveB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-22px, 10px, 0) scale(1.08);
  }
}

@keyframes waterWave {
  0% {
    transform: translateX(-8%) scaleX(1.05);
  }
  50% {
    transform: translateX(8%) scaleX(0.96);
  }
  100% {
    transform: translateX(-8%) scaleX(1.05);
  }
}

@keyframes firePulse {
  0% {
    transform: rotate(0deg) scale(1);
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    transform: rotate(4deg) scale(1.07);
    filter: hue-rotate(-18deg) brightness(1.08);
  }
  100% {
    transform: rotate(0deg) scale(1);
    filter: hue-rotate(0deg) brightness(1);
  }
}

@keyframes waterSweep {
  0% {
    transform: translateX(-6%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(6%) translateY(-2%) scale(1.04);
  }
  100% {
    transform: translateX(-6%) translateY(0) scale(1);
  }
}

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

  .track-grid,
  .sales-grid,
  .seller-grid,
  .trend-grid,
  .playbook-grid,
  .template-market-grid,
  .info-grid,
  .faq-grid,
  .case-grid,
  .roadmap-list,
  .service-category-grid,
  .service-library-grid,
  .service-delivery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-row {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(16, 34, 24, 0.1);
    border-radius: 14px;
    padding: 0.7rem;
    margin-bottom: 0.8rem;
  }

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

  .header-cta-wrap {
    display: none;
  }

  .hero-grid,
  .roi-grid,
  .contact-grid,
  .service-hero-grid,
  .mcp-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-results {
    grid-template-columns: 1fr;
  }

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

  .hero-copy,
  .hero-panel,
  .search-widget {
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .nav-topline-inner p {
    display: none;
  }

  .nav-topline-inner {
    justify-content: flex-end;
  }

  .ticker-track {
    font-size: 0.74rem;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .hero-copy h1 {
    font-size: 1.6rem;
  }

  .track-grid,
  .sales-grid,
  .seller-grid,
  .trend-grid,
  .playbook-grid,
  .template-market-grid,
  .info-grid,
  .faq-grid,
  .case-grid,
  .roadmap-list,
  .service-category-grid,
  .service-library-grid,
  .service-delivery-grid {
    grid-template-columns: 1fr;
  }

  .chatbot {
    right: 0.7rem;
    bottom: 0.7rem;
  }
}

/* Premium white + gold redesign override */
:root {
  --bg: #fbf8f1;
  --bg-soft: rgba(255, 255, 255, 0.82);
  --bg-strong: rgba(255, 255, 255, 0.96);
  --text: #1f1910;
  --text-dim: #68573f;
  --border: rgba(183, 140, 72, 0.34);
  --primary: #b78943;
  --primary-strong: #8f662c;
  --primary-soft: rgba(183, 137, 67, 0.14);
  --accent: #e9cd97;
  --danger: #bb5749;
  --warning: #b27d28;
  --surface-shadow: 0 16px 32px rgba(93, 68, 28, 0.14);
}

body.theme-modern {
  color: var(--text);
  background:
    radial-gradient(circle at 8% -5%, rgba(236, 208, 157, 0.35), transparent 26%),
    radial-gradient(circle at 96% 20%, rgba(233, 212, 176, 0.3), transparent 30%),
    linear-gradient(180deg, #fffefb 0%, #f9f4e8 100%);
}

body.theme-modern .market-ticker {
  border-bottom: 1px solid rgba(162, 121, 56, 0.2);
  background: linear-gradient(90deg, #e7d2a3, #f4e3bc 45%, #e8d0a1);
}

body.theme-modern .ticker-track {
  color: #3f311b;
}

body.theme-modern .ticker-track strong {
  color: #241b11;
}

body.theme-modern .site-header {
  border-bottom: 1px solid rgba(164, 122, 60, 0.28);
  background: rgba(255, 252, 246, 0.84);
}

body.theme-modern .nav-topline {
  border-bottom: 1px solid rgba(169, 126, 62, 0.28);
  color: #3e301b;
  background: linear-gradient(90deg, #f5e6c5, #fdf8eb 52%, #f3e2bf);
}

body.theme-modern .nav-topline-inner a {
  border: 1px solid rgba(166, 124, 59, 0.34);
  background: rgba(255, 255, 255, 0.74);
}

body.theme-modern .nav-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

body.theme-modern .primary-nav {
  min-width: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.theme-modern .primary-nav::-webkit-scrollbar {
  display: none;
}

body.theme-modern .nav-link {
  color: #4d3a20;
  white-space: nowrap;
}

body.theme-modern .nav-link:hover,
body.theme-modern .nav-link.active,
body.theme-modern .nav-link:focus-visible {
  color: #20170f;
  background: rgba(183, 137, 67, 0.14);
}

body.theme-modern .mega-menu {
  border: 1px solid rgba(170, 127, 61, 0.34);
  background: rgba(255, 252, 245, 0.97);
  box-shadow: 0 22px 44px rgba(91, 63, 20, 0.15);
}

body.theme-modern .mega-col {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 227, 0.9));
  border: 1px solid rgba(173, 131, 64, 0.3);
}

body.theme-modern .mega-col h4,
body.theme-modern .mega-link {
  color: #2f2416;
}

body.theme-modern .mega-link:hover {
  background: rgba(183, 137, 67, 0.14);
}

body.theme-modern .header-cta {
  color: #21170f;
  background: linear-gradient(130deg, #f1d49d, #d7b16d);
  box-shadow: 0 10px 24px rgba(137, 99, 39, 0.24);
}

body.theme-modern .hero-media-video {
  filter: saturate(1.05) contrast(1.02) brightness(0.88);
}

body.theme-modern .hero-media-image {
  filter: saturate(1.04) contrast(1.02) brightness(0.9);
}

body.theme-modern .hero-media-overlay {
  background:
    radial-gradient(circle at 18% 16%, rgba(247, 229, 192, 0.3), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(225, 209, 180, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(249, 243, 230, 0.62) 70%, rgba(246, 237, 222, 0.72) 100%);
}

body.theme-modern .hero-copy,
body.theme-modern .hero-panel,
body.theme-modern .search-widget,
body.theme-modern .track-card,
body.theme-modern .sale-card,
body.theme-modern .seller-card,
body.theme-modern .trend-card,
body.theme-modern .playbook-card,
body.theme-modern .info-card,
body.theme-modern .faq-card,
body.theme-modern .case-card,
body.theme-modern .roadmap-item,
body.theme-modern .service-category-card,
body.theme-modern .service-library-card,
body.theme-modern .service-delivery-card,
body.theme-modern .contact-card,
body.theme-modern .mcp-card,
body.theme-modern .roi-output,
body.theme-modern .roi-form,
body.theme-modern .service-kpi-card article,
body.theme-modern .result-card,
body.theme-modern .template-market-card,
body.theme-modern .mcp-intro,
body.theme-modern .chatbot-panel,
body.theme-modern .site-footer {
  border-color: rgba(177, 134, 64, 0.34);
  background: rgba(255, 255, 255, 0.9);
  color: #201910;
  box-shadow: 0 12px 26px rgba(97, 67, 26, 0.14);
}

body.theme-modern .site-footer {
  background: linear-gradient(150deg, #fffdf8, #f7ecd5 58%, #f3e0ba);
  color: #362817;
  border-top: 1px solid rgba(171, 129, 62, 0.28);
}

body.theme-modern .site-footer h4 {
  color: #21190f;
}

body.theme-modern .site-footer p,
body.theme-modern .site-footer li,
body.theme-modern .site-footer a {
  color: #4d3b24;
}

body.theme-modern .hero-copy > p,
body.theme-modern .section-heading p:not(.kicker),
body.theme-modern .mini-note,
body.theme-modern .search-note,
body.theme-modern .search-status,
body.theme-modern .result-source,
body.theme-modern .sale-line,
body.theme-modern .faq-ask-reply,
body.theme-modern .template-meta,
body.theme-modern .meta-row,
body.theme-modern .track-card p,
body.theme-modern .sale-card p,
body.theme-modern .seller-card p,
body.theme-modern .trend-card p,
body.theme-modern .playbook-card p,
body.theme-modern .info-card p,
body.theme-modern .faq-card p,
body.theme-modern .case-card p,
body.theme-modern .roadmap-item p,
body.theme-modern .service-category-card p,
body.theme-modern .service-library-card p,
body.theme-modern .contact-card p,
body.theme-modern .mcp-card p {
  color: #62513a;
}

body.theme-modern .highlight-list li {
  color: #3d3020;
}

body.theme-modern .hero-trust-row span,
body.theme-modern .quick-chip-row button {
  border-color: rgba(176, 132, 62, 0.3);
  color: #4c3a20;
  background: rgba(253, 247, 235, 0.9);
}

body.theme-modern .search-form input,
body.theme-modern .search-form select,
body.theme-modern .roi-form input,
body.theme-modern .roi-form select,
body.theme-modern .contact-form input,
body.theme-modern .contact-form textarea,
body.theme-modern .chat-form input {
  color: #261d12;
  border-color: rgba(171, 129, 63, 0.34);
  background: rgba(255, 255, 255, 0.96);
}

body.theme-modern input::placeholder,
body.theme-modern textarea::placeholder {
  color: #8a7758;
}

body.theme-modern .table-wrap {
  border-color: rgba(168, 126, 60, 0.32);
  background: rgba(255, 255, 255, 0.95);
}

body.theme-modern th,
body.theme-modern td {
  border-bottom: 1px solid rgba(175, 135, 68, 0.25);
  color: #322616;
}

body.theme-modern th {
  color: #755a32;
}

body.theme-modern .comparison-row.hostinger td {
  background: rgba(226, 197, 143, 0.24);
}

body.theme-modern .kicker,
body.theme-modern .sale-seller,
body.theme-modern .playbook-tld,
body.theme-modern .service-tag,
body.theme-modern .period,
body.theme-modern .momentum {
  color: #9c6e29;
}

body.theme-modern .btn-primary,
body.theme-modern .chatbot-toggle,
body.theme-modern .chat-form button {
  color: #23170e;
  border-color: rgba(157, 114, 46, 0.36);
  background: linear-gradient(130deg, #f3d79f, #d8b170);
  box-shadow: 0 10px 24px rgba(145, 102, 41, 0.26);
}

body.theme-modern .btn-primary:hover,
body.theme-modern .chatbot-toggle:hover,
body.theme-modern .chat-form button:hover {
  box-shadow: 0 16px 30px rgba(145, 102, 41, 0.3);
}

body.theme-modern .btn-ghost {
  color: #3e2f1c;
  border-color: rgba(170, 128, 61, 0.32);
  background: rgba(255, 255, 255, 0.87);
}

body.theme-modern .btn-ghost:hover {
  background: rgba(250, 240, 220, 0.9);
}

body.theme-modern .template-market-card {
  border-color: rgba(177, 134, 64, 0.36);
}

body.theme-modern .template-media {
  border-color: rgba(173, 130, 62, 0.32);
  background:
    radial-gradient(circle at 18% 22%, rgba(242, 222, 182, 0.8), transparent 40%),
    radial-gradient(circle at 78% 78%, rgba(224, 207, 176, 0.65), transparent 42%),
    linear-gradient(150deg, #fffaf0 0%, #f5e8cf 52%, #fffef9 100%);
}

body.theme-modern .template-media-glow {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(215, 186, 136, 0.2));
}

body.theme-modern .template-typing {
  color: #6a573f;
}

body.theme-modern .chat-msg {
  color: #2f2315;
  border-color: rgba(171, 129, 61, 0.3);
}

body.theme-modern .chat-msg.user {
  background: rgba(238, 218, 177, 0.38);
}

body.theme-modern .chat-msg.bot {
  background: rgba(255, 255, 255, 0.86);
}

body.theme-modern .chat-sources {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

body.theme-modern .chat-source-link {
  border-radius: 999px;
  border: 1px solid rgba(166, 124, 57, 0.28);
  background: rgba(255, 250, 240, 0.92);
  color: #634824;
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  font-weight: 600;
}

body.theme-modern .chat-source-link:hover {
  background: rgba(243, 226, 193, 0.9);
}

body.theme-modern .track-card::before,
body.theme-modern .sale-card::before,
body.theme-modern .seller-card::before,
body.theme-modern .trend-card::before,
body.theme-modern .playbook-card::before,
body.theme-modern .info-card::before,
body.theme-modern .faq-card::before,
body.theme-modern .case-card::before,
body.theme-modern .roadmap-item::before,
body.theme-modern .service-category-card::before,
body.theme-modern .service-library-card::before,
body.theme-modern .service-delivery-card::before,
body.theme-modern .contact-card::before,
body.theme-modern .mcp-card::before,
body.theme-modern .metric-card::before,
body.theme-modern .result-card::before,
body.theme-modern .template-market-card::before,
body.theme-modern .tld-stats article::before,
body.theme-modern .service-kpi-card article::before {
  background: radial-gradient(circle at 60% 26%, rgba(217, 169, 93, 0.26), transparent 48%);
}

body.theme-modern .track-card::after,
body.theme-modern .sale-card::after,
body.theme-modern .seller-card::after,
body.theme-modern .trend-card::after,
body.theme-modern .playbook-card::after,
body.theme-modern .info-card::after,
body.theme-modern .faq-card::after,
body.theme-modern .case-card::after,
body.theme-modern .roadmap-item::after,
body.theme-modern .service-category-card::after,
body.theme-modern .service-library-card::after,
body.theme-modern .service-delivery-card::after,
body.theme-modern .contact-card::after,
body.theme-modern .mcp-card::after,
body.theme-modern .metric-card::after,
body.theme-modern .result-card::after,
body.theme-modern .template-market-card::after,
body.theme-modern .tld-stats article::after,
body.theme-modern .service-kpi-card article::after {
  background: radial-gradient(circle at 30% 80%, rgba(137, 187, 222, 0.2), transparent 52%);
}

body.theme-modern .track-card:hover,
body.theme-modern .sale-card:hover,
body.theme-modern .seller-card:hover,
body.theme-modern .trend-card:hover,
body.theme-modern .playbook-card:hover,
body.theme-modern .info-card:hover,
body.theme-modern .faq-card:hover,
body.theme-modern .case-card:hover,
body.theme-modern .roadmap-item:hover,
body.theme-modern .service-category-card:hover,
body.theme-modern .service-library-card:hover,
body.theme-modern .service-delivery-card:hover,
body.theme-modern .contact-card:hover,
body.theme-modern .mcp-card:hover,
body.theme-modern .metric-card:hover,
body.theme-modern .result-card:hover,
body.theme-modern .template-market-card:hover,
body.theme-modern .tld-stats article:hover,
body.theme-modern .service-kpi-card article:hover,
body.theme-modern .template-market-card.active {
  border-color: rgba(177, 134, 64, 0.58);
  box-shadow: 0 18px 34px rgba(116, 81, 31, 0.2);
}

@media (max-width: 900px) {
  body.theme-modern .primary-nav {
    background: rgba(255, 252, 245, 0.96);
    border-color: rgba(174, 131, 63, 0.28);
  }
}
