/* ═══════════════════════════════════════════════════
   IDNTY PORTAL — SHARED DESIGN SYSTEM
   Extracted from 1-dashboard.html
   Colors: Shadow Strike #1C1C1C | Ash Veil #ECECEC
   Gradient: Midnight Haze > Cosmic Dusk > Neon Bloom > Electric Tide
   Fonts: Cormorant Garamond (display) | M PLUS 2 (body)
   ═══════════════════════════════════════════════════ */

:root {
  --shadow: #1C1C1C;
  --ash: #ECECEC;
  --midnight: #3E399B;
  --cosmic: #976BC5;
  --bloom: #F6B2FB;
  --tide: #70FAFC;
  --glass: rgba(20, 20, 20, 0.65);
  --glass-border: rgba(236, 236, 236, 0.08);
  --glass-light: rgba(20, 20, 20, 0.45);
  --text-muted: rgba(236, 236, 236, 0.55);
  --text-dim: rgba(236, 236, 236, 0.30);
}

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

html {
  background: var(--shadow);
  color: var(--ash);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'M PLUS 2', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

h1, h2, h3, h4, .heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grad {
  background: linear-gradient(135deg, var(--tide), var(--bloom), var(--cosmic));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ═══════════════════════════════════════════════════
   PORTAL SIDEBAR NAVIGATION
   ═══════════════════════════════════════════════════ */

.portal-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(236, 236, 236, 0.06);
  z-index: 2000;
  padding: 1.5rem 0;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(236, 236, 236, 0.06);
  margin-bottom: 1rem;
}

.sidebar-logo img {
  height: 22px;
  opacity: 0.8;
}

.sidebar-logo span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.sidebar-section-label {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  padding: 1.2rem 1.5rem 0.4rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.sidebar-item:hover {
  color: var(--ash);
  background: rgba(62, 57, 151, 0.12);
}

.sidebar-item.active {
  color: var(--ash);
  background: rgba(62, 57, 151, 0.18);
  border-right: 2px solid var(--cosmic);
}

.sidebar-item i {
  width: 16px;
  text-align: center;
  font-size: 0.72rem;
  opacity: 0.7;
}

.sidebar-item .coming-soon-tag {
  margin-left: auto;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(236, 236, 236, 0.04);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-weight: 500;
}

.sidebar-item.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.sidebar-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2001;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(236, 236, 236, 0.08);
  color: var(--ash);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

/* Push page content right for sidebar */
.page-wrap {
  margin-left: 240px;
  transition: margin-left 0.3s ease;
}

@media (max-width: 900px) {
  .portal-sidebar {
    transform: translateX(-100%);
  }
  .portal-sidebar.open {
    transform: translateX(0);
  }
  .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-wrap {
    margin-left: 0;
  }
}


/* ═══════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════ */

.page-header {
  padding: 6rem 0 4rem;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/photos/bg-wallpaper-1-scribbles-frames.png') center/cover no-repeat;
  opacity: 0.03;
  pointer-events: none;
}

.page-header > * { position: relative; z-index: 1; }

.page-header .container {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.header-icon {
  width: 56px;
  opacity: 0.4;
}

.header-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.header-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 500px;
}


/* ═══════════════════════════════════════════════════
   SECTION LABELS
   ═══════════════════════════════════════════════════ */

.sec-label {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--tide);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(112, 250, 252, 0.15), transparent);
}


/* ═══════════════════════════════════════════════════
   SECTION SPACING
   ═══════════════════════════════════════════════════ */

.section-block {
  padding: 4rem 0;
}

.section-block + .section-block {
  border-top: 1px solid rgba(151, 107, 197, 0.08);
}


/* ═══════════════════════════════════════════════════
   PLACEHOLDER BANNER
   ═══════════════════════════════════════════════════ */

.placeholder-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(151, 107, 197, 0.08);
  border: 1px solid rgba(151, 107, 197, 0.15);
  border-radius: 8px;
  font-size: 0.7rem;
  color: var(--cosmic);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.placeholder-banner i {
  font-size: 0.65rem;
  opacity: 0.7;
}


/* ═══════════════════════════════════════════════════
   PROGRESS SNAPSHOT CARD
   ═══════════════════════════════════════════════════ */

.snapshot-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.snapshot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tide), var(--bloom), var(--cosmic));
}

.snapshot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.snapshot-phase {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(112, 250, 252, 0.08);
  border: 1px solid rgba(112, 250, 252, 0.15);
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--tide);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.phase-badge i {
  font-size: 0.6rem;
}

.phase-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ash);
}

.phase-name span {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.snapshot-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill.in-progress {
  background: rgba(151, 107, 197, 0.12);
  border: 1px solid rgba(151, 107, 197, 0.25);
  color: var(--cosmic);
}

.status-pill.complete {
  background: rgba(112, 250, 252, 0.08);
  border: 1px solid rgba(112, 250, 252, 0.2);
  color: var(--tide);
}

.status-pill.at-risk {
  background: rgba(246, 178, 251, 0.08);
  border: 1px solid rgba(246, 178, 251, 0.2);
  color: var(--bloom);
}

.status-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.milestone-info {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.milestone-info strong {
  color: var(--ash);
  font-weight: 500;
}

/* Progress bar */
.progress-wrap {
  margin-top: 0.5rem;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}

.progress-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.progress-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--tide), var(--bloom), var(--cosmic));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(236, 236, 236, 0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--tide), var(--bloom), var(--cosmic));
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 12px;
  height: 12px;
  background: var(--bloom);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(246, 178, 251, 0.4);
}

.progress-fill.animated {
  width: 35%;
}


/* ═══════════════════════════════════════════════════
   PHASE BREAKDOWN
   ═══════════════════════════════════════════════════ */

.breakdown-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
}

.breakdown-row {
  display: flex;
  align-items: center;
  padding: 1.2rem 2rem;
  gap: 1.2rem;
  transition: background 0.3s ease;
}

.breakdown-row:hover {
  background: rgba(236, 236, 236, 0.02);
}

.breakdown-row + .breakdown-row {
  border-top: 1px solid rgba(236, 236, 236, 0.04);
}

.breakdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.breakdown-icon.complete {
  background: rgba(112, 250, 252, 0.08);
  color: var(--tide);
}

.breakdown-icon.in-progress {
  background: rgba(151, 107, 197, 0.1);
  color: var(--cosmic);
}

.breakdown-icon.at-risk {
  background: rgba(246, 178, 251, 0.08);
  color: var(--bloom);
}

.breakdown-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 400;
}

.breakdown-status {
  margin-left: auto;
}

/* Readiness score */
.readiness-row {
  display: flex;
  align-items: center;
  padding: 1.2rem 2rem;
  gap: 1.2rem;
  border-top: 1px solid rgba(236, 236, 236, 0.04);
  background: rgba(236, 236, 236, 0.015);
}

.readiness-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.readiness-dots {
  display: flex;
  gap: 0.3rem;
}

.readiness-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(236, 236, 236, 0.15);
  transition: all 0.3s ease;
}

.readiness-dot.filled {
  background: linear-gradient(135deg, var(--tide), var(--bloom));
  border-color: transparent;
  box-shadow: 0 0 6px rgba(112, 250, 252, 0.2);
}

.readiness-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}


/* ═══════════════════════════════════════════════════
   WEEKLY FOCUS GRID
   ═══════════════════════════════════════════════════ */

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.focus-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.4s ease;
}

.focus-card:hover {
  border-color: rgba(151, 107, 197, 0.2);
  background: rgba(20, 20, 20, 0.9);
}

.focus-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.focus-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.focus-card-icon.tasks {
  background: rgba(112, 250, 252, 0.08);
  color: var(--tide);
}

.focus-card-icon.overdue {
  background: rgba(246, 178, 251, 0.08);
  color: var(--bloom);
}

.focus-card-icon.meeting {
  background: rgba(151, 107, 197, 0.1);
  color: var(--cosmic);
}

.focus-card-icon.blocker {
  background: rgba(246, 178, 251, 0.06);
  color: var(--bloom);
}

.focus-card-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.task-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--ash);
  line-height: 1.4;
}

.task-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(236, 236, 236, 0.2);
  flex-shrink: 0;
  margin-top: 2px;
}

.overdue-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--bloom);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.overdue-label {
  font-size: 0.7rem;
  color: var(--bloom);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.overdue-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.6rem 0.8rem;
  background: rgba(246, 178, 251, 0.04);
  border-left: 2px solid var(--bloom);
  border-radius: 0 6px 6px 0;
}

.meeting-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ash);
  margin-bottom: 0.3rem;
}

.meeting-date {
  font-size: 0.78rem;
  color: var(--cosmic);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meeting-date i {
  font-size: 0.65rem;
}

.blocker-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0.6rem 0.8rem;
  background: rgba(246, 178, 251, 0.03);
  border-left: 2px solid rgba(246, 178, 251, 0.3);
  border-radius: 0 6px 6px 0;
}


/* ═══════════════════════════════════════════════════
   MONTHLY FOCUS
   ═══════════════════════════════════════════════════ */

.monthly-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
}

.monthly-section {
  padding: 2rem 2.5rem;
}

.monthly-section + .monthly-section {
  border-top: 1px solid rgba(236, 236, 236, 0.04);
}

.monthly-section-title {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.objective-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ash);
  line-height: 1.5;
}

.priority-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.priority-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ash);
}

.priority-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, var(--tide), var(--bloom));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.risk-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.risk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bloom);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px rgba(246, 178, 251, 0.3);
}


/* ═══════════════════════════════════════════════════
   RESPONSIBILITY SPLIT
   ═══════════════════════════════════════════════════ */

.resp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.resp-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.resp-card:hover {
  border-color: rgba(151, 107, 197, 0.2);
  background: rgba(20, 20, 20, 0.9);
}

.resp-card-accent {
  height: 3px;
}

.resp-card.franchisee .resp-card-accent {
  background: linear-gradient(90deg, var(--tide), rgba(112, 250, 252, 0.3));
}

.resp-card.idnty .resp-card-accent {
  background: linear-gradient(90deg, var(--cosmic), rgba(151, 107, 197, 0.3));
}

.resp-card.completed .resp-card-accent {
  background: linear-gradient(90deg, var(--bloom), rgba(246, 178, 251, 0.3));
}

.resp-card-body {
  padding: 1.75rem;
}

.resp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.resp-card-title {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.resp-card.franchisee .resp-card-title { color: var(--tide); }
.resp-card.idnty .resp-card-title { color: var(--cosmic); }
.resp-card.completed .resp-card-title { color: var(--bloom); }

.resp-count {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.resp-card.franchisee .resp-count {
  background: rgba(112, 250, 252, 0.1);
  color: var(--tide);
}

.resp-card.idnty .resp-count {
  background: rgba(151, 107, 197, 0.12);
  color: var(--cosmic);
}

.resp-card.completed .resp-count {
  background: rgba(246, 178, 251, 0.1);
  color: var(--bloom);
}

.resp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.resp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.resp-item i {
  font-size: 0.55rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.resp-card.franchisee .resp-item i { color: var(--tide); opacity: 0.5; }
.resp-card.idnty .resp-item i { color: var(--cosmic); opacity: 0.5; }
.resp-card.completed .resp-item i { color: var(--bloom); }


/* ═══════════════════════════════════════════════════
   QUICK LINKS
   ═══════════════════════════════════════════════════ */

.quick-links-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-link:hover {
  border-color: rgba(151, 107, 197, 0.25);
  background: rgba(20, 20, 20, 0.95);
  color: var(--ash);
  transform: translateY(-2px);
}

.quick-link i {
  font-size: 0.65rem;
  color: var(--cosmic);
}


/* ═══════════════════════════════════════════════════
   RECENT ACTIVITY
   ═══════════════════════════════════════════════════ */

.activity-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  transition: background 0.3s ease;
}

.activity-row:hover {
  background: rgba(236, 236, 236, 0.02);
}

.activity-row + .activity-row {
  border-top: 1px solid rgba(236, 236, 236, 0.04);
}

.activity-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  flex-shrink: 0;
}

.activity-icon.check { background: rgba(112, 250, 252, 0.08); color: var(--tide); }
.activity-icon.add { background: rgba(246, 178, 251, 0.08); color: var(--bloom); }
.activity-icon.setup { background: rgba(151, 107, 197, 0.1); color: var(--cosmic); }

.activity-text {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.activity-date {
  font-size: 0.68rem;
  color: var(--text-dim);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */

footer {
  padding: 5rem 0 2.5rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer-logo {
  width: 100px;
  opacity: 0.25;
  margin-bottom: 1.5rem;
}

.footer-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-text span { color: var(--cosmic); }


/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.06s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(7) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .focus-grid { grid-template-columns: 1fr; }
  .resp-grid { grid-template-columns: 1fr; }
  .page-header .container { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 1.25rem; }
  .snapshot-card { padding: 1.75rem; }
  .monthly-section { padding: 1.5rem; }
  .breakdown-row { padding: 1rem 1.25rem; }
  .readiness-row { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .snapshot-top { flex-direction: column; }
}
