/* ═══════════════════════════════════════════════════════════
   Indelible — Dark Editorial Design System
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --bg-deep: #0a0a0a;
  --bg-surface: #141414;
  --bg-elevated: #1c1c1c;
  --amber: #d4a053;
  --amber-glow: #e8b86d;
  --amber-dim: #8a6a3a;
  --text-primary: #f0ece4;
  --text-secondary: #9a9590;
  --text-muted: #5a5550;
  --border: #2a2520;
  --success: #4a9e6a;
  --error: #c44848;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--amber-glow);
}

/* ─── Navigation ──────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo:hover {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--amber) !important;
  color: var(--bg-deep) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.01em;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--amber-glow) !important;
  transform: translateY(-1px);
}

/* ─── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--amber);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: var(--amber-glow);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 83, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ─── Hero Section ────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 83, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 2.5rem;
  display: block;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero-accent {
  color: var(--amber);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Sections ────────────────────────────────────────── */

.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-link {
  font-size: 0.9rem;
  color: var(--amber-dim);
  font-weight: 500;
}

.section-link:hover {
  color: var(--amber);
}

/* ─── How It Works ────────────────────────────────────── */

.how-it-works {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2.5rem;
}

.step {
  padding: 0;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber-dim);
  opacity: 0.4;
  margin-bottom: 1rem;
  line-height: 1;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Story Cards Grid ────────────────────────────────── */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.story-card {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.story-card:hover {
  border-color: var(--amber-dim);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: inherit;
}

.story-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.story-card-author {
  color: var(--amber-dim);
  font-weight: 500;
}

.story-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.story-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Page Header ─────────────────────────────────────── */

.page-header {
  padding: 8rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* ─── Single Story Page ───────────────────────────────── */

.story-page {
  padding-top: 64px;
}

.story-header {
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.story-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--amber);
}

.story-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.story-author {
  color: var(--amber);
  font-weight: 500;
}

.story-meta-dot {
  color: var(--text-muted);
}

.story-body {
  padding: 3rem 2rem 4rem;
}

.story-content {
  max-width: 680px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
  background: var(--bg-surface);
}

.story-footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.story-share-prompt {
  text-align: center;
}

.story-share-prompt h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.story-share-prompt p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── CTA Section ─────────────────────────────────────── */

.cta-section {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ─── Form Styles ─────────────────────────────────────── */

.form-container {
  max-width: 640px;
  margin: 0 auto;
}

.story-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.optional {
  color: var(--text-muted);
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber-dim);
  box-shadow: 0 0 0 3px rgba(212, 160, 83, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 200px;
  line-height: 1.7;
}

.form-hint {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-consent {
  padding: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
  cursor: pointer;
  flex-shrink: 0;
}

.form-error {
  background: rgba(196, 72, 72, 0.1);
  border: 1px solid rgba(196, 72, 72, 0.3);
  color: #e88;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* ─── Success Message ─────────────────────────────────── */

.success-message {
  text-align: center;
  padding: 3rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74, 158, 106, 0.15);
  color: var(--success);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-message h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.success-message p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Empty State ─────────────────────────────────────── */

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-state h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ─── Pagination ──────────────────────────────────────── */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pagination-btn {
  font-size: 0.9rem;
  color: var(--amber);
  font-weight: 500;
}

.pagination-btn:hover {
  color: var(--amber-glow);
}

.pagination-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Error Page ──────────────────────────────────────── */

.error-page {
  text-align: center;
  padding: 10rem 2rem 5rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.error-page p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ─── Footer ──────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Responsive ──────────────────────────────────────── */

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .hero-stats {
    gap: 2rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  .page-header {
    padding: 6rem 1.5rem 2rem;
  }

  .story-header {
    padding: 3rem 1.5rem 2rem;
  }

  .story-body {
    padding: 2rem 1.5rem 3rem;
  }

  .story-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ─── Animations ──────────────────────────────────────── */

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

.hero-content {
  animation: fadeIn 0.8s ease-out;
}

.story-card {
  animation: fadeIn 0.5s ease-out;
  animation-fill-mode: both;
}

.story-card:nth-child(1) { animation-delay: 0.05s; }
.story-card:nth-child(2) { animation-delay: 0.1s; }
.story-card:nth-child(3) { animation-delay: 0.15s; }
.story-card:nth-child(4) { animation-delay: 0.2s; }
.story-card:nth-child(5) { animation-delay: 0.25s; }
.story-card:nth-child(6) { animation-delay: 0.3s; }

/* ─── Loading State ───────────────────────────────────── */

.btn[disabled],
.btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Nav Account / Auth ─────────────────────────────── */

.nav-account {
  font-size: 0.9rem;
  color: var(--text-primary) !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--amber);
  color: var(--bg-deep);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
}

.form-footer-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-success {
  background: rgba(74, 158, 106, 0.1);
  border: 1px solid rgba(74, 158, 106, 0.3);
  color: var(--success);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* ─── Story Card Bottom ──────────────────────────────── */

.story-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.story-card-lock {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ─── Membership / Pricing Page ──────────────────────── */

.membership-page {
  padding: 8rem 2rem 5rem;
}

.pricing-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.pricing-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 2rem;
  display: block;
}

.pricing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
}

.pricing-card-featured {
  border-color: var(--amber-dim);
  box-shadow: 0 0 60px rgba(212, 160, 83, 0.08);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.pricing-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.pricing-period {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(42, 37, 32, 0.5);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feature-check {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ─── Pricing Why Section ────────────────────────────── */

.pricing-why {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pricing-why .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pricing-why-item {
  text-align: center;
}

.pricing-why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-why-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.pricing-why-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Member Status Card ─────────────────────────────── */

.member-status-card {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.member-status-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(74, 158, 106, 0.15);
  color: var(--success);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.welcome-icon {
  background: rgba(212, 160, 83, 0.15);
  color: var(--amber);
}

.member-status-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.member-status-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Paywall ────────────────────────────────────────── */

.story-preview {
  position: relative;
}

.paywall {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.paywall-fade {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  pointer-events: none;
  z-index: 1;
}

.paywall-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--amber-dim);
  border-radius: 16px;
  margin-top: -2rem;
}

.paywall-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.paywall-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.paywall-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.paywall-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
}

.paywall-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.paywall-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.paywall-note {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

/* ─── Account Page ───────────────────────────────────── */

.account-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.account-section {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}

.account-section:last-child {
  border-bottom: none;
}

.account-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.account-section p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.account-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.account-badge.active {
  background: rgba(74, 158, 106, 0.15);
  color: var(--success);
  border: 1px solid rgba(74, 158, 106, 0.3);
}

.account-badge.inactive {
  background: rgba(90, 85, 80, 0.15);
  color: var(--text-muted);
  border: 1px solid rgba(90, 85, 80, 0.3);
}

/* ─── Responsive additions ───────────────────────────── */

@media (max-width: 768px) {
  .pricing-why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .membership-page {
    padding: 6rem 1.5rem 3rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .paywall-content {
    padding: 2rem 1.5rem;
  }

  .account-section {
    padding: 1.25rem 1.5rem;
  }
}
