:root {
  color-scheme: dark;
  --font:
    "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --display:
    "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #000000;
  --panel: #151719;
  --panel-soft: #202226;
  --text: #f5f6fb;
  --muted: #8f939d;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #5547f5;
  --purple: #b65cff;
  --blue: #4b96ff;
  --red: #ff5a66;
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.main-nav,
.platform-row,
.socials,
.footer-support {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 24px;
  height: 24px;
}

.main-nav {
  gap: clamp(28px, 4.6vw, 72px);
  color: #f3f4f8;
  font-size: 13px;
  font-weight: 650;
}

.header-actions {
  justify-content: end;
  gap: 18px;
  font-size: 13px;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #070914;
  color: #9aa5ff;
}

.language-switcher {
  position: relative;
  margin-bottom: -10px;
  padding-bottom: 10px;
}

.language-switcher::after {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  width: 160px;
  height: 12px;
  content: "";
}

.language-switcher .icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: auto;
  min-width: 54px;
  padding-inline: 9px;
  cursor: pointer;
}

.language-switcher b {
  color: #d8dcff;
  font-size: 10px;
  font-weight: 750;
}

.language-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  display: none;
  min-width: 136px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(12, 13, 18, 0.96);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 4px;
}

.language-switcher.is-open::after,
.language-switcher:hover::after,
.language-switcher:focus-within::after {
  display: block;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu a {
  display: flex;
  align-items: center;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #c7cbd6;
  cursor: pointer;
  text-align: left;
  padding-inline: 10px;
  text-decoration: none;
}

.language-menu a.is-active,
.language-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.login-link {
  color: #c7cbd6;
}

.button,
.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 34px;
  border-radius: 10px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
}

.button-small {
  min-height: 34px;
  padding: 0 20px;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 8% 0%, rgba(95, 45, 12, 0.34), transparent 28%),
    radial-gradient(circle at 50% 33%, rgba(29, 54, 93, 0.4), transparent 28%),
    radial-gradient(circle at 83% 36%, rgba(1, 75, 59, 0.44), transparent 34%),
    #020303;
}

.hero-glow {
  position: absolute;
  inset: 28% 15% auto;
  height: 420px;
  z-index: -2;
  background: radial-gradient(circle, rgba(12, 92, 76, 0.52), transparent 62%);
  filter: blur(30px);
}

.hero-copy {
  width: min(650px, calc(100% - 48px));
  text-align: center;
  transform: translateY(-18px);
}

.hero h1,
.section-heading h2,
.pricing-section h2,
.faq-section h2,
.cta-section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 62px);
}

.hero p {
  max-width: 520px;
  margin: 24px auto 34px;
  color: #c1c5cf;
  font-size: 16px;
  line-height: 1.9;
}

.media-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

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

.hero-float-one {
  top: 92px;
  left: 24%;
  width: 132px;
  height: 178px;
}

.hero-float-two {
  top: 345px;
  left: 10%;
  width: 194px;
  height: 250px;
}

.hero-float-three {
  top: 132px;
  right: 8%;
  width: 340px;
  height: 186px;
}

.hero-float-four {
  right: 19%;
  bottom: 128px;
  width: 142px;
  height: 210px;
}

.hero-float-five {
  left: 33%;
  bottom: 206px;
  width: 98px;
  height: 126px;
}

.model-strip,
.section,
.cta-section {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.model-strip {
  margin-top: 36px;
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  align-items: center;
  padding: 38px 58px;
  border: 1px solid rgba(142, 103, 255, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(18, 17, 20, 0.62)),
    radial-gradient(circle at 85% 50%, rgba(118, 73, 39, 0.6), transparent 44%),
    #08080a;
}

.model-strip h2 {
  margin: 0 0 12px;
  font-size: 44px;
  letter-spacing: 0;
}

.model-strip p,
.model-strip dt {
  color: #c9c2ff;
  font-weight: 800;
}

.model-strip dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  gap: 26px;
  text-align: center;
}

.model-strip dd {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.trusted {
  padding: 130px 24px 76px;
  text-align: center;
}

.trusted p {
  margin: 0 0 26px;
  color: #666a72;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 850;
}

.platform-row {
  position: relative;
  width: min(1060px, 100%);
  margin-inline: auto;
  overflow: hidden;
  justify-content: flex-start;
  gap: 0;
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.platform-track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
  min-width: max-content;
  padding-right: 18px;
  animation: marqueeBrands 24s linear infinite;
}

.platform-row:hover .platform-track {
  animation-play-state: paused;
}

.platform-chip {
  --chip-color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--chip-color);
  font-size: 23px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.platform-chip i {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-style: normal;
}

.platform-chip.tiktok {
  --chip-color: #ffffff;
}

.platform-chip.tiktok i::before {
  content: "T";
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
  text-shadow:
    -2px 0 #25f4ee,
    2px 0 #fe2c55;
}

.platform-chip.youtube {
  --chip-color: #ffffff;
}

.platform-chip.youtube i {
  width: 34px;
  border-radius: 9px;
  background: #ff0033;
}

.platform-chip.youtube i::before {
  content: "";
  margin-left: 2px;
  border-left: 9px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.platform-chip.facebook {
  --chip-color: #eaf1ff;
}

.platform-chip.facebook i {
  border-radius: 999px;
  background: #1877f2;
}

.platform-chip.facebook i::before {
  content: "f";
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.platform-chip.instagram {
  --chip-color: #ffffff;
}

.platform-chip.instagram i {
  background:
    radial-gradient(circle at 68% 28%, #ffd166 0 9%, transparent 10%),
    radial-gradient(circle at 30% 110%, #ffdc80 0 20%, transparent 42%),
    linear-gradient(135deg, #405de6, #833ab4 34%, #e1306c 64%, #fd1d1d 82%, #fcb045);
}

.platform-chip.instagram i::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.platform-chip.instagram i::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
}

.platform-chip.xhs {
  --chip-color: #fff4f5;
}

.platform-chip.xhs i {
  border-radius: 7px;
  background: #ff2442;
  color: #ffffff;
}

.platform-chip.xhs i::before {
  content: "R";
  font-size: 17px;
  font-weight: 950;
}

.platform-chip.lemon8 {
  --chip-color: #fffde9;
}

.platform-chip.lemon8 i {
  border-radius: 50% 50% 46% 50%;
  background:
    radial-gradient(circle at 38% 35%, rgba(255, 255, 255, 0.86) 0 10%, transparent 11%),
    linear-gradient(135deg, #f5ff3d, #c8f52a 48%, #6fdc52);
  transform: rotate(-10deg);
}

.platform-chip.lemon8 i::before {
  content: "8";
  color: #101210;
  font-size: 18px;
  font-weight: 950;
  transform: rotate(10deg);
}

.platform-chip.amazon {
  --chip-color: #ffffff;
}

.platform-chip.amazon i {
  color: #ff9900;
}

.platform-chip.amazon i::before {
  content: "a";
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.platform-chip.amazon i::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 4px;
  bottom: 3px;
  height: 7px;
  border-bottom: 2px solid #ff9900;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.section {
  padding: 78px 0;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading h2 span {
  background: linear-gradient(90deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p {
  max-width: 720px;
  margin: 24px auto 0;
  color: #b8bbc4;
  font-size: 18px;
  line-height: 1.7;
}

.compact h2 {
  font-size: 32px;
}

.compact p {
  margin-top: 18px;
  font-size: 17px;
  color: #858994;
  font-weight: 650;
}

.style-grid,
.benefit-grid,
.showcase-grid,
.quote-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.style-card,
.video-card {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 10px;
  background: #151515;
}

.style-card[role="button"],
.video-card[role="button"] {
  cursor: pointer;
}

.style-card video,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-card::after,
.video-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.style-card div,
.video-card p,
.video-card .video-category {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
}

.style-card div {
  bottom: 18px;
}

.style-card span {
  display: block;
  color: #c9c2ff;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.style-card strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 18px;
}

.feature-panel,
.benefit-grid article,
.pricing-card,
.quote-grid article {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.feature-panel {
  padding: 44px 50px;
  min-height: 520px;
}

.feature-panel h3 {
  margin: 0 0 18px;
  font-size: 26px;
}

.feature-panel p {
  max-width: 620px;
  color: #e3e4e8;
  line-height: 1.7;
}

.replica-flow {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 42px;
  align-items: center;
  margin-top: 58px;
}

.phone-card {
  position: relative;
  aspect-ratio: 0.56;
  overflow: hidden;
  border: 3px solid rgba(135, 125, 255, 0.58);
  border-radius: 12px;
}

.phone-card[role="button"] {
  cursor: pointer;
}

.phone-card[role="button"]:focus-visible {
  outline: 2px solid rgba(205, 199, 255, 0.92);
  outline-offset: 5px;
}

.phone-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-card .phone-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(124, 111, 255, 0.72);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition:
    transform 0.28s ease,
    background 0.28s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.video-card[role="button"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(124, 111, 255, 0.74);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    background 0.24s ease;
  backdrop-filter: blur(12px);
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 999px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
  pointer-events: none;
}

.video-card-play::before {
  content: "";
  width: 0;
  height: 0;
  margin: 0 0 5px 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.video-card[role="button"]:hover::before,
.video-card[role="button"]:focus-visible::before,
.video-card[role="button"]:hover .video-card-play,
.video-card[role="button"]:focus-visible .video-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.phone-card .phone-play::before {
  content: "";
  width: 0;
  height: 0;
  margin: 0 0 5px 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.phone-card:hover .phone-play,
.phone-card:focus-visible .phone-play {
  background: rgba(124, 111, 255, 0.86);
  transform: translate(-50%, -50%) scale(1.08);
}

.analysis-card {
  display: grid;
  place-items: center;
  min-height: 165px;
  border: 1px solid rgba(120, 108, 255, 0.8);
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
}

.analysis-card .analysis-title {
  align-self: end;
  max-width: 130px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.analysis-visual {
  align-self: start;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100px;
  padding-top: 14px;
}

.analysis-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 52px;
}

.analysis-bars i {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7b73ff, #4643ff);
  animation: analysisPulse 1.25s ease-in-out infinite;
}

.analysis-bars i:nth-child(1) {
  height: 22px;
  animation-delay: -0.36s;
}

.analysis-bars i:nth-child(2) {
  height: 34px;
  animation-delay: -0.24s;
}

.analysis-bars i:nth-child(3) {
  height: 44px;
  animation-delay: -0.12s;
}

.analysis-bars i:nth-child(4) {
  height: 52px;
}

.analysis-bars i:nth-child(5) {
  height: 40px;
  animation-delay: -0.18s;
}

.analysis-bars i:nth-child(6) {
  height: 32px;
  animation-delay: -0.3s;
}

.analysis-bars i:nth-child(7) {
  height: 26px;
  animation-delay: -0.42s;
}

.analysis-visual b {
  display: block;
  width: 84px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c63ff, #4a48ff);
}

.creation-video-frame {
  position: relative;
  margin-top: 70px;
  margin-inline: -22px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(#ffffff, #fff2ff);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.creation-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.creation-flow {
  margin-top: 70px;
  min-height: 240px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: 12px;
  background: linear-gradient(#ffffff, #fff2ff);
  color: #171821;
  font-size: 12px;
  font-weight: 800;
}

.creation-flow div {
  min-height: 90px;
  display: grid;
  place-items: center;
  border: 2px solid #b4a8ff;
  border-radius: 10px;
  text-align: center;
}

.creation-flow b {
  color: #8a77ff;
  font-size: 28px;
}

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

.benefit-grid article {
  display: grid;
  justify-items: center;
  grid-template-rows: 48px 64px 1fr;
  align-items: start;
  min-height: 240px;
  padding: 42px 34px 30px;
  text-align: center;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}

.benefit-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.benefit-grid h3 {
  align-self: center;
  margin: 0;
  max-width: 240px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
}

.benefit-grid p {
  margin: 0;
  max-width: 260px;
  align-self: start;
  color: #8d919b;
  font-size: 15px;
  line-height: 1.35;
}

.amazon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 140px;
  gap: 92px;
  align-items: start;
  margin-top: 72px;
}

.amazon-coming-soon {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  padding: clamp(48px, 7vw, 86px) clamp(24px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(98, 85, 255, 0.24), transparent 34%),
    radial-gradient(circle at 84% 90%, rgba(37, 212, 177, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #101216;
  text-align: center;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.amazon-coming-soon::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  pointer-events: none;
}

.amazon-coming-soon span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(205, 199, 255, 0.32);
  border-radius: 999px;
  background: rgba(137, 131, 255, 0.12);
  color: #d7d2ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.amazon-coming-soon h3 {
  max-width: 680px;
  margin: 22px auto 0;
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
}

.amazon-coming-soon p {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(184, 188, 196, 0.88);
  font-size: 17px;
  line-height: 1.65;
}

.browser-card {
  min-height: 290px;
  padding: 38px 44px;
  border-radius: 10px;
  background: #ffffff;
  color: #151823;
}

.amazon-video-card {
  aspect-ratio: 16 / 10;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  background: #05060a;
}

.amazon-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.browser-bar {
  height: 20px;
  margin-bottom: 38px;
  border-radius: 5px 5px 0 0;
  background: #111827;
}

.browser-card h3 {
  margin: 0 0 12px;
  color: #4f46e5;
}

.browser-card span {
  display: block;
  height: 16px;
  margin-top: 18px;
  border-radius: 999px;
  background: #e8edf4;
}

.browser-card span:nth-of-type(2) {
  width: 72%;
}

.browser-card span:nth-of-type(3) {
  width: 58%;
}

.thumb-stack {
  display: grid;
  gap: 16px;
}

.thumb-stack video {
  width: 140px;
  aspect-ratio: 1.4;
  object-fit: cover;
  border: 8px solid #ffffff;
  border-radius: 8px;
}

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

.video-card .video-category {
  top: 18px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(54, 59, 66, 0.7);
  color: #ffffff;
  font-size: 12px;
}

.video-card p {
  bottom: 30px;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.35;
}

.see-more {
  display: block;
  margin-top: 56px;
  color: #848892;
  text-align: center;
}

.testimonials {
  margin-top: 80px;
  padding: 76px 24px 112px;
  background: #151719;
}

.testimonials .section-heading h2 {
  font-size: clamp(34px, 3.2vw, 46px);
}

.quote-grid {
  width: min(1290px, 100%);
  grid-template-columns: 0.86fr 1.18fr 0.86fr;
  align-items: end;
  gap: 36px;
  margin: 78px auto 0;
}

.quote-grid article {
  min-height: 266px;
  padding: 30px 24px 24px;
  border: 1px solid rgba(198, 202, 213, 0.42);
  border-radius: 24px;
  background: #36383c;
  color: #ffffff;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quote-featured {
  min-height: 302px !important;
  padding: 46px 28px 28px !important;
}

.quote-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.8;
}

.quote-grid footer {
  display: flex;
  align-items: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(214, 216, 224, 0.66);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.quote-grid footer span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 999px;
  background: #5b4af6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.quote-featured footer span {
  background: #48d4a7;
}

.quote-grid article:nth-child(3) footer span {
  background: #bd49e3;
}

.pricing-section {
  position: relative;
  padding-top: 112px;
}

.billing-toggle {
  width: fit-content;
  margin: 36px auto 52px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.billing-toggle button,
.tier-tabs button {
  border: 0;
  cursor: pointer;
}

.billing-toggle button {
  min-width: 188px;
  min-height: 42px;
  border-radius: 10px;
  background: transparent;
  color: #8f96a5;
  font-weight: 650;
}

.billing-toggle button.active,
.tier-tabs button.active {
  background: rgba(255, 255, 255, 0.95);
  color: #191d27;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 18px;
}

.pricing-card {
  position: relative;
  padding: 30px 24px 34px;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #111318;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card.featured {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #111318;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card h3 {
  margin: 0 0 18px;
  color: #f6f7fb;
  font-size: 19px;
  font-weight: 650;
}

.pricing-card > strong {
  display: block;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0;
}

.value-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 11px;
  border: 1px solid rgba(137, 131, 255, 0.35);
  border-radius: 999px;
  background: #1b1d25;
  color: #d7d2ff;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.tier-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 18px 0 24px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.tier-tabs button {
  min-height: 36px;
  border-radius: 9px;
  background: transparent;
  color: #8f96a5;
  font-weight: 650;
}

.tier-tabs.single-tier {
  grid-template-columns: 1fr;
}

.price-stack .discount {
  display: inline-flex;
  width: fit-content;
  min-width: 120px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.price-stack .discount[hidden] {
  display: none;
}

.price-stack p {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 9px 0 4px;
}

.price-stack small {
  font-size: 24px;
  font-weight: 750;
}

.price-stack strong {
  font-size: clamp(42px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.price-stack em {
  color: #d7dbe6;
  font-style: normal;
  font-size: 19px;
  font-weight: 650;
}

.price-stack del {
  color: #8d939f;
  font-size: 15px;
  font-weight: 550;
}

.credit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  margin: 24px 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 16px;
  font-weight: 650;
}

.credit-pill small {
  margin-left: auto;
  color: #818897;
  font-size: 11px;
  font-weight: 500;
}

.buy-button {
  width: 100%;
  margin-bottom: 26px;
  border-radius: 10px;
}

.pricing-card .buy-button {
  min-height: 50px;
  border: 1px solid rgba(147, 139, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #6f6cff 0%, #352fff 100%);
  color: #ffffff;
  font-weight: 760;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 32px rgba(83, 72, 255, 0.36);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pricing-card .buy-button:hover {
  transform: translateY(-1px);
  border-color: rgba(205, 199, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #7d78ff 0%, #4338ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 42px rgba(83, 72, 255, 0.48);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.pricing-card li.muted {
  color: #8b8f99;
}

.payment-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 1040px);
  margin: 22px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(85, 71, 245, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(15, 17, 22, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 62px rgba(0, 0, 0, 0.26);
}

.payment-trust-copy {
  display: grid;
  gap: 5px;
  min-width: 210px;
}

.payment-trust-copy span {
  color: #8f96a5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-trust-copy strong {
  color: #f6f7fb;
  font-size: 15px;
  font-weight: 750;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 104px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  color: #141821;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 28px rgba(0, 0, 0, 0.2);
}

.payment-badge small {
  color: #5f6672;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.payment-card b {
  color: #203a91;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.payment-alipay {
  background: linear-gradient(180deg, #ffffff, #edf6ff);
  color: #1677ff;
}

.payment-apple {
  background: linear-gradient(180deg, #ffffff, #f1f2f5);
  color: #111318;
}

.payment-google b {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: conic-gradient(from -40deg, #4285f4 0 28%, #34a853 28% 48%, #fbbc05 48% 68%, #ea4335 68% 100%);
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.cta-section {
  margin-top: 110px;
  padding: clamp(62px, 7vw, 88px) 40px;
  border: 1px solid rgba(52, 46, 180, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle, rgba(52, 46, 180, 0.12) 2px, transparent 2.5px) 0 0 /
      22px 22px,
    #c5c0ff;
  color: #1200a8;
  text-align: center;
  box-shadow:
    0 22px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-section h2 {
  max-width: 980px;
  margin-inline: auto;
  color: #1200a8;
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 650;
  line-height: 1.1;
}

.cta-section p {
  max-width: 680px;
  margin: 16px auto 34px;
  color: rgba(18, 0, 168, 0.72);
  font-size: 17px;
  line-height: 1.45;
}

.button-dark {
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #050505;
  box-shadow:
    0 0 0 3px #00d9ff,
    0 0 0 5px #ff5877,
    0 18px 42px rgba(0, 0, 0, 0.28);
  font-weight: 750;
}

.button-dark span {
  margin-left: 12px;
}

.faq-section {
  width: min(1080px, calc(100% - 48px));
  padding-top: 96px;
  padding-bottom: 112px;
}

.faq-section h2 {
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 750;
}

.faq-section details {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px 0 24px;
}

.faq-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: #ffffff;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.3;
  list-style: none;
}

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

.faq-section summary::after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-right: 3px solid rgba(255, 255, 255, 0.58);
  border-bottom: 3px solid rgba(255, 255, 255, 0.58);
  transform: rotate(45deg);
}

.faq-section details:not([open]) summary::after {
  transform: rotate(-45deg);
}

.faq-section p {
  max-width: 1020px;
  margin: 16px 0 0;
  color: #bfc3cc;
  font-size: 16px;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 170px 150px 240px;
  gap: clamp(48px, 8vw, 120px);
  padding: 58px 44px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #191d1f;
}

.footer-brand {
  display: grid;
  gap: 32px;
  align-content: start;
}

.footer-brand .brand {
  width: fit-content;
}

.footer-brand .brand img {
  width: 44px;
  height: 44px;
}

.footer-brand .brand span {
  font-size: 24px;
}

.footer-powered {
  display: inline-block;
  margin-left: 10px;
  color: #c8ced8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: inherit;
}

.socials {
  gap: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #ffffff;
  color: #101318 !important;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-1px);
  background: #f3f5ff;
}

.socials a:nth-child(1) {
  background: #1877f2;
  color: #ffffff !important;
}

.socials a:nth-child(2) {
  background: #000000;
  color: #ffffff !important;
}

.socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.site-footer nav {
  display: grid;
  gap: 15px;
  align-content: start;
}

.site-footer strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 650;
}

.site-footer a,
.footer-support {
  color: #b8bcc4;
}

.site-footer a {
  font-size: 13px;
}

.footer-support {
  align-items: start;
  flex-direction: column;
  gap: 13px;
}

.discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(139, 151, 255, 0.72);
  border-radius: 11px;
  background: #5865f2;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 750;
}

.discord svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.wechat-qr-card {
  display: grid;
  gap: 10px;
  width: 168px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.wechat-qr-copy {
  display: grid;
  gap: 3px;
}

.wechat-qr-copy strong {
  color: #111318;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.wechat-qr-copy span {
  color: #6d737c;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.wechat-qr-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 9px;
}

.footer-support small {
  margin-top: 12px;
  color: #777d87;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8a8f98;
}

.footer-bottom small,
.footer-bottom a {
  color: #8a8f98;
  font-size: 11px;
}

.footer-bottom > span {
  display: flex;
  gap: 42px;
}

.tiktok-compliance-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(85, 71, 245, 0.2), transparent 34%),
    #000000;
}

.tiktok-compliance-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 110px;
}

.tiktok-compliance-hero {
  display: grid;
  gap: 28px;
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.tiktok-compliance-hero .eyebrow {
  margin: 0 auto;
}

.tiktok-compliance-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.tiktok-compliance-hero p {
  margin: 0 auto;
  max-width: 760px;
  color: #b8bcc8;
  font-size: 18px;
  line-height: 1.7;
}

.compliance-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 58px;
}

.compliance-flow span {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(139, 151, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #eef0ff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

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

.compliance-card {
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
}

.compliance-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0;
}

.compliance-card p,
.compliance-card li {
  color: #b9bdc7;
  font-size: 15px;
  line-height: 1.72;
}

.compliance-card p {
  margin: 0;
}

.compliance-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.compliance-card strong {
  color: #ffffff;
}

.compliance-card.wide {
  grid-column: 1 / -1;
}

.compliance-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.blog-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(85, 71, 245, 0.16), transparent 32%),
    radial-gradient(circle at 80% 8%, rgba(35, 169, 255, 0.1), transparent 28%),
    #000000;
}

.blog-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 106px;
}

.blog-hero {
  display: grid;
  gap: 20px;
  max-width: 840px;
  margin: 0 auto 54px;
  text-align: center;
}

.blog-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-hero p {
  margin: 0 auto;
  max-width: 720px;
  color: #aeb4c2;
  font-size: 17px;
  line-height: 1.68;
}

.blog-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
}

.blog-category-card,
.blog-toc,
.share-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.blog-sidebar strong,
.blog-toc strong,
.share-card strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-category-card a,
.blog-toc a {
  display: block;
  margin-top: 12px;
  color: #aeb4c2;
  font-size: 13px;
  line-height: 1.45;
}

.blog-category-card a.is-active,
.blog-category-card a:hover,
.blog-toc a:hover {
  color: #ffffff;
}

.blog-category-card small {
  display: block;
  margin-top: 18px;
  color: #7c8391;
  line-height: 1.5;
}

.blog-category-group {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

.blog-category-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.blog-category-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  color: #f3f4f8;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.blog-category-group summary::-webkit-details-marker {
  display: none;
}

.blog-category-group summary::after {
  content: "+";
  color: #8b7dff;
  font-size: 16px;
  font-weight: 900;
}

.blog-category-group[open] summary::after {
  content: "−";
}

.blog-category-group .blog-article-link {
  margin: 8px 0 0 10px;
  padding-left: 12px;
  border-left: 2px solid rgba(139, 125, 255, 0.5);
  color: #cfd3ff;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 28px;
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(85, 71, 245, 0.11));
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 151, 255, 0.42);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(85, 71, 245, 0.16));
}

.blog-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.16;
}

.blog-card p {
  margin: 0 0 18px;
  color: #aeb4c2;
  font-size: 14px;
  line-height: 1.62;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #858c9b;
  font-size: 12px;
  flex-wrap: wrap;
}

.blog-meta b {
  color: #ffffff;
}

.blog-thumb,
.article-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 151, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(26, 29, 63, 0.98), rgba(7, 10, 25, 0.98)),
    #101424;
}

.blog-thumb {
  min-height: 132px;
}

.blog-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

.article-visual::before {
  content: "BLUBO AI";
  position: absolute;
  top: 18px;
  left: 18px;
  color: #d6cbff;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
}

.article-visual::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 46%;
  height: 38%;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(85, 71, 245, 0.9), rgba(75, 150, 255, 0.75)),
    #5547f5;
  box-shadow:
    -58px -34px 0 rgba(255, 255, 255, 0.08),
    -30px 24px 0 rgba(255, 255, 255, 0.06);
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  gap: 56px;
  align-items: start;
  justify-content: center;
}

.article-content {
  color: #c1c6d1;
}

.article-content h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
}

.article-content h2 {
  margin: 46px 0 14px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.2;
}

.article-content h3 {
  margin: 30px 0 10px;
  color: #ffffff;
  font-size: 20px;
}

.article-content p,
.article-content li {
  color: #c1c6d1;
  font-size: 16px;
  line-height: 1.78;
}

.article-content ul,
.article-content ol {
  padding-left: 22px;
}

.article-visual {
  min-height: 430px;
  margin: 34px 0;
}

.article-visual-grid {
  position: absolute;
  inset: 74px 22px 22px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.article-visual-grid span {
  border: 1px solid rgba(139, 151, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.article-image {
  display: block;
  width: 100%;
  margin: 34px 0;
  border: 1px solid rgba(139, 151, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.share-icons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.share-icons a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-float {
    opacity: 0.45;
    transform: scale(0.72);
  }

  .hero-float-one,
  .hero-float-two {
    left: 2%;
  }

  .hero-float-three,
  .hero-float-four {
    right: 2%;
  }

  .model-strip,
  .split-feature,
  .amazon-grid,
  .quote-grid,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    width: min(560px, 100%);
    gap: 18px;
    align-items: stretch;
  }

  .quote-grid article,
  .quote-featured {
    min-height: auto !important;
  }

  .model-strip dl,
  .style-grid,
  .benefit-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-strip,
  .feature-panel {
    padding: 30px;
  }

  .site-footer {
    gap: 34px;
    padding-inline: 26px;
  }

  .payment-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-methods {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom > span {
    gap: 20px;
  }

  .compliance-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .blog-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 62px;
    padding-inline: 14px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    min-height: 36px;
    padding-right: 10px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .brand span {
    font-size: 15px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .login-link {
    display: none;
  }

  .header-actions .icon-button {
    display: inline-flex;
  }

  .button-small {
    min-height: 34px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .hero-float {
    display: none;
  }

  .trusted {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .trusted p {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .why-section {
    padding-top: 28px;
  }

  .platform-row {
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .platform-track {
    gap: 10px;
    padding-right: 10px;
    animation-duration: 20s;
  }

  .platform-chip {
    min-height: 44px;
    padding: 0 15px;
    gap: 8px;
    font-size: 17px;
  }

  .platform-chip i {
    width: 24px;
    height: 24px;
  }

  .platform-chip.youtube i {
    width: 30px;
  }

  .style-grid,
  .benefit-grid,
  .showcase-grid,
  .model-strip dl {
    grid-template-columns: 1fr;
  }

  .payment-trust {
    margin-top: 18px;
    padding: 16px;
  }

  .payment-trust-copy {
    min-width: 0;
  }

  .payment-methods {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-badge {
    min-width: 0;
    padding-inline: 10px;
  }

  .styles-section {
    padding-top: 54px;
  }

  .styles-section .compact {
    text-align: center;
  }

  .styles-section .compact h2 {
    font-size: 27px;
  }

  .styles-section .compact p {
    font-size: 15px;
  }

  .styles-section .style-grid {
    display: grid;
    grid-auto-columns: minmax(230px, 72vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -18px;
    padding-inline: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .styles-section .style-grid::-webkit-scrollbar {
    display: none;
  }

  .styles-section .style-card {
    scroll-snap-align: center;
  }

  .creation-flow {
    grid-template-columns: 1fr;
  }

  .replica-flow {
    grid-template-columns: 0.9fr 0.78fr 0.9fr;
    gap: 10px;
    margin-top: 34px;
  }

  .feature-panel {
    min-height: auto;
  }

  .analysis-card {
    min-height: 118px;
  }

  .analysis-card .analysis-title {
    max-width: 92px;
    font-size: 11px;
  }

  .analysis-visual {
    width: 72px;
    gap: 9px;
    padding-top: 8px;
  }

  .analysis-bars {
    gap: 4px;
    height: 36px;
    transform: scale(0.72);
  }

  .analysis-bars i {
    width: 5px;
  }

  .analysis-visual b {
    width: 62px;
    height: 4px;
  }

  .creation-video-frame {
    margin-top: 34px;
  }

  .creation-flow b {
    transform: rotate(90deg);
  }
}

/* Refined visual system */
.site-header {
  min-height: 72px;
  padding-inline: clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(7, 8, 13, 0.84), rgba(3, 4, 7, 0.58));
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.main-nav {
  gap: 4px;
  min-height: 42px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 246, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 34px rgba(0, 0, 0, 0.18);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.brand span {
  font-family: var(--display);
  font-size: 17px;
}

.brand {
  width: fit-content;
  min-height: 40px;
  padding: 5px 12px 5px 6px;
  border-radius: 999px;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.brand:hover {
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.brand img {
  width: 30px;
  height: 30px;
}

.header-actions {
  gap: 12px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(213, 217, 255, 0.88);
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.icon-button:hover {
  border-color: rgba(139, 125, 255, 0.46);
  background: rgba(139, 125, 255, 0.12);
  color: #ffffff;
}

.login-link {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: rgba(226, 229, 239, 0.76);
  font-weight: 800;
}

.login-link:hover {
  color: #ffffff;
}

html[data-auth-state="logged-in"] .header-actions > .login-link,
html[data-auth-state="logged-in"] .header-actions > a[href*="register"],
.header-actions .auth-guest-hidden {
  display: none !important;
}

html[data-auth-state="guest"] .header-actions [data-auth-cta] {
  display: none !important;
}

.button-small {
  min-height: 36px;
  padding-inline: 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #6c5cff, #5142f2);
  box-shadow: 0 10px 28px rgba(85, 71, 245, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.button-small:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 14px 34px rgba(85, 71, 245, 0.36);
}

.hero {
  width: 100%;
  min-height: 780px;
  margin: 0;
  padding-inline: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(0, min(620px, 45vw)) minmax(440px, 560px);
  gap: clamp(42px, 7vw, 112px);
  place-items: center;
  justify-content: center;
  border-bottom: 0;
}

.hero::before {
  inset: -90px 0 -40px;
  background:
    radial-gradient(circle at 28% 10%, rgba(94, 58, 255, 0.12), transparent 31%),
    radial-gradient(circle at 79% 30%, rgba(0, 210, 164, 0.1), transparent 34%),
    radial-gradient(circle at 52% 104%, rgba(74, 56, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #050508, #000000 88%);
}

.hero-canvas,
.hero-grid-bg,
.hero-aurora {
  position: absolute;
  pointer-events: none;
}

.hero-canvas {
  inset: -90px 0 -50px;
  z-index: -2;
  width: 100%;
  height: calc(100% + 140px);
  opacity: 0.52;
  mix-blend-mode: screen;
}

.hero-grid-bg {
  inset: 18% 0 14%;
  z-index: -2;
  background:
    linear-gradient(rgba(142, 132, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 132, 255, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at 64% 50%, #000 0%, transparent 58%);
  opacity: 0.14;
  transform: perspective(800px) rotateX(64deg) translateY(120px);
  transform-origin: 50% 100%;
  animation: gridDrift 24s linear infinite;
}

.hero-aurora {
  z-index: -2;
  width: min(620px, 56vw);
  height: min(340px, 32vw);
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.26;
  mix-blend-mode: screen;
}

.hero-aurora-one {
  top: 16%;
  left: 46%;
  background:
    radial-gradient(circle at 28% 40%, rgba(104, 90, 255, 0.42), transparent 48%),
    radial-gradient(circle at 72% 48%, rgba(18, 216, 184, 0.24), transparent 52%);
  animation: auroraFloatOne 20s ease-in-out infinite;
}

.hero-aurora-two {
  right: 3%;
  bottom: 14%;
  background:
    radial-gradient(circle at 32% 38%, rgba(255, 105, 89, 0.14), transparent 45%),
    radial-gradient(circle at 76% 50%, rgba(76, 146, 255, 0.2), transparent 56%);
  animation: auroraFloatTwo 24s ease-in-out infinite;
}

.hero-ambient {
  position: absolute;
  inset: 14% 6% auto;
  z-index: -1;
  height: 520px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 70% 35%, rgba(85, 71, 245, 0.42), transparent 46%),
    radial-gradient(circle at 30% 55%, rgba(0, 178, 136, 0.28), transparent 48%);
  filter: blur(48px);
  opacity: 0.52;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  justify-self: start;
  width: min(620px, 100%);
  text-align: left;
  transform: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b8b2ff;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  font-family: var(--display);
  max-width: 620px;
  font-size: clamp(40px, 4.9vw, 68px);
  letter-spacing: 0;
  line-height: 1.04;
}

.hero p {
  max-width: 560px;
  margin: 26px 0 36px;
  color: rgba(225, 229, 241, 0.78);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.secondary-link {
  color: rgba(232, 235, 245, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.secondary-link::after {
  content: "→";
  margin-left: 10px;
  color: #8b7dff;
}

.publishing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(139, 151, 255, 0.42);
  border-radius: 999px;
  background: rgba(85, 71, 245, 0.16);
  color: #dadcff;
  font-size: 13px;
  font-weight: 750;
}

.publishing-link::after {
  content: "→";
  margin-left: 9px;
}

.publishing-link:hover {
  border-color: rgba(139, 151, 255, 0.72);
  background: rgba(85, 71, 245, 0.24);
  color: #ffffff;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.hero-metrics span {
  display: inline-grid;
  gap: 4px;
  min-width: 122px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(226, 231, 242, 0.7);
  font-size: 12px;
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  color: #ffffff;
  font-size: 16px;
}

.hero-visual {
  position: relative;
  width: min(560px, 100%);
  min-height: 640px;
}

.avatar-card,
.product-card,
.ai-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.avatar-card {
  inset: 56px 74px auto auto;
  width: 330px;
  height: 496px;
  border-radius: 28px;
  animation: cardFloat 7.8s ease-in-out infinite;
}

.avatar-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}

.avatar-card video,
.product-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.avatar-caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}

.avatar-caption span,
.product-card span,
.ai-panel small {
  color: #c7c0ff;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 900;
}

.avatar-caption strong {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.08;
}

.product-card {
  width: 190px;
  height: 250px;
  border-radius: 22px;
}

.product-card-one {
  top: 22px;
  left: 10px;
  animation: cardFloat 8.4s ease-in-out -1.2s infinite;
}

.product-card-two {
  right: 0;
  bottom: 16px;
  animation: cardFloat 7s ease-in-out -2s infinite;
}

.product-card span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 18px;
}

.ai-panel {
  left: 22px;
  bottom: 92px;
  width: 200px;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(32, 36, 50, 0.94), rgba(9, 11, 18, 0.88));
  backdrop-filter: blur(18px);
  animation: cardFloat 7.4s ease-in-out -0.7s infinite;
}

.ai-panel p {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.pulse-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 54px;
  margin-top: 16px;
}

.pulse-bars i {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(#7f74ff, #16d3b3);
  animation: barPulse 1.5s ease-in-out infinite;
}

.pulse-bars i:nth-child(1) {
  height: 26px;
}

.pulse-bars i:nth-child(2) {
  height: 42px;
  animation-delay: 0.1s;
}

.pulse-bars i:nth-child(3) {
  height: 34px;
  animation-delay: 0.2s;
}

.pulse-bars i:nth-child(4) {
  height: 50px;
  animation-delay: 0.3s;
}

.pulse-bars i:nth-child(5) {
  height: 30px;
  animation-delay: 0.4s;
}

.model-strip {
  width: min(1060px, calc(100% - 48px));
  min-height: 205px;
  margin-top: 18px;
  padding: 30px 30px 28px;
  grid-template-columns: minmax(300px, 1.08fr) 2.55fr;
  gap: 44px;
  align-items: center;
  border: 1px solid rgba(104, 76, 116, 0.46);
  border-radius: 8px;
  background-color: #050506;
  background-image: url("./assets/seedance-bg.png");
  background-image: image-set(
    url("./assets/seedance-bg.png") 1x,
    url("./assets/seedance-bg@2x.png") 2x
  );
  background-position: center;
  background-size: 100% 100%;
  box-shadow: none;
  transform: none;
}

.model-strip h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.model-strip p {
  margin: 0;
  color: #d9d0ff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

.model-strip dt {
  position: relative;
  min-height: 48px;
  padding-top: 4px;
  color: #d3c8ff;
  font-size: 19px;
  font-weight: 850;
  line-height: 1;
}

.model-strip dt span {
  position: absolute;
  top: -26px;
  right: -20px;
  display: inline-flex;
  min-width: 104px;
  min-height: 24px;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  place-items: center;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 159, 105, 0.82);
  border-radius: 6px;
  background: #fff4ed;
  color: #ff6f2c;
  font-size: 11px;
  font-weight: 850;
  line-height: 0.95;
  text-align: center;
  box-shadow: 0 8px 18px rgba(255, 111, 44, 0.12);
}

.model-strip dd {
  max-width: 142px;
  margin: 6px auto 0;
  color: rgba(232, 235, 242, 0.72);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.16;
}

.model-strip dl {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.section,
.trusted {
  padding-block: clamp(78px, 9vw, 132px);
}

.trusted {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.why-section {
  padding-top: clamp(32px, 4vw, 52px);
}

.section-heading h2,
.human-copy h2,
.compact h2,
.pricing-section h2,
.faq-section h2,
.cta-section h2 {
  font-family: var(--display);
}

.section-heading p,
.compact p,
.human-copy p {
  max-width: 760px;
  color: rgba(209, 214, 226, 0.72);
}

.styles-section {
  padding-top: clamp(64px, 7vw, 104px);
}

.styles-section .compact h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.9);
}

.styles-section .compact p {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.55;
  color: rgba(167, 170, 178, 0.82);
  font-weight: 800;
}

.styles-section .style-grid {
  margin-top: clamp(42px, 5.6vw, 72px);
  gap: 16px;
}

.styles-section .style-card {
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.styles-section .style-card::after {
  inset: 50% 0 0;
  background:
    linear-gradient(transparent, rgba(0, 0, 0, 0.92)),
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.32));
}

.styles-section .style-card div {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.styles-section .style-card span {
  color: #d7d2ff;
  font-size: 13px;
}

.styles-section .style-card strong {
  margin-top: 7px;
  color: #ffffff;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.human-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-top: 20px;
}

.human-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(34px, 4.6vw, 60px);
  letter-spacing: 0;
  line-height: 1;
}

.human-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.78;
}

.human-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.82fr;
  grid-template-rows: 210px 210px;
  gap: 16px;
}

.human-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #14161a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.human-grid article:first-child {
  grid-row: span 2;
}

.human-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.human-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.style-card,
.video-card,
.feature-panel,
.benefit-grid article,
.pricing-card,
.quote-grid article,
.browser-card {
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.style-card:hover,
.video-card:hover,
.feature-panel:hover,
.benefit-grid article:hover,
.pricing-card:hover,
.quote-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 119, 255, 0.44);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.style-card,
.video-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.style-card[role="button"] {
  cursor: pointer;
}

.style-card[role="button"]:focus-visible {
  outline: 2px solid rgba(205, 199, 255, 0.9);
  outline-offset: 5px;
}

.style-card > .play-indicator {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-size: 0;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.style-card > .play-indicator::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.style-card[role="button"]:hover > .play-indicator,
.style-card[role="button"]:focus-visible > .play-indicator {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(94, 78, 255, 0.58);
}

body.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(94, 78, 255, 0.22), transparent 34%),
    rgba(0, 0, 0, 0.78);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(12, 13, 18, 0.92);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.video-modal-panel video {
  display: block;
  width: 100%;
  max-height: min(76vh, 720px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 18px;
  background: #000000;
}

.video-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(16, 17, 24, 0.94);
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.44);
}

.video-modal-close:focus-visible,
.video-modal-backdrop:focus-visible {
  outline: 2px solid rgba(205, 199, 255, 0.9);
  outline-offset: 4px;
}

.video-modal-panel p {
  margin: 12px 4px 2px;
  color: #f8f7ff;
  font-size: 14px;
  font-weight: 850;
}

.benefit-grid article,
.feature-panel,
.pricing-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.section-reveal,
.style-card,
.feature-panel,
.benefit-grid article,
.video-card,
.pricing-card,
.quote-grid article {
  opacity: 0;
  transform: translateY(22px);
}

.section-reveal.is-visible,
.style-card.is-visible,
.feature-panel.is-visible,
.benefit-grid article.is-visible,
.video-card.is-visible,
.pricing-card.is-visible,
.quote-grid article.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.style-card:nth-child(2),
.benefit-grid article:nth-child(2),
.video-card:nth-child(2),
.pricing-card:nth-child(2),
.quote-grid article:nth-child(2) {
  transition-delay: 0.08s;
}

.style-card:nth-child(3),
.benefit-grid article:nth-child(3),
.video-card:nth-child(3),
.pricing-card:nth-child(3),
.quote-grid article:nth-child(3) {
  transition-delay: 0.16s;
}

.style-card:nth-child(4),
.benefit-grid article:nth-child(4),
.video-card:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.76);
    opacity: 0.75;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes analysisPulse {
  0%,
  100% {
    transform: scaleY(0.62);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes auroraFloatOne {
  0%,
  100% {
    transform: translate3d(-4%, 0, 0) rotate(-8deg) scale(1);
  }
  50% {
    transform: translate3d(4%, 7%, 0) rotate(8deg) scale(1.08);
  }
}

@keyframes auroraFloatTwo {
  0%,
  100% {
    transform: translate3d(3%, 0, 0) rotate(10deg) scale(1);
  }
  50% {
    transform: translate3d(-6%, -8%, 0) rotate(-6deg) scale(1.06);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes marqueeBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 86px;
  }

  .hero-copy {
    text-align: center;
    justify-self: center;
  }

  .hero p,
  .hero-actions {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-canvas {
    opacity: 0.38;
  }

  .hero-grid-bg {
    display: none;
  }

  .hero-aurora {
    opacity: 0.18;
  }

  .human-section {
    grid-template-columns: 1fr;
  }

  .model-strip {
    width: min(1060px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .model-strip dl {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    width: 100%;
    min-height: auto;
    padding: 38px 18px 34px;
    gap: 22px;
    align-content: start;
  }

  .hero-copy {
    width: 100%;
    text-align: left;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .hero p {
    max-width: 350px;
    margin: 16px 0 22px;
    font-size: 14px;
    line-height: 1.62;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero-actions {
    justify-content: flex-start;
    gap: 14px;
  }

  .hero-actions .button {
    min-height: 40px;
    padding-inline: 18px;
  }

  .secondary-link {
    font-size: 13px;
  }

  .tiktok-compliance-main {
    width: min(100% - 28px, 640px);
    padding: 54px 0 76px;
  }

  .tiktok-compliance-hero {
    text-align: left;
  }

  .tiktok-compliance-hero .eyebrow,
  .tiktok-compliance-hero p {
    margin-left: 0;
  }

  .tiktok-compliance-hero h1 {
    font-size: 40px;
  }

  .tiktok-compliance-hero p {
    font-size: 15px;
  }

  .compliance-flow {
    grid-template-columns: 1fr 1fr;
  }

  .compliance-card {
    padding: 24px;
  }

  .blog-shell {
    width: min(100% - 28px, 640px);
    padding: 50px 0 76px;
  }

  .blog-hero {
    margin-bottom: 34px;
    text-align: left;
  }

  .blog-hero p {
    margin-left: 0;
    font-size: 15px;
  }

  .blog-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .article-content h1 {
    font-size: 38px;
  }

  .article-visual {
    min-height: 320px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 22px;
  }

  .hero-metrics span {
    min-width: 0;
    padding: 9px 8px;
    border-radius: 10px;
    font-size: 10px;
  }

  .hero-metrics strong {
    font-size: 13px;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 338px;
    margin-top: 2px;
  }

  .hero-canvas {
    opacity: 0.28;
  }

  .hero-grid-bg {
    display: none;
  }

  .hero-aurora {
    width: 82vw;
    height: 42vw;
    opacity: 0.16;
  }

  .avatar-card {
    position: relative;
    inset: auto;
    width: min(232px, 64vw);
    height: min(344px, 94vw);
    border-radius: 22px;
    transform: none;
  }

  .avatar-caption {
    left: 16px;
    right: 16px;
    bottom: 18px;
    gap: 6px;
  }

  .avatar-caption span {
    font-size: 10px;
  }

  .avatar-caption strong {
    font-size: 19px;
  }

  .product-card,
  .ai-panel {
    display: none;
  }

  .human-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }

  .human-grid article:first-child {
    grid-row: auto;
  }

  .model-strip {
    width: min(100% - 28px, 1060px);
    min-height: auto;
    padding: 26px;
  }

  .model-strip dl {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .model-strip dd {
    max-width: none;
    margin: 14px 0 0;
  }

  .model-strip dt span {
    top: -8px;
    right: auto;
    left: 144px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 30px 16px 30px;
    gap: 18px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(33px, 10.4vw, 40px);
  }

  .hero p {
    max-width: 330px;
    margin-bottom: 18px;
  }

  .hero-metrics {
    margin-top: 18px;
  }

  .hero-metrics span {
    padding: 8px 7px;
  }

  .hero-visual {
    min-height: 310px;
  }

  .avatar-card {
    width: min(212px, 62vw);
    height: min(314px, 92vw);
  }
}

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

  .hero-grid-bg,
  .hero-aurora,
  .platform-track {
    animation: none !important;
  }
}
