@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Premium Warm Light Mode (Warm Alabaster) */
  --bg-primary: #fbfbfa;
  --bg-secondary: #f3f3f2;
  --bg-card: #ffffff;
  --bg-input: #eaeae9;
  --border-subtle: rgba(28, 25, 23, 0.08);
  --border-glow: rgba(13, 148, 136, 0.2);
  
  --color-teal: #0d9488; /* Teal-600 contrast compliant */
  --color-teal-light: #0f766e;
  --color-blue: #0284c7;
  --color-purple: #7c3aed;
  --color-purple-light: #6366f1;
  --color-gold: #d97706;
  
  --text-primary: #1c1917; /* Stone-900 */
  --text-secondary: #57534e; /* Stone-600 */
  --text-muted: #78716c; /* Stone-500 */
  
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(28, 25, 23, 0.03);
  --shadow-md: 0 8px 30px rgba(28, 25, 23, 0.06);
  --shadow-glow: 0 0 25px rgba(13, 148, 136, 0.08);
  
  --transition-fast: 150ms ease;
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* A/B Test Variant B - Cool Nordic Light Mode */
body.theme-teal {
  --bg-primary: #f8fafc; /* Slate-50 */
  --bg-secondary: #f1f5f9; /* Slate-100 */
  --bg-card: #ffffff;
  --bg-input: #e2e8f0;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-glow: rgba(37, 99, 235, 0.2);
  --color-teal: #2563eb; /* Royal Blue */
  --color-teal-light: #1d4ed8;
  --color-purple: #4f46e5;
  --color-purple-light: #6366f1;
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.08);
  --text-primary: #0f172a; /* Slate-900 */
  --text-secondary: #475569; /* Slate-600 */
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
}

main {
  overflow-x: hidden;
  width: 100%;
  max-w: 100%;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 8rem 0; /* py-32 equivalent for large spacing */
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  text-wrap: balance;
}

/* Scroll-triggered Fade-In Animation classes */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for sequential fade-ins */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Navigation Bar */
.nav-wrapper {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-bar {
  background: rgba(251, 251, 250, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 99px;
  padding: 12px 24px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
}

.nav-brand svg {
  width: 28px;
  height: 28px;
  fill: var(--color-teal);
}

.nav-brand span {
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.nav-link:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
  border-radius: 4px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 99px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), background var(--transition-fast), border var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--color-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
}

.btn-secondary {
  background: rgba(28, 25, 23, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(28, 25, 23, 0.08);
  border-color: var(--color-teal);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 50% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-container {
  width: 100%;
  max-width: 960px; /* Wide container matching 2-line iron rule */
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-buttons .btn {
  padding: 14px 28px;
  font-size: 16px;
}

.hero-showcase {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  padding: 8px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.hero-showcase::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.mock-video-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  position: relative;
}

.mock-video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 5, 10, 0.4);
  z-index: 1;
}

.mock-video-header, .mock-video-footer {
  z-index: 2;
}

.mock-video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yt-badge {
  background: #ff0000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-badge {
  background: var(--color-teal);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-primary);
  animation: pulse 1s infinite alternate;
}

.mock-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--color-teal);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.5);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.mock-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--color-teal-light);
}

.mock-video-play-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  margin-left: 4px;
}

.mock-video-footer {
  width: 100%;
}

.live-transcript {
  background: rgba(6, 5, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.transcript-label {
  font-size: 11px;
  color: var(--color-teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.transcript-text {
  font-size: 15px;
  color: #f8fafc;
  min-height: 24px;
  transition: opacity var(--transition-fast);
}

/* Video controls */
.video-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.video-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--color-teal);
  position: absolute;
  top: 0; left: 0;
  transition: width 100ms linear;
}

.video-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
}

/* Bento Feature Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-flow: dense;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.bento-card-icon {
  margin-bottom: 24px;
  color: var(--color-teal);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.1);
}

.bento-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.bento-card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.bento-card-text {
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* Bento custom spans */
.col-span-2 {
  grid-column: span 2;
}

.row-span-2 {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .col-span-2 {
    grid-column: span 1;
  }
}

/* Bento visualization block */
.bento-visual {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
}

.lang-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-pill {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 99px;
  font-family: var(--font-heading);
}

.lang-pill.active {
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-teal);
  border-color: var(--color-teal);
}

/* Audio waves mock */
.wave-container {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  padding: 10px 0;
  justify-content: center;
}

.wave-bar {
  width: 6px;
  height: 10%;
  background: var(--color-teal);
  border-radius: 3px;
  transition: height 150ms ease;
}

/* Interactive Simulators Section */
.sim-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .sim-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.sim-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.sim-info p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
}

.sim-control-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.sim-tabs {
  display: flex;
  background: var(--bg-primary);
  border-radius: 99px;
  padding: 6px;
  margin-bottom: 32px;
  border: 1px solid var(--border-subtle);
}

.sim-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px;
  border-radius: 99px;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.sim-tab.active {
  background: var(--color-teal);
  color: var(--bg-primary);
}

.sim-content {
  display: none;
}

.sim-content.active {
  display: block;
  animation: fadeIn 300ms ease-out forwards;
}

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

/* Simulator Tab 1: Chrome Extension Mock */
.extension-mock {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.ext-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.ext-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ext-badge {
  font-size: 9px;
  background: var(--color-purple);
  padding: 2px 5px;
  border-radius: 4px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #334155;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--color-teal);
}

input:checked + .toggle-slider:before {
  transform: translateX(22px);
}

.ext-section {
  margin-bottom: 16px;
}

.ext-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.ext-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
}

.ext-select:focus {
  border-color: var(--color-teal);
}

.ext-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ext-slider {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  outline: none;
  background: #334155;
  -webkit-appearance: none;
}

.ext-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-teal);
  cursor: pointer;
}

.ext-credits-box {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.ext-credits-box strong {
  color: var(--color-purple-light);
}

.ext-status {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.ext-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64748b;
}

.ext-status-dot.active {
  background: var(--color-teal);
  box-shadow: 0 0 8px var(--color-teal);
  animation: pulse 1s infinite alternate;
}

/* Simulator Tab 2: Translation simulator */
.trans-sim-box {
  text-align: left;
}

.input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.text-input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 99px;
  padding: 12px 20px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.text-input:focus {
  border-color: var(--color-teal);
}

.trans-preview-screen {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.trans-log {
  font-size: 12px;
  font-family: monospace;
  color: var(--text-muted);
  max-height: 80px;
  overflow-y: auto;
}

.trans-log-line {
  margin-bottom: 4px;
}

.trans-log-line.accent {
  color: var(--color-teal);
}

.trans-output-bubble {
  background: rgba(20, 184, 166, 0.1);
  border-left: 3px solid var(--color-teal);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--text-primary);
}

/* Simulator Tab 3: Credits calculator */
.calc-box {
  text-align: left;
}

.calc-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.calc-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.calc-card.active {
  border-color: var(--color-teal);
  background: rgba(20, 184, 166, 0.05);
}

.calc-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.calc-card-name {
  font-size: 12px;
  color: var(--text-secondary);
}

.calc-result-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.calc-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-teal);
  font-family: var(--font-heading);
}

/* Theme / A/B Test panel */
.ab-theme-box {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-align: left;
}

.ab-theme-header {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14.5px;
}

.ab-theme-btns {
  display: flex;
  gap: 12px;
}

/* Details Pages Wrap (Privacy & Refund Policy) */
.details-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}

.details-header {
  margin-bottom: 40px;
}

.details-header h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.details-meta {
  color: var(--text-muted);
  font-size: 14px;
}

.details-content h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.details-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 15px;
}

.details-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.details-content li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 15px;
}

.details-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.details-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.details-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Action Banner / Footer */
.action-banner {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.action-banner h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.action-banner p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 32px;
}

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
  margin-top: 8rem;
  background: var(--bg-secondary);
}

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

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

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Animations */
@keyframes pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}
