:root {
  --bg-primary: #07070a;
  --bg-secondary: #0d0d12;
  --bg-tertiary: #131318;
  --bg-card: #16161d;
  --accent: #e8a951;
  --accent-glow: rgba(232, 169, 81, 0.15);
  --accent-hover: #f0b865;
  --text-primary: #f4f4f6;
  --text-secondary: #9494a3;
  --text-muted: #5c5c6d;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --success: #34d399;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Ambient background */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(232, 169, 81, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(147, 112, 219, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(232, 169, 81, 0.01) 0%, transparent 70%);
  animation: ambientShift 30s ease-in-out infinite;
}

@keyframes ambientShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, 1%) rotate(1deg); }
  66% { transform: translate(-1%, 2%) rotate(-1deg); }
}

/* Grain overlay */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(7, 7, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #d4922e 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: livePulse 2s infinite;
  box-shadow: 0 0 8px var(--success);
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.live-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 2rem 4rem;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease-out;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

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

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

/* Chat Interface */
.chat-container {
  width: 100%;
  max-width: 680px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 120px var(--accent-glow);
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.chat-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-title {
  font-size: 0.9rem;
  font-weight: 500;
}

.chat-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.chat-messages {
  padding: 1.5rem;
  min-height: 320px;
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  gap: 0.75rem;
  animation: messageIn 0.4s ease-out;
}

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

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.message-avatar.system {
  background: linear-gradient(135deg, var(--accent) 0%, #d4922e 100%);
}

.message-avatar.user {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
}

.message-content {
  flex: 1;
  padding-top: 4px;
}

.message-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.message-text strong {
  color: var(--accent);
  font-weight: 500;
}

/* Options */
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.option-btn {
  padding: 0.65rem 1.25rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-btn:hover {
  background: var(--bg-card);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.option-btn.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.option-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* URL Input */
.url-input-container {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.url-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.url-input:focus {
  border-color: var(--accent);
}

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

.submit-btn {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Investor Cards */
.investor-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.investor-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.2s ease;
}

.investor-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.investor-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.investor-photo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.investor-info h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.investor-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.investor-match {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(232, 169, 81, 0.08);
  border-radius: 6px;
  border-left: 2px solid var(--accent);
}

.investor-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.investor-link {
  padding: 0.4rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.investor-link:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* Warm Intro Section */
.warm-intro-section {
  margin-top: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.warm-intro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem;
  background: var(--bg-card);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--accent);
  transition: all 0.2s;
}

.warm-intro-header:hover {
  background: var(--bg-secondary);
}

.warm-intro-toggle {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.warm-intro-content {
  margin-top: 0.75rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.warm-intro-subject {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.warm-intro-body {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  white-space: pre-wrap;
}

.copy-intro-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-intro-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Unlock Modal */
.unlock-section {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.unlock-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.unlock-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.unlock-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.unlock-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.unlock-option:hover {
  border-color: var(--accent);
  background: rgba(232, 169, 81, 0.05);
}

.unlock-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.unlock-details {
  flex: 1;
}

.unlock-details h5 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.unlock-details p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.unlock-action {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Referral Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  max-width: 440px;
  width: 90%;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Email input for referral */
.referral-form {
  margin-top: 1rem;
}

.referral-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  outline: none;
}

.referral-input:focus {
  border-color: var(--accent);
}

.referral-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.referral-submit:hover {
  background: var(--accent-hover);
}

/* Loading */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 0.5rem 0;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

/* Footer Stats */
.stats-section {
  padding: 4rem 2rem;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 640px) {
  header {
    padding: 1rem;
  }

  .header-stats {
    display: none;
  }

  .hero {
    padding: 6rem 1rem 2rem;
  }

  .chat-container {
    border-radius: 16px;
  }

  .stats-grid {
    gap: 2rem;
  }
}

/* Social Proof / FOMO Ticker */
.social-proof {
  padding: 2rem;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.proof-ticker {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  animation: fadeInUp 0.6s ease-out;
}

.ticker-item strong {
  color: var(--accent);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.ticker-time {
  color: var(--text-muted);
  font-size: 0.75rem;
}

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

/* Section Eyebrow */
.section-eyebrow {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
  text-align: center;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  width: 260px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(232, 169, 81, 0.08) 0%, var(--bg-secondary) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .proof-ticker {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Time Savings Banner */
.time-savings-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: rgba(232, 169, 81, 0.08);
  border: 1px solid rgba(232, 169, 81, 0.2);
  border-radius: 12px;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.savings-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.savings-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 500;
}

.savings-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.savings-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Urgency Badge */
.urgency-badge {
  background: linear-gradient(135deg, rgba(232, 169, 81, 0.15) 0%, rgba(232, 169, 81, 0.05) 100%);
  border-color: rgba(232, 169, 81, 0.3);
  animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 169, 81, 0.2); }
  50% { box-shadow: 0 0 20px 5px rgba(232, 169, 81, 0.15); }
}

/* FOMO Alert */
.fomo-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  animation: slideInDown 0.6s ease-out;
}

.fomo-alert strong {
  color: var(--success);
}

.fomo-pulse {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: fomoRing 2s ease-out infinite;
  position: relative;
}

.fomo-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--success);
  border-radius: 50%;
  animation: fomoRing 2s ease-out infinite;
}

@keyframes fomoRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 2026 Trend Section */
.trend-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.trend-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(232, 169, 81, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.trend-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.trend-header {
  margin-bottom: 3rem;
}

.trend-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent) 0%, #f0c878 50%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  margin-bottom: 0.5rem;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.trend-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
}

.trend-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.trend-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trend-stat:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.trend-icon {
  font-size: 1.5rem;
}

.trend-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trend-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.trend-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

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

.trend-cta strong {
  color: var(--accent);
}

/* Responsive for new elements */
@media (max-width: 768px) {
  .time-savings-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .savings-divider {
    width: 60px;
    height: 1px;
  }

  .trend-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .trend-stat {
    justify-content: center;
  }

  .trend-year {
    font-size: 3rem;
  }

  .trend-header h2 {
    font-size: 1.5rem;
  }
}
