/* PölderPlay — polderplay.fun */

:root {
  --bg:           #0b0a0e;
  --bg-card:      #131219;
  --bg-elevated:  #1b1921;
  --bg-overlay:   rgba(11,10,14,0.85);
  --text:         #ede8da;
  --text-muted:   #8e8a82;
  --text-dim:     #52504c;
  --accent:       #c9941a;
  --accent-hover: #e0a820;
  --accent-dim:   rgba(201,148,26,0.15);
  --danger:       #d95454;
  --danger-bg:    rgba(217,84,84,0.1);
  --success:      #4caf80;
  --success-bg:   rgba(76,175,128,0.1);
  --border:       rgba(255,255,255,0.07);
  --border-focus: rgba(201,148,26,0.5);
  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.6);
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif:   "Georgia", "Times New Roman", serif;
  --max-w:        1160px;
  --nav-h:        64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── Typography ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { color: var(--text-muted); line-height: 1.75; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent-hover); }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ─── Layout ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(11,10,14,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-links a.active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-signin {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.15s;
}

.nav-signin:hover { color: var(--text); }

/* ─── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #0b0a0e;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #0b0a0e;
  box-shadow: 0 0 24px rgba(201,148,26,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-full { width: 100%; }

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8125rem;
}

/* ─── Cards ────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

/* ─── Forms ────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.input::placeholder { color: var(--text-dim); }

.input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(201,148,26,0.12);
}

textarea.input { resize: vertical; min-height: 120px; }

.input-hint {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.4;
}

/* ─── Alert / Banner ───────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.alert-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-error {
  background: var(--danger-bg);
  border: 1px solid rgba(217,84,84,0.25);
  color: #e88080;
}

.alert-success {
  background: var(--success-bg);
  border: 1px solid rgba(76,175,128,0.25);
  color: #7dd4a8;
}

.alert-info {
  background: var(--accent-dim);
  border: 1px solid rgba(201,148,26,0.2);
  color: #d4a84a;
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,10,14,0.4) 0%, rgba(11,10,14,0.8) 60%, var(--bg) 100%),
    url("assets/01-hero.jpg") center/cover no-repeat;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 140% 80% at 65% 30%, rgba(40,25,5,0.9) 0%, var(--bg) 65%),
    linear-gradient(135deg, #0b0a0e 0%, #1a1106 50%, #0b0a0e 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(201,148,26,0.3);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  color: var(--text);
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

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

.hero-note {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ─── Film Grid ────────────────────────────────────── */
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.film-grid-lg {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.film-card {
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.film-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.film-card-poster {
  aspect-ratio: 2/3;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.film-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.film-card:hover .film-card-poster img {
  transform: scale(1.05);
}

.film-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,10,14,0.95) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.film-card:hover .film-card-overlay {
  opacity: 1;
}

.film-card-play {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.film-card-lock {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11,10,14,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}

.film-card-body {
  padding: 12px 4px 4px;
}

.film-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.film-card-meta {
  font-size: 0.8125rem;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
}

.film-card-rating {
  color: var(--accent);
  font-weight: 600;
}

/* ─── Film Poster Placeholders (CSS art) ───────────── */
.poster-1 { background: linear-gradient(135deg, #1a0f28 0%, #0d1a30 50%, #1a2010 100%); }
.poster-2 { background: linear-gradient(135deg, #1e1005 0%, #2a1810 60%, #0f1520 100%); }
.poster-3 { background: linear-gradient(135deg, #0a1520 0%, #1a1228 50%, #201508 100%); }
.poster-4 { background: linear-gradient(135deg, #181218 0%, #0d1f1a 50%, #1a1205 100%); }
.poster-5 { background: linear-gradient(135deg, #1a1205 0%, #280f18 50%, #0d1a1a 100%); }
.poster-6 { background: linear-gradient(160deg, #0f180a 0%, #1a0d22 50%, #20150a 100%); }
.poster-7 { background: linear-gradient(135deg, #20100a 0%, #0a1a20 50%, #1a1a0a 100%); }
.poster-8 { background: linear-gradient(135deg, #0a200a 0%, #180d28 50%, #201a08 100%); }

.poster-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}

.poster-icon {
  font-size: 2rem;
  opacity: 0.4;
}

.poster-title {
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(237,232,218,0.5);
  line-height: 1.3;
}

.poster-year {
  font-size: 0.6875rem;
  color: rgba(237,232,218,0.3);
  letter-spacing: 0.08em;
}

/* ─── Feature / Stats ──────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(201,148,26,0.25);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── Quote / Testimonial ──────────────────────────── */
.quote-block {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-author {
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* ─── Auth Pages ───────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
}

.auth-wrap {
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  margin-bottom: 40px;
}

.auth-heading {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.auth-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.auth-footer-links {
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.7;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.form-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-divider-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ─── Page Header ──────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.page-header-inner {
  max-width: 640px;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.page-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Blog ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.post-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 24px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}

.post-item:hover { opacity: 0.8; }
.post-item:first-child { padding-top: 0; }

.post-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.post-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.post-excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.post-date {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.post-thumb {
  aspect-ratio: 16/10;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-links a {
  display: block;
  padding: 6px 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.sidebar-links a:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

/* ─── Single Post ──────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.post-content {
  max-width: 680px;
}

.post-hero {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  background: var(--bg-elevated);
}

.post-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--text);
}

.post-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--text);
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.post-content code {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
  font-family: "SF Mono", "Menlo", monospace;
  color: var(--accent);
}

/* ─── FAQ ──────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.faq-item:first-child { padding-top: 0; }

.faq-q {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-a a { color: var(--accent); }
.faq-a a:hover { color: var(--accent-hover); }

/* ─── Pricing ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201,148,26,0.06) 0%, var(--bg-card) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-check {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

/* ─── Catalog Filter Bar ───────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.filter-btn {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-dim);
  border-color: rgba(201,148,26,0.3);
  color: var(--accent);
}

.filter-search {
  margin-left: auto;
  position: relative;
}

.filter-search-input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 36px;
  font-size: 0.8125rem;
  color: var(--text);
  outline: none;
  width: 200px;
  transition: border-color 0.15s, width 0.3s;
}

.filter-search-input::placeholder { color: var(--text-dim); }
.filter-search-input:focus {
  border-color: var(--border-focus);
  width: 240px;
}

.filter-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 0.75rem;
  pointer-events: none;
}

/* ─── CTA Banner ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,148,26,0.05) 100%);
  border: 1px solid rgba(201,148,26,0.2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner-content h2 {
  margin-bottom: 12px;
}

.cta-banner-content p {
  font-size: 1rem;
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─── Press Logos (placeholder) ───────────────────── */
.press-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.35;
  filter: grayscale(1);
  padding: 16px 0;
}

.press-logo {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  font-style: italic;
}

/* ─── Footer ───────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover { color: var(--text-muted); }

/* ─── Utilities ────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-accent { color: var(--accent) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-dim    { color: var(--text-dim) !important; }
.font-serif  { font-family: var(--font-serif); }
.italic      { font-style: italic; }
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4  { gap: 4px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-8   { margin-bottom: 8px; }
.mb-12  { margin-bottom: 12px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── Scroll lock banner ───────────────────────────── */
.lock-banner {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 440px;
  margin: 60px auto;
}

.lock-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.lock-banner h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.lock-banner p {
  font-size: 0.9375rem;
  margin-bottom: 24px;
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner p { max-width: 100%; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .film-grid { grid-template-columns: repeat(2, 1fr); }
  .post-item { grid-template-columns: 1fr; }
  .post-thumb { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .film-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ─── Inter font via web (subset) ─────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
