:root {
  --bg: #030303;
  --panel: rgba(12, 12, 15, .88);
  --panel-strong: rgba(20, 17, 22, .95);
  --pink: #ff0069;
  --pink-soft: rgba(255, 0, 109, .18);
  --text: #fff;
  --muted: rgba(255, 255, 255, .72);
  --quiet: rgba(255, 255, 255, .55);
  --line: rgba(255, 255, 255, .13);
  --pink-line: rgba(255, 0, 109, .55);
  --shadow: 0 26px 90px rgba(255, 0, 109, .16);
  --max: 1460px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
  background:
    linear-gradient(115deg, rgba(255, 0, 109, .18), transparent 24rem 74%),
    linear-gradient(180deg, #070707 0, #000 38%, #050305 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 800;
}

.brand .line-icon,
h2 .line-icon { width: 18px; height: 18px; color: var(--pink); fill: var(--pink); }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
}

.main-nav a {
  position: relative;
  padding: 10px 0 14px;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  font-weight: 800;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink);
  transition: transform .18s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--pink); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.nav-cta,
.primary-btn,
.ghost-btn,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 7px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.nav-cta,
.primary-btn,
.submit-btn {
  border: 0;
  background: linear-gradient(135deg, #ff006d, #e4005c);
  box-shadow: 0 20px 64px rgba(255, 0, 109, .31);
}

.nav-cta { justify-self: end; min-width: 188px; }
.ghost-btn {
  border: 1px solid var(--pink-line);
  color: var(--pink);
  background: rgba(255, 0, 109, .07);
}

.nav-cta:hover,
.primary-btn:hover,
.ghost-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 78px rgba(255, 0, 109, .34);
}

.line-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-icon="verified"] svg { fill: currentColor; stroke: #050505; stroke-width: 2.35; }

.page-main {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 42px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(48px, 5.3vw, 78px);
  font-weight: 700;
  line-height: .92;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1;
}
h3 { margin-bottom: 8px; font-size: 18px; }
.intro {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.54;
}

.home-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  min-height: 600px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-frame,
.elfsight-frame,
.campaign-strip,
.page-rail,
.service-grid article,
.portrait-panel,
.inquiry-panel,
.process-grid article,
.analytics-profile,
.metrics-grid article,
.chart-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .062), rgba(255, 255, 255, .015)),
    var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025), 0 26px 84px rgba(0, 0, 0, .36);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-color: var(--pink-line);
  box-shadow: var(--shadow);
}

.creator-panel {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.creator-panel img,
.analytics-profile img {
  width: 112px;
  height: 112px;
  border: 3px solid var(--pink);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 0 44px rgba(255, 0, 109, .48);
}

.creator-panel h2,
.analytics-profile h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}

.creator-panel p,
.analytics-profile p { color: var(--muted); }

.social-row,
.social-circles {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-row .line-icon {
  width: 23px;
  height: 23px;
  color: var(--pink);
}

.hero-live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.hero-live-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 17%;
}

.hero-stats,
.pillars,
.metrics-grid,
.process-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

.hero-stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-stats p {
  margin: 0;
  padding: 0 10px;
  border-right: 1px solid var(--line);
}

.hero-stats p:last-child { border-right: 0; }
.hero-stats strong { display: block; font-size: clamp(28px, 3vw, 42px); }
.hero-stats span { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }

.pillars {
  grid-template-columns: repeat(4, 1fr);
  margin: 22px 0 40px;
}

.pillars article {
  min-height: 180px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.pillars article:first-child { border-left: 0; }
.pillars .line-icon,
.service-grid .line-icon,
.process-grid .line-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--pink);
  filter: drop-shadow(0 0 16px rgba(255, 0, 109, .45));
}
.pillars p,
.service-grid p,
.process-grid p { color: var(--muted); }

.feed-section { margin-top: 22px; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}
.section-head .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.section-head h2 { margin: 0; }
.section-head a,
.feed-toolbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: var(--pink);
  font-weight: 900;
}

.feed-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.elfsight-frame {
  position: relative;
  overflow: hidden;
  border-color: var(--pink-line);
  padding: 18px;
  box-shadow: var(--shadow);
}

.elfsight-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 0, 109, .15), transparent 34%);
}

.feed-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.feed-toolbar span,
.feed-toolbar strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.feed-toolbar strong {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.feed-toolbar .line-icon { width: 24px; height: 24px; color: var(--pink); }

.feed-preview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feed-preview-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 16%;
  background: #101014;
}

.instagram-board { grid-template-columns: repeat(3, 1fr); }
.reels-board { grid-template-columns: repeat(6, 1fr); }

.widget-mount {
  position: relative;
  min-height: 320px;
}

.campaign-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  padding: 30px;
  border-color: var(--pink-line);
  background:
    linear-gradient(90deg, rgba(255, 0, 109, .19), rgba(255, 255, 255, .025)),
    var(--panel-strong);
}
.campaign-strip h2 { max-width: 980px; margin: 0; }

.content-page {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: start;
}

.content-demo-page {
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 24px;
  align-items: start;
  min-width: 0;
}

.demo-rail {
  position: sticky;
  top: 104px;
  padding: 8px 4px 0 0;
}

.demo-rail h1 {
  max-width: 330px;
  font-size: clamp(40px, 3.35vw, 52px);
  line-height: .93;
  margin-bottom: 16px;
}

.demo-rail h1::first-line {
  color: #fff;
}

.demo-rail .intro {
  max-width: 330px;
  font-size: 15px;
  line-height: 1.52;
}

.demo-feature-list {
  display: grid;
  gap: 15px;
  margin: 22px 0;
}

.demo-feature-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: start;
}

.demo-feature-list .line-icon {
  width: 24px;
  height: 24px;
  color: var(--pink);
  filter: drop-shadow(0 0 10px rgba(255, 0, 109, .34));
}

.demo-feature-list h3 {
  margin-bottom: 4px;
}

.demo-feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.demo-rail .primary-btn,
.demo-rail .ghost-btn {
  margin-top: 10px;
}

.media-kit-panel {
  overflow: hidden;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012)),
    rgba(6, 6, 8, .9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025), 0 28px 90px rgba(0, 0, 0, .42);
}

.media-kit-head {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 410px);
  gap: 18px 28px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.kit-creator {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.kit-creator > div {
  min-width: 0;
}

.kit-creator img {
  width: 104px;
  height: 104px;
  border: 3px solid var(--pink);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 0 42px rgba(255, 0, 109, .44);
}

.kit-creator h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 3px;
  font-size: clamp(28px, 2vw, 34px);
  white-space: nowrap;
}

.creator-role {
  margin-bottom: 8px;
  color: var(--pink);
  font-weight: 900;
  white-space: nowrap;
}

.kit-creator p:not(.creator-role) {
  max-width: 440px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.kit-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
  width: 100%;
}

.kit-stats p {
  margin: 0;
  min-width: 0;
  padding: 0 12px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.kit-stats strong {
  display: block;
  font-size: 23px;
  line-height: 1;
}

.kit-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.kit-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.kit-actions .primary-btn,
.kit-actions .ghost-btn {
  flex: 1 1 168px;
  min-width: 0;
  padding-inline: 18px;
  white-space: nowrap;
}

.platform-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 16px 0 16px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.platform-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 150px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.platform-switch button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #e4005c);
  box-shadow: 0 12px 36px rgba(255, 0, 109, .25);
}

.platform-switch .line-icon {
  width: 20px;
  height: 20px;
}

.platform-feed {
  display: none;
}

.platform-feed.active {
  display: block;
}

.kit-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 10px;
}

.kit-section-title h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kit-section-title h2 span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.kit-section-title h2 span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}

.kit-section-title a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

.latest-post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.post-tile,
.reel-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #101014;
}

.post-tile {
  min-height: 172px;
}

.post-tile img,
.reel-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.post-tile::after,
.reel-grid article::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .84));
}

.post-tile b {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 7px 11px;
  border-radius: 5px;
  background: var(--pink);
  font-size: 11px;
}

.post-tile span,
.post-tile small,
.reel-grid span {
  position: absolute;
  z-index: 1;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 800;
}

.post-tile span {
  left: 12px;
  font-size: 12px;
}

.post-tile small {
  right: 12px;
  font-size: 12px;
}

.post-tile .line-icon,
.reel-grid .line-icon {
  width: 15px;
  height: 15px;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.reel-grid article {
  min-height: 106px;
}

.reel-grid span {
  left: 9px;
  bottom: 8px;
  font-size: 12px;
}

.tiktok-feature-grid .post-tile {
  min-height: 230px;
}

.kit-proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
}

.kit-proof-strip article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
}

.kit-proof-strip article + article {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.kit-proof-strip .line-icon {
  width: 27px;
  height: 27px;
  color: var(--pink);
}

.kit-proof-strip h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.kit-proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.page-rail {
  position: sticky;
  top: 104px;
  padding: 30px;
  border-color: transparent;
  background: rgba(0, 0, 0, .34);
  box-shadow: none;
}
.page-rail h1 { font-size: clamp(48px, 5vw, 78px); }
.rail-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}
.rail-list p {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}
.rail-list .line-icon { width: 25px; height: 25px; color: var(--pink); }
.full-btn { width: 100%; }

.content-stage {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.dominant-feed { padding: 20px; }
.service-grid {
  grid-template-columns: repeat(4, 1fr);
}
.service-grid article,
.process-grid article { padding: 26px; }

.contact-hero {
  display: grid;
  grid-template-columns: 300px minmax(330px, 440px) 1fr;
  gap: 30px;
  align-items: start;
}

.portrait-panel {
  overflow: hidden;
  border-color: var(--pink-line);
}
.portrait-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  object-fit: cover;
  object-position: center 15%;
}
.portrait-caption {
  padding: 18px;
  background: rgba(0, 0, 0, .76);
}
.portrait-caption strong { display: block; margin-bottom: 6px; }
.portrait-caption span { color: var(--muted); }

.contact-copy { padding-top: 12px; }
.contact-copy h1 { font-size: clamp(42px, 4.15vw, 60px); }

.campaign-strip h1 {
  font-size: clamp(42px, 4.5vw, 64px);
}
.contact-facts {
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-facts p {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 15px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.contact-facts p:last-child { border-bottom: 0; }
.contact-facts .line-icon { width: 27px; height: 27px; color: var(--pink); }

.social-circles {
  gap: 24px;
  padding-top: 4px;
}

.social-circles a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 42px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  color: var(--pink);
  background: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 0, 109, .3));
}

.social-circles a:hover {
  color: #fff;
}

.social-circles .line-icon { width: 29px; height: 29px; }

.inquiry-panel {
  padding: 30px;
  border-color: var(--pink-line);
  box-shadow: var(--shadow);
}
.form-title {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.form-title > .line-icon {
  width: 48px;
  height: 48px;
  color: var(--pink);
}
.form-title h2,
.form-title p { margin: 0; }
.form-title p { color: var(--muted); }

.creator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.creator-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}
.optional-note {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.creator-form .full { grid-column: 1 / -1; }
.creator-form input,
.creator-form select,
.creator-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: rgba(255, 255, 255, .045);
  outline: none;
}
.creator-form select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .85) 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(255, 0, 109, .08), rgba(255, 255, 255, .045));
  cursor: pointer;
}
.creator-form select:disabled {
  color: var(--quiet);
  cursor: not-allowed;
  opacity: .72;
}
.creator-form option {
  color: #111;
  background: #fff;
}
.creator-form input:focus,
.creator-form select:focus,
.creator-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 109, .16);
}
.creator-form textarea {
  min-height: 120px;
  padding-top: 15px;
  resize: vertical;
}
.submit-btn { width: 100%; min-height: 62px; cursor: pointer; }

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.analytics-page {
  display: grid;
  gap: 14px;
}
.analytics-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 16px;
  align-items: stretch;
}

.analytics-lead h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(40px, 3.65vw, 58px);
}

.analytics-lead .intro {
  max-width: 700px;
  font-size: 16px;
}

.analytics-proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 950px;
  margin-top: 28px;
}

.analytics-proof-points article {
  min-height: 118px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 0, 109, .11), rgba(255, 255, 255, .025)),
    rgba(10, 10, 13, .68);
}

.analytics-proof-points strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.analytics-proof-points span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.analytics-profile {
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  border-color: var(--pink-line);
}
.analytics-profile img {
  width: 86px;
  height: 86px;
  margin-bottom: 10px;
}

.analytics-profile h2 {
  justify-content: center;
  font-size: clamp(23px, 1.6vw, 28px);
  white-space: nowrap;
}

.analytics-profile button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 9px 14px;
  border: 1px solid var(--pink-line);
  border-radius: 7px;
  color: var(--pink);
  background: rgba(255, 0, 109, .06);
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}
.metrics-grid article {
  padding: 16px;
  text-align: center;
  border-color: var(--pink-line);
}
.metrics-grid .line-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  color: var(--pink);
}
.metrics-grid p { margin-bottom: 4px; color: var(--muted); font-weight: 800; }
.metrics-grid strong { display: block; font-size: clamp(27px, 2.7vw, 36px); line-height: 1; }
.metrics-grid small { color: var(--pink); font-weight: 900; }

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, .82fr);
  gap: 14px;
}
.chart-card {
  min-width: 0;
  min-height: 180px;
  padding: 17px;
}
.trend-card { grid-row: auto; }
.line-chart {
  width: 100%;
  height: 178px;
  margin-top: 8px;
}
.donut {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 10px auto;
  border-radius: 50%;
  background: conic-gradient(var(--pink) 0 74%, #9124ff 74% 95%, rgba(255, 255, 255, .16) 95% 100%);
  box-shadow: inset 0 0 0 32px #09090c;
}
.donut strong { font-size: 27px; }
.donut span { color: var(--muted); }
.legend p,
.bars p,
.table-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 9px 0;
  color: var(--muted);
}
.legend p {
  justify-content: flex-start;
  gap: 8px;
  font-weight: 800;
}
.legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}
.bars b {
  flex: 1;
  width: var(--bar);
  max-width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), #a50047);
}
.bars span { min-width: 84px; }
.table-list strong,
.bars strong { color: #fff; }

@media (max-width: 1500px) {
  .content-demo-page {
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    gap: 20px;
  }

  .demo-rail h1 {
    font-size: clamp(36px, 3.05vw, 48px);
  }

  .media-kit-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .kit-actions {
    grid-column: auto;
    justify-content: flex-start;
  }

  .kit-actions .primary-btn,
  .kit-actions .ghost-btn {
    flex: 0 1 210px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .nav-cta { justify-self: center; }
  .home-hero,
  .content-page,
  .content-demo-page,
  .contact-hero,
  .analytics-lead,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .demo-rail {
    position: relative;
    top: auto;
    padding: 0;
  }
  .demo-rail h1,
  .demo-rail .intro {
    max-width: 760px;
  }
  .demo-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-kit-head {
    grid-template-columns: 1fr;
  }
  .kit-stats {
    min-width: 0;
    width: 100%;
  }
  .kit-actions {
    grid-column: auto;
    justify-content: flex-start;
  }
  .page-rail {
    position: relative;
    top: auto;
    padding: 0;
    background: transparent;
  }
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trend-card {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .pillars,
  .service-grid,
  .process-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feed-duo { grid-template-columns: 1fr; }
  .latest-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reel-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .portrait-panel img { max-height: 560px; }
}

@media (max-width: 920px) {
  .analytics-lead,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .analytics-profile {
    justify-items: start;
    text-align: left;
  }

  .analytics-profile h2 {
    justify-content: flex-start;
  }

  .analytics-proof-points {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header,
  .page-main {
    width: min(calc(100% - 24px), var(--max));
  }
  .site-header {
    position: relative;
    top: auto;
    padding-top: 14px;
  }
  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px 20px;
  }
  .main-nav a { font-size: 14px; }
  .nav-cta { width: 100%; }
  .page-main { padding-top: 26px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(24px, 8vw, 34px); }
  .home-hero { min-height: auto; }
  .creator-panel,
  .kit-creator,
  .kit-stats,
  .kit-proof-strip,
  .hero-stats,
  .campaign-strip,
  .form-title,
  .creator-form,
  .section-head,
  .pillars,
  .service-grid,
  .process-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .content-demo-page {
    gap: 20px;
  }
  .demo-rail h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 52px);
  }
  .demo-rail .intro {
    max-width: 100%;
    font-size: 15px;
  }
  .demo-feature-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .demo-feature-list article,
  .kit-proof-strip article {
    grid-template-columns: 30px 1fr;
  }
  .media-kit-panel {
    padding: 15px;
  }
  .media-kit-head {
    gap: 15px;
  }
  .kit-creator {
    justify-items: center;
    text-align: center;
  }
  .kit-creator h2 {
    justify-content: center;
    white-space: normal;
  }
  .creator-role { white-space: normal; }
  .kit-creator p:not(.creator-role) {
    max-width: none;
  }
  .kit-creator .social-row {
    justify-content: center;
  }
  .kit-stats p {
    padding: 11px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .kit-stats p:first-child {
    border-top: 0;
  }
  .kit-actions {
    flex-direction: column;
  }
  .kit-actions .primary-btn,
  .kit-actions .ghost-btn,
  .platform-switch,
  .platform-switch button {
    width: 100%;
  }
  .platform-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .kit-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .kit-section-title h2 {
    align-items: flex-start;
    flex-direction: column;
  }
  .latest-post-grid,
  .reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-tile,
  .tiktok-feature-grid .post-tile {
    min-height: 202px;
  }
  .reel-grid article {
    min-height: 154px;
  }
  .kit-proof-strip article + article {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .creator-panel { text-align: center; justify-items: center; }
  .hero-live-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 168px;
  }
  .hero-live-grid img:first-child { grid-row: span 1; }
  .hero-stats p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 14px;
  }
  .hero-stats p:last-child { border-bottom: 0; }
  .pillars article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0;
  }
  .pillars article:first-child { border-top: 0; }
  .feed-preview-grid,
  .instagram-board,
  .reels-board {
    grid-template-columns: repeat(2, 1fr);
  }
  .feed-preview-grid img,
  .instagram-board img,
  .reels-board img { min-height: 0; }
  .feed-toolbar { align-items: flex-start; flex-direction: column; }
  .campaign-strip .primary-btn,
  .button-row .primary-btn,
  .button-row .ghost-btn { width: 100%; }
  .portrait-panel img { min-height: 420px; }
  .social-circles { flex-wrap: wrap; gap: 20px; }

  .analytics-page { gap: 12px; }
  .analytics-lead h1 {
    font-size: clamp(38px, 11vw, 52px);
  }
  .analytics-proof-points {
    margin-top: 20px;
    gap: 10px;
  }
  .analytics-proof-points article {
    min-height: 0;
    padding: 14px;
  }
  .analytics-profile {
    padding: 16px;
  }
  .metrics-grid article,
  .chart-card {
    padding: 15px;
  }
  .line-chart {
    height: 180px;
  }
  .donut {
    width: 118px;
    height: 118px;
    box-shadow: inset 0 0 0 28px #09090c;
  }
}

@media (max-width: 430px) {
  .site-header,
  .page-main {
    width: min(calc(100% - 20px), var(--max));
  }

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

  .feed-preview-grid,
  .instagram-board,
  .reels-board,
  .latest-post-grid,
  .reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feed-preview-grid img,
  .instagram-board img,
  .reels-board img { min-height: 0; }

  .post-tile,
  .tiktok-feature-grid .post-tile {
    min-height: 184px;
  }

  .reel-grid article {
    min-height: 140px;
  }

  .platform-switch {
    grid-template-columns: 1fr;
  }

  .kit-stats strong {
    font-size: 21px;
  }

  .bars p,
  .table-list p {
    gap: 8px;
  }
}
