/* ============================================
   SECTIONS — All Section-Specific Styles
   ============================================ */

/* ═══════════════════════════════════════════
   [1] NAVIGATION
   ═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-4) 0;
  transition: all var(--duration-slow) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-3) 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-2xl);
  color: var(--text-on-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.navbar__logo-dot {
  color: var(--accent-teal);
}

/* Nav Links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar__link {
  color: var(--text-muted-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-decoration: none;
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--duration-normal) var(--ease-out);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transition: width var(--duration-slow) var(--ease-out);
  border-radius: var(--radius-full);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--text-on-dark);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/* Nav Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: calc(var(--z-overlay) + 1);
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: var(--radius-full);
  transition: all var(--duration-slow) var(--ease-out);
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.98);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu .navbar__link {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
}


/* ═══════════════════════════════════════════
   [2] HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Mesh Gradient Background */
.hero__mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: meshFloat 20s ease-in-out infinite;
}

.hero__mesh-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__mesh-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 63, 126, 0.4), transparent 70%);
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
}

.hero__mesh-blob--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

/* Grain Overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-10) var(--container-padding);
}

/* Top Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-amber);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-extrabold);
  color: var(--text-on-dark);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--accent-teal), #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-muted-dark);
  max-width: 640px;
  margin: 0 auto var(--space-6);
  line-height: var(--leading-relaxed);
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

/* Career Ticker */
.hero__ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  font-size: var(--text-lg);
  color: var(--text-muted-dark);
  animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

.hero__ticker-label {
  font-weight: var(--weight-medium);
}

.hero__ticker-roles {
  height: 32px;
  overflow: hidden;
  position: relative;
}

.hero__ticker-track {
  animation: tickerScroll 12s var(--ease-in-out) infinite;
}

.hero__ticker-role {
  height: 32px;
  display: flex;
  align-items: center;
  font-weight: var(--weight-bold);
  color: var(--accent-teal);
  font-family: var(--font-display);
  white-space: nowrap;
}

@keyframes tickerScroll {
  0%, 14%   { transform: translateY(0); }
  16.66%, 30.66%  { transform: translateY(-32px); }
  33.32%, 47.32%  { transform: translateY(-64px); }
  49.98%, 63.98%  { transform: translateY(-96px); }
  66.64%, 80.64%  { transform: translateY(-128px); }
  83.3%, 97.3%   { transform: translateY(-160px); }
  100%    { transform: translateY(-192px); }
}

/* Hero CTAs */
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.6s var(--ease-out) 0.5s both;
}

/* Social Proof */
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  animation: fadeInUp 0.6s var(--ease-out) 0.6s both;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: white;
}

.hero__avatar:first-child { margin-left: 0; }
.hero__avatar--1 { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.hero__avatar--2 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.hero__avatar--3 { background: linear-gradient(135deg, #10B981, #059669); }
.hero__avatar--4 { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.hero__avatar--5 { background: linear-gradient(135deg, #EF4444, #DC2626); }

.hero__proof-text {
  color: var(--text-muted-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.hero__proof-stars {
  color: var(--accent-amber);
  font-size: var(--text-sm);
  letter-spacing: 1px;
}

/* Floating Career Cards */
.hero__floating-cards {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: var(--text-muted-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  white-space: nowrap;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card--1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.floating-card--2 {
  top: 35%;
  right: 8%;
  animation-delay: -2s;
}

.floating-card--3 {
  bottom: 25%;
  left: 10%;
  animation-delay: -4s;
}

.floating-card--4 {
  bottom: 15%;
  right: 5%;
  animation-delay: -1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}


/* ═══════════════════════════════════════════
   [3] HOW IT WORKS
   ═══════════════════════════════════════════ */

.how-it-works {
  background: var(--bg-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

/* Connecting Line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(33.33% - 20px);
  right: calc(33.33% - 20px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent-teal) 0,
    var(--accent-teal) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
  transition: all var(--duration-slow) var(--ease-out);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-card__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-extrabold);
  color: var(--accent-teal-light);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.step-card__icon {
  width: 56px;
  height: 56px;
  background: var(--accent-teal-ultra-light);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--accent-teal);
}

.step-card__icon svg {
  width: 28px;
  height: 28px;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.step-card__desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* ═══════════════════════════════════════════
   [4] CAREER ROADMAP GENERATOR
   ═══════════════════════════════════════════ */

.roadmap-section {
  background: var(--bg-primary);
}

.roadmap-form {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.roadmap-form__step-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.roadmap-form__step-desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

/* Custom Career Input */
.custom-career-input {
  display: none;
  margin-top: var(--space-3);
}

.custom-career-input.visible {
  display: block;
}

/* Navigation Buttons */
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-8);
  gap: var(--space-4);
}

.step-nav .btn {
  min-width: 140px;
}


/* ═══════════════════════════════════════════
   [5] BENTO GRID (Features)
   ═══════════════════════════════════════════ */

.bento-section {
  background: var(--bg-dark);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: var(--space-6);
}

.bento-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
}

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

.bento-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card--wide {
  grid-column: span 3;
}

.bento-card__icon {
  width: 48px;
  height: 48px;
  background: var(--glow-teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--accent-teal);
}

.bento-card__icon svg {
  width: 24px;
  height: 24px;
}

.bento-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-on-dark);
  margin-bottom: var(--space-3);
}

.bento-card__desc {
  font-size: var(--text-base);
  color: var(--text-muted-dark);
  line-height: var(--leading-relaxed);
  flex: 1;
}

/* Stats Bar */
.bento-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: var(--space-8);
}

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

.bento-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.bento-stat__label {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  font-weight: var(--weight-medium);
}

.bento-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}


/* ═══════════════════════════════════════════
   [6] RESUME ANALYZER
   ═══════════════════════════════════════════ */

.resume-section {
  background: var(--bg-primary);
}

.resume-textarea {
  min-height: 280px;
  font-family: 'DM Mono', 'Consolas', monospace;
  font-size: var(--text-sm);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   [7] LINKEDIN OPTIMIZER
   ═══════════════════════════════════════════ */

.linkedin-section {
  background: var(--bg-card);
}

.linkedin-results .markdown-content h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}


/* ═══════════════════════════════════════════
   [8] TESTIMONIALS / SOCIAL PROOF
   ═══════════════════════════════════════════ */

.testimonials-section {
  background: var(--bg-primary);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--border-light);
  transition: all var(--duration-slow) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  color: var(--accent-amber);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  color: white;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.testimonial-card__role {
  color: var(--text-tertiary);
  font-size: var(--text-xs);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: white;
  border-radius: var(--radius-base);
  border: 1px solid var(--border-light);
  transition: all var(--duration-slow) var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-card__label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: var(--weight-medium);
}


/* ═══════════════════════════════════════════
   [9] FAQ
   ═══════════════════════════════════════════ */

.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-base);
  margin-bottom: var(--space-4);
  overflow: hidden;
  background: white;
  transition: all var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
  border-color: var(--accent-teal);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  gap: var(--space-4);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform var(--duration-slow) var(--ease-out);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--accent-teal);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out),
              padding var(--duration-slow) var(--ease-out);
}

.faq-item.open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* ═══════════════════════════════════════════
   [10] FINAL CTA
   ═══════════════════════════════════════════ */

.cta-section {
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: var(--text-4xl);
  color: var(--text-on-dark);
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-section p {
  font-size: var(--text-lg);
  color: var(--text-muted-dark);
  margin-bottom: var(--space-10);
  position: relative;
}


/* ═══════════════════════════════════════════
   [11] FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-2xl);
  color: var(--text-on-dark);
  margin-bottom: var(--space-3);
}

.footer__logo .dot {
  color: var(--accent-teal);
}

.footer__tagline {
  color: var(--text-muted-dark);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-dark-card);
  color: var(--text-muted-dark);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__social-link:hover {
  background: var(--accent-teal);
  color: white;
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--text-on-dark);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-5);
}

.footer__link {
  display: block;
  color: var(--text-muted-dark);
  font-size: var(--text-sm);
  padding: var(--space-1) 0;
  transition: color var(--duration-normal) var(--ease-out);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--accent-teal);
}

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  color: var(--text-muted-dark);
  font-size: var(--text-sm);
}

.footer__disclaimer {
  color: var(--text-muted-dark);
  font-size: var(--text-xs);
  max-width: 480px;
  text-align: right;
  line-height: var(--leading-relaxed);
}
