/**
 * Landing — conversion-focused presentation layer (index + socila).
 * Does not affect backend; links only to existing routes/anchors.
 */

:root {
  --landing-accent: #00ff9d;
  --landing-accent-bright: #39ff14;
  --landing-accent-socila: #00ff9d;
  --landing-surface: rgba(10, 10, 10, 0.78);
  --landing-border: rgba(0, 255, 157, 0.22);
}

/* ── Hero ── */
.landing-hero {
  position: relative;
  margin-top: var(--nav-height);
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
}

.landing-hero-socila {
  margin-top: var(--nav-height);
  padding-bottom: 1.5rem;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -5%, rgba(0, 255, 157, 0.2), transparent 58%),
    radial-gradient(circle at 12% 55%, rgba(57, 255, 20, 0.06), transparent 42%),
    radial-gradient(circle at 88% 35%, rgba(0, 255, 178, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 157, 0.35);
  background: rgba(0, 255, 157, 0.07);
  color: var(--landing-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}

.landing-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--landing-accent);
  box-shadow: 0 0 10px var(--landing-accent);
  animation: landing-pulse 2s ease-in-out infinite;
}

@keyframes landing-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.85); }
}

.landing-hero h1 {
  font-size: clamp(1.9rem, 5.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.landing-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-subtitle {
  font-size: clamp(1rem, 2.6vw, 1.22rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.landing-subtitle strong {
  color: var(--landing-accent);
  font-weight: 600;
}

.landing-audience {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}

.landing-audience span {
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 500;
}

.landing-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.landing-trust-line {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
}

.landing-btn-primary,
.landing-btn-secondary,
.landing-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.88rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.landing-btn-icon {
  font-size: 0.75rem;
}

.landing-btn-primary {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-bright));
  color: #0a0a0a;
  box-shadow: 0 4px 28px rgba(0, 255, 157, 0.35);
}

.landing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 255, 157, 0.48);
  color: #0a0a0a;
}

.landing-btn-socila {
  background: linear-gradient(135deg, var(--landing-accent-socila), #00ff88);
}

.landing-btn-secondary {
  background: rgba(0, 255, 157, 0.1);
  color: var(--landing-accent);
  border: 1.5px solid rgba(0, 255, 157, 0.4);
}

.landing-btn-secondary:hover {
  background: rgba(0, 255, 157, 0.18);
  color: var(--landing-accent);
  transform: translateY(-2px);
}

.landing-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.landing-btn-ghost:hover {
  border-color: rgba(0, 255, 157, 0.35);
  color: var(--landing-accent);
  transform: translateY(-2px);
}

/* ── Pain / contrast ── */
.landing-pain {
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(2rem, 4vw, 3rem);
}

.landing-pain-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.landing-pain-card {
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  text-align: left;
}

.landing-pain-before {
  background: rgba(255, 60, 80, 0.06);
  border: 1px solid rgba(255, 80, 100, 0.2);
}

.landing-pain-after {
  background: rgba(0, 255, 157, 0.06);
  border: 1px solid var(--landing-border);
}

.landing-pain-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.landing-pain-after .landing-pain-label {
  color: var(--landing-accent);
}

.landing-pain-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-pain-card li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.landing-pain-before li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #ff6b7a;
  font-weight: 700;
}

.landing-pain-after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--landing-accent);
  font-weight: 700;
}

.landing-pain-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--landing-accent);
  opacity: 0.6;
}

/* ── Spotlight cards ── */
.landing-section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--landing-accent);
  margin-bottom: 0.5rem;
}

.landing-spotlight {
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

.landing-spotlight-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.landing-spotlight-header h2 {
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.landing-spotlight-header p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
}

.landing-value-strip {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 1.15rem clamp(0.75rem, 3vw, 1.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border-radius: 16px;
  background: rgba(0, 255, 157, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.12);
}

.landing-value-item {
  text-align: center;
  padding: 0.35rem;
}

.landing-value-item strong {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 800;
  color: var(--landing-accent);
  margin-bottom: 0.2rem;
}

.landing-value-item span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.35;
}

.landing-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-spotlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.65rem 1.3rem;
  border-radius: 20px;
  background: var(--landing-surface);
  border: 1.5px solid var(--landing-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.25s, box-shadow 0.25s;
}

.landing-spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--landing-accent), var(--landing-accent-bright));
  opacity: 0.9;
}

.landing-card-video::before { background: linear-gradient(90deg, #00ff9d, #00d4ff); }
.landing-card-image::before { background: linear-gradient(90deg, #39ff14, #00ff9d); }
.landing-card-seo::before { background: linear-gradient(90deg, #00ff9d, #a855f7); }

.landing-spotlight-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 255, 157, 0.5);
  box-shadow: 0 20px 48px rgba(0, 255, 157, 0.14);
}

.landing-spotlight-card.featured {
  border-color: rgba(0, 255, 157, 0.38);
  box-shadow: 0 0 40px rgba(0, 255, 157, 0.08);
}

.landing-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.landing-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--landing-accent);
  margin-bottom: 0.5rem;
}

.landing-spotlight-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.55rem;
}

.landing-spotlight-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  margin-bottom: 1.1rem;
}

.landing-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--landing-accent);
}

.landing-card-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}

.landing-spotlight-card:hover .landing-card-cta::after {
  transform: translateX(5px);
}

/* ── How it works ── */
.landing-how {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-how-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.landing-how-inner h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}

.landing-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.landing-how-step {
  padding: 1.35rem 1.15rem;
  border-radius: 16px;
  background: rgba(0, 255, 157, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.12);
}

.landing-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-bright));
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.landing-how-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
}

.landing-how-step p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.landing-how-cta {
  margin-top: 0.5rem;
}

/* ── Audience blocks ── */
.landing-audience-blocks {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem);
}

.landing-audience-blocks-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.landing-audience-blocks-inner h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.75rem;
}

.landing-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}

.landing-audience-block {
  padding: 1.25rem 1.1rem;
  border-radius: 16px;
  background: var(--landing-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s, transform 0.2s;
}

.landing-audience-block:hover {
  border-color: rgba(0, 255, 157, 0.3);
  transform: translateY(-3px);
}

.landing-audience-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--landing-accent);
  margin-bottom: 0.45rem;
}

.landing-audience-block p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Products label (legacy) ── */
.landing-products-label {
  display: none;
}

/* ── Products label (legacy) ── */
.landing-products-label {
  display: none;
}

/* ══════════════════════════════════════════
   BRAND SUITE + CATALOG — harmonized sections
   ══════════════════════════════════════════ */

.suite-main {
  background: #0a0a0a;
}

.suite-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.suite-section-head h2 {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.suite-section-title-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.45em;
  max-width: 100%;
  white-space: nowrap;
}

#create .suite-section-head {
  max-width: min(100%, 960px);
}

#create .suite-section-head h2 {
  font-size: clamp(1rem, 2.55vw, 1.85rem);
  letter-spacing: -0.025em;
}

.suite-section-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.22em 0.58em 0.24em;
  font-size: 0.46em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #faf5ff;
  background: linear-gradient(135deg, #d8b4fe 0%, #a855f7 42%, #7c3aed 100%);
  border: 1px solid rgba(216, 180, 254, 0.85);
  border-radius: 8px;
  box-shadow:
    0 0 22px rgba(168, 85, 247, 0.55),
    0 2px 12px rgba(91, 33, 182, 0.45);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(59, 7, 100, 0.35);
}

@media (max-width: 480px) {
  #create .suite-section-head h2 {
    font-size: clamp(0.82rem, 3.1vw, 1.05rem);
  }

  .suite-section-title-line {
    font-size: inherit;
  }

  .suite-section-pro {
    font-size: 0.48em;
    padding: 0.18em 0.45em;
  }
}

.suite-section-head p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.suite-section-head-light h2 {
  color: #fff;
}

/* Shared card button */
.suite-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
}

.brand-suite-card .suite-card-btn {
  padding: 0.58rem 1.1rem;
  font-size: 0.78rem;
}

.suite-card-btn {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-bright));
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(0, 255, 157, 0.28);
}

.suite-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 255, 157, 0.42);
  color: #0a0a0a;
}

.suite-card-btn-outline {
  background: transparent;
  color: var(--landing-accent);
  border: 1.5px solid rgba(0, 255, 157, 0.4);
  box-shadow: none;
}

.suite-card-btn-outline:hover {
  background: rgba(0, 255, 157, 0.1);
  color: var(--landing-accent);
}

.suite-card-icon {
  display: block;
  font-size: 1.65rem;
  color: var(--landing-accent);
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.35));
}

/* ── Brand suite grid ── */
.brand-suite-section {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-suite-value-strip {
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.brand-suite-featured-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  max-width: 1200px;
  margin: 0 auto 0.35rem;
  align-items: stretch;
}

.brand-suite-more-label {
  max-width: 1200px;
  margin: 1.35rem auto 1rem;
  padding-top: 0.35rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.brand-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-suite-grid-secondary {
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
  align-items: stretch;
}

.brand-suite-grid-secondary .brand-suite-card {
  height: 100%;
}

.brand-suite-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--landing-border);
  background: var(--landing-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.brand-suite-card:focus-visible {
  outline: 2px solid var(--landing-accent);
  outline-offset: 3px;
}

.brand-suite-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--landing-accent), var(--landing-accent-bright));
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}

.brand-suite-card-vip::before,
.brand-suite-card-accent::before {
  background: linear-gradient(90deg, #00ff9d, #00d4ff);
}

.brand-suite-card-tag-vip,
.brand-suite-card-tag-accent {
  background: linear-gradient(135deg, #00ff9d, #00d4ff);
}

.brand-suite-card-secondary::before {
  opacity: 0.35;
  height: 2px;
}

.brand-suite-card-featured {
  border-color: rgba(0, 255, 157, 0.38);
  box-shadow: 0 0 40px rgba(0, 255, 157, 0.08);
}

.brand-suite-card-secondary {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand-suite-card-premium {
  border-color: rgba(0, 255, 157, 0.14);
}

.brand-suite-card-featured .brand-suite-card-media {
  aspect-ratio: 16 / 9;
}

.brand-suite-card-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-bright));
  box-shadow: 0 4px 16px rgba(0, 255, 157, 0.35);
}

.brand-suite-card-media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #0a0f0c;
}

.brand-suite-card-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.35) 100%);
}

.brand-suite-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.06) contrast(1.05) brightness(0.98);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* Per-card image framing — keeps llama faces in view */
.brand-suite-media-growth img { object-position: center 36%; }
.brand-suite-media-archetype img { object-position: center 32%; }
.brand-suite-media-brand img { object-position: center 40%; }
.brand-suite-media-ai img { object-position: center 42%; }
.brand-suite-media-marketing img { object-position: center 34%; }
.brand-suite-media-social img { object-position: center 30%; }
.brand-suite-media-vip img { object-position: center 38%; }

.brand-suite-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 255, 157, 0.5);
  box-shadow: 0 20px 48px rgba(0, 255, 157, 0.14);
}

.brand-suite-card-secondary:hover {
  border-color: rgba(0, 255, 157, 0.28);
  box-shadow: 0 12px 32px rgba(0, 255, 157, 0.08);
}

.brand-suite-card:hover .brand-suite-card-media img {
  transform: scale(1.04);
}

.brand-suite-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.15rem 1.15rem;
  text-align: left;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(8, 14, 11, 0.96) 100%);
}

.brand-suite-card-secondary .brand-suite-card-body {
  padding: 0.85rem 0.95rem 1rem;
}

.brand-suite-card-secondary .brand-suite-card-media {
  aspect-ratio: 5 / 3;
}

.brand-suite-card-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.brand-suite-card-heading .suite-card-icon {
  margin-bottom: 0;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-suite-card-secondary .brand-suite-card-heading .suite-card-icon {
  font-size: 1.1rem;
}

.brand-suite-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.brand-suite-card-secondary h3 {
  font-size: 0.92rem;
}

.brand-suite-card p {
  font-size: 0.79rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-suite-card-secondary p {
  font-size: 0.74rem;
  margin-bottom: 0.75rem;
}

.brand-suite-card .suite-card-btn {
  pointer-events: none;
}

a.brand-suite-card:hover .suite-card-btn:not(.suite-card-btn-outline) {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 255, 157, 0.42);
}

.brand-suite-foot {
  max-width: 1200px;
  margin: 1.75rem auto 0;
  text-align: center;
  padding: 0 1rem;
}

.brand-suite-trust {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 0.85rem;
}

.brand-suite-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--landing-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.brand-suite-catalog-link:hover {
  color: var(--landing-accent-bright);
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .brand-suite-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .brand-suite-card:hover {
    transform: none;
  }

  .brand-suite-card:hover .brand-suite-card-media img {
    transform: none;
  }

  .brand-suite-section .brand-suite-card {
    animation: none !important;
  }

  .brand-suite-catalog-link:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand-suite-section .brand-suite-featured-row .brand-suite-card {
    animation: brandSuiteFadeUp 0.55s cubic-bezier(0.34, 1.1, 0.64, 1) backwards;
  }

  .brand-suite-section .brand-suite-featured-row .brand-suite-card:nth-child(2) {
    animation-delay: 0.08s;
  }

  .brand-suite-section .brand-suite-grid-secondary .brand-suite-card {
    animation: brandSuiteFadeUp 0.5s cubic-bezier(0.34, 1.1, 0.64, 1) backwards;
  }

  .brand-suite-section .brand-suite-grid-secondary .brand-suite-card:nth-child(1) { animation-delay: 0.12s; }
  .brand-suite-section .brand-suite-grid-secondary .brand-suite-card:nth-child(2) { animation-delay: 0.16s; }
  .brand-suite-section .brand-suite-grid-secondary .brand-suite-card:nth-child(3) { animation-delay: 0.2s; }
  .brand-suite-section .brand-suite-grid-secondary .brand-suite-card:nth-child(4) { animation-delay: 0.24s; }
  .brand-suite-section .brand-suite-grid-secondary .brand-suite-card:nth-child(5) { animation-delay: 0.28s; }
}

@keyframes brandSuiteFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Tool catalog ── */
.suite-catalog-section {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 5vw, 4.5rem);
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.suite-catalog-group {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.suite-catalog-group:last-child {
  margin-bottom: 0;
}

.suite-catalog-group-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(0, 255, 157, 0.15);
}

.suite-catalog-group-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(0, 255, 157, 0.12);
  color: var(--landing-accent);
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.suite-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.suite-catalog-grid-sm {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

.suite-tool-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.2rem;
  border-radius: 18px;
  background: var(--landing-surface);
  border: 1.5px solid var(--landing-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
}

.suite-tool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 157, 0.45);
  box-shadow: 0 12px 32px rgba(0, 255, 157, 0.1);
}

.suite-tool-featured {
  border-color: rgba(0, 255, 157, 0.38);
  background: rgba(0, 255, 157, 0.04);
  box-shadow: 0 0 24px rgba(0, 255, 157, 0.06);
}

.suite-tool-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--landing-accent);
  margin-bottom: 0.45rem;
}

.suite-tool-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
}

.suite-tool-card p {
  font-size: 0.86rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1rem;
  flex: 1;
}

/* ── Our Impact (override legacy neon block) ── */
.suite-main .suite-impact-section.stats-section {
  background: transparent;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.suite-main .suite-impact-section.stats-section::before {
  display: none;
}

.suite-stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.suite-main .stat-card {
  background: var(--landing-surface);
  border: 1.5px solid var(--landing-border);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.suite-main .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 255, 157, 0.12);
  border-color: rgba(0, 255, 157, 0.4);
}

.suite-main .stat-icon {
  color: var(--landing-accent);
  filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.35));
}

.suite-main .stat-number {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.suite-main .stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

/* ── Team section ── */
.suite-main .suite-team-section.team-section {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.suite-main .suite-team-section .container > h2,
.suite-main .suite-team-section .container > p.text-gray-600 {
  display: none;
}

.suite-team-grid {
  max-width: 900px;
  margin: 0 auto;
  gap: 1.5rem;
}

.suite-main .team-card {
  background: var(--landing-surface);
  border: 1.5px solid var(--landing-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.suite-main .team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 255, 157, 0.1);
  border-color: rgba(0, 255, 157, 0.4);
}

.suite-main .team-name {
  color: var(--landing-accent);
}

.suite-main .team-role {
  color: rgba(255, 255, 255, 0.55);
}

.suite-main .team-bio {
  color: rgba(255, 255, 255, 0.7);
}

/* Hide legacy product grid if any remain */
.suite-main .products-section {
  display: none;
}

.suite-main .main-top {
  display: none;
}

@media (max-width: 1100px) {
  .brand-suite-grid-secondary {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-suite-value-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .brand-suite-featured-row {
    grid-template-columns: 1fr;
  }

  .brand-suite-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-suite-grid,
  .suite-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-catalog-grid-sm {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 576px) {
  .brand-suite-grid,
  .brand-suite-grid-secondary,
  .suite-catalog-grid,
  .suite-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Socila ── */
.landing-socila-jump {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.landing-socila-jump a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.1rem 0.65rem;
  min-height: 88px;
  border-radius: 18px;
  background: rgba(0, 255, 157, 0.07);
  border: 1.5px solid rgba(0, 255, 157, 0.28);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.landing-socila-jump a small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

.landing-socila-jump a span:first-child {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.landing-socila-jump a:hover {
  background: rgba(0, 255, 157, 0.16);
  transform: translateY(-4px);
  border-color: rgba(0, 255, 157, 0.55);
  box-shadow: 0 12px 32px rgba(0, 255, 157, 0.12);
  color: var(--landing-accent);
}

.landing-socila-order-hint {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 auto 1.5rem;
  max-width: 600px;
  padding: 0 1rem;
}

.landing-socila-order-hint span {
  color: var(--landing-accent);
  font-weight: 600;
}

.landing-section-label {
  max-width: 900px;
  margin: 0 auto 1rem;
  padding: 0 1.5rem;
  text-align: left;
}

.landing-section-label h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.landing-section-label p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.landing-section-label .landing-section-eyebrow {
  text-align: left;
}

/* Section scroll offset for fixed nav */
#playground,
#image-playground,
#creator-brand-bridge,
#seo-tools,
#strategy-suite,
#samples,
#sample-images,
#features,
#ui-suggestion,
#ui-instagram {
  scroll-margin-top: calc(var(--nav-height, 4.5rem) + 0.5rem);
}

/* ── Socila strategy bridge (brand strategists) ── */
.socila-strategy-bridge {
  margin-top: 2.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 255, 157, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.02);
}

.socila-strategy-bridge-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.socila-strategy-audience {
  margin-bottom: 1.25rem;
}

.socila-strategy-bridge-lead {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.socila-strategy-featured {
  margin-bottom: 0.25rem;
}

.socila-strategy-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 920px;
  margin: 0 auto 1.75rem;
}

.socila-strategy-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 255, 157, 0.06);
  border: 1px solid rgba(0, 255, 157, 0.22);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.socila-strategy-chip i {
  font-size: 0.95rem;
  color: var(--landing-accent);
}

.socila-strategy-chip:hover {
  background: rgba(0, 255, 157, 0.14);
  border-color: rgba(0, 255, 157, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 157, 0.1);
  color: #fff;
}

.socila-strategy-chip-premium {
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.08);
}

.socila-strategy-chip-premium i {
  color: #c084fc;
}

.socila-strategy-chip-premium:hover {
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(168, 85, 247, 0.16);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.12);
}

.socila-strategy-foot {
  text-align: center;
  padding-top: 0.5rem;
}

.socila-strategy-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.socila-strategy-bridge .suite-section-head p strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

/* ── Socila studio tool sections ── */
.socila-pain {
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-top: -0.5rem;
}

.socila-studio-section {
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.socila-studio-section .playgrounds-row {
  margin-top: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.2rem;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.socila-studio-section .socila-playground-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  max-width: 500px;
  width: 100%;
}

.socila-studio-section .socila-playground-card .sample-preview {
  height: 512px;
  min-height: 512px;
  max-height: 512px;
  margin-top: auto;
  flex-shrink: 0;
}

.playground-extra-controls {
  min-height: 1.55rem;
  margin: 0.45rem 0 0.55rem;
}

.playground-extra-controls--spacer {
  visibility: hidden;
  pointer-events: none;
}

.socila-section-head {
  max-width: 820px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.socila-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin: 0.35rem 0 0.65rem;
  line-height: 1.25;
}

.socila-section-head p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 0.85rem;
}

.socila-tool-audience {
  justify-content: center;
  margin-bottom: 0;
}

.socila-playground-card {
  background: rgba(10, 10, 10, 0.72);
  border: 1.5px solid var(--landing-border);
  border-radius: 22px;
  padding: 1.35rem 1.25rem 1.5rem !important;
  box-shadow: 0 8px 32px rgba(0, 255, 157, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.socila-playground-card:hover {
  border-color: rgba(0, 255, 157, 0.38);
  box-shadow: 0 12px 40px rgba(0, 255, 157, 0.12);
}

.socila-playground-head {
  text-align: left;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.socila-playground-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--landing-accent);
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.25);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.55rem;
}

.socila-playground-head h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.socila-playground-lead {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.socila-prompt-hint {
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
  margin: 0.45rem 0 0;
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 255, 157, 0.06);
  border: 1px solid rgba(0, 255, 157, 0.12);
}

.video-length-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  flex-wrap: wrap;
}

.video-length-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.video-length-options {
  display: inline-flex;
  gap: 0.35rem;
}

.video-length-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  min-width: 2.75rem;
  min-height: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.video-length-chip:hover {
  border-color: rgba(0, 255, 157, 0.35);
  color: #fff;
}

.video-length-chip.is-active {
  border-color: rgba(0, 255, 157, 0.55);
  background: rgba(0, 255, 157, 0.1);
  color: var(--landing-accent, #00ff9d);
}

html[data-theme="light"] .socila-page .video-length-label {
  color: rgba(16, 32, 24, 0.55);
}

html[data-theme="light"] .socila-page .video-length-chip {
  background: rgba(255, 255, 255, 0.9);
  color: #102018;
  border-color: rgba(0, 90, 60, 0.16);
}

html[data-theme="light"] .socila-page .video-length-chip.is-active {
  background: rgba(0, 90, 60, 0.1);
  color: #005a3c;
  border-color: rgba(0, 90, 60, 0.45);
}

.socila-tool-glass {
  border-color: rgba(0, 255, 157, 0.22) !important;
  box-shadow: 0 8px 32px rgba(0, 255, 157, 0.08), 0 0 60px rgba(0, 255, 157, 0.04) !important;
}

.socila-tool-inline-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--landing-accent);
  margin-bottom: 0.65rem;
}

.socila-studio-seo .seo-tools-section,
.socila-studio-ui .ui-suggestion-section,
.socila-studio-ui .ui-instagram-section {
  margin-top: 0;
}

.socila-studio-samples {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.socila-studio-samples .samples-slider-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.socila-samples-subtitle {
  margin-top: 2.25rem !important;
}

.socila-studio-samples .samples-slider {
  margin-bottom: 0;
}

/* ── Strategist co-pilot (fear → reframe) ── */
.socila-strategist-reframe {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto 1.75rem;
}

.socila-strategist-card {
  border-radius: 20px;
  padding: 1.35rem 1.25rem;
  text-align: left;
}

.socila-strategist-card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.socila-strategist-myth {
  background: rgba(255, 107, 122, 0.06);
  border: 1.5px solid rgba(255, 107, 122, 0.22);
}

.socila-strategist-myth .socila-strategist-card-label {
  color: #ff8a96;
}

.socila-strategist-myth h3 {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.socila-strategist-truth {
  background: rgba(0, 255, 157, 0.06);
  border: 1.5px solid rgba(0, 255, 157, 0.28);
}

.socila-strategist-truth .socila-strategist-card-label {
  color: var(--landing-accent);
}

.socila-strategist-truth h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.socila-strategist-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.socila-strategist-card li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.socila-strategist-myth li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #ff6b7a;
  font-weight: 700;
}

.socila-strategist-truth li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--landing-accent);
  font-weight: 700;
}

.socila-strategist-reframe-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 0.25rem;
}

.socila-copilot-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  max-width: 980px;
  margin: 0 auto 1.75rem;
}

.socila-copilot-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.1rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.socila-copilot-icon {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
  line-height: 1;
}

.socila-copilot-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}

.socila-copilot-item span:last-child {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.socila-suite-start-label {
  margin-top: 0.25rem;
}

/* Category-leader ambition (text categories — no third-party logos) */
.socila-category-ambition {
  max-width: 980px;
  margin: 0 auto 1.85rem;
  padding: 1.65rem 1.35rem;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 255, 157, 0.07), transparent 65%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.socila-category-ambition-head h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin: 0.35rem auto 0.65rem;
  max-width: 720px;
}

.socila-category-ambition-head p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  max-width: 680px;
  margin: 0 auto 1.35rem;
}

.socila-category-ambition-head p strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.socila-category-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  text-align: left;
}

.socila-category-track {
  padding: 1rem 1rem;
  border-radius: 16px;
  background: rgba(0, 255, 157, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.18);
}

.socila-category-track-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--landing-accent);
  margin-bottom: 0.4rem;
}

.socila-category-track h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.socila-category-track p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

.socila-category-marquee-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.75rem;
}

.socila-category-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.socila-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.socila-category-disclaimer {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
  line-height: 1.4;
}

/* ── Creator brand bridge (isolated block) ── */
.socila-creator-bridge {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(1.5rem, 3vw, 2rem);
}

.socila-creator-bridge-inner {
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(57, 255, 20, 0.07), transparent 62%),
    rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(0, 255, 157, 0.2);
  box-shadow: 0 8px 32px rgba(0, 255, 157, 0.06);
}

.socila-creator-bridge .socila-section-head {
  margin-bottom: 1.25rem;
}

.socila-creator-bridge .socila-section-head h2 em {
  font-style: normal;
  color: var(--landing-accent);
  text-shadow: 0 0 20px rgba(0, 255, 157, 0.25);
}

.socila-creator-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.socila-creator-step {
  flex: 1 1 140px;
  max-width: 200px;
  text-align: center;
  padding: 0.85rem 0.65rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.socila-creator-step-active {
  background: rgba(0, 255, 157, 0.08);
  border-color: rgba(0, 255, 157, 0.35);
  box-shadow: 0 0 24px rgba(0, 255, 157, 0.1);
}

.socila-creator-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.35rem;
}

.socila-creator-step-active .socila-creator-step-num {
  background: var(--landing-accent);
  color: #0a0a0a;
}

.socila-creator-step strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
}

.socila-creator-step small {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.35;
}

.socila-creator-flow-arrow {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.socila-creator-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.socila-creator-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 255, 157, 0.06);
  border: 1px solid rgba(0, 255, 157, 0.2);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.socila-creator-chip i {
  font-size: 0.85rem;
  color: var(--landing-accent);
}

.socila-creator-chip:hover {
  background: rgba(0, 255, 157, 0.14);
  border-color: rgba(0, 255, 157, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.socila-creator-chip-free {
  border-color: rgba(57, 255, 20, 0.35);
  background: rgba(57, 255, 20, 0.08);
}

.socila-creator-foot {
  text-align: center;
}

.socila-creator-trust {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.85rem;
}

.socila-creator-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

/* ── Closing paths (replaces legacy features) ── */
.socila-paths-section {
  background:
    radial-gradient(ellipse 80% 45% at 50% 100%, rgba(0, 255, 157, 0.06), transparent 58%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.socila-paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  max-width: 920px;
  margin: 0 auto 1.5rem;
}

.socila-path-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  padding: 1.5rem 1.35rem;
  border: 1.5px solid rgba(0, 255, 157, 0.22);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  min-height: 100%;
}

.socila-path-card:hover {
  border-color: rgba(0, 255, 157, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 255, 157, 0.12);
}

.socila-path-strategy {
  border-color: rgba(168, 85, 247, 0.28);
  background: linear-gradient(145deg, rgba(10, 10, 10, 0.82), rgba(168, 85, 247, 0.06));
}

.socila-path-strategy:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 14px 40px rgba(168, 85, 247, 0.14);
}

.socila-path-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--landing-accent);
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.25);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.65rem;
}

.socila-path-tag-accent {
  color: #c084fc;
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.35);
}

.socila-path-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.45rem;
}

.socila-path-card > p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1rem;
}

.socila-path-links {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  pointer-events: none;
}

.socila-path-links li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.45rem;
}

.socila-path-cta {
  display: inline-flex;
  margin-top: 1.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--landing-accent);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.socila-path-strategy .socila-path-cta {
  color: #c084fc;
}

.socila-paths-audience {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  max-width: 920px;
  margin: 0 auto;
}

.socila-paths-audience span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

/* ── Brand suite strategist intro (homepage #brand-suite head) ── */
.brand-suite-strategist-intro {
  max-width: 1200px;
  margin: 0 auto 0.25rem;
}

.brand-suite-strategist-panel {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 920px;
  margin: 0 auto 1.75rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.15rem, 3vw, 1.65rem);
  border-radius: 22px;
  border: 1.5px solid rgba(168, 85, 247, 0.32);
  border-left: 4px solid rgba(192, 132, 252, 0.75);
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(168, 85, 247, 0.14), transparent 62%),
    rgba(12, 8, 18, 0.88);
  box-shadow: 0 8px 36px rgba(168, 85, 247, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.brand-suite-strategist-panel:hover {
  border-color: rgba(192, 132, 252, 0.5);
  box-shadow: 0 12px 44px rgba(168, 85, 247, 0.22);
  transform: translateY(-2px);
  color: inherit;
}

.brand-suite-strategist-panel:focus-visible {
  outline: 2px solid #c084fc;
  outline-offset: 4px;
}

.brand-suite-strategist-head {
  margin-bottom: 1.35rem;
  padding: 0;
}

.brand-suite-strategist-eyebrow {
  color: #c084fc !important;
}

.brand-suite-strategist-head h2 {
  color: #fff;
}

.brand-suite-strategist-head p {
  color: rgba(255, 255, 255, 0.62);
}

.brand-suite-strategist-head p strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.brand-suite-strategist-audience {
  justify-content: center;
  margin-top: 0.35rem;
}

.brand-suite-strategist-audience span {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(192, 132, 252, 0.28);
  color: rgba(255, 255, 255, 0.78);
}

.brand-suite-strategist-reframe {
  max-width: 100%;
  margin: 0 auto 1.25rem;
}

.brand-suite-strategist-fear {
  background: rgba(255, 80, 100, 0.06);
  border-color: rgba(255, 100, 120, 0.18);
}

.brand-suite-strategist-truth {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.28);
}

.brand-suite-strategist-truth .landing-pain-label {
  color: #c084fc;
}

.brand-suite-strategist-quote {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.brand-suite-strategist-truth .brand-suite-strategist-quote {
  color: rgba(255, 255, 255, 0.88);
}

.brand-suite-strategist-pillars {
  max-width: 100%;
  margin: 0 auto 1.15rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.brand-suite-strategist-pillars .landing-value-item {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 14px;
  padding: 0.75rem 0.65rem;
}

.brand-suite-strategist-pillars .landing-value-item strong {
  font-size: 0.9rem;
  color: #e9d5ff;
}

.brand-suite-strategist-pillars .landing-value-item span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.52);
}

.brand-suite-strategist-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.95rem 1rem 0.15rem;
  border-top: 1px solid rgba(192, 132, 252, 0.2);
  text-align: center;
}

.brand-suite-strategist-bridge-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
}

.brand-suite-strategist-bridge-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.85), rgba(192, 132, 252, 0.9));
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.28);
  letter-spacing: 0.02em;
}

.brand-suite-strategist-panel:hover .brand-suite-strategist-bridge-cta {
  box-shadow: 0 6px 24px rgba(168, 85, 247, 0.4);
}

.brand-suite-products-head {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 1.75rem;
  border-top: none;
}

#brand-suite,
#brand-suite-products {
  scroll-margin-top: calc(var(--nav-height, 4.5rem) + 0.5rem);
}

.teaser-skip {
  margin-top: 1.25rem;
  padding: 0.55rem 1.35rem;
  background: transparent;
  border: 1px solid rgba(0, 255, 157, 0.4);
  color: var(--landing-accent);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}

.teaser-skip:hover {
  background: rgba(0, 255, 157, 0.12);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .landing-spotlight-grid,
  .landing-socila-jump,
  .landing-socila-jump-home {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .landing-socila-jump a {
    min-height: 72px;
    padding: 1rem 0.75rem;
  }
  .landing-how-steps {
    grid-template-columns: 1fr;
  }

  .landing-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .landing-pain-inner {
    grid-template-columns: 1fr;
  }

  .landing-pain-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }

  .socila-strategy-quick-links {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
  }

  .socila-strategy-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .socila-section-head {
    padding: 0 0.25rem;
  }

  .socila-strategist-reframe {
    grid-template-columns: 1fr;
  }

  .socila-strategist-reframe-arrow {
    justify-content: center;
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .socila-copilot-strip {
    grid-template-columns: 1fr;
  }

  .socila-category-tracks {
    grid-template-columns: 1fr;
  }

  .socila-creator-flow {
    flex-direction: column;
  }

  .socila-creator-flow-arrow {
    transform: rotate(90deg);
  }

  .socila-creator-step {
    max-width: 100%;
    width: 100%;
  }

  .socila-creator-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .socila-paths-grid {
    grid-template-columns: 1fr;
  }

  .brand-suite-strategist-pillars {
    grid-template-columns: 1fr;
  }

  .brand-suite-strategist-reframe {
    grid-template-columns: 1fr;
  }

  .brand-suite-strategist-reframe .landing-pain-arrow {
    justify-content: center;
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .brand-suite-strategist-panel {
    width: calc(100% - 0.5rem);
  }
}

@media (max-width: 576px) {
  .landing-hero,
  .landing-hero-socila {
    margin-top: var(--nav-height);
  }

  .landing-value-strip,
  .landing-audience-grid {
    grid-template-columns: 1fr;
  }

  .landing-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-btn-primary,
  .landing-btn-secondary,
  .landing-btn-ghost {
    width: 100%;
  }

  .brand-suite-strategist-panel {
    padding: 1.15rem 0.85rem;
    border-radius: 18px;
  }

  .brand-suite-strategist-head h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
  }

  .brand-suite-strategist-audience {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── Platform map (branding / marketing / content clarity) ── */
.landing-platform-map {
  padding: 2.5rem clamp(1rem, 4vw, 2rem) 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.landing-platform-card {
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 255, 157, 0.18);
  background: rgba(0, 0, 0, 0.35);
}

.landing-platform-card h3 {
  color: var(--nav-accent, #00ff9d);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.landing-platform-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

html[data-theme="light"] .landing-platform-card {
  background: #fff;
}

html[data-theme="light"] .landing-platform-card p {
  color: var(--nl-theme-muted);
}

@media (max-width: 900px) {
  .landing-platform-grid {
    grid-template-columns: 1fr;
  }
}

body.site-nav-open {
  overflow: hidden;
}

/* ── Creator-first homepage + studio parity ── */
.landing-hero-creator .landing-badge-creator {
  border-color: rgba(0, 255, 157, 0.45);
}

.landing-trust-line {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.landing-socila-jump-home {
  margin: 1.25rem auto 1rem;
  max-width: 720px;
}

.landing-platform-card-featured {
  border-color: rgba(0, 255, 157, 0.45);
  background: rgba(0, 255, 157, 0.06);
  box-shadow: 0 8px 32px rgba(0, 255, 157, 0.12);
}

.creator-traction-section {
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.creator-featured-row {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .creator-featured-row {
    grid-template-columns: 1fr;
  }
}

.brand-suite-strategist-band {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 1.5rem clamp(1rem, 3vw, 1.75rem);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 157, 0.15);
  background: rgba(0, 0, 0, 0.25);
}

.brand-suite-strategist-band .brand-suite-strategist-reframe {
  margin-top: 1.25rem;
}

.homepage-lane {
  position: relative;
}

.homepage-lane-label {
  max-width: 1200px;
  margin: 0 auto 0.75rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 255, 157, 0.55);
}

html[data-theme="light"] .homepage-lane-label {
  color: var(--nl-accent, #007a4d);
}

.homepage-lane-foot,
.brand-suite-strategist-cta-hint {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.brand-suite-strategist-cta-hint a,
.homepage-lane-foot a {
  color: var(--landing-accent, #00ff9d);
  font-weight: 700;
  text-decoration: none;
}

.landing-scroll-hint {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.landing-scroll-hint a {
  color: rgba(0, 255, 157, 0.85);
  text-decoration: none;
  font-weight: 600;
}

html[data-theme="light"] .landing-scroll-hint {
  color: var(--nl-text-muted, #3d5348);
}

html[data-theme="light"] .landing-scroll-hint a {
  color: var(--nl-accent, #007a4d);
}

.teaser-skip {
  margin-top: 1.25rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 157, 0.4);
  background: rgba(0, 255, 157, 0.1);
  color: var(--neon-green, #00ff9d);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.teaser-skip:hover {
  background: rgba(0, 255, 157, 0.2);
}

/* ══════════════════════════════════════════
   LIGHT MODE — full homepage + studio
   ══════════════════════════════════════════ */
html[data-theme="light"] {
  --landing-accent: #007a4d;
  --landing-accent-bright: #00995f;
  --landing-accent-socila: #007a4d;
  --landing-surface: rgba(255, 255, 255, 0.96);
  --landing-border: rgba(0, 90, 60, 0.2);
}

html[data-theme="light"] .landing-hero h1 {
  color: var(--nl-accent-strong, #007a4d) !important;
}

html[data-theme="light"] .landing-subtitle {
  color: var(--nl-text-muted, #3d5348) !important;
}

html[data-theme="light"] .suite-main {
  background: var(--nl-bg, #f5f9f7) !important;
}

/* Section header — light-mode-global.css */

html[data-theme="light"] .suite-section-head h2,
html[data-theme="light"] .brand-suite-products-head h2 {
  color: var(--nl-accent-strong, #007a4d) !important;
}

html[data-theme="light"] .suite-section-head p,
html[data-theme="light"] .brand-suite-products-head p,
html[data-theme="light"] .suite-section-head .landing-section-eyebrow {
  color: var(--nl-text-muted, #3d5348) !important;
}

html[data-theme="light"] .creator-traction-section {
  background: #ffffff !important;
}

html[data-theme="light"] .brand-suite-section {
  background: #f5f9f7 !important;
}

html[data-theme="light"] .suite-catalog-section {
  background: #ffffff !important;
}

/* socila section head panel — light-mode-global.css */

html[data-theme="light"] .socila-studio-section {
  background: var(--nl-bg, #f5f9f7) !important;
  border-top-color: var(--nl-border, rgba(0, 90, 60, 0.12)) !important;
}

html[data-theme="light"] .socila-studio-seo,
html[data-theme="light"] .socila-studio-ui {
  background: #ffffff !important;
}

html[data-theme="light"] .brand-suite-card-body,
html[data-theme="light"] .suite-tool-card {
  color: var(--nl-text, #102018);
}

html[data-theme="light"] .landing-platform-card {
  background: #fff;
}
