/* ========================================
   RREBELL Berlin, Manifest, Info Shared Styles
   ======================================== */

/* ── DIVIDERS ── */
.divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 72px auto;
  max-width: 1100px;
  padding: 0 40px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--glow-color, rgba(232, 0, 45, 0.12));
}
.divider-label {
  padding: 0 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-tertiary, #707080);
}

/* ── SECTION HEADINGS ── */
.sec-eye {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--primary-accent, #e8002d);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-eye span {
  color: var(--text-tertiary, #707080);
}

.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary, #f0f0f8);
  margin-bottom: 10px;
  font-weight: 700;
}
.sec-title em {
  font-style: italic;
  color: var(--primary-accent, #e8002d);
}

.sec-rule {
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-accent, #e8002d), transparent);
  margin-bottom: 32px;
}

/* ── BODY TEXT ── */
.body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
.body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary, #b0b0c0);
  font-weight: 300;
  margin-bottom: 1.3em;
}
.body p:last-child {
  margin-bottom: 0;
}
.body strong {
  font-weight: 500;
  color: var(--text-primary, #f0f0f8);
}
.body em {
  font-style: italic;
  color: var(--text-tertiary, #707080);
}

/* ── TWO-COLUMN LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
  margin-bottom: 40px;
}
.two-col-rev {
  grid-template-columns: 1fr 1fr;
}

/* ── STATEMENT CALLOUT ── */
.statement {
  border: 1px solid var(--glow-color, rgba(232, 0, 45, 0.12));
  border-left: 3px solid var(--primary-accent, #e8002d);
  background: rgba(232, 0, 45, 0.04);
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}
.statement p {
  font-size: 14.5px;
  color: var(--text-secondary, #b0b0c0);
  line-height: 1.75;
}
.statement p strong {
  color: var(--text-primary, #f0f0f8);
  font-weight: 500;
}
.statement-eye {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--primary-accent, #e8002d);
  margin-bottom: 10px;
}

/* ── TIP CARDS GRID (3-COL) ── */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--glow-color, rgba(232, 0, 45, 0.12));
  margin-top: 36px;
}
.tip-card {
  background: var(--bg-surface, #111118);
  padding: 28px 24px;
  transition: background 0.3s;
  position: relative;
}
.tip-card:hover {
  background: var(--bg-surface, #111118);
  filter: brightness(1.1);
}
.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.tip-card:hover::before {
  background: var(--primary-accent, #e8002d);
}
.tip-card-eye {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-accent, #e8002d);
  margin-bottom: 10px;
  display: block;
}
.tip-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: var(--text-primary, #f0f0f8);
  margin-bottom: 8px;
  line-height: 1.2;
  font-weight: 700;
}
.tip-card p {
  font-size: 13px;
  color: var(--text-tertiary, #707080);
  line-height: 1.65;
  margin: 0;
}

/* ── TAGS ── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary, #707080);
  border: 1px solid var(--glow-color, rgba(232, 0, 45, 0.12));
  padding: 5px 10px;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: default;
}
.tag:hover {
  color: var(--primary-accent, #e8002d);
  border-color: var(--glow-color, rgba(232, 0, 45, 0.2));
}

/* ── BIG QUOTE ── */
.big-quote {
  padding: 64px 0;
  text-align: center;
  position: relative;
}
.big-quote::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 0, 45, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.big-quote blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.25;
  color: var(--text-primary, #f0f0f8);
  max-width: 720px;
  margin: 0 auto 16px;
  letter-spacing: -0.01em;
  position: relative;
  font-weight: 700;
}
.big-quote blockquote em {
  color: var(--primary-accent, #e8002d);
  font-style: normal;
}
.big-quote cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--secondary-accent, #ff5c84);
}

/* ── WIDE CARD ── */
.wide-card {
  background: var(--bg-surface, #111118);
  border: 1px solid var(--glow-color, rgba(232, 0, 45, 0.12));
  border-top: 2px solid var(--primary-accent, #e8002d);
  padding: 40px;
  margin-top: 36px;
}
.wide-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  color: var(--text-primary, #f0f0f8);
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 700;
}
.wide-card p {
  font-size: 14px;
  color: var(--text-tertiary, #707080);
  line-height: 1.8;
  margin-bottom: 1em;
}
.wide-card p:last-child {
  margin-bottom: 0;
}
.wide-card strong {
  color: var(--text-secondary, #b0b0c0);
  font-weight: 500;
}

/* ── ESCAPE/ACTIVITY CARDS ── */
.escape-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
  background: var(--glow-color, rgba(232, 0, 45, 0.12));
}
.escape-card {
  background: var(--bg-surface, #111118);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.escape-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.escape-card:hover {
  background: color-mix(in srgb, var(--bg-surface, #111118) 80%, var(--primary-accent, #e8002d));
}
.escape-card:hover::after {
  background: var(--primary-accent, #e8002d);
}
.escape-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--primary-accent, #e8002d);
  margin-bottom: 12px;
  display: block;
}
.escape-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: var(--text-primary, #f0f0f8);
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 700;
}
.escape-card p {
  font-size: 13.5px;
  color: var(--text-tertiary, #707080);
  line-height: 1.7;
  margin: 0;
}

/* ── SOUNDCLOUD WRAPPER ── */
.sc-wrapper {
  margin: 48px auto;
  border: 1px solid var(--glow-color, rgba(232, 0, 45, 0.12));
  border-top: 2px solid var(--primary-accent, #e8002d);
  background: var(--bg-surface, #111118);
  overflow: hidden;
  max-width: 1000px;
}
.sc-header {
  padding: 20px 28px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--glow-color, rgba(232, 0, 45, 0.12));
}
.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-accent, #e8002d);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--primary-accent, #e8002d);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.sc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-tertiary, #707080);
}
.sc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-primary, #f0f0f8);
  margin-left: auto;
  font-weight: 700;
}
.sc-embed {
  padding: 0;
}
.sc-embed iframe {
  width: 100%;
  display: block;
  border: none;
}

/* ── PROMPT CARDS GRID ── */
.prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 36px;
  background: var(--glow-color, rgba(232, 0, 45, 0.12));
}
.prompt-card {
  background: var(--bg-surface, #111118);
  padding: 32px 28px;
  border-bottom: none;
  transition: background 0.3s;
}
.prompt-card:hover {
  background: color-mix(in srgb, var(--bg-surface, #111118) 80%, var(--primary-accent, #e8002d));
}
.prompt-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary-accent, #ff5c84);
  margin-bottom: 10px;
  display: block;
}
.prompt-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: var(--text-primary, #f0f0f8);
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 700;
}
.prompt-card .prompt-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--text-tertiary, #707080);
  line-height: 1.65;
  border-left: 2px solid var(--text-tertiary, #707080);
  padding-left: 14px;
  margin-top: 12px;
  font-style: italic;
}
.prompt-card p {
  font-size: 13px;
  color: var(--text-tertiary, #707080);
  line-height: 1.65;
  margin: 0;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE WRAPPER ── */
.page-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

.category {
  margin-bottom: 72px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .divider {
    padding: 0 24px;
  }

  .body {
    padding: 0 24px;
  }

  .two-col,
  .escape-grid,
  .three-col,
  .prompt-grid {
    grid-template-columns: 1fr;
  }

  .divider-label {
    padding: 0 12px;
  }

  .sec-title {
    font-size: clamp(20px, 5vw, 32px);
  }

  .page-content-wrapper {
    padding: 0 24px 64px;
  }

  .wide-card {
    padding: 24px;
  }

  .escape-card,
  .tip-card,
  .prompt-card {
    padding: 24px;
  }

  .tags {
    gap: 6px;
  }

  .tag {
    font-size: 7px;
    padding: 4px 8px;
  }
}
