/* ============================================
   CANVENA Aurora & Enhanced UI Components
   Northern lights background, animated CTAs,
   interactive elements, case studies redesign,
   blog redesign with side navigation
   ============================================ */

/* ===== 1. AURORA / NORTHERN LIGHTS BACKGROUND ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.aurora {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora__layer {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  opacity: 0;
  animation: auroraFadeIn 2s ease forwards;
}

.aurora__layer--1 {
  background: radial-gradient(ellipse at 30% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 50%);
  animation: auroraDrift1 18s ease-in-out infinite alternate, auroraFadeIn 2s ease forwards;
}

.aurora__layer--2 {
  background: radial-gradient(ellipse at 70% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 45%);
  animation: auroraDrift2 22s ease-in-out infinite alternate, auroraFadeIn 2.5s ease forwards;
}

.aurora__layer--3 {
  background: radial-gradient(ellipse at 50% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
  animation: auroraDrift3 25s ease-in-out infinite alternate, auroraFadeIn 3s ease forwards;
}

.aurora__layer--4 {
  background: radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 35%);
  animation: auroraDrift4 20s ease-in-out infinite alternate, auroraFadeIn 3.5s ease forwards;
}

.aurora__shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(201, 168, 76, 0.03) 50%, transparent 60%);
  animation: auroraShimmer 8s ease-in-out infinite;
}

@keyframes auroraFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes auroraDrift1 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(5%, -3%) rotate(2deg) scale(1.05); }
  66% { transform: translate(-3%, 5%) rotate(-1deg) scale(0.98); }
  100% { transform: translate(8%, -8%) rotate(3deg) scale(1.02); }
}

@keyframes auroraDrift2 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-8%, 5%) rotate(-2deg) scale(1.08); }
  100% { transform: translate(5%, -5%) rotate(2deg) scale(0.95); }
}

@keyframes auroraDrift3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 6%) scale(1.1); }
  100% { transform: translate(-4%, -4%) scale(0.92); }
}

@keyframes auroraDrift4 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-6%, 3%) rotate(-3deg); }
  100% { transform: translate(4%, -6%) rotate(2deg); }
}

@keyframes auroraShimmer {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
}

/* ===== 2. ANIMATED ROTATING CTA BUTTONS ===== */
.btn--animated {
  position: relative;
  overflow: hidden;
  min-width: 320px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--animated .btn-text-rotator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.btn--animated .btn-text-item {
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--animated .btn-text-item.active {
  opacity: 1;
  transform: translateY(0);
}

.btn--animated .btn-text-item.exit-up {
  opacity: 0;
  transform: translateY(-100%);
}

.btn--animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: btnSheen 4s ease-in-out infinite;
}

@keyframes btnSheen {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Pulsing dot indicator on animated buttons */
.btn--animated .btn-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 10px;
  animation: btnPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes btnPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ===== 3. INTERACTIVE ELEMENT: FUNDING JOURNEY TIMELINE ===== */
.funding-journey {
  position: relative;
  padding: 40px 0;
}

.journey-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.journey-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-dark);
  z-index: 0;
}

.journey-track__progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-green));
  z-index: 1;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0;
}

.journey-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 0 8px;
}

.journey-node__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.journey-node.active .journey-node__dot,
.journey-node.completed .journey-node__dot {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.journey-node.completed .journey-node__dot {
  background: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.journey-node__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  transition: color 0.3s ease;
}

.journey-node.active .journey-node__label {
  color: var(--accent-gold);
}

.journey-detail {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  display: none;
}

.journey-detail.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.journey-detail__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.journey-detail__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.journey-detail__stats {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.journey-detail__stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.journey-detail__stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== 4. INTERACTIVE ELEMENT: LIVE CAPITAL FLOW GLOBE ===== */
.capital-globe {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.capital-globe__ring {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  animation: ringRotate 30s linear infinite;
}

.capital-globe__ring--1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.capital-globe__ring--2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-direction: reverse;
  animation-duration: 25s;
}

.capital-globe__ring--3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-duration: 20s;
}

.capital-globe__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.capital-globe__amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.capital-globe__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
}

.capital-globe__node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
}

.capital-globe__node:hover {
  transform: scale(1.2);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.3);
  border-color: var(--accent-gold);
}

.capital-globe__node-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
}

.capital-globe__flow {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  transform-origin: left center;
  opacity: 0;
  animation: flowPulse 3s ease-in-out infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes flowPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

/* ===== 5. INTERACTIVE ELEMENT: ROI CALCULATOR ===== */
.roi-calculator {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
}

.roi-calculator__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-dark);
}

.roi-calculator__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.roi-calculator__dot:nth-child(1) { background: #EF4444; opacity: 0.6; }
.roi-calculator__dot:nth-child(2) { background: #F59E0B; opacity: 0.6; }
.roi-calculator__dot:nth-child(3) { background: #10B981; opacity: 0.6; }

.roi-calculator__title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.roi-calculator__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 768px) {
  .roi-calculator__body {
    grid-template-columns: 1fr;
  }
}

.roi-calculator__inputs {
  padding: 32px 28px;
  border-right: 1px solid var(--border-dark);
}

@media (max-width: 768px) {
  .roi-calculator__inputs {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }
}

.roi-calculator__results {
  padding: 32px 28px;
  background: rgba(201, 168, 76, 0.03);
}

.roi-input-group {
  margin-bottom: 24px;
}

.roi-input-group__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.roi-input-group__label span:first-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.roi-input-group__value {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border-dark);
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
  transition: transform 0.2s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}

.roi-result-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
}

.roi-result-item:last-child { border-bottom: none; }

.roi-result-item__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.roi-result-item__value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  line-height: 1;
}

.roi-result-item__value--green {
  color: var(--accent-green);
}

.roi-result-item__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.roi-result-highlight {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.roi-result-highlight__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.roi-result-highlight__value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
}

/* ===== 6. CASE STUDIES REDESIGN ===== */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.12);
}

.case-card:hover::before {
  opacity: 1;
}

.case-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.case-card__header h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

.case-badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.case-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-stat {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.badge--flagship {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-primary);
  background: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 4px;
  margin-top: 16px;
}

/* ===== 7. BLOG REDESIGN: WHITE BG + SIDE NAV ===== */
.blog-article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 900px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Side Navigation */
.blog-sidenav {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 24px 0;
}

@media (max-width: 900px) {
  .blog-sidenav {
    position: relative;
    top: 0;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
  }
}

.blog-sidenav__title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-sidenav__link {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 8px 0;
  padding-left: 16px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.blog-sidenav__link:hover,
.blog-sidenav__link.active {
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
}

/* White content area for blog articles */
.blog-article--white {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid #C9A84C;
}

.blog-article--white .blog-article__content {
  color: #374151;
}

.blog-article--white .blog-article__content h2 {
  color: #111827;
  scroll-margin-top: 100px;
}

.blog-article--white .blog-article__content h3 {
  color: #1F2937;
  scroll-margin-top: 100px;
}

.blog-article--white .blog-article__content p {
  color: #4B5563;
}

.blog-article--white .blog-article__content strong {
  color: #111827;
}

.blog-article--white .blog-article__content a {
  color: #A88B3A;
}

.blog-article--white .blog-article__content a:hover {
  color: #C9A84C;
}

.blog-article--white .blog-article__content blockquote {
  background: #F9F8F5;
  border-left-color: #C9A84C;
  color: #374151;
}

.blog-article--white .blog-article__content ul,
.blog-article--white .blog-article__content ol {
  color: #4B5563;
}

.blog-article--white .blog-article__content li {
  color: #4B5563;
}

.blog-article--white .blog-article__content hr {
  border-top-color: #E5E7EB;
}

/* ===== 8. METRICS DASHBOARD SECTION ===== */
.metrics-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .metrics-dashboard { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .metrics-dashboard { grid-template-columns: 1fr; }
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.metric-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.metric-card:hover::after {
  transform: scaleX(1);
}

.metric-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

.metric-card__value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-card__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.metric-card__change {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-green);
  margin-top: 6px;
}

/* ===== 9. INTELLIGENCE HUB GRID (fin.ai "works with" style) ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hub-grid { grid-template-columns: 1fr; }
}

.hub-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: default;
}

.hub-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.hub-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hub-item__text {
  display: flex;
  flex-direction: column;
}

.hub-item__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hub-item__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== 10. REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .aurora__layer,
  .aurora__shimmer,
  .capital-globe__ring,
  .btn--animated::after {
    animation: none !important;
  }
  .journey-track__progress {
    transition: none !important;
  }
}

/* === IMAGE STYLES (added for Bildkonzept Phase 1) === */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.founder-story-layout img {
  transition: transform 0.3s ease;
}

.founder-story-layout img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .founder-story-layout {
    flex-direction: column !important;
  }
  .founder-story-layout picture {
    width: 100% !important;
  }
  .founder-story-layout img {
    width: 100% !important;
  }
}


/* ===== Founder Story Editorial Layout ===== */
.story-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.story-editorial__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

.story-editorial__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.5s ease;
}

.story-editorial__image:hover img {
  filter: grayscale(0%);
}

.story-editorial__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(to top, rgba(10,14,23,0.95) 0%, rgba(10,14,23,0.7) 60%, transparent 100%);
}

.story-editorial__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--accent-gold);
  line-height: 1.6;
  display: block;
}

/* Timeline */
.story-editorial__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: relative;
}

.story-timeline-item:first-child { padding-top: 0; }
.story-timeline-item:last-child { border-bottom: none; }

.story-timeline-year {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  padding-top: 4px;
  text-align: right;
}

.story-timeline-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light, #F0EDE6);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.story-timeline-content p {
  font-size: 0.875rem;
  color: var(--text-muted, #94A3B8);
  line-height: 1.7;
}

/* Timeline vertical line */
.story-timeline-item::before {
  content: '';
  position: absolute;
  left: 82px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201,168,76,0.15);
}

.story-timeline-item:first-child::before { top: 8px; }
.story-timeline-item:last-child::before { bottom: 50%; }

/* Dot on timeline */
.story-timeline-item::after {
  content: '';
  position: absolute;
  left: 79px;
  top: 32px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold, #C9A84C);
}

.story-timeline-item:first-child::after { top: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .story-editorial {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-editorial__image {
    max-width: 100%;
  }
}
