@font-face { font-family: "Instrument Serif"; src: url("fonts/instrument-serif-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("fonts/instrument-serif-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("fonts/instrument-sans-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("fonts/instrument-sans-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("fonts/instrument-sans-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-variable.woff2") format("woff2-variations"); font-weight: 200 800; font-style: normal; font-display: swap; }

:root {
  --blue: #1633ff;
  --blue-dark: #1026c9;
  --blue-soft: #eef1ff;
  --ink: #0a0e1e;
  --night: #090d1c;
  --slate: #5b6178;
  --muted: #858ba0;
  --line: rgba(10, 14, 30, 0.12);
  --surface: #f6f7fb;
  --white: #fff;
  --green: #147a62;
  --red: #c3344b;
  --gold: #b56b0b;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(10, 14, 30, 0.11);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.inner-page { background: var(--surface); }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
img[data-protected-image], [data-protected-media] { -webkit-user-drag: none; -webkit-touch-callout: none; user-select: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
fieldset { border: 0; }
.shell { width: min(1240px, calc(100% - 52px)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }
::selection { color: #fff; background: var(--blue); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.beta-strip {
  min-height: 38px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  color: #c4cae0;
  background: var(--night);
  font-size: 11px;
}
.beta-strip strong { color: #fff; text-transform: uppercase; letter-spacing: 0.16em; font-size: 9px; }
.beta-strip a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.55); }
.scroll-progress { position: fixed; left: 0; right: 0; top: 0; z-index: 100; height: 2px; pointer-events: none; }
.scroll-progress span { width: 100%; height: 100%; display: block; background: linear-gradient(90deg,#8d9aff,var(--blue)); transform: scaleX(0); transform-origin: left; will-change: transform; }

.site-header {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: height .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s, background .35s;
}
.site-header.is-condensed { height: 66px; background: rgba(255,255,255,.97); box-shadow: 0 12px 35px rgba(10,14,30,.075); }
.header-inner { height: 100%; display: flex; align-items: center; position: relative; }
.wordmark-wrap { display: flex; align-items: center; gap: 11px; }
.brand-logo { width: 150px; height: auto; display: block; transition: transform .3s ease, opacity .3s ease; }
.wordmark-wrap:hover .brand-logo { transform: translateY(-1px); }
.site-header.is-condensed .brand-logo { transform: scale(.92); transform-origin: left center; }
.brand-logo-reverse { width: 166px; }
.beta-badge { padding: 5px 7px; border-radius: 100px; color: var(--blue); background: var(--blue-soft); font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: 62px; }
.main-nav a { position: relative; font-size: 13px; font-weight: 520; color: var(--slate); letter-spacing: 0; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -12px; height: 1px; background: var(--blue); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.quiet-link, .menu-trigger { border: 0; background: none; }
.quiet-link { padding: 10px; font-size: 12px; font-weight: 500; }
.user-chip { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; }
.user-chip span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--night); }
.menu-trigger { display: none; width: 38px; height: 38px; padding: 7px; }
.menu-trigger span { display: block; width: 20px; height: 1px; margin: 5px auto; background: var(--ink); }
.mobile-panel { display: none; }

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 100px;
  padding: 0 28px;
  color: #fff;
  background: var(--blue);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  transition: transform .25s, background .25s, box-shadow .25s;
}
.button::after { content: ""; position: absolute; inset: -2px auto -2px -45%; width: 35%; z-index: 1; pointer-events: none; background: linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent); transform: skewX(-20deg); transition: left .55s ease; }
.button:hover::after { left: 115%; }
.button:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 13px 30px rgba(22, 51, 255, .23); }
.button-small { min-height: 40px; padding: 0 19px; font-size: 9px; }
.button-secondary { color: var(--ink); background: #fff; border: 1px solid var(--line); }
.button-secondary:hover { color: var(--blue); background: #fff; box-shadow: none; }
.button-light { color: var(--blue); background: #fff; }
.button-danger { color: var(--red); background: #fff; border: 1px solid rgba(195,52,75,.25); }
.button-full { width: 100%; }

.eyebrow { color: var(--blue); text-transform: uppercase; font-size: 10px; font-weight: 750; letter-spacing: .22em; }
.display-title { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .96; }
.display-title em { color: var(--blue); font-weight: 400; }
.section { padding: 105px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 42px; }
.section-heading h2 { margin-top: 12px; font-family: var(--serif); font-size: clamp(39px, 4.7vw, 62px); font-weight: 400; line-height: 1.02; letter-spacing: -.025em; }
.section-heading h2 em { color: var(--blue); font-weight: 400; }
.section-heading > p { max-width: 430px; color: var(--slate); font-size: 15px; line-height: 1.7; }
.text-link { color: var(--ink); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.text-link span { color: var(--blue); font-size: 16px; }

.hero { position: relative; min-height: calc(100vh - 116px); display: grid; place-items: center; overflow: hidden; padding: 82px 0 96px; text-align: center; background: linear-gradient(180deg, #fff 0%, #f7f8ff 100%); }
.hero-inner { position: relative; z-index: 2; }
.hero h1 { max-width: 1000px; margin: 20px auto 24px; font-size: clamp(58px, 7.7vw, 105px); }
.hero h1 span, .hero h1 em { display: block; }
.hero-copy { max-width: 720px; margin: 0 auto; color: var(--slate); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.75; }
.hero-promise { display: inline-block; width: max-content; max-width: 100%; margin: 20px auto 0; padding: 8px 13px; border: 1px solid rgba(22,51,255,.18); border-radius: 100px; color: var(--blue); background: #fff; font-size: 10px; font-weight: 600; letter-spacing: .06em; }
.hero-trends { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; }
.hero-trends span { margin-inline-end: 3px; color: var(--muted); text-transform: uppercase; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.hero-trends a { padding: 7px 14px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink); background: rgba(255,255,255,.72); font-size: 11px; font-weight: 600; transition: color .25s, border-color .25s, background .25s, transform .25s; }
.hero-trends a:hover { color: var(--blue); border-color: rgba(22,51,255,.35); background: #fff; transform: translateY(-1px); }
.search-composer { max-width: 930px; min-height: 72px; margin: 36px auto 17px; padding: 8px; display: grid; grid-template-columns: minmax(0,1fr) 200px 130px; align-items: center; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 20px 55px rgba(10,14,30,.1); text-align: left; }
.search-query { display: flex; align-items: center; gap: 13px; padding: 0 18px; }
.search-query svg { width: 21px; color: var(--blue); flex: none; }
.search-query input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 14px; }
.search-query input::placeholder { color: #959aab; }
.search-category { padding: 0 14px; border-left: 1px solid var(--line); }
.search-category select { width: 100%; border: 0; outline: 0; background: #fff; font-size: 12px; }
.search-composer > button { height: 54px; border: 0; border-radius: 11px; color: #fff; background: var(--blue); text-transform: uppercase; font-size: 10px; font-weight: 600; letter-spacing: .16em; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 13px; margin-top: 25px; }
.hero-proof { display: flex; justify-content: center; margin-top: 44px; }
.hero-proof div { min-width: 180px; max-width: 260px; padding: 0 28px; border-inline-end: 1px solid var(--line); }
.hero-proof div:last-child { border: 0; }
.hero-proof strong { display: block; margin-bottom: 3px; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.15; }
.hero-proof span { color: var(--slate); font-size: 11px; line-height: 1.5; letter-spacing: .015em; }
body[data-page="home"] .search-composer { margin-bottom: 0; }
body[data-page="home"] .hero-actions { margin-top: 22px; }

.category-section { background: #fff; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { min-height: 245px; position: relative; overflow: hidden; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s, transform .3s, box-shadow .3s; }
.category-card::after { display: none; }
.category-card:hover { z-index: 2; background: #fff; transform: translateY(-5px); box-shadow: 0 20px 48px rgba(10,14,30,.1); }
.category-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 18px 0 24px; border: 1px solid rgba(22,51,255,.14); border-radius: 16px; color: var(--blue); background: linear-gradient(145deg,#fff,#edf3ff); box-shadow: 0 9px 22px rgba(22,51,255,.1); transition: color .3s, background .3s, transform .35s, box-shadow .35s; }
.category-icon svg { width: 26px; }
.category-card .category-pulse { position: absolute; top: 20px; inset-inline-end: 20px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border: 1px solid rgba(22,51,255,.16); border-radius: 100px; color: var(--blue); background: rgba(255,255,255,.85); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.category-pulse i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: paperus-pulse-dot 2.2s ease-in-out infinite; }
.category-pulse.is-open { border-color: var(--line); color: var(--slate); background: rgba(246,247,251,.85); }
.category-card .category-mark { position: absolute; bottom: -26px; inset-inline-end: -20px; z-index: 0; color: var(--blue); opacity: .05; pointer-events: none; transition: opacity .35s, transform .6s cubic-bezier(.2,.75,.2,1); }
.category-mark svg { width: 130px; height: 130px; stroke-width: 1.1; }
.category-card:hover .category-mark { opacity: .09; transform: translateY(-5px) rotate(-3deg); }
@keyframes paperus-pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(22,51,255,.35); } 50% { box-shadow: 0 0 0 4px rgba(22,51,255,0); } }
.category-card:hover .category-icon { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(22,51,255,.28); transform: translateY(-3px) rotate(-2deg); }
.category-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.category-card p { margin-top: 7px; color: var(--slate); font-size: 13px; }
.category-card small { display: flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .015em; }
.category-card small span { font-size: 15px; transition: transform .25s; }
.category-card:hover small span { transform: translateX(3px); }
.motion-surface { transform-style: preserve-3d; will-change: transform; }
.motion-surface::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(280px circle at var(--pointer-x,50%) var(--pointer-y,50%),rgba(45,83,255,.12),transparent 60%); opacity: 0; transition: opacity .3s; }
.motion-surface:hover::before { opacity: 1; }
.motion-surface > * { position: relative; z-index: 1; }
.category-card.motion-surface::before { display: block; inset: 0; background: linear-gradient(112deg,transparent 34%,rgba(22,51,255,.05) 43%,rgba(72,106,255,.15) 48%,rgba(255,255,255,.92) 50%,rgba(72,106,255,.14) 52%,transparent 66%); background-position: 150% 0; background-size: 250% 100%; opacity: 0; transition: none; }
.category-card.motion-surface:hover::before { opacity: 0; }
.category-card.fast-shine::before { animation: paperus-fast-shine .52s cubic-bezier(.2,.72,.25,1) both; }
@keyframes paperus-fast-shine { 0% { opacity: 0; background-position: 150% 0; } 12% { opacity: 1; } 82% { opacity: 1; } 100% { opacity: 0; background-position: -80% 0; } }

.film-section { overflow: hidden; color: #fff; background: var(--night); }
.film-heading { display: grid; grid-template-columns: 1fr .78fr; align-items: end; gap: 80px; margin-bottom: 42px; }
.film-heading .eyebrow { color: #8d9aff; }
.film-heading h2 { margin-top: 12px; font-family: var(--serif); font-size: clamp(46px,5vw,72px); font-weight: 400; line-height: .95; letter-spacing: -.025em; }
.film-heading h2 em { color: #9ca7ff; font-weight: 400; }
.film-heading > p { max-width: 500px; color: #aab1c5; font-size: 14px; line-height: 1.75; }
.brand-film { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border: 7px solid #fff; border-radius: 28px; background: #fff; box-shadow: 0 45px 110px rgba(0,0,0,.34),0 0 0 1px rgba(255,255,255,.2); }
.brand-film::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: calc(28px - 7px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.brand-film video { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.75,.2,1), filter .4s; }
.brand-film:hover video { transform: scale(1.012); }
.brand-film.is-paused video { filter: saturate(.96) brightness(1.02) contrast(1.03); }
.film-toggle { position: absolute; left: 24px; bottom: 24px; z-index: 3; min-height: 42px; padding: 0 16px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 100px; color: #fff; background: rgba(7,11,34,.72); backdrop-filter: blur(14px); font-size: 9px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; transition: background .25s, transform .25s; }
.film-toggle:hover { background: rgba(22,51,255,.86); transform: translateY(-2px); }
.film-pause { width: 13px; height: 13px; display: flex; align-items: center; justify-content: center; gap: 3px; }
.film-pause i { width: 2px; height: 10px; display: block; border-radius: 2px; background: currentColor; }
.brand-film.is-paused .film-pause { border-width: 6px 0 6px 10px; border-style: solid; border-color: transparent transparent transparent currentColor; }
.brand-film.is-paused .film-pause i { display: none; }
.brand-film figcaption { position: absolute; right: 24px; bottom: 24px; z-index: 2; display: flex; gap: 18px; color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.brand-film figcaption span + span { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.25); }
.film-principles { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.film-principles article { padding: 25px 28px 0 0; }
.film-principles article + article { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.12); }
.film-principles span { color: #fff; font-family: var(--serif); font-size: 24px; }
.film-principles p { margin-top: 4px; color: #8f97ad; font-size: 11px; }

.social-section { color: #fff; background: linear-gradient(180deg, var(--night) 0%, #0d1330 52%, var(--night) 100%); }
.social-section .eyebrow { color: #8d9aff; }
.social-section .section-heading h2 em { color: #8d9aff; }
.social-section .section-heading > p { color: #a3aabe; }
.social-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.social-card { min-height: 290px; position: relative; overflow: hidden; padding: 31px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.12); border-radius: 19px; background: rgba(255,255,255,.035); transition: transform .35s, border-color .35s, background .35s; }
.social-card:hover { transform: translateY(-6px); border-color: rgba(141,154,255,.5); background: rgba(255,255,255,.065); }
.social-card span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: var(--blue); }
.social-card svg { width: 23px; }
.social-card h3 { margin-top: 38px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.social-card p { margin-top: 8px; color: #9ba3b9; font-size: 12px; }

.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.how-card { min-height: 275px; position: relative; padding: 31px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .35s, border-color .35s, box-shadow .35s; }
.how-card:hover { transform: translateY(-6px); border-color: rgba(22,51,255,.25); box-shadow: 0 22px 55px rgba(10,14,30,.09); }
.feature-icon, .value-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: var(--blue); background: var(--blue-soft); }
.feature-icon svg { width: 25px; transition: transform .35s; }
.how-card:hover .feature-icon svg { transform: scale(1.08) rotate(-2deg); }
.how-card .how-step { position: absolute; top: 24px; inset-inline-end: 27px; font-family: var(--serif); font-size: 46px; line-height: 1; color: var(--blue); opacity: .13; transition: opacity .35s, transform .45s cubic-bezier(.2,.75,.2,1); }
.how-card:hover .how-step { opacity: .32; transform: translateY(-3px); }
.how-card h3 { margin-top: 32px; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.05; }
.how-card p { margin-top: 11px; color: var(--slate); font-size: 13px; line-height: 1.7; }

.feed-section { background: var(--surface); }
.feed-tabs { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 100px; background: #fff; }
.feed-tabs button { padding: 9px 15px; border: 0; border-radius: 100px; color: var(--slate); background: transparent; font-size: 10px; }
.feed-tabs button.active { color: #fff; background: var(--ink); }
.listing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.listing-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: transform .35s, box-shadow .35s; }
.listing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.listing-photo { height: 245px; display: block; position: relative; overflow: hidden; background: #edf0f7; }
.listing-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.listing-card:hover .listing-photo img { transform: scale(1.035); }
.listing-tag { position: absolute; left: 13px; top: 13px; padding: 7px 10px; border-radius: 100px; color: #fff; background: var(--night); text-transform: uppercase; font-size: 7px; letter-spacing: .17em; }
.save-button { position: absolute; right: 12px; top: 12px; z-index: 3; width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.96); }
.save-button svg { width: 17px; }
.save-button.saved { color: #fff; background: var(--blue); }
.save-button.saved svg { fill: currentColor; }
.listing-info { padding: 17px 18px 19px; }
.listing-kicker { display: flex; justify-content: space-between; align-items: center; }
.listing-kicker span { color: var(--blue); text-transform: uppercase; font-size: 8px; font-weight: 600; letter-spacing: .17em; }
.listing-kicker time { color: #969bad; font-size: 9px; }
.listing-info h3 { min-height: 47px; margin: 10px 0 15px; font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.18; }
.listing-price { font-size: 14px; font-weight: 600; }
.listing-place { margin-top: 6px; color: var(--slate); font-size: 9px; }
.listing-rating-line { padding-top: 11px; margin-top: 13px; border-top: 1px solid var(--line); color: var(--slate); font-size: 8px; }
.listing-rating-line span { display: inline-flex; align-items: center; gap: 5px; }
.listing-rating-line svg { width: 12px; color: var(--blue); }
.listing-social-actions { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 4px; margin-top: 10px; }
.listing-social-action { min-width: 0; min-height: 35px; padding: 0 5px; display: inline-flex; align-items: center; justify-content: center; gap: 5px; border: 0; border-radius: 9px; color: var(--slate); background: transparent; font-size: 8px; font-weight: 600; transition: color .2s,background .2s,transform .2s; }
.listing-social-action:hover { color: var(--blue); background: #f2f5ff; transform: translateY(-1px); }
.listing-social-action.active { color: var(--blue); background: #edf1ff; }
.listing-social-action svg { width: 15px; flex: none; }
.listing-social-action.active svg { fill: currentColor; }
.social-counts { display: flex; gap: 13px; padding-top: 13px; margin-top: 14px; border-top: 1px solid var(--line); color: var(--slate); font-size: 9px; }
.social-counts span { display: inline-flex; align-items: center; gap: 5px; }
.social-counts svg { width: 13px; }
.empty-state { grid-column: 1 / -1; padding: 68px 35px; border: 1px dashed rgba(22,51,255,.3); border-radius: 20px; background: linear-gradient(145deg,#fff,#f3f5ff); text-align: center; }
.empty-state.compact { padding: 35px 25px; }
.empty-state h3 { margin: 10px 0; font-family: var(--serif); font-size: clamp(28px,4vw,42px); font-weight: 400; }
.empty-state.compact h3 { font-size: 27px; }
.empty-state p { max-width: 590px; margin: 0 auto 22px; color: var(--slate); font-size: 13px; }

.about-section { background: #fff; }
.about-layout { display: grid; grid-template-columns: .85fr 1.25fr; gap: 105px; }
.about-copy h2 { margin: 12px 0 22px; font-family: var(--serif); font-size: clamp(40px,5vw,64px); font-weight: 400; line-height: 1.02; }
.about-copy h2 em { color: var(--blue); font-weight: 400; }
.about-copy p { max-width: 450px; margin: 15px 0; color: var(--slate); font-size: 14px; }
.values-list { border-top: 1px solid var(--line); }
.values-list article { display: grid; grid-template-columns: 58px 1fr; align-items: start; gap: 25px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.value-icon { width: 46px; height: 46px; border-radius: 14px; }
.value-icon svg { width: 22px; }
.values-list h3 { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.values-list p { max-width: 540px; margin-top: 6px; color: var(--slate); font-size: 13px; line-height: 1.65; }
.cta-section { padding: 92px 0; color: #fff; background: var(--blue); }
.cta-inner { display: flex; justify-content: space-between; align-items: end; gap: 45px; }
.cta-section .eyebrow { color: #c3c9ff; }
.cta-section h2 { margin-top: 12px; font-family: var(--serif); font-size: clamp(47px,6vw,76px); font-weight: 400; line-height: .98; }
.cta-section p:not(.eyebrow) { margin-top: 13px; color: #d8dcff; }

.site-footer { padding: 70px 0 23px; color: #fff; background: var(--night); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 55px; padding-bottom: 55px; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand p { margin-top: 11px; color: #8f96ab; font-size: 12px; line-height: 1.7; }
.footer-main h3 { margin-bottom: 6px; color: #c8ccd7; text-transform: uppercase; font-size: 9px; letter-spacing: .2em; }
.footer-main a:not(.wordmark) { color: #8991a7; font-size: 10px; }
.footer-main a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #6e758b; font-size: 9px; }
.footer-bottom div { display: flex; gap: 22px; }

.page-hero { padding: 66px 0 47px; border-bottom: 1px solid var(--line); background: #fff; }
.page-hero h1 { margin-top: 12px; font-family: var(--serif); font-size: clamp(43px,5vw,66px); font-weight: 400; line-height: 1; }
.page-hero h1 em { color: var(--blue); font-weight: 400; }
.page-hero > .shell > p:not(.eyebrow) { max-width: 670px; margin-top: 12px; color: var(--slate); }
.compact-search { max-width: 100%; margin: 27px 0 0; box-shadow: none; }

.browse-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; padding: 52px 0 90px; }
.filter-panel { align-self: start; position: sticky; top: 104px; padding: 23px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.filter-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.filter-head h2 { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.filter-head button { border: 0; color: var(--blue); background: none; text-transform: uppercase; font-size: 9px; letter-spacing: .13em; }
.filter-group { padding: 19px 0; border-top: 1px solid var(--line); }
.filter-group legend, .filter-group > label:first-child { display: block; margin-bottom: 12px; text-transform: uppercase; font-size: 9px; font-weight: 600; letter-spacing: .16em; }
.filter-check { display: flex; align-items: center; gap: 9px; margin: 9px 0; color: var(--slate); font-size: 11px; }
.filter-check input { accent-color: var(--blue); }
.filter-group select { width: 100%; height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-size: 11px; }
.filter-promise { padding: 15px; border-radius: 11px; background: var(--blue-soft); }
.filter-promise strong { color: var(--blue); font-size: 10px; }
.filter-promise p { margin-top: 4px; color: var(--slate); font-size: 9px; }
.results-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 22px; }
.results-head h2 { font-family: var(--serif); font-size: 31px; font-weight: 400; }
.results-head p { margin-top: 4px; color: var(--slate); font-size: 10px; }
.results-head select { padding: 10px 13px; border: 1px solid var(--line); border-radius: 100px; background: #fff; font-size: 10px; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.results-grid .listing-photo { height: 225px; }
.filter-toggle { display: none; }

.breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--slate); font-size: 10px; }
.breadcrumbs span { color: #a4a8b7; }
.detail-page { padding: 30px 0 95px; }
.detail-grid { display: grid; grid-template-columns: minmax(0,1.5fr) 390px; gap: 31px; }
.gallery { min-height: 0; padding: 10px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 24px 60px rgba(10,14,30,.08); }
.gallery-stage { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 15px; background: #e8eaf2; }
.gallery-stage figure { width: 100%; height: 100%; overflow: hidden; }
.gallery-stage img { width: 100%; height: 100%; object-fit: cover; transition: opacity .22s, transform .7s cubic-bezier(.2,.75,.2,1); }
.gallery-stage:hover img { transform: scale(1.015); }
.gallery-stage img.is-switching { opacity: .55; }
.gallery-arrow { width: 44px; height: 44px; position: absolute; top: 50%; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; color: #fff; background: rgba(9,13,28,.56); backdrop-filter: blur(12px); transform: translateY(-50%); transition: background .25s, transform .25s; }
.gallery-arrow:hover { background: var(--blue); transform: translateY(-50%) scale(1.06); }
.gallery-arrow svg { width: 20px; }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-count { position: absolute; right: 16px; bottom: 14px; z-index: 2; padding: 6px 10px; border-radius: 100px; color: #fff; background: rgba(9,13,28,.6); backdrop-filter: blur(10px); font-size: 9px; letter-spacing: .12em; }
.gallery-thumbs { display: flex; gap: 8px; padding-top: 9px; overflow-x: auto; scrollbar-width: thin; scroll-snap-type: x proximity; }
.gallery-thumbs button { width: 86px; height: 66px; flex: 0 0 auto; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 11px; background: #e8eaf2; opacity: .58; scroll-snap-align: start; transition: opacity .25s, border-color .25s, transform .25s; }
.gallery-thumbs button:hover, .gallery-thumbs button.active { opacity: 1; transform: translateY(-1px); }
.gallery-thumbs button.active { border-color: var(--blue); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.listing-video { margin-top: 20px; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 19px; background: var(--night); }
.listing-video iframe { width: 100%; height: 100%; display: block; border: 0; }
.detail-body { margin-top: 20px; padding: 35px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.detail-label { color: var(--blue); text-transform: uppercase; font-size: 9px; letter-spacing: .18em; }
.detail-title { margin: 9px 0 15px; font-family: var(--serif); font-size: 42px; font-weight: 400; line-height: 1.04; }
.detail-price { font-size: 24px; font-weight: 600; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 18px; padding: 18px 0; margin: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-meta span { color: var(--slate); font-size: 11px; }
.detail-body h2 { margin: 27px 0 9px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.detail-description { color: var(--slate); font-size: 13px; line-height: 1.8; white-space: pre-line; }
.seller-panel { align-self: start; position: sticky; top: 104px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.seller-head { display: flex; align-items: center; gap: 13px; }
.seller-avatar { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--night); font-family: var(--serif); font-size: 22px; }
.seller-head h3 { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.seller-head p { color: var(--slate); font-size: 9px; }
.verified-line { margin: 19px 0; color: var(--green); text-transform: uppercase; font-size: 9px; letter-spacing: .12em; }
.seller-panel .button, .seller-panel .button-secondary { width: 100%; margin-top: 9px; }
.safety-note { margin-top: 18px; padding: 14px; border-radius: 10px; color: var(--slate); background: var(--surface); font-size: 9px; }
.detail-actions { display: flex; gap: 8px; margin-left: auto; }
.icon-action { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.icon-action svg { width: 17px; }
.icon-action.active { color: #fff; background: var(--blue); border-color: var(--blue); }
.icon-action.active svg { fill: currentColor; }
.engagement-panel { margin-top: 20px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.engagement-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.engagement-head h2 { font-family: var(--serif); font-size: 29px; font-weight: 400; }
.engagement-summary { display: flex; align-items: center; gap: 10px; }
.rating-number { font-family: var(--serif); font-size: 31px; }
.rating-stars, .rating-picker { display: flex; gap: 4px; color: var(--gold); }
.rating-stars svg { width: 15px; fill: currentColor; }
.rating-picker button { border: 0; color: #c8cad2; background: transparent; }
.rating-picker button.active, .rating-picker button:hover { color: var(--gold); }
.rating-picker svg { width: 22px; fill: currentColor; }
.engagement-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 22px 0; margin: 19px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.engagement-actions > button { display: inline-flex; align-items: center; gap: 7px; border: 0; background: none; font-size: 11px; font-weight: 600; }
.engagement-actions svg { width: 18px; }
.engagement-actions button.active { color: var(--blue); }
.comment-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.comment-form textarea { min-height: 52px; padding: 13px; border: 1px solid var(--line); border-radius: 11px; resize: vertical; }
.comment-list { margin-top: 20px; }
.comment { display: grid; grid-template-columns: 38px 1fr; gap: 11px; padding: 15px 0; border-top: 1px solid var(--line); }
.comment-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--night); font-size: 11px; font-weight: 600; }
.comment h4 { font-size: 11px; }
.comment time { margin-left: 8px; color: var(--muted); font-size: 9px; font-weight: 400; }
.comment p { margin-top: 4px; color: var(--slate); font-size: 12px; }
.share-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.share-row a, .share-row button { min-height: 36px; padding: 0 13px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; background: #fff; font-size: 9px; font-weight: 600; }

.auth-shell { min-height: calc(100vh - 116px); display: grid; grid-template-columns: 1fr 1fr; }
.auth-story { position: relative; overflow: hidden; padding: 75px max(50px,8vw); display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: var(--night); }
.auth-story h1 { max-width: 560px; margin-top: 20px; font-family: var(--serif); font-size: clamp(49px,6vw,76px); font-weight: 400; line-height: .98; }
.auth-story h1 em { color: #8f9cff; font-weight: 400; }
.auth-story p { max-width: 500px; margin-top: 20px; color: #a7aec2; }
.auth-benefits { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 55px; }
.auth-benefits div { padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; }
.auth-benefits strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.auth-benefits span { color: #9199b1; font-size: 9px; }
.auth-form-side { padding: 65px max(42px,8vw); display: grid; place-items: center; background: #fff; }
.auth-card { width: min(520px,100%); }
.auth-card h2 { margin: 10px 0 8px; font-family: var(--serif); font-size: 45px; font-weight: 400; }
.auth-card > p { color: var(--slate); font-size: 13px; }
.form-stack { margin-top: 27px; display: grid; gap: 15px; }
.form-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: start; gap: 16px; }
.form-field { min-width: 0; display: grid; align-content: start; gap: 7px; color: var(--ink); text-transform: uppercase; font-size: 9px; font-weight: 600; line-height: 1.35; letter-spacing: .13em; }
.form-field.full { grid-column: 1 / -1; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-width: 0; min-height: 50px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; outline: 0; color: var(--ink); background: #fff; text-transform: none; font-family: var(--sans); font-size: 13px; font-weight: 400; line-height: 1.35; letter-spacing: normal; }
.form-field select { padding-right: 38px; }
.form-field textarea { min-height: 125px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,51,255,.08); }
.form-field input:user-invalid, .form-field select:user-invalid, .form-field textarea:user-invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(190,37,65,.07); }
.form-field small { color: var(--slate); text-transform: none; font-size: 10px; font-weight: 400; line-height: 1.55; letter-spacing: normal; }
.field-optional { color: var(--muted); font-weight: 400; }
.form-check { display: flex; align-items: flex-start; gap: 9px; color: var(--slate); font-size: 10px; }
.form-check input { margin-top: 3px; accent-color: var(--blue); }
.form-check a { color: var(--blue); text-decoration: underline; }
.negotiable-field { min-height: 50px; align-self: end; align-items: center; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.negotiable-field input { margin-top: 0; }
.form-error { min-height: 20px; color: var(--red); font-size: 10px; }
.form-error:empty { visibility: hidden; }
.button:disabled, button:disabled { cursor: not-allowed; opacity: .52; transform: none !important; }
.auth-switch { margin-top: 22px; text-align: center; color: var(--slate); font-size: 11px; }
.auth-switch a { color: var(--blue); font-weight: 600; }
.password-meter { height: 4px; overflow: hidden; border-radius: 100px; background: #e5e7ed; }
.password-meter span { display: block; width: 0; height: 100%; background: var(--red); transition: .25s; }
.password-meter.medium span { width: 60%; background: var(--gold); }
.password-meter.strong span { width: 100%; background: var(--green); }

.language-toggle { min-height: 34px; padding: 0 11px; border: 1px solid var(--line); border-radius: 100px; color: var(--blue); background: #fff; font-size: 9px; font-weight: 700; letter-spacing: .04em; }
.mobile-language-toggle { width: max-content; margin: 4px 12px 8px; }

.trust-fieldset, .theme-fieldset { margin-top: 24px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fafbff; }
.trust-fieldset legend, .theme-fieldset legend { padding: 0 8px; font-family: var(--serif); font-size: 23px; }
.trust-fieldset legend .eyebrow, .theme-fieldset legend .eyebrow { display: block; margin-bottom: 4px; font-family: var(--sans); }
.trust-fieldset > p, .theme-fieldset > p { max-width: 680px; color: var(--slate); font-size: 11px; line-height: 1.65; }
.trust-fieldset .form-grid, .theme-fieldset .form-grid { margin-top: 18px; }
.permit-status { margin-top: 14px; padding: 10px 12px; border-radius: 9px; color: var(--slate); background: #fff; font-size: 10px; }
.permit-status-date_checked { color: var(--green); background: #e9f5f1; }
.permit-status-expired, .permit-status-expiring { color: var(--red); background: #fff0f2; }
.theme-builder { display: grid; grid-template-columns: minmax(0,1fr) minmax(240px,.7fr); gap: 20px; align-items: stretch; }
.form-field input[type="color"] { min-height: 48px; padding: 5px; cursor: pointer; }
.theme-preview { min-height: 215px; padding: 25px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; position: relative; border: 1px solid color-mix(in srgb,var(--showcase-accent) 28%,#d9dce7); border-top: 5px solid var(--showcase-accent); border-radius: 14px; background: #fff; box-shadow: 0 16px 35px color-mix(in srgb,var(--showcase-accent) 9%,transparent); }
.theme-preview::before { content: ""; width: 150px; height: 150px; position: absolute; right: -52px; top: -60px; border: 1px solid color-mix(in srgb,var(--showcase-accent) 25%,transparent); border-radius: 50%; }
.theme-preview span { color: var(--showcase-accent); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.theme-preview strong { margin-top: 10px; font-size: 24px; font-weight: 500; line-height: 1.05; }
.theme-preview small { margin-top: 9px; color: var(--slate); font-size: 9px; }

.showcase-theme { --showcase-accent: #1633ff; --showcase-accent-ink: color-mix(in srgb,var(--showcase-accent) 72%,#07102e); }
.listing-card.showcase-theme { border-top: 3px solid var(--showcase-accent); }
.listing-card.showcase-theme .listing-kicker span, .listing-card.showcase-theme .listing-rating-line svg, .listing-card.showcase-theme .listing-social-action.active { color: var(--showcase-accent-ink); }
.listing-card.theme-style-editorial { border-radius: 4px; }
.listing-card.theme-style-expressive { box-shadow: 0 14px 40px color-mix(in srgb,var(--showcase-accent) 13%,transparent); }
.listing-card.theme-style-expressive .listing-photo { clip-path: polygon(0 0,100% 0,100% 92%,0 100%); }
.feed-post.showcase-theme { border-top: 4px solid var(--showcase-accent); }
.feed-post.showcase-theme .seller-avatar { background: var(--showcase-accent); }
.feed-post.theme-style-editorial { border-radius: 4px; }
.feed-post.theme-style-expressive { box-shadow: 0 20px 55px color-mix(in srgb,var(--showcase-accent) 12%,transparent); }
.theme-font-editorial h1, .theme-font-editorial h2, .theme-font-editorial h3, .theme-font-editorial strong { font-family: var(--serif); font-weight: 400; }
.theme-font-modern h1, .theme-font-modern h2, .theme-font-modern h3, .theme-font-modern strong { font-family: "Instrument Sans",var(--sans); letter-spacing: -.025em; }
.theme-font-humanist h1, .theme-font-humanist h2, .theme-font-humanist h3, .theme-font-humanist strong { font-family: "Manrope",var(--sans); letter-spacing: -.035em; }
[data-listing-content].showcase-theme .detail-label, [data-listing-content].showcase-theme .detail-price { color: var(--showcase-accent-ink); }
[data-listing-content].theme-style-editorial .detail-body, [data-listing-content].theme-style-editorial .seller-panel { border-radius: 3px; }
[data-listing-content].theme-style-expressive .detail-body { border-top: 6px solid var(--showcase-accent); box-shadow: 0 28px 70px color-mix(in srgb,var(--showcase-accent) 12%,transparent); }
.listing-rating-line { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.listing-permit-mark { color: var(--green); font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.permit-panel { margin: 22px 0 30px; padding: 17px; border: 1px solid color-mix(in srgb,var(--showcase-accent) 24%,var(--line)); border-radius: 13px; background: color-mix(in srgb,var(--showcase-accent) 4%,#fff); }
.permit-panel > div { display: flex; align-items: center; gap: 10px; }
.permit-panel strong { font-size: 11px; }
.permit-badge { padding: 5px 8px; border-radius: 100px; color: var(--green); background: #e9f5f1; font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.permit-badge.verified { color: #fff; background: var(--showcase-accent-ink); }
.permit-panel dl { margin-top: 14px; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.permit-panel dl div { padding-top: 9px; border-top: 1px solid var(--line); }
.permit-panel dt { color: var(--slate); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.permit-panel dd { margin-top: 3px; font-size: 10px; }
.permit-panel small { display: block; margin-top: 13px; color: var(--slate); font-size: 8px; line-height: 1.6; }
.status-pill.expired, .status-pill.permit_review { color: var(--red); background: #fff0f2; }

html[dir="rtl"] body { font-family: Tahoma,"Segoe UI",Arial,sans-serif; text-align: right; }
html[dir="rtl"] .header-inner, html[dir="rtl"] .hero-actions, html[dir="rtl"] .section-heading, html[dir="rtl"] .listing-kicker, html[dir="rtl"] .footer-bottom { direction: rtl; }
html[dir="rtl"] .main-nav { margin-left: 0; margin-right: 70px; }
html[dir="rtl"] .header-actions { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .search-composer, html[dir="rtl"] .post-category, html[dir="rtl"] .dash-nav button, html[dir="rtl"] .dash-nav a { text-align: right; }
html[dir="rtl"] .search-category { border-left: 0; border-right: 1px solid var(--line); }
html[dir="rtl"] .site-header.is-condensed .brand-logo { transform-origin: right center; }
html[dir="rtl"] .listing-tag { left: auto; right: 13px; }
html[dir="rtl"] .profile-actions { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .legal-content ul { padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .draft-action { text-align: left; }
html[dir="rtl"] .modal-close { right: auto; left: 15px; }
html[dir="rtl"] .form-field, html[dir="rtl"] .form-check, html[dir="rtl"] .permit-status { text-align: right; }
html[dir="rtl"] .form-field input, html[dir="rtl"] .form-field select, html[dir="rtl"] .form-field textarea { text-align: right; }
html[dir="rtl"] .form-field input[type="email"], html[dir="rtl"] .form-field input[type="url"], html[dir="rtl"] .form-field input[type="tel"], html[dir="rtl"] .form-field input[name="username"] { direction: ltr; text-align: left; }
html[dir="rtl"] .form-field select { padding-right: 13px; padding-left: 38px; }

.post-shell { padding: 38px 0 90px; }
.progress-bars { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; margin-bottom: 28px; }
.progress-bars span { height: 3px; border-radius: 10px; background: #dfe2ec; }
.progress-bars span.active { background: var(--blue); }
.post-layout { display: grid; grid-template-columns: 290px 1fr; gap: 34px; }
.post-sidebar { align-self: start; position: sticky; top: 107px; padding: 30px; border-radius: 18px; color: #fff; background: var(--night); }
.post-sidebar h2 { margin-top: 13px; font-family: var(--serif); font-size: 33px; font-weight: 400; line-height: 1.04; }
.post-sidebar > p:not(.eyebrow) { margin-top: 14px; color: #a1a9be; font-size: 11px; }
.step-list { margin-top: 31px; list-style: none; }
.step-list li { padding: 12px 0; display: flex; align-items: center; gap: 12px; color: #7f879c; font-size: 10px; font-weight: 650; text-transform: uppercase; letter-spacing: .1em; }
.step-list li span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #3b4153; border-radius: 10px; transition: background .25s, border-color .25s, color .25s; }
.step-list li span svg { width: 16px; }
.step-list li.active { color: #fff; }
.step-list li.active span { background: var(--blue); border-color: var(--blue); }
.post-card { min-height: 620px; padding: 44px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.post-step h1 { margin: 9px 0; font-family: var(--serif); font-size: clamp(37px,4vw,53px); font-weight: 400; line-height: 1.03; }
.post-step > p:not(.eyebrow) { max-width: 650px; color: var(--slate); font-size: 13px; }
.post-categories { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; margin-top: 29px; }
.post-category { min-height: 130px; padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: #fff; text-align: left; }
.post-category:hover, .post-category.selected { border-color: var(--blue); background: var(--blue-soft); }
.post-category svg { width: 24px; color: var(--blue); }
.post-category strong { display: block; margin-top: 17px; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.post-category small { color: var(--slate); font-size: 9px; }
.post-step .form-grid { margin-top: 27px; }
.discovery-tip { margin-top: 18px; padding: 16px; border-radius: 11px; background: var(--blue-soft); }
.discovery-tip strong { color: var(--blue); font-size: 11px; }
.discovery-tip p { margin-top: 3px; color: var(--slate); font-size: 10px; }
.post-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 23px; border-top: 1px solid var(--line); }
.post-nav > button:not(.button) { border: 0; color: var(--slate); background: none; font-size: 11px; }
.upload-zone { min-height: 210px; margin-top: 26px; display: grid; place-items: center; padding: 28px; border: 1px dashed rgba(22,51,255,.4); border-radius: 16px; background: #fafbff; text-align: center; cursor: pointer; }
.upload-zone input { position: absolute; opacity: 0; pointer-events: none; }
.upload-zone svg { width: 34px; color: var(--blue); }
.upload-zone strong { display: block; margin-top: 12px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.upload-zone span { color: var(--slate); font-size: 10px; }
.upload-preview { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-top: 15px; }
.upload-preview figure { height: 120px; position: relative; overflow: hidden; border-radius: 11px; background: #e7e9f0; }
.upload-preview img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview button { position: absolute; right: 6px; top: 6px; width: 27px; height: 27px; border: 0; border-radius: 50%; color: #fff; background: rgba(9,13,28,.78); }
.review-card { margin-top: 26px; padding: 25px; border-radius: 16px; background: var(--surface); }
.review-card h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.review-card dl { margin-top: 18px; display: grid; grid-template-columns: 145px 1fr; }
.review-card dt, .review-card dd { padding: 11px 0; border-top: 1px solid var(--line); font-size: 11px; }
.review-card dt { color: var(--slate); }

.dashboard-shell { display: grid; grid-template-columns: 240px 1fr; gap: 34px; padding: 52px 0 90px; }
.account-card { padding: 25px; border-radius: 17px; color: #fff; background: var(--night); }
.account-avatar { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: #fff; font-family: var(--serif); font-size: 22px; }
.account-card h3 { margin-top: 17px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.account-card p { margin-top: 3px; color: #8f97ad; font-size: 9px; }
.dash-nav { margin-top: 14px; padding: 12px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.dash-nav button, .dash-nav a { width: 100%; display: block; padding: 11px 12px; border: 0; border-radius: 9px; color: var(--slate); background: #fff; text-align: left; font-size: 11px; }
.dash-nav button:hover, .dash-nav button.active, .dash-nav a:hover { color: var(--ink); background: var(--surface); }
.dashboard-main > header h1, .dashboard-view > h1 { margin: 9px 0 8px; font-family: var(--serif); font-size: 47px; font-weight: 400; line-height: 1; }
.dashboard-main > header p, .dashboard-view > p:not(.eyebrow) { color: var(--slate); font-size: 13px; }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; margin: 28px 0; }
.dash-stat { padding: 21px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.dash-stat strong { display: block; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.dash-stat span { color: var(--slate); font-size: 9px; }
.dashboard-card { margin-top: 18px; padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.dashboard-card > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.dashboard-card > header h2 { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.dashboard-card > header a { color: var(--blue); font-size: 10px; font-weight: 600; }
.dashboard-card .button-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 18px; }
.dashboard-card .button-row + p { max-width: 760px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.my-listing, .message-row, .notification-row { display: grid; grid-template-columns: 82px 1fr auto; align-items: center; gap: 15px; padding: 14px 0; border-top: 1px solid var(--line); }
.my-listing:first-child, .message-row:first-child, .notification-row:first-child { border-top: 0; }
.my-listing img { width: 82px; height: 64px; object-fit: cover; border-radius: 8px; background: #eceef5; }
.my-listing h3, .message-row h3, .notification-row h3 { font-size: 12px; }
.my-listing p, .message-row p, .notification-row p { margin-top: 3px; color: var(--slate); font-size: 9px; }
.listing-controls { display: flex; gap: 6px; }
.listing-controls a, .listing-controls button { padding: 7px 9px; border: 1px solid var(--line); border-radius: 7px; background: #fff; font-size: 8px; }
.status-pill { padding: 6px 9px; border-radius: 100px; color: var(--green); background: #e9f5f1; text-transform: uppercase; font-size: 7px; font-weight: 600; letter-spacing: .12em; }
.status-pill.paused { color: var(--gold); background: #fff4df; }
.message-avatar, .notification-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: 10px; }
.message-row, .notification-row { grid-template-columns: 42px 1fr auto; }
.message-row time, .notification-row time { color: var(--muted); font-size: 8px; }

.community-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 30px; padding: 50px 0 90px; }
.community-feed { display: grid; gap: 17px; }
.feed-post { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.feed-post-head { display: flex; align-items: center; gap: 11px; padding: 17px; }
.feed-post-head .seller-avatar { width: 39px; height: 39px; font-size: 17px; }
.feed-post-head h3 { font-size: 11px; }
.feed-post-head p { color: var(--slate); font-size: 9px; }
.feed-post img { width: 100%; max-height: 520px; object-fit: cover; background: #edf0f7; }
.feed-post-body { padding: 18px; }
.feed-post-body h2 { font-family: var(--serif); font-size: 27px; font-weight: 400; }
.feed-post-body > p { margin-top: 8px; color: var(--slate); font-size: 12px; }
.community-side { align-self: start; position: sticky; top: 104px; }
.side-card { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.side-card + .side-card { margin-top: 14px; }
.side-card h2 { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.side-card p { margin-top: 7px; color: var(--slate); font-size: 10px; }
.side-card .button { width: 100%; margin-top: 15px; }

.profile-hero { padding: 52px 0; border-bottom: 1px solid var(--line); background: #fff; }
.profile-head { display: flex; align-items: center; gap: 22px; }
.profile-avatar { width: 90px; height: 90px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--night); font-family: var(--serif); font-size: 39px; }
.profile-copy h1 { font-family: var(--serif); font-size: 43px; font-weight: 400; }
.profile-copy p { color: var(--slate); font-size: 11px; }
.profile-stats { display: flex; gap: 25px; margin-top: 13px; }
.profile-stats strong { font-size: 13px; }
.profile-stats span { margin-left: 4px; color: var(--slate); font-size: 9px; }
.profile-actions { margin-left: auto; display: flex; gap: 9px; }

.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: 70px; padding: 64px 0 95px; }
.legal-nav { align-self: start; position: sticky; top: 104px; display: grid; gap: 2px; }
.legal-nav a { padding: 10px; border-radius: 8px; color: var(--slate); font-size: 11px; }
.legal-nav a:hover { color: var(--ink); background: #fff; }
.legal-content { max-width: 760px; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content h1 { margin-top: 10px; font-family: var(--serif); font-size: 50px; font-weight: 400; line-height: 1; }
.legal-content h2 { font-family: var(--serif); font-size: 31px; font-weight: 400; }
.legal-content h3 { margin-top: 21px; font-size: 13px; }
.legal-content p, .legal-content li { margin-top: 10px; color: var(--slate); font-size: 12px; line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--blue); text-decoration: underline; }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 120; padding: 13px 20px; border-radius: 100px; color: #fff; background: var(--night); font-size: 10px; letter-spacing: .06em; opacity: 0; transform: translate(-50%,30px); transition: .3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.not-found { margin-top: 80px; }
.profile-missing { margin-top: 50px; }
.feed-tabs-spaced { width: max-content; margin-top: 25px; }
.negotiable-field { align-self: end; padding-bottom: 14px; }
.draft-action { margin-top: 18px; text-align: right; }
.draft-action p { color: var(--muted); font-size: 11px; line-height: 1.5; }
.modal-layer { position: fixed; inset: 0; z-index: 100; padding: 20px; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; background: rgba(5,7,16,.65); backdrop-filter: blur(8px); transition: .25s; }
.modal-layer.open { visibility: visible; opacity: 1; }
.modal-card { width: min(470px,100%); position: relative; padding: 40px; border-radius: 21px; background: #fff; box-shadow: 0 40px 110px rgba(0,0,0,.28); }
.modal-card h2 { margin: 10px 0; font-family: var(--serif); font-size: 39px; font-weight: 400; }

.modal-card > p { margin-bottom: 20px; color: var(--slate); font-size: 12px; }
.modal-close { position: absolute; right: 15px; top: 15px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 18px; }

html.motion-ready .reveal-item { transition: opacity .72s cubic-bezier(.2,.75,.2,1), transform .72s cubic-bezier(.2,.75,.2,1), box-shadow .35s, background .3s, border-color .3s; transition-delay: var(--reveal-delay, 0ms); }
html.motion-ready .reveal-item:not(.is-visible) { opacity: 0; transform: translateY(22px) scale(.992); }
html.motion-ready .hero .display-title.is-visible span { animation: title-arrive .85s cubic-bezier(.2,.75,.2,1) both; }
html.motion-ready .hero .display-title.is-visible em { animation: title-arrive .9s .09s cubic-bezier(.2,.75,.2,1) both; }
html.app-ready main { animation: page-arrive .55s cubic-bezier(.2,.75,.2,1) both; }

@keyframes title-arrive { from { opacity: 0; transform: translateY(28px); letter-spacing: -.06em; } to { opacity: 1; transform: translateY(0); letter-spacing: -.035em; } }
@keyframes page-arrive { from { opacity: .01; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .main-nav { margin-left: 35px; gap: 18px; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .film-heading { gap: 35px; }
  .listing-grid { grid-template-columns: repeat(3,1fr); }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .detail-grid { grid-template-columns: minmax(0,1fr) 330px; }
  .post-layout { grid-template-columns: 245px 1fr; }
  .post-categories { grid-template-columns: repeat(2,1fr); }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 30px, 680px); }
  .main-nav, .header-actions .quiet-link, .header-actions .user-chip { display: none; }
  .menu-trigger { display: block; }
  .mobile-panel { position: fixed; left: 15px; right: 15px; top: 88px; z-index: 65; padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .mobile-panel.open { display: grid; }
  .mobile-panel a { padding: 12px; border-radius: 9px; font-size: 12px; }
  .mobile-panel a:hover { background: var(--surface); }
  .hero { min-height: auto; }
  .search-composer { grid-template-columns: 1fr; gap: 9px; }
  .search-query { min-height: 48px; }
  .search-category { min-height: 45px; display: flex; align-items: center; border-left: 0; border-top: 1px solid var(--line); }
  .hero-proof div { min-width: 0; padding: 0 14px; }
  .social-grid, .how-grid { grid-template-columns: 1fr; }
  .film-heading { grid-template-columns: 1fr; gap: 22px; }
  .social-card { min-height: 220px; }
  .listing-grid { grid-template-columns: repeat(2,1fr); }
  .about-layout, .auth-shell, .post-layout, .dashboard-shell, .community-layout, .legal-layout { grid-template-columns: 1fr; }
  .about-layout { gap: 55px; }
  .auth-story { min-height: 480px; padding: 60px 35px; }
  .auth-form-side { padding: 55px 30px; }
  .post-sidebar, .community-side, .legal-nav { position: static; }
  .step-list { display: none; }
  .detail-grid { grid-template-columns: 1fr; }
  .seller-panel { position: static; }
  .browse-layout { grid-template-columns: 1fr; }
  .filter-panel { display: none; position: static; }
  .filter-panel.open { display: block; }
  .filter-toggle { display: inline-flex; margin-bottom: 9px; border: 0; color: var(--blue); background: transparent; text-transform: uppercase; font-size: 9px; font-weight: 600; letter-spacing: .12em; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .theme-builder { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .beta-strip { align-items: flex-start; gap: 5px; flex-direction: column; text-align: left; }
  .site-header { height: 70px; }
  .brand-logo { width: 132px; }
  .beta-badge { display: none; }
  .header-actions .button-small { min-height: 37px; padding: 0 13px; font-size: 8px; }
  .header-actions .language-toggle { display: none; }
  .section { padding: 76px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .hero { padding: 70px 0 72px; }
  .hero h1 { font-size: 53px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-trends { gap: 7px; }
  .hero-trends span { width: 100%; margin: 0 0 2px; }
  .hero-proof { gap: 18px; flex-direction: column; }
  .hero-proof div { border-inline-end: 0; }
  .category-grid, .listing-grid, .results-grid, .form-grid, .post-categories, .dash-stats { grid-template-columns: 1fr; }
  .category-card { min-height: 220px; }
  .brand-film { border-width: 4px; border-radius: 18px; }
  .film-toggle { left: 12px; bottom: 12px; min-height: 36px; padding: 0 12px; }
  .brand-film figcaption { right: 12px; bottom: 14px; }
  .brand-film figcaption span:first-child { display: none; }
  .brand-film figcaption span + span { padding-left: 0; border-left: 0; }
  .film-principles { grid-template-columns: 1fr; }
  .film-principles article, .film-principles article + article { padding: 18px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .listing-photo { height: 290px; }
  .social-grid { gap: 12px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { gap: 14px; flex-direction: column; }
  .gallery { padding: 7px; border-radius: 18px; }
  .gallery-stage { aspect-ratio: 4 / 3; border-radius: 12px; }
  .gallery-arrow { width: 38px; height: 38px; }
  .gallery-thumbs button { width: 72px; height: 56px; }
  .detail-body, .engagement-panel { padding: 23px; }
  .detail-title { font-size: 35px; }
  .engagement-head { align-items: flex-start; flex-direction: column; }
  .comment-form { grid-template-columns: 1fr; }
  .auth-benefits { grid-template-columns: 1fr; }
  .auth-form-side { padding: 46px 20px; }
  .auth-card h2 { font-size: 38px; line-height: 1.05; }
  .post-card { min-height: 0; padding: 27px 20px; }
  .upload-preview { grid-template-columns: repeat(2,1fr); }
  .review-card dl { grid-template-columns: 1fr; }
  .review-card dt { padding-bottom: 0; }
  .review-card dd { padding-top: 5px; border-top: 0; }
  .trust-fieldset, .theme-fieldset { padding: 17px; }
  .permit-panel dl { grid-template-columns: 1fr; }
  .my-listing { grid-template-columns: 68px 1fr; }
  .my-listing img { width: 68px; }
  .listing-controls, .my-listing .status-pill { grid-column: 2; justify-self: start; }
  .profile-head { align-items: flex-start; flex-wrap: wrap; }
  .profile-actions { width: 100%; margin-left: 0; }
}

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

/* Accessibility and interaction polish */
html { scroll-padding-top: 96px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus,
.filter-group input:focus, .filter-group select:focus,
.pp-budget-field input:focus, .comment-form textarea:focus, .form-stack input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 51, 255, .14);
}
.search-composer:focus-within {
  border-color: rgba(22, 51, 255, .38);
  box-shadow: 0 22px 60px rgba(22, 51, 255, .15);
}
.listing-card:focus-within { transform: translateY(-5px); box-shadow: var(--shadow); }
.main-nav a:focus-visible, .text-link:focus-visible, .hero-trends a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
  border-radius: 5px;
}
.button:focus-visible { outline: 3px solid rgba(22, 51, 255, .45); outline-offset: 3px; }
.button-light:focus-visible, .social-card:focus-within { outline-color: rgba(255, 255, 255, .8); }

/* LUX editorial board (homepage) */
.lux-section { background: #05070f; color: #fff; }
.lux-board { position: relative; container-type: inline-size; aspect-ratio: 1420 / 1004; }
.lux-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; stroke: none; }
[dir="rtl"] .lux-svg { transform: scaleX(-1); }
.lux-p { position: absolute; }
.lux-p2 { display: none; }
.lux-p1 { inset-inline-start: 0; top: 0; width: 60%; height: 45.6%; padding: 4cqi 3cqi 0 4.6cqi; color: var(--ink); }
[dir="rtl"] .lux-p1 { padding: 4cqi 4.6cqi 0 3cqi; }
.lux-eyebrow { color: var(--blue); text-transform: uppercase; font-size: .84cqi; font-weight: 750; letter-spacing: .24em; }
.lux-p1 h2, .lux-p4 h2 { margin-top: 1.1cqi; font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.02em; }
.lux-p1 h2 { font-size: 3.15cqi; max-width: 44cqi; }
.lux-p1 h2 em, .lux-p4 h2 em { color: var(--blue); font-weight: 400; }
.lux-lead { margin-top: 1.7cqi; max-width: 40cqi; color: #474d66; font-size: 1cqi; line-height: 1.75; }
.lux-p3 { inset-inline-start: 0; top: 47.8%; width: 50%; bottom: 0; }
.lux-sigs { position: absolute; inset-inline-start: 8%; top: 7%; width: 24.5cqi; display: grid; gap: 1.9cqi; }
.lux-sig { padding-top: 1.15cqi; border-top: 1px solid rgba(255, 255, 255, .17); }
.lux-sig h3 { font-family: var(--serif); font-size: 1.42cqi; font-weight: 400; line-height: 1.2; color: #fff; }
.lux-sig p { margin-top: .6cqi; color: #98a0b8; font-size: .8cqi; line-height: 1.64; }
.lux-p4 { inset-inline-start: 22%; inset-inline-end: 0; top: 54.2%; bottom: 0; color: var(--ink); }
.lux-p4-head { position: absolute; top: 8%; inset-inline-end: 4.6cqi; width: 36cqi; }
.lux-p4 h2 { font-size: 2.2cqi; }
.lux-sub { margin-top: 1.1cqi; color: #5b6178; font-size: .9cqi; line-height: 1.7; }
.lux-cta { display: inline-flex; align-items: center; gap: .7cqi; margin-top: 1.4cqi; color: var(--blue); text-transform: uppercase; font-size: .82cqi; font-weight: 750; letter-spacing: .2em; }
.lux-cta span { transition: transform .25s; }
.lux-cta:hover span { transform: translateX(3px); }
[dir="rtl"] .lux-cta span { transform: scaleX(-1); }
.lux-steps { position: absolute; bottom: 8%; inset-inline-end: 4.6cqi; width: 52cqi; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4cqi; }
.lux-step { padding-top: .95cqi; border-top: 1px solid rgba(10, 14, 30, .14); }
.lux-step h3 { font-family: var(--serif); font-size: 1.18cqi; font-weight: 400; line-height: 1.18; }
.lux-step p { margin-top: .45cqi; color: #5b6178; font-size: .72cqi; line-height: 1.6; }

@media (max-width: 760px) {
  .lux-board { aspect-ratio: auto; display: grid; gap: 12px; container-type: normal; }
  .lux-svg { display: none; }
  .lux-p { position: static; width: auto; height: auto; padding: 0; }
  .lux-p1 { order: 1; background: #e9ebf0; border-radius: 22px; border-end-end-radius: 84px; padding: 30px 24px 34px; }
  [dir="rtl"] .lux-p1 { padding: 30px 24px 34px; }
  .lux-eyebrow { font-size: 10px; }
  .lux-p1 h2 { font-size: clamp(31px, 8.6vw, 40px); max-width: none; margin-top: 12px; }
  .lux-lead { font-size: 14px; max-width: none; margin-top: 14px; }
  .lux-p2 { order: 2; display: block; overflow: hidden; height: 210px; border-radius: 22px; border-end-start-radius: 84px; background: #10141f; }
  .lux-p2 img { width: 100%; height: 100%; object-fit: cover; }
  .lux-p3 { order: 3; position: relative; background: linear-gradient(150deg, #10162f, #070a19); border-radius: 22px; border-start-end-radius: 84px; padding: 28px 22px; }
  .lux-sigs { position: static; grid-template-columns: 1fr; gap: 18px; }
  .lux-sig { padding-top: 12px; }
  .lux-sig h3 { font-size: 19px; }
  .lux-sig p { font-size: 12.5px; margin-top: 7px; }
  .lux-p4 { order: 4; background: #e9ebf0; border-radius: 22px; border-start-start-radius: 84px; padding: 34px 24px 30px; }
  .lux-p4-head { position: static; width: auto; }
  .lux-steps { position: static; width: auto; grid-template-columns: 1fr; }
  .lux-p4 h2 { font-size: clamp(27px, 7.6vw, 34px); margin-top: 12px; }
  .lux-sub { font-size: 13.5px; margin-top: 12px; }
  .lux-cta { font-size: 10.5px; margin-top: 16px; gap: 7px; }
  .lux-steps { margin-top: 22px; gap: 14px; }
  .lux-step { padding-top: 13px; }
  .lux-step h3 { font-size: 17px; }
  .lux-step p { font-size: 12.5px; margin-top: 5px; }
}

/* Story manifesto billboard (homepage) */
.story-section { overflow: hidden; padding: 0; background: #e8ebf1; }
.story-section > .shell { width: 100%; max-width: none; }
.story-billboard-scene { position: relative; min-height: clamp(620px, 52vw, 760px); overflow: hidden; background: #d9dde1; }
.story-billboard-scene::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10, 14, 30, .03), transparent 30%, transparent 76%, rgba(10, 14, 30, .2)); }
.story-billboard-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) contrast(.98); }
.story-board { position: absolute; z-index: 2; inset-inline: 6%; top: 38%; bottom: 18%; overflow: hidden; padding: clamp(20px, 2vw, 32px) 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.story-board::before { content: "PAPERUS"; position: absolute; inset-inline-end: -.03em; bottom: -.38em; color: rgba(10, 14, 30, .04); font-family: var(--serif); font-size: clamp(118px, 16vw, 250px); font-weight: 400; line-height: 1; letter-spacing: -.055em; white-space: nowrap; pointer-events: none; }
.story-inner { position: relative; z-index: 1; height: 100%; display: grid; grid-template-columns: .9fr 1.18fr 1.62fr; grid-template-rows: auto 1fr; grid-template-areas: "lead statement fine" "links statement fine"; column-gap: clamp(26px, 3.4vw, 56px); }
.story-lead { grid-area: lead; }
.story-eyebrow { color: var(--blue); text-transform: uppercase; font-size: 10px; font-weight: 750; letter-spacing: .24em; }
.story-inner h2 { max-width: 11ch; margin-top: 13px; font-family: var(--serif); font-size: clamp(29px, 2.8vw, 42px); font-weight: 400; line-height: 1.02; letter-spacing: -.02em; color: #16192b; }
.story-inner h2 em { color: var(--blue); font-weight: 400; }
.story-statement { grid-area: statement; display: grid; align-content: start; gap: 12px; }
.story-statement p { font-family: var(--serif); font-size: clamp(15px, 1.3vw, 19px); line-height: 1.48; color: #232738; letter-spacing: .002em; }
.story-fine { grid-area: fine; display: grid; grid-template-columns: 1fr 1fr; align-content: start; column-gap: clamp(20px, 2.4vw, 34px); row-gap: clamp(15px, 2vw, 25px); }
.story-fine h3 { text-transform: uppercase; font-size: 9px; font-weight: 750; letter-spacing: .14em; color: #2a2e42; }
.story-fine p { margin-top: 6px; font-size: clamp(10.5px, .8vw, 12px); line-height: 1.55; color: #5f6579; }
.story-links { grid-area: links; align-self: end; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.story-links .text-link { font-size: 9px; }

@media (max-width: 900px) {
  .story-billboard-scene { min-height: 940px; }
  .story-billboard-backdrop { object-position: 64% center; }
  .story-board { inset-inline: 0; top: 32%; bottom: 7%; padding: clamp(42px, 7vw, 62px) clamp(30px, 7vw, 72px); background: rgba(244, 243, 237, .96); }
  .story-board::before { bottom: -.18em; font-size: clamp(108px, 25vw, 200px); }
  .story-inner { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-template-areas: "lead statement" "fine fine" "links links"; gap: 34px 42px; }
  .story-inner h2 { max-width: 12ch; font-size: clamp(32px, 5.4vw, 43px); }
  .story-statement p { font-size: clamp(16px, 2.3vw, 19px); }
  .story-fine { row-gap: 24px; }
  .story-fine p { font-size: 11px; }
  .story-links { margin-top: 2px; }
}

@media (max-width: 620px) {
  .story-billboard-scene { min-height: 0; padding-top: clamp(230px, 72vw, 310px); background: #f4f3ed; }
  .story-billboard-scene::after { inset: 0 0 auto; height: clamp(250px, 78vw, 330px); background: linear-gradient(180deg, rgba(10, 14, 30, .02), transparent 68%, rgba(10, 14, 30, .14)); }
  .story-billboard-backdrop { height: clamp(250px, 78vw, 330px); object-position: 64% 16%; }
  .story-board { position: relative; inset: auto; width: 100%; padding: 46px 24px 56px; background: linear-gradient(180deg, rgba(244, 243, 237, .98), #f4f3ed); }
  .story-board::before { bottom: -.12em; font-size: clamp(102px, 37vw, 154px); }
  .story-inner { height: auto; grid-template-columns: 1fr; grid-template-areas: "lead" "statement" "fine" "links"; gap: 28px; }
  .story-inner h2 { max-width: none; font-size: clamp(33px, 10.5vw, 43px); }
  .story-statement p { font-size: 17px; line-height: 1.58; }
  .story-fine { grid-template-columns: 1fr; row-gap: 20px; }
  .story-fine p { font-size: 12px; }
  .story-links { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* Sitewide mobile pass */
@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }
  body { overflow-wrap: break-word; }
  body.mobile-menu-open { overflow: hidden; }
  .shell { width: min(calc(100% - 30px), 680px); }
  .site-header { height: 70px; }
  .header-inner { gap: 10px; }
  .mobile-panel {
    position: absolute;
    inset-inline: 15px;
    top: calc(100% + 8px);
    z-index: 65;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 15px 15px calc(15px + env(safe-area-inset-bottom));
  }
  .mobile-panel.open { display: grid; grid-template-columns: minmax(0, 1fr); }
  .mobile-panel a, .mobile-panel .quiet-link { min-height: 44px; display: flex; align-items: center; }
  .mobile-panel .aud-switch { max-width: 100%; }
  .mobile-panel .aud-switch button { min-height: 42px; }
  .button, .menu-trigger, .language-toggle, .icon-action, .gallery-arrow,
  .share-row a, .share-row button, .listing-controls a, .listing-controls button,
  .filter-toggle, .dash-nav a, .dash-nav button { min-height: 44px; touch-action: manipulation; }
  input, select, textarea { font-size: 16px !important; }
  .search-composer { width: 100%; margin-top: 28px; }
  .search-query { padding-inline: 14px; }
  .search-query input, .search-category select { font-size: 16px; }
  .search-composer > button { min-height: 50px; }
  .section-heading > p { max-width: none; }
  .browse-layout, .dashboard-shell, .community-layout, .legal-layout { gap: 24px; padding-block: 34px 64px; }
  .results-head { align-items: stretch; flex-direction: column; gap: 14px; }
  .results-head label, .results-head select { width: 100%; }
  .results-head select { min-height: 48px; border-radius: 12px; }
  .filter-panel { padding: 20px; }
  .filter-group select, .pp-budget-field input { min-height: 48px; }
  .breadcrumbs, .sp-crumbs, .feed-tabs {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .breadcrumbs::-webkit-scrollbar, .sp-crumbs::-webkit-scrollbar, .feed-tabs::-webkit-scrollbar { display: none; }
  .breadcrumbs { padding-bottom: 5px; white-space: nowrap; }
  .detail-actions { margin-inline-start: auto; }
  .feed-tabs { width: 100%; border-radius: 15px; }
  .feed-tabs button { flex: 0 0 auto; min-height: 42px; white-space: nowrap; }
  .dashboard-sidebar { min-width: 0; }
  .dash-nav { display: flex; gap: 6px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; padding: 8px; }
  .dash-nav::-webkit-scrollbar { display: none; }
  .dash-nav button, .dash-nav a { width: auto; flex: 0 0 auto; white-space: nowrap; }
  .dashboard-card > header { align-items: flex-start; flex-wrap: wrap; }
  .message-row, .notification-row { grid-template-columns: 42px minmax(0, 1fr); align-items: start; }
  .message-row time, .notification-row time { grid-column: 2; }
  .legal-nav { display: flex; gap: 6px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; padding-bottom: 8px; }
  .legal-nav::-webkit-scrollbar { display: none; }
  .legal-nav a { flex: 0 0 auto; min-height: 42px; display: flex; align-items: center; white-space: nowrap; background: #fff; }
  .modal-layer { align-items: flex-end; padding: 12px; }
  .modal-card { max-height: calc(100dvh - 24px); overflow-y: auto; padding: 34px 24px 28px; border-radius: 21px 21px 12px 12px; }
  .toast { width: max-content; max-width: calc(100% - 30px); bottom: calc(18px + env(safe-area-inset-bottom)); text-align: center; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 26px); }
  .beta-strip { padding: 10px 13px; font-size: 10.5px; line-height: 1.4; }
  .hero { padding: 56px 0 60px; }
  .hero h1 { font-size: clamp(42px, 14vw, 52px); line-height: .96; }
  .hero-copy { font-size: 15.5px; line-height: 1.68; }
  .hero-actions .button, .cta-inner .button { width: 100%; }
  .hero-proof div { width: 100%; max-width: none; }
  .search-composer { padding: 7px; border-radius: 14px; }
  .section { padding-block: 54px; }
  .section-heading { gap: 16px; margin-bottom: 28px; }
  .section-heading h2 { font-size: clamp(35px, 11vw, 43px); }
  .page-hero { padding: 42px 0 31px; }
  .page-hero h1 { font-size: clamp(38px, 12vw, 48px); line-height: 1.03; }
  .page-hero > .shell > p:not(.eyebrow) { font-size: 14px; line-height: 1.68; }
  .category-card, .social-card, .how-card { padding: 24px; }
  .listing-grid .listing-photo, .results-grid .listing-photo { height: auto; aspect-ratio: 4 / 3; }
  .detail-page { padding: 22px 0 58px; }
  .detail-body, .engagement-panel, .seller-panel { padding: 21px; }
  .detail-title { font-size: clamp(31px, 10vw, 37px); }
  .detail-meta { gap: 10px 16px; }
  .engagement-summary { flex-wrap: wrap; }
  .engagement-actions { gap: 14px 18px; }
  .comment time { display: block; margin: 2px 0 0; }
  .auth-story { min-height: 0; padding: 38px 20px; }
  .auth-story h1 { font-size: clamp(37px, 12vw, 48px); }
  .auth-benefits div { align-items: flex-start; flex-direction: column; }
  .auth-form-side { padding: 38px 18px 48px; }
  .auth-card h2 { font-size: clamp(34px, 11vw, 40px); }
  .post-shell { padding: 26px 0 58px; }
  .post-sidebar { padding: 22px; }
  .post-sidebar h2 { font-size: 28px; }
  .post-card { padding: 25px 18px; }
  .post-step h1 { font-size: clamp(33px, 11vw, 42px); }
  .post-category { min-height: 108px; }
  .upload-zone { min-height: 165px; padding: 22px 16px; }
  .post-nav { gap: 12px; }
  .post-nav .button { padding-inline: 22px; }
  .account-card { padding: 21px; }
  .dashboard-main > header h1, .dashboard-view > h1 { font-size: clamp(37px, 12vw, 45px); }
  .dashboard-card { padding: 20px; }
  .dashboard-card .button-row { display: grid; grid-template-columns: 1fr; }
  .dashboard-card .button-row .button { width: 100%; }
  .my-listing { grid-template-columns: 64px minmax(0, 1fr); }
  .my-listing img { width: 64px; height: 58px; }
  .listing-controls { flex-wrap: wrap; }
  .feed-post-head, .feed-post-body { padding: 15px; }
  .profile-head { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 16px; }
  .profile-avatar { width: 72px; height: 72px; font-size: 32px; }
  .profile-copy { min-width: 0; }
  .profile-copy h1 { font-size: 35px; line-height: 1.02; }
  .profile-stats { flex-wrap: wrap; gap: 9px 18px; }
  .profile-actions { grid-column: 1 / -1; display: grid; }
  .profile-actions .button { width: 100%; }
  .legal-content h1 { font-size: 42px; }
  .legal-content h2 { font-size: 28px; }
  .modal-card h2 { font-size: 34px; line-height: 1.05; }
  .cta-section { padding-block: 56px; }
  .cta-section h2 { font-size: clamp(40px, 13vw, 52px); }
  .site-footer { padding: 56px 0 22px; }
  .footer-bottom div { flex-wrap: wrap; gap: 10px 18px; }
}

@media (max-width: 380px) {
  .header-actions .button-small { display: none; }
  .brand-logo { width: 126px; }
  .hero h1 { font-size: clamp(40px, 13vw, 48px); }
  .button { padding-inline: 21px; }
}
