/* ==========================================================================
   Webshop: UGC video marketplace
   Mobile-first. Tokens → base → components → sections → breakpoints
   ========================================================================== */

:root {
  --bg: #0f0d0b;
  --bg-2: #161310;
  --bg-3: #1e1a16;
  --line: rgba(245, 238, 228, 0.1);
  --line-2: rgba(245, 238, 228, 0.18);
  --text: #f5eee4;
  --muted: #b3a89b;
  --dim: #7d7369;
  --rust: #c2542d;
  --orange: #e07a3f;
  --grad: linear-gradient(135deg, var(--rust), var(--orange));
  --ok: #7fbf7a;
  --err: #ff7b6b;

  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --nav-h: 68px;
  --gutter: 16px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--rust); color: #fff; }

svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--rust); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip-link:focus { left: 8px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 820px; }
.accent { color: var(--orange); }

.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: var(--grain); opacity: 0.09; mix-blend-mode: overlay;
}

.ico { width: 18px; height: 18px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -12px rgba(224, 122, 63, .7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(224, 122, 63, .85); }
.btn--ghost { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--orange); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(4px); }
.text-btn { color: var(--orange); font-weight: 600; text-decoration: underline; }

/* ---------- Type helpers ---------- */
.kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.kicker--light { color: var(--orange); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border-radius: 999px;
  background: rgba(194, 84, 45, .14); border: 1px solid rgba(224, 122, 63, .35);
  font-size: 12px; font-weight: 600; letter-spacing: .02em; color: #f3c2a4;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(224,122,63,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(224,122,63,0); } 100% { box-shadow: 0 0 0 0 rgba(224,122,63,0); } }

.section { padding: 80px 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section__head--left { text-align: left; margin: 64px 0 28px; max-width: 640px; }
.section__title {
  font-family: var(--font-display); font-weight: 400; letter-spacing: .01em;
  font-size: clamp(40px, 9vw, 72px); line-height: .95; text-transform: uppercase;
}
.section__title--xl { font-size: clamp(48px, 11vw, 104px); }
.section__lead { color: var(--muted); font-size: 17px; margin-top: 16px; }
.subhead { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 6vw, 52px); text-transform: uppercase; letter-spacing: .01em; }

/* ---------- Placeholder "media" ---------- */
.ph { position: relative; overflow: hidden; background-color: var(--bg-3); }
.ph::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--grain); opacity: .14; mix-blend-mode: overlay; pointer-events: none;
}
.ph-1 { background-image: radial-gradient(120% 80% at 20% 10%, #d9814f 0%, transparent 55%), linear-gradient(160deg, #6b2e18, #1c120c); }
.ph-2 { background-image: radial-gradient(90% 70% at 80% 20%, #e9b48a 0%, transparent 55%), linear-gradient(200deg, #8a4a2c, #221510); }
.ph-3 { background-image: radial-gradient(100% 70% at 30% 80%, #b85c33 0%, transparent 55%), linear-gradient(140deg, #3b2a20, #120e0b); }
.ph-4 { background-image: radial-gradient(90% 70% at 70% 70%, #f0a26a 0%, transparent 50%), linear-gradient(170deg, #4f3222, #150f0b); }
.ph-5 { background-image: radial-gradient(110% 80% at 50% 0%, #cfa07c 0%, transparent 55%), linear-gradient(180deg, #5c4030, #16110d); }
.ph-6 { background-image: radial-gradient(100% 80% at 90% 90%, #c2542d 0%, transparent 55%), linear-gradient(120deg, #2f241d, #0f0c0a); }
.ph-7 { background-image: radial-gradient(120% 70% at 10% 60%, #a8663f 0%, transparent 55%), linear-gradient(210deg, #402519, #120d0a); }
.ph-8 { background-image: radial-gradient(90% 60% at 60% 30%, #e07a3f 0%, transparent 50%), linear-gradient(150deg, #7a3a1f, #1a110c); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: rgba(15, 13, 11, .72); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(15, 13, 11, .9); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; transform: rotate(-6deg); }
.logo__mark svg { width: 16px; height: 16px; fill: #fff; stroke: none; margin-left: 2px; }
.logo__text { font-family: var(--font-display); font-size: 26px; letter-spacing: .04em; line-height: 1; padding-top: 3px; }

.nav__links {
  position: fixed; inset: var(--nav-h) 0 0 0; background: var(--bg);
  display: flex; flex-direction: column; padding: 24px var(--gutter); gap: 4px;
  opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .3s, transform .3s, visibility .3s; overflow-y: auto;
}
.nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
.nav__links > a { font-family: var(--font-display); font-size: 40px; letter-spacing: .02em; padding: 6px 0; border-bottom: 1px solid var(--line); }
.nav__links > a:hover { color: var(--orange); }
.nav__mobile-ctas { display: grid; gap: 12px; margin-top: 28px; }
.nav__ctas { display: none; gap: 10px; }

.nav__toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border-radius: 12px; border: 1px solid var(--line-2); }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { min-height: min(calc(100svh - var(--nav-h)), 940px); display: flex; align-items: center; overflow: hidden; padding: 72px 0 88px; }
.hero__collage {
  position: absolute; inset: -10% -20% -10% 10%; z-index: 0;
  display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 14px;
  transform: rotate(-8deg); opacity: .55;
}
.collage-col { display: flex; flex-direction: column; gap: 14px; animation: drift 26s linear infinite alternate; }
.collage-col--down { animation-direction: alternate-reverse; margin-top: -60px; }
@keyframes drift { from { transform: translateY(0); } to { transform: translateY(-120px); } }
.vcard { aspect-ratio: 9 / 16; border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow); }
.vcard__tag {
  position: absolute; left: 10px; bottom: 10px; z-index: 1; font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 999px; background: rgba(0,0,0,.45); backdrop-filter: blur(6px);
}
.hero__shade {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(15,13,11,.94) 38%, rgba(15,13,11,.55) 75%, rgba(15,13,11,.3) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%);
}
.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(56px, 15vw, 132px); line-height: .88; letter-spacing: .005em;
  margin: 24px 0 22px; max-width: 900px;
}
.hero__title .accent { display: block; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(17px, 2.4vw, 20px); color: var(--muted); max-width: 560px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__bullets { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: var(--muted); font-size: 14px; }
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero__bullets .ico { color: var(--orange); width: 16px; height: 16px; }

/* ---------- Stats ---------- */
.stats { border-block: 1px solid var(--line); background: var(--bg-2); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat { padding: 26px 12px; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-child(n+3) { border-bottom: 0; }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(44px, 10vw, 64px); line-height: 1; color: var(--orange); }
.stat__label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 16px; counter-reset: s; }
.step {
  position: relative; padding: 28px 24px; border-radius: var(--r); background: var(--bg-2);
  border: 1px solid var(--line); transition: border-color .3s, transform .3s;
}
.step:hover { border-color: rgba(224, 122, 63, .5); transform: translateY(-4px); }
.step__num { position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 56px; line-height: 1; color: rgba(245,238,228,.07); }
.step__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(194,84,45,.15); color: var(--orange); margin-bottom: 18px; }
.step__icon svg { width: 24px; height: 24px; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Tabs ---------- */
.tabs {
  display: flex; gap: 6px; padding: 6px; margin: 0 auto 36px; width: max-content; max-width: 100%;
  border-radius: 999px; background: var(--bg); border: 1px solid var(--line); overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab { padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--muted); white-space: nowrap; transition: background .2s, color .2s; }
.tab:hover { color: var(--text); }
.tab.is-active { background: var(--grad); color: #fff; }
.tabpanel.is-active { animation: fadeUp .45s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.panel-intro { max-width: 680px; margin: -12px auto 28px; text-align: center; color: var(--muted); }

.type-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.type-card {
  display: grid; grid-template-columns: 120px 1fr; border-radius: var(--r); overflow: hidden;
  background: var(--bg); border: 1px solid var(--line); transition: border-color .3s, transform .3s;
}
.type-card:hover { border-color: rgba(224,122,63,.55); transform: translateY(-4px); }
.type-card--hot { border-color: rgba(224,122,63,.5); }
.type-card__thumb { aspect-ratio: 9 / 16; }
.type-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.type-card__icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(194,84,45,.15); color: var(--orange); }
.type-card__icon svg { width: 20px; height: 20px; }
.type-card h3 { font-size: 17px; font-weight: 700; }
.type-card p { font-size: 14px; color: var(--muted); flex: 1; }
.type-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.price { font-size: 13px; color: var(--muted); }
.price strong { font-size: 18px; color: var(--text); font-weight: 700; }

.badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); text-transform: uppercase; letter-spacing: .06em; }
.badge--hot { background: var(--grad); }

/* hover-to-play */
[data-hover-play] { cursor: pointer; }
.play-btn {
  position: absolute !important; z-index: 2; top: 50%; left: 50%; width: 48px; height: 48px; margin: -24px 0 0 -24px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); transition: transform .3s, opacity .3s, background .3s;
}
.play-btn svg { width: 18px; height: 18px; fill: #fff; stroke: none; margin-left: 3px; }
.progress { position: absolute !important; z-index: 2; left: 0; bottom: 0; height: 3px; width: 0; background: var(--grad); }
.ph.is-playing { animation: kenburns 6s ease-in-out forwards; }
.is-playing .play-btn { opacity: 0; transform: scale(.6); }
.is-playing .progress { animation: progress 6s linear forwards; }
@keyframes progress { to { width: 100%; } }
@keyframes kenburns { to { background-size: 130% 130%; background-position: 60% 40%; } }
[data-hover-play] video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

/* length + addons */
.length-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.length-card { padding: 28px 24px; border-radius: var(--r); background: var(--bg); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; transition: border-color .3s; }
.length-card:hover { border-color: rgba(224,122,63,.55); }
.length-card__time { font-family: var(--font-display); font-size: 88px; line-height: .85; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.length-card__time small { font-size: 36px; }
.length-card h3 { font-size: 19px; }
.length-card p { color: var(--muted); font-size: 14px; flex: 1; }

.addon-grid { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.addon { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; align-items: center; padding: 18px 20px; border-radius: var(--r); background: var(--bg); border: 1px solid var(--line); }
.addon__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(194,84,45,.15); color: var(--orange); grid-row: span 2; }
.addon__icon svg { width: 22px; height: 22px; }
.addon h3 { font-size: 16px; }
.addon p { font-size: 14px; color: var(--muted); }
.addon .price { grid-column: 2; }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cat {
  aspect-ratio: 4 / 5; border-radius: var(--r); padding: 16px; display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--line); transition: transform .35s, border-color .35s;
}
.cat > * { position: relative; z-index: 1; }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,8,6,.85) 0%, transparent 60%); }
.cat__icon { position: absolute !important; top: 16px; right: 16px; width: 36px; height: 36px; color: rgba(255,255,255,.85); stroke-width: 1.6; z-index: 2; transition: transform .35s; }
.cat__name { font-family: var(--font-display); font-size: clamp(24px, 5.5vw, 32px); line-height: .95; z-index: 2; }
.cat__meta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--orange); font-weight: 600; margin-top: 8px; z-index: 2; }
.cat__meta svg { width: 14px; height: 14px; transition: transform .3s; }
.cat:hover { transform: translateY(-5px); border-color: rgba(224,122,63,.6); }
.cat:hover .cat__icon { transform: rotate(-10deg) scale(1.1); }
.cat:hover .cat__meta svg { transform: translateX(4px); }

/* ---------- Gallery ---------- */
.filters { display: grid; gap: 12px; margin-bottom: 32px; }
.filter-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.chip {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 14px; font-weight: 500;
  color: var(--muted); white-space: nowrap; transition: all .2s;
}
.chip:hover { color: var(--text); border-color: var(--orange); }
.chip.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
.chip--sm { padding: 7px 13px; font-size: 13px; }
.chip--sm.is-active { background: var(--grad); color: #fff; border-color: transparent; }

.gallery { columns: 2; column-gap: 12px; }
.gcard { break-inside: avoid; margin: 0 0 12px; animation: fadeUp .4s ease both; }
.gcard__media { aspect-ratio: 9 / 16; border-radius: var(--r); border: 1px solid var(--line); }
.gcard__media .badge { text-transform: none; letter-spacing: 0; max-width: calc(100% - 64px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gcard__dur { position: absolute !important; top: 10px; right: 10px; z-index: 2; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 6px; background: rgba(0,0,0,.5); }
.gcard__overlay { position: absolute !important; inset: auto 0 0 0; z-index: 2; padding: 40px 12px 14px; background: linear-gradient(0deg, rgba(0,0,0,.78), transparent); }
.gcard__title { font-weight: 700; font-size: 14px; line-height: 1.3; }
.gcard__creator { font-size: 12px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.gcard__avatar { width: 18px; height: 18px; border-radius: 50%; background: var(--grad); display: inline-grid; place-items: center; font-size: 9px; font-weight: 700; color: #fff; }
.gallery__empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* ---------- Pricing ---------- */
.billing-toggle { display: inline-flex; gap: 4px; padding: 5px; margin-top: 26px; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-2); }
.billing-toggle__opt { padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); display: inline-flex; gap: 6px; align-items: center; }
.billing-toggle__opt.is-active { background: var(--text); color: var(--bg); }
.save { font-size: 11px; padding: 2px 7px; border-radius: 999px; background: var(--rust); color: #fff; }

.pricing { display: grid; gap: 18px; align-items: stretch; }
.plan {
  position: relative; padding: 32px 26px; border-radius: var(--r-lg); background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.plan--featured { background: linear-gradient(180deg, rgba(194,84,45,.18), var(--bg-2) 55%); border-color: rgba(224,122,63,.6); box-shadow: 0 30px 60px -30px rgba(224,122,63,.45); }
.plan__ribbon { position: absolute; top: -13px; left: 26px; padding: 5px 12px; border-radius: 999px; background: var(--grad); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.plan__name { font-family: var(--font-display); font-weight: 400; font-size: 40px; letter-spacing: .02em; }
.plan__desc { color: var(--muted); font-size: 15px; margin-top: 4px; }
.plan__price { display: flex; align-items: baseline; gap: 2px; margin: 22px 0 22px; font-family: var(--font-display); font-size: 68px; line-height: 1; }
.plan__price .cur { font-size: 32px; color: var(--muted); align-self: flex-start; margin-top: 8px; }
.plan__price .per { font-family: var(--font-body); font-size: 15px; color: var(--muted); margin-left: 4px; }
.plan__list { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; font-size: 15px; }
.plan__list li { position: relative; padding-left: 28px; }
.plan__list svg { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; color: var(--orange); }

.featured-addon {
  margin-top: 28px; padding: 28px 24px; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(120deg, #3a1a0d, #1a120c 60%); border: 1px solid rgba(224,122,63,.4);
  display: grid; gap: 18px;
}
.featured-addon > * { position: relative; z-index: 2; }
.featured-addon__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; }
.featured-addon__icon svg { width: 26px; height: 26px; fill: #fff; stroke: none; }
.featured-addon h3 { font-family: var(--font-display); font-weight: 400; font-size: 38px; margin-bottom: 6px; }
.featured-addon p { color: var(--muted); max-width: 560px; }
.featured-addon__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 18px; }
.order { display: grid; gap: 36px; }
.order__intro .section__lead { margin-bottom: 24px; }
.order__perks { display: grid; gap: 12px; }
.order__perks li { display: flex; gap: 10px; align-items: center; color: var(--muted); }
.order__perks svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
.order__summary { margin-top: 28px; padding: 18px; border-radius: var(--r); border: 1px dashed rgba(224,122,63,.5); background: rgba(194,84,45,.08); }
.order__summary .kicker { margin-bottom: 6px; }

.form { position: relative; }
.form__grid { display: grid; gap: 18px; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; border: 0; padding: 0; margin: 0; }
.field label, .field legend, .field .label { font-size: 14px; font-weight: 600; padding: 0; }
.field legend { margin-bottom: 8px; }
.hint { color: var(--dim); font-weight: 400; }
.field input[type="text"], .field input[type="email"], .field input[type="url"], .field input[type="number"], .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--r-sm); background: var(--bg-2); color: var(--text);
  border: 1px solid var(--line-2); font: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23b3a89b' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,122,63,.2); }
.field__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field__error { display: none; font-size: 13px; color: var(--err); }
.field.is-invalid .field__error { display: block; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--err); }

.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.check-chip { position: relative; cursor: pointer; }
.check-chip input { position: absolute; opacity: 0; pointer-events: none; }
.check-chip span {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 999px; font-size: 14px;
  border: 1px solid var(--line-2); color: var(--muted); background: var(--bg-2); transition: all .2s; user-select: none;
}
.check-chip:hover span { border-color: var(--orange); color: var(--text); }
.check-chip input:checked + span { background: rgba(194,84,45,.2); border-color: var(--orange); color: var(--text); }
.check-chip input[type="checkbox"]:checked + span::before { content: "✓"; font-weight: 700; color: var(--orange); }
.check-chip input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); margin-bottom: 20px; cursor: pointer; }
.consent input { width: 18px; height: 18px; accent-color: var(--rust); margin-top: 2px; flex: none; }
.consent.is-invalid { color: var(--err); }
.form__fine { text-align: center; font-size: 12px; color: var(--dim); margin-top: 12px; }
.form__fine a { text-decoration: underline; }

.form__success {
  position: absolute; inset: 0; z-index: 5; border-radius: inherit; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 32px;
  animation: fadeUp .4s ease both;
}
.form__success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(224,122,63,.15); }
.form__success-icon svg { width: 34px; height: 34px; color: #fff; stroke-width: 3; }
.form__success h3 { font-family: var(--font-display); font-weight: 400; font-size: 44px; }
.form__success p { color: var(--muted); max-width: 420px; }
.form__success strong { color: var(--text); }

/* ---------- Creators ---------- */
.creators { background: radial-gradient(80% 60% at 100% 0%, rgba(194,84,45,.28), transparent 60%), #120f0c; overflow: hidden; }
.creators > .container { position: relative; z-index: 2; }
.creators__hero { max-width: 880px; margin-bottom: 48px; }
.creators__hero .section__lead { font-size: 19px; max-width: 620px; }
.steps--creators .step { background: rgba(255,255,255,.03); }
.steps--creators .step__num { position: static; display: block; color: var(--orange); font-size: 44px; margin-bottom: 8px; }
.pricing--creators .plan { background: rgba(15,13,11,.7); }
.apply { display: grid; gap: 24px; margin-top: 72px; }
.apply__intro p { color: var(--muted); margin-top: 10px; }

/* ---------- Trust ---------- */
.trust-grid { display: grid; gap: 16px; }
.trust { padding: 26px 22px; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.trust__icon { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(224,122,63,.5); color: var(--orange); margin-bottom: 16px; }
.trust__icon svg { width: 22px; height: 22px; }
.trust h3 { font-size: 18px; margin-bottom: 8px; }
.trust p { color: var(--muted); font-size: 15px; }

/* ---------- FAQ ---------- */
.accordion { display: grid; gap: 10px; }
.acc { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); transition: border-color .3s; }
.acc.is-open { border-color: rgba(224,122,63,.5); }
.acc h3 { font-size: inherit; }
.acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; text-align: left; font-size: 16px; font-weight: 600; line-height: 1.4; }
.acc__icon { position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); transition: transform .3s, background .3s; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: currentColor; border-radius: 2px; transition: transform .3s; }
.acc__icon::after { transform: rotate(90deg); }
.acc.is-open .acc__icon { background: var(--grad); border-color: transparent; transform: rotate(180deg); }
.acc.is-open .acc__icon::after { transform: rotate(0); }
.acc__panel { padding: 0 20px 20px; color: var(--muted); animation: fadeUp .3s ease both; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 110px 0; text-align: center; overflow: hidden; background: radial-gradient(60% 80% at 50% 110%, rgba(224,122,63,.45), transparent 70%), var(--bg); border-top: 1px solid var(--line); }
.final-cta__inner { position: relative; z-index: 2; }
.final-cta__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(56px, 13vw, 140px); line-height: .88; margin-bottom: 22px; }
.final-cta__title .accent { display: block; }
.final-cta p { color: var(--muted); font-size: 18px; max-width: 520px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.footer { background: #0a0908; border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr 1fr; }
.footer__brand { grid-column: 1 / -1; display: grid; gap: 16px; justify-items: start; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 360px; }
.footer__email { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 600; }
.footer__email svg { width: 18px; height: 18px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: all .2s; }
.socials a:hover { color: #fff; background: var(--rust); border-color: var(--rust); }
.socials svg { width: 18px; height: 18px; }
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: 15px; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom { display: flex; flex-direction: column; gap: 12px; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--dim); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--text); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (min-width: 560px) {
  .type-card { grid-template-columns: 1fr; }
  .type-card__thumb { aspect-ratio: 4 / 5; }
  .type-grid--4 .type-card__thumb { aspect-ratio: 9 / 12; }
  .gallery { columns: 3; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .card { padding: 32px; }
  .form__grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: row; align-items: center; }
}

@media (min-width: 760px) {
  :root { --gutter: 28px; }
  .section { padding: 110px 0; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat:last-child { border-right: 0; }
  .gallery { columns: 4; column-gap: 16px; }
  .gcard { margin-bottom: 16px; }
  .gcard:nth-child(4n+2) .gcard__media { aspect-ratio: 9 / 14; }
  .featured-addon { grid-template-columns: auto 1fr auto; align-items: center; padding: 32px 36px; }
  .featured-addon__cta { flex-direction: column; align-items: flex-end; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
  .filters { justify-items: center; }
  .filter-row { flex-wrap: wrap; justify-content: center; overflow: visible; }
  .addon { grid-template-columns: auto 1fr auto; }
  .addon__icon { grid-row: auto; }
  .addon .price { grid-column: auto; text-align: right; }
}

@media (min-width: 1000px) {
  .nav__links {
    position: static; transform: none; opacity: 1; visibility: visible; flex-direction: row; background: none; padding: 0; gap: 28px; overflow: visible;
  }
  .nav__links > a { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--muted); padding: 0; border: 0; position: relative; }
  .nav__links > a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--orange); transition: width .25s; }
  .nav__links > a:hover, .nav__links > a.is-current { color: var(--text); }
  .nav__links > a:hover::after, .nav__links > a.is-current::after { width: 100%; }
  .nav__mobile-ctas, .nav__toggle { display: none; }
  .nav__ctas { display: flex; }

  .hero__collage { inset: -20% -6% -20% 44%; grid-template-columns: repeat(4, 1fr); opacity: .9; }
  .hero__shade { background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 38%, rgba(15,13,11,.5) 62%, rgba(15,13,11,.15) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 25%); }

  .steps { grid-template-columns: repeat(4, 1fr); }
  .type-grid { grid-template-columns: repeat(3, 1fr); }
  .type-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .length-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing { grid-template-columns: repeat(3, 1fr); }
  .plan--featured { margin: -12px 0 12px; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .order { grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
  .order__intro { position: sticky; top: calc(var(--nav-h) + 32px); }
  .apply { grid-template-columns: 4fr 8fr; gap: 56px; align-items: start; }
  .gallery { columns: 5; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
