/* ── Lingopie creator landing — structural + interaction styles ──
   Tokens come from colors_and_type.css (DS). Orange = #FF6D00 primary. */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: clip; }
body { margin: 0; width: 100%; overflow-x: clip; background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); }
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Top nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 22px; }
.nav-brand .for-creators {
  font-size: 13px; font-weight: 800; color: var(--color-text-dim);
  border-left: 1px solid var(--color-divider); padding-left: 10px; letter-spacing: .01em;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--color-text-secondary); font-size: 14px; font-weight: 700;
  transition: color .2s ease; cursor: pointer;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* ── Jump nav (sticky pill bar) ── */
.jumpnav { position: sticky; top: 68px; z-index: 99; background: var(--color-surface); border-bottom: 1px solid var(--color-divider); }
.jumpnav-inner { display: flex; gap: 10px; padding: 14px 0; flex-wrap: wrap; }
.jump-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 360px; border: 1.5px solid var(--color-divider);
  font-size: 13px; font-weight: 800; color: var(--color-text-secondary);
  text-decoration: none; cursor: pointer; transition: all .2s ease; background: var(--color-surface);
  white-space: nowrap;
}
.jump-pill i { font-size: 13px; }
.jump-pill:hover { border-color: var(--orange-300); color: var(--color-text); }
.jump-pill.active { border-color: var(--color-primary); color: var(--color-primary); background: var(--orange-50); }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; background: #15111A; color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, #120E16 0%, rgba(18,14,22,0.9) 30%, rgba(18,14,22,0.5) 54%, rgba(18,14,22,0.12) 76%, transparent 100%),
    linear-gradient(180deg, rgba(18,14,22,0.35) 0%, transparent 26%, rgba(18,14,22,0.5) 64%, #120E16 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(680px 460px at 12% 26%, var(--hero-glow, rgba(255,109,0,0.28)), transparent 62%);
  transition: opacity .3s ease;
}
.hero-inner { position: relative; z-index: 2; padding-block: 92px 64px; }
.hero-copy { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 20px; letter-spacing: .06em;
  color: var(--orange-300); text-transform: uppercase; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--color-primary); display: inline-block; }
.hero h1 {
  font-family: var(--font-body); font-weight: 800; letter-spacing: -0.015em;
  font-size: clamp(40px, 5.6vw, 68px); line-height: 1.04; max-width: 16ch; margin: 0;
  text-wrap: balance;
}
.hero h1 .hl { color: var(--orange-400); }
.hero-sub {
  font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.74);
  max-width: 56ch; margin: 22px 0 0;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 32px; }

.hero-pick { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: .06em; margin: 64px 0 18px; }

/* ── Creator cards (hero selector) ── */
.creator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.creator-card {
  position: relative; text-align: left; cursor: pointer; text-decoration: none;
  background: rgba(255,255,255,0.055); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 26px 24px 22px; transition: transform .25s ease, border-color .25s ease, background .25s ease;
  display: flex; flex-direction: column;
}
.creator-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.085); }
.creator-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; margin-bottom: 18px;
}
.creator-card h3 { font-size: 21px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.creator-card .cc-blurb { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.66); margin: 0 0 18px; flex: 1; }
.cc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.cc-tag { font-size: 11.5px; font-weight: 800; padding: 4px 11px; border-radius: 360px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.82); }
.cc-tag.green { background: rgba(139,242,155,0.18); color: #8BF29B; }
.cc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: var(--orange-300); transition: gap .2s ease; }
.creator-card:hover .cc-link { gap: 12px; }

/* ── Languages strip ── */
.langstrip { background: var(--color-primary); }
.langstrip-inner { display: flex; align-items: center; gap: 18px 28px; flex-wrap: wrap; justify-content: center; padding: 18px 0; }
.langstrip .lstitle { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: .06em; }
.lang-item { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; font-weight: 700; }
.lang-item img { width: 24px; height: 24px; border-radius: 50%; }

/* ── Trust strip ── */
.trust { background: var(--color-surface); border-bottom: 1px solid var(--color-divider); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 700; color: var(--color-text); line-height: 1.35; }
.trust-item .ti-ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px; background: var(--orange-50); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 16px; }

/* ── Generic section ── */
.section { padding: 84px 0; }
.section.alt { background: var(--color-surface); }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--color-primary); margin: 0 0 14px; }
.col-copy .eyebrow { display: inline-flex; align-items: center; padding: 8px 16px; border: none; border-radius: 360px; background: color-mix(in srgb, var(--color-primary) 16%, white); color: var(--neutral-900, #242027); font-weight: 900; margin-bottom: 18px; }
.section h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; line-height: 1.14; letter-spacing: -0.01em; margin: 0; max-width: 18ch; text-wrap: balance; }
.section-intro { font-size: 17.5px; line-height: 1.58; color: var(--color-text-secondary); max-width: 46ch; margin: 18px 0 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col.reverse .col-form { order: -1; }
.two-col.reverse .col-perks { order: -1; }
.col-perks .perks { margin-top: 4px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; padding: 7px 14px; border-radius: 360px; background: rgba(31,138,91,0.12); color: #1F8A5B; margin: 0 0 16px; }

/* ── Unified apply section ── */
.apply { background: var(--color-bg); }
.apply-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.apply-head h2 { max-width: none; margin: 0 auto; }
.apply-head .section-intro { max-width: 56ch; margin: 16px auto 0; }
.apply-form { position: static; top: auto; max-width: 600px; margin: 0 auto; box-shadow: var(--shadow-m); }
.apply-form .type-field { margin-bottom: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--color-divider); }
.apply-form .type-field select { font-weight: 700; }

/* ── Perks ── */
.perks { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.perk { display: flex; gap: 16px; }
.perk-ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.perk-tt { font-size: 16px; font-weight: 800; margin: 2px 0 4px; }
.perk-bd { font-size: 14.5px; line-height: 1.5; color: var(--color-text-secondary); margin: 0; }

/* ── Form card ── */
.form-card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-s); position: sticky; top: 148px; }
.form-card h3 { font-size: 21px; font-weight: 800; margin: 0 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 7px; color: var(--color-text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-divider); border-radius: 8px;
  font-size: 14.5px; font-family: var(--font-body); color: var(--color-text); background: var(--neutral-100);
  transition: border-color .2s ease, background .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--neutral-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); background: #fff; }
.field textarea { resize: vertical; min-height: 92px; }
.field-row { display: flex; gap: 12px; }
.field-row .field { flex: 1; }
.form-note { font-size: 12.5px; color: var(--color-text-dim); text-align: center; margin: 12px 0 0; }

/* form success */
.form-success { text-align: center; padding: 18px 6px; }
.form-success .fs-ic { width: 64px; height: 64px; border-radius: 50%; background: rgba(139,242,155,0.22); color: #1F8A5B; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 4px auto 18px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--color-text-secondary); font-size: 15px; line-height: 1.55; max-width: 34ch; margin: 0 auto; }

/* ── UGC apply panel ── */
.ugc-apply { background: var(--gradient-dark); color: #fff; border-radius: 20px; padding: 36px 34px; box-shadow: var(--shadow-m); position: sticky; top: 148px; }
.ugc-apply .ua-kicker { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-300); margin: 0 0 12px; }
.ugc-apply h3 { font-size: 24px; font-weight: 800; margin: 0 0 10px; }
.ugc-apply p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.55; margin: 0 0 22px; }
.steps { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.steps li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; color: rgba(255,255,255,0.92); }
.steps li::before {
  counter-increment: step; content: counter(step);
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--color-primary); color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.ugc-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; padding: 7px 14px; border-radius: 360px; background: rgba(139,242,155,0.18); color: #8BF29B; margin-bottom: 22px; }

/* ── Testimonials ── */
.testi { background: var(--gradient-dark); color: #fff; }
.testi h2 { color: #fff; text-align: center; max-width: none; margin: 0 auto; }
.testi .eyebrow { text-align: center; color: var(--orange-300); }
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 78px; }
.testi-card { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 52px 24px 24px; display: flex; flex-direction: column; }
.testi-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 16px; }
.avatar-photo { position: absolute; top: -44px; left: 50%; transform: translateX(-50%); width: 88px; height: 88px; }
.avatar-photo > img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: center; box-shadow: 0 8px 22px -6px rgba(0,0,0,0.6); }
.avatar-photo > img.avatar-flag { width: 26px; height: 26px; position: absolute; right: 0; bottom: 2px; object-position: center; box-shadow: 0 2px 6px -1px rgba(0,0,0,0.5); }
.testi-head .nm { font-weight: 800; font-size: 15px; }
.testi-head .hd { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 3px; }
.testi-card p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.82); margin: 0 0 16px; flex: 1; text-align: center; }
.stars { color: var(--yellow-500); font-size: 13px; letter-spacing: 2px; text-align: center; }

/* ── FAQ ── */
.faq { background: var(--color-bg); }
.faq h2 { text-align: center; max-width: none; margin: 0 auto; }
.faq .eyebrow { text-align: center; }
.faq-list { max-width: 820px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: 14px; overflow: hidden; transition: box-shadow .2s ease; }
.faq-item.open { box-shadow: var(--shadow-xs); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-body);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-size: 16px; font-weight: 800; color: var(--color-text); }
.faq-q i { color: var(--color-primary); transition: transform .25s ease; font-size: 15px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.6; color: var(--color-text-secondary); }

/* ── Final CTA ── */
.finalcta { padding: 24px 0 96px; }
.finalcta-card { position: relative; overflow: hidden; border-radius: 26px; padding: 60px 48px; text-align: center; color: #fff; }
.finalcta-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, #FF6D00 0%, #FF8724 45%, #65A0FB 130%); }
.finalcta-card > * { position: relative; }
.finalcta-card h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); margin: 0 auto; max-width: 20ch; }
.finalcta-card p { color: rgba(255,255,255,0.92); font-size: 18px; margin: 16px auto 30px; max-width: 50ch; }

/* ── Footer ── */
.footer { background: var(--neutral-900); color: rgba(255,255,255,0.62); padding: 64px 0 72px; }
.footer-brand { margin-bottom: 40px; }
.footer-wordmark { display: block; height: 26px; width: auto; }
.footer-social { display: flex; gap: 18px; margin-top: 22px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; color: #fff; font-size: 17px; text-decoration: none; transition: color .2s ease; }
.footer-social a:hover { color: var(--color-primary, #FF6D00); }

.footer-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; align-items: start; }
.footer-col { display: flex; flex-direction: column; gap: 28px; }
.footer-group h4 { font-size: 15px; font-weight: 800; color: var(--color-secondary, #65A0FB); margin: 0 0 16px; }
.footer-group ul, .footer-langsites { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-langsites { margin-top: 28px; }
.footer-group a, .footer-langsites a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; transition: color .2s ease; }
.footer-group a:hover, .footer-langsites a:hover, .footer-social a:focus-visible { color: var(--color-primary, #FF6D00); }
.footer-badges { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-badges img { height: 42px; width: auto; display: block; }

/* ── Responsive ── */

/* Tablet & below */
@media (max-width: 980px) {
  .hero::before { background:
    linear-gradient(180deg, rgba(18,14,22,0.55) 0%, rgba(18,14,22,0.82) 45%, #120E16 100%); }
  .hero-bg img { object-position: 55% 32%; }
  .hero-copy { max-width: none; }
  .hero-inner { padding-block: 72px 56px; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse .col-form { order: 0; }
  .two-col.reverse .col-perks { order: 0; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card, .ugc-apply { position: static; }
  .nav-links { display: none; }
  .section { padding: 72px 0; }
  .testi-grid { margin-top: 70px; }
}

/* Small tablet / large phone */
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .hero-inner { padding-block: 56px 48px; }
  .hero-eyebrow { font-size: 17px; margin-bottom: 16px; }
  .hero-sub { font-size: 17px; margin-top: 18px; }
  .hero-pick { margin: 48px 0 16px; }
  .creator-card { padding: 24px 22px 20px; }
  .section-intro { font-size: 16.5px; }
  .finalcta-card { padding: 48px 32px; }
  .finalcta-card p { font-size: 16.5px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

/* Phone */
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .nav-inner { height: 60px; gap: 12px; }
  .nav-brand img { height: 20px; }
  .nav-cta > button { padding: 10px 18px !important; font-size: 14px; }
  .hero-eyebrow { font-size: 15px; letter-spacing: .04em; margin-top: 20px; }
  .hero-sub { font-size: 15.5px; line-height: 1.5; }
  .hero-cta-row { gap: 16px; margin-top: 52px; }
  .hero-cta-row > button { width: 100%; }
  .hero-pick { margin: 56px 0 18px; }
  .creator-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-inner { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; }
  .testi-grid { grid-template-columns: 1fr; gap: 56px; margin-top: 64px; }
  .field-row { flex-direction: column; gap: 0; }
  .section { padding: 52px 0; }
  .form-card { padding: 24px 20px; }
  .apply-head { margin-bottom: 32px; }
  .faq-q { padding: 18px 18px; font-size: 15px; }
  .faq-a-inner { padding: 0 18px 18px; }
  .finalcta { padding: 16px 0 72px; }
  .finalcta-card { padding: 40px 22px; }
  .finalcta-card p { font-size: 15.5px; }
  .langstrip-inner { display: grid; grid-template-columns: auto auto; gap: 16px 40px; padding: 24px 0; justify-content: center; }
  .langstrip .lstitle { grid-column: 1 / -1; text-align: center; margin-bottom: 4px; }
  .lang-item { justify-content: flex-start; }
  .footer { padding: 48px 0 56px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-wordmark { height: 23px; }
}

/* Narrow phone */
@media (max-width: 380px) {
  .nav-brand .for-creators { display: none; }
  .hero h1 { font-size: 34px; }
}

/* ============================================================================
   TWEAKS — expressive controls that reshape the whole page feel.
   Driven by data-attributes on <html>: data-vibe / data-accent / data-shape.
   ============================================================================ */

/* ── ACCENT ── remap the orange token system + hero glow + main CTAs ── */
html[data-accent="blue"] {
  --color-primary: #2A6FDB; --orange-50: #EAF1FD; --orange-300: #7FA9F0; --orange-400: #4E84E6;
  --hero-glow: rgba(42,111,219,0.34);
}
html[data-accent="magenta"] {
  --color-primary: #E0479B; --orange-50: #FCEAF3; --orange-300: #F19BC7; --orange-400: #E96FB1;
  --hero-glow: rgba(224,71,155,0.34);
}
html[data-accent="teal"] {
  --color-primary: #00979D; --orange-50: #E2F4F4; --orange-300: #5FC4C8; --orange-400: #1FA9AE;
  --hero-glow: rgba(0,151,157,0.34);
}
/* recolor the solid "main" CTA buttons (DS renders inline #FF6D00, so override) */
html[data-accent="blue"] .nav-cta > button,
html[data-accent="blue"] .hero-cta-row > button:first-child,
html[data-accent="blue"] .col-copy > button,
html[data-accent="blue"] .apply-form form > button { background-color: #2A6FDB !important; }
html[data-accent="magenta"] .nav-cta > button,
html[data-accent="magenta"] .hero-cta-row > button:first-child,
html[data-accent="magenta"] .col-copy > button,
html[data-accent="magenta"] .apply-form form > button { background-color: #E0479B !important; }
html[data-accent="teal"] .nav-cta > button,
html[data-accent="teal"] .hero-cta-row > button:first-child,
html[data-accent="teal"] .col-copy > button,
html[data-accent="teal"] .apply-form form > button { background-color: #00979D !important; }
/* keep the final-CTA gradient on-accent too */
html[data-accent="blue"] .finalcta-card::before { background: linear-gradient(120deg, #2A6FDB 0%, #5B8DEC 45%, #9A4FD0 130%); }
html[data-accent="magenta"] .finalcta-card::before { background: linear-gradient(120deg, #E0479B 0%, #F074AE 45%, #FF8724 130%); }
html[data-accent="teal"] .finalcta-card::before { background: linear-gradient(120deg, #00979D 0%, #3FBDBF 45%, #65A0FB 130%); }

/* ── VIBE: AIRY ── open, brighter, more breathing room ── */
html[data-vibe="airy"] .section { padding: 108px 0; }
html[data-vibe="airy"] body, html[data-vibe="airy"] .apply, html[data-vibe="airy"] .faq { background: #FFFFFF; }
html[data-vibe="airy"] .hero-inner { padding-block: 104px 76px; }
html[data-vibe="airy"] .hero::before {
  background:
    linear-gradient(90deg, rgba(18,14,22,0.92) 0%, rgba(18,14,22,0.7) 32%, rgba(18,14,22,0.3) 58%, transparent 84%),
    linear-gradient(180deg, rgba(18,14,22,0.25) 0%, transparent 30%, rgba(18,14,22,0.42) 72%, #120E16 100%);
}
html[data-vibe="airy"] .hero::after { background: radial-gradient(880px 600px at 14% 26%, var(--hero-glow, rgba(255,109,0,0.28)), transparent 66%); }
html[data-vibe="airy"] .hero-sub, html[data-vibe="airy"] .section-intro { line-height: 1.72; }
html[data-vibe="airy"] .creator-card { padding: 32px 30px 28px; }
html[data-vibe="airy"] .perks { gap: 28px; }
html[data-vibe="airy"] .two-col { gap: 80px; }

/* ── VIBE: EDITORIAL ── ink-forward, monochrome hero, refined type ── */
html[data-vibe="editorial"] .hero-bg img { filter: grayscale(0.6) contrast(1.05) brightness(0.9); }
html[data-vibe="editorial"] .hero::after { opacity: 0; }
html[data-vibe="editorial"] .hero h1, html[data-vibe="editorial"] .section h2 { letter-spacing: -0.03em; }
html[data-vibe="editorial"] .hero h1 .hl { color: #fff; }
html[data-vibe="editorial"] .eyebrow, html[data-vibe="editorial"] .testi .eyebrow { color: var(--color-text-dim); }
html[data-vibe="editorial"] .hero-eyebrow { color: rgba(255,255,255,0.7); }
html[data-vibe="editorial"] .hero-eyebrow::before { background: rgba(255,255,255,0.7); }
html[data-vibe="editorial"] .langstrip { background: var(--neutral-900); }
html[data-vibe="editorial"] .finalcta-card::before { background: linear-gradient(120deg, #242027 0%, #37323E 100%); }
html[data-vibe="editorial"] .creator-card,
html[data-vibe="editorial"] .testi-card { background: rgba(255,255,255,0.04); }

/* ── SHAPE: SHARP ── squared, editorial corners ── */
html[data-shape="sharp"] .creator-card,
html[data-shape="sharp"] .form-card,
html[data-shape="sharp"] .ugc-apply,
html[data-shape="sharp"] .testi-card,
html[data-shape="sharp"] .faq-item,
html[data-shape="sharp"] .finalcta-card { border-radius: 3px; }
html[data-shape="sharp"] .creator-icon,
html[data-shape="sharp"] .perk-ic,
html[data-shape="sharp"] .ti-ic { border-radius: 4px; }
html[data-shape="sharp"] .jump-pill,
html[data-shape="sharp"] .cc-tag,
html[data-shape="sharp"] .section-badge,
html[data-shape="sharp"] .ugc-badge { border-radius: 3px; }
html[data-shape="sharp"] .field input,
html[data-shape="sharp"] .field select,
html[data-shape="sharp"] .field textarea { border-radius: 2px; }
html[data-shape="sharp"] .nav-cta > button,
html[data-shape="sharp"] .hero-cta-row > button,
html[data-shape="sharp"] .col-copy > button,
html[data-shape="sharp"] .apply-form form > button { border-radius: 4px !important; }

/* ── SHAPE: SOFT ── pillowy, friendly corners ── */
html[data-shape="soft"] .creator-card,
html[data-shape="soft"] .form-card,
html[data-shape="soft"] .ugc-apply,
html[data-shape="soft"] .testi-card,
html[data-shape="soft"] .finalcta-card { border-radius: 30px; }
html[data-shape="soft"] .faq-item { border-radius: 20px; }
html[data-shape="soft"] .field input,
html[data-shape="soft"] .field select,
html[data-shape="soft"] .field textarea { border-radius: 14px; }
html[data-shape="soft"] .creator-icon,
html[data-shape="soft"] .perk-ic,
html[data-shape="soft"] .ti-ic { border-radius: 18px; }
