:root {
  --ink: #202124;
  --muted: #6f7378;
  --line: #dddfe3;
  --paper: #ffffff;
  --soft: #f4f5f5;
  --berry: #c72d59;
  --berry-dark: #a82249;
  --rose: #f6dfe7;
  --sage: #9aac9a;
  --shadow: 0 18px 45px rgba(32, 33, 36, 0.12);
  --tight-shadow: 0 10px 24px rgba(32, 33, 36, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Heebo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f7f6;
  direction: rtl;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  padding: 108px 24px 96px;
  position: relative;
  background: #f7f7f6;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 86vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.5) 58%, #f7f7f6 100%),
    url("./assets/hero-fitness-lifestyle.png") center top / cover no-repeat;
  filter: saturate(0.52) contrast(1.03);
  transform: scale(1.01);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32vh;
  background: #f7f7f6;
  z-index: 0;
}

.layout {
  width: min(1168px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 18px;
  position: relative;
  z-index: 1;
  direction: ltr;
}

.card,
.mini-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 223, 227, 0.92);
  box-shadow: var(--shadow);
}

.card {
  border-radius: 16px;
}

.mini-card {
  border-radius: 10px;
  box-shadow: var(--tight-shadow);
}

.share-button {
  position: fixed;
  top: 48px;
  left: clamp(18px, 8vw, 144px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(32, 33, 36, 0.16);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.share-button svg,
.outline-button svg {
  width: 18px;
  height: 18px;
}

.profile-card {
  grid-column: 2;
  direction: rtl;
  text-align: center;
  padding: 0 24px 22px;
  margin-top: 122px;
}

.avatar-ring {
  width: 154px;
  height: 154px;
  margin: -78px auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(32, 33, 36, 0.18);
}

.avatar-mark {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.36), transparent 24%),
    linear-gradient(135deg, var(--berry) 0%, #23292d 58%, var(--sage) 100%);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
  position: relative;
}

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

.avatar-mark span[hidden],
.avatar-mark img[hidden] {
  display: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 29px;
  line-height: 1.1;
  margin-bottom: 18px;
}

h2 {
  font-size: 24px;
  line-height: 1.1;
}

h3 {
  font-size: 20px;
  line-height: 1.15;
}

.location,
.total-followers {
  color: var(--muted);
  font-size: 15px;
}

.location {
  margin-bottom: 22px;
}

.total-followers {
  margin-bottom: 18px;
}

.total-followers strong {
  color: var(--ink);
}

.social-row,
.tag-row,
.platform-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.social-badge,
.tag,
.platform-tab,
.status-pill,
.data-state,
.outline-button {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
}

.social-badge {
  min-width: 74px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.social-badge svg,
.platform-tab svg,
.metric-icon,
.mini-title svg {
  width: 18px;
  height: 18px;
}

.social-badge.instagram,
.platform-tab.instagram {
  color: #c13584;
}

.social-badge.tiktok,
.platform-tab.tiktok {
  color: #111111;
}

.social-badge.youtube,
.platform-tab.youtube {
  color: #ff0033;
}

.tag-row {
  margin: 16px 0 20px;
}

.tag {
  padding: 9px 13px;
  background: #eff0f1;
  border: 0;
  color: #303235;
  font-size: 12px;
}

.bio {
  max-width: 320px;
  margin: 0 auto 14px;
  color: #2f3134;
  font-size: 15px;
  line-height: 1.55;
}

.profile-social-links {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 0 0 20px;
}

.profile-social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded8d3;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #303235;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.profile-social-links a:hover {
  transform: translateY(-1px);
  border-color: #bfb4ac;
  background: var(--paper);
}

.profile-social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--berry);
  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta:hover {
  background: var(--berry-dark);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--berry);
}

.contact-email svg {
  width: 16px;
  height: 16px;
}

.content-stack {
  grid-column: 1;
  grid-row: 1;
  direction: rtl;
  display: grid;
  gap: 18px;
}

.partners-card,
.insights-card {
  padding: 22px 24px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.status-pill,
.data-state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: var(--muted);
  background: #f5f6f6;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.data-state {
  color: #326755;
  background: #e8f1ec;
  border-color: #cfe1d6;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-item {
  min-height: 118px;
  display: grid;
  grid-template-rows: 68px auto auto;
  align-items: center;
  justify-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfb;
  text-align: center;
}

.partner-logo {
  width: 100%;
  height: 78px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.partner-logo img {
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 54px;
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
}

.partner-aliexpress .partner-logo img {
  max-width: 98%;
  max-height: 43px;
}

.partner-bali .partner-logo img {
  max-width: 76%;
  max-height: 58px;
}

.partner-iherb .partner-logo img {
  max-width: 82%;
  max-height: 48px;
}

.partner-tener .partner-logo img {
  max-width: 82%;
  max-height: 42px;
}

.partner-name {
  font-size: 14px;
  font-weight: 600;
}

.partner-example {
  width: 100%;
}

.partner-example summary {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 0 10px;
  border: 1px solid #eadce0;
  border-radius: 999px;
  background: #fff8fa;
  color: var(--berry);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.partner-example summary::-webkit-details-marker {
  display: none;
}

.partner-example summary svg {
  width: 15px;
  height: 15px;
  transition: transform 0.18s ease;
}

.partner-example[open] summary svg {
  transform: rotate(180deg);
}

.partner-example-body {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  background: var(--paper);
  text-align: right;
}

.partner-example-body strong {
  color: var(--ink);
  font-size: 13px;
}

.partner-example-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.partner-example-body a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.partner-example-body a svg {
  width: 14px;
  height: 14px;
}

.platform-tabs {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.platform-tab {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.handle {
  direction: ltr;
  unicode-bidi: isolate;
}

.platform-tab.active {
  border-color: #eadce0;
  background: #fff8fa;
  color: #c13584;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.outline-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.metric-card {
  min-height: 112px;
  padding: 14px 12px 12px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--tight-shadow);
}

.metric-card .info {
  position: absolute;
  top: 14px;
  left: 12px;
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.metric-card p {
  margin: 9px 0 8px;
  color: #303235;
  font-size: 15px;
}

.metric-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.tiktok-strip {
  margin: 18px 0 0;
}

.tiktok-strip-card {
  display: grid;
  grid-template-columns: auto minmax(170px, 1fr) repeat(4, minmax(72px, auto));
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--tight-shadow);
}

.tiktok-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #111111;
  color: var(--paper);
}

.tiktok-logo svg {
  width: 19px;
  height: 19px;
}

.tiktok-strip-copy {
  display: grid;
  gap: 3px;
}

.tiktok-strip-copy strong {
  font-size: 14px;
  line-height: 1.1;
}

.tiktok-strip-copy small,
.tiktok-strip-stat small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.tiktok-strip-stat {
  display: grid;
  gap: 3px;
  text-align: center;
}

.tiktok-strip-stat strong {
  font-size: 18px;
  line-height: 1;
}

.audience-section {
  margin-top: 4px;
}

.audience-section h3 {
  margin-bottom: 14px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  padding: 18px 16px;
}

.mini-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 13px;
}

.donut {
  width: min(212px, 72%);
  aspect-ratio: 1;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--berry) 0 78%, #dda5b7 78% 100%);
}

.donut span {
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
}

.legend {
  width: min(240px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.legend-row,
.bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

.legend-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--berry);
}

.dot.secondary {
  background: #dda5b7;
}

.dot.neutral {
  background: #d7dde3;
}

.legend-row strong,
.bar-row strong {
  font-weight: 800;
}

.bar-list {
  display: grid;
  gap: 10px;
}

.bar-row {
  min-height: 30px;
  padding: 0 11px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--rose);
}

.bar-row::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: var(--value);
  background: #dc9bb1;
}

.bar-row span,
.bar-row strong {
  position: relative;
  z-index: 1;
}

.countries-card {
  max-width: 370px;
}

.market-focus {
  display: grid;
  gap: 12px;
}

.market-primary {
  min-height: 156px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f6dfe7, #ffffff);
  text-align: center;
}

.market-primary span {
  color: #303235;
  font-size: 16px;
  font-weight: 800;
}

.market-primary strong {
  color: var(--berry);
  font-size: 58px;
  line-height: 1;
}

.market-primary small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.market-secondary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f7f7f6;
  color: var(--muted);
  font-size: 13px;
}

.market-secondary strong {
  color: var(--ink);
  font-size: 15px;
}

.community-section {
  margin-top: 28px;
}

.community-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid #d8e4dc;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 241, 236, 0.96), rgba(255, 255, 255, 0.96));
  box-shadow: var(--tight-shadow);
}

.community-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #326755;
  background: #dcebe3;
}

.community-icon svg {
  width: 25px;
  height: 25px;
}

.eyebrow {
  margin-bottom: 5px;
  color: #326755;
  font-size: 12px;
  font-weight: 800;
}

.community-card h3 {
  margin-bottom: 8px;
}

.community-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.community-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #cfe1d6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #326755;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.community-links svg {
  width: 16px;
  height: 16px;
}

.community-links a:hover {
  border-color: #a9c6b5;
  background: var(--paper);
}

.community-card > strong {
  min-width: 96px;
  color: var(--berry);
  font-size: 34px;
  line-height: 1;
  text-align: left;
}

.posts-section {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.posts-section .section-heading {
  margin-bottom: 16px;
}

.empty-state {
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px dashed #ced2d6;
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
}

.empty-state svg {
  width: 28px;
  height: 28px;
}

.empty-state p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.5;
}

.top-content-list {
  display: grid;
  gap: 10px;
}

.content-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--tight-shadow);
}

.content-thumb {
  width: 82px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #eff0f1;
  color: var(--muted);
}

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

.content-copy {
  min-width: 0;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.content-meta span {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: #f5f6f6;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.content-copy p {
  color: #303235;
  font-size: 14px;
  line-height: 1.45;
}

.content-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.content-stats span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 8px 7px;
  border-radius: 7px;
  background: #f7f7f6;
  text-align: center;
}

.content-stats small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}

.content-stats strong {
  font-size: 15px;
  line-height: 1;
}

.unavailable {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .hero {
    padding: 128px 16px 72px;
  }

  .layout {
    grid-template-columns: 1fr;
    max-width: 650px;
  }

  .profile-card,
  .content-stack {
    grid-column: auto;
    grid-row: auto;
  }

  .profile-card {
    margin-top: 64px;
  }

  .share-button {
    top: 48px;
    left: 18px;
  }

  .content-stack {
    gap: 16px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 116px 16px 64px;
  }

  .profile-card {
    padding: 0 24px 24px;
  }

  .avatar-ring {
    width: 150px;
    height: 150px;
    margin-top: -76px;
  }

  .avatar-mark {
    width: 128px;
    height: 128px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  .partners-card,
  .insights-card {
    padding: 20px 16px;
  }

  .section-heading,
  .meta-row {
    display: grid;
    justify-content: stretch;
  }

  .status-pill,
  .data-state {
    justify-self: start;
  }

  .metric-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mini-card {
    padding: 14px 10px;
  }

  .mini-title {
    gap: 7px;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .market-primary {
    min-height: 134px;
  }

  .market-primary span {
    font-size: 13px;
  }

  .market-primary strong {
    font-size: 45px;
  }

  .market-primary small,
  .market-secondary {
    font-size: 11px;
  }

  .market-secondary {
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 8px;
    text-align: center;
  }

  .market-secondary strong {
    font-size: 13px;
  }

  .metric-card {
    min-height: 122px;
  }

  .metric-card strong {
    font-size: 28px;
  }

  .tiktok-strip-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tiktok-strip-stat {
    grid-column: span 1;
    min-height: 48px;
    align-content: center;
    padding: 8px;
    border-radius: 7px;
    background: #f7f7f6;
  }

  .gender-card,
  .posts-section {
    grid-column: 1 / -1;
  }

  .content-row {
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: start;
  }

  .content-thumb {
    width: 74px;
  }

  .content-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .partner-item {
    width: 100%;
  }

  .partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .community-card > strong {
    min-width: 0;
    text-align: right;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .metric-grid {
    gap: 10px;
  }

  .metric-card {
    padding: 12px 10px;
  }

  .metric-card p {
    font-size: 12px;
  }

  .metric-card strong {
    font-size: 25px;
  }

  .tiktok-strip-card {
    gap: 10px;
    padding: 12px;
  }

  .tiktok-strip-copy {
    min-width: 0;
  }

  .tiktok-strip-copy small {
    display: none;
  }

  .content-row {
    grid-template-columns: 1fr;
  }

  .content-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .content-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
