/* ──────────────────────────────────────────────
   Resume Analyzer — Main Stylesheet
   Theme: Professional Clean (Ref: Guide)
   Font: Inter
   ────────────────────────────────────────────── */

/* ── Variables ─────────────────────────────── */
:root {
  /* Premium Light Theme */
  --bg:          #f0f2f5; 
  --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --surface:     #ffffff;
  --surface-2:   #f8fafc;
  --border:      #e2e8f0;
  --text:        #1e293b;
  --muted:       #64748b;
  
  --accent:      #4f46e5;
  --accent-light: #818cf8;
  --accent-glow: rgba(79, 70, 229, 0.08);
  
  --font-primary: 'Outfit', 'Inter', -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --nav-height: 80px;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
  z-index: -1;
}

/* ── Navigation ────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: all 0.3s ease;
}
.nav-content {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-link:hover { color: var(--accent); transform: translateY(-1px); }
.nav-link.active { color: var(--accent); font-weight: 700; border-bottom: 2px solid var(--accent); padding-bottom: 4px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.04em;
  margin-right: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.nav-logo span { color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* ── Layout ────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 32px 100px;
}

/* ── Hero & Mode Selection ─────────────────── */
.landing-hero {
  text-align: center;
  padding: 80px 20px 40px;
}
.landing-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.1;
}
.landing-hero h1 span {
  color: var(--accent);
}
.landing-hero p {
  font-size: 1.35rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 48px;
}

.mode-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 80px;
}

/* ── Interview Mastery Styles ──────────────── */
.stat-pill {
  padding: 6px 14px;
  background: var(--light);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.interview-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.interview-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interview-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.interview-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.interview-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interview-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--muted);
}

.interview-question-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.4;
}

.interview-chevron {
  transition: transform 0.3s;
  color: var(--muted);
}

.interview-card.open .interview-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.interview-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #fafafa;
}

.interview-card.open .interview-body {
  max-height: 1000px;
}

.answer-box {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.answer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.answer-box p {
  line-height: 1.6;
  color: var(--text);
  opacity: 0.9;
  font-size: 0.95rem;
}

/* ── Comparison Table ─────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: white;
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.comparison-table .highlight {
  background: rgba(79, 70, 229, 0.03);
  color: var(--accent);
  font-weight: 600;
  border-left: 2px solid rgba(79, 70, 229, 0.1);
}

.comparison-table th.highlight {
  background: var(--accent);
  color: white;
  border-left: none;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: #fafafa;
}

/* ── Checklist & Path to 90 ────────────────── */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.checklist-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.check-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.check-circle.done {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.checklist-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.checklist-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Global Alignments ─────────────────────── */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

@media (max-width: 768px) {
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 12px 16px; }
  .landing-hero h1 { font-size: 3rem; }
  .checklist-grid { grid-template-columns: 1fr; }
}
.mode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.mode-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.mode-card .icon-box {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mode-card h3 { font-size: 1.5rem; font-weight: 800; }
.mode-card p { color: var(--muted); font-size: 1rem; }
.mode-card .btn-small {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--surface-2);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.mode-card:hover .btn-small { background: var(--accent); color: white; }

/* ── Centered Search/Action Bar ────────────── */
.action-bar-wrapper {
  max-width: 800px;
  margin: -40px auto 80px;
  padding: 0 24px;
}
.action-bar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.action-bar:focus-within {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.action-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: var(--text);
  background: transparent;
}
.action-bar .btn {
  width: auto;
  padding: 14px 32px;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 40px auto 0;
  justify-content: center;
}
.feature-card {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.section-title p { color: var(--muted); }

/* ── Form Container ────────────────────────── */
.analyzer-container {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Card ───────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
}
.card:hover::before {
  height: 100%;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-title i {
  color: var(--accent);
  font-size: 1.4rem;
}

/* ── Batch Results ─────────────────────────── */
.batch-list {
  display: flex;
  flex-direction: column;
  background: var(--surface-2);
}
.batch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.batch-item:last-child { border-bottom: none; }
.batch-item:hover { 
  background: var(--surface);
  transform: scale(1.01);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}
.batch-item.active { 
  background: var(--surface);
  border-left: 4px solid var(--accent);
  box-shadow: inset 4px 0 0 var(--accent);
}

.batch-item-info { flex: 1; }
.batch-item-name { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.batch-item-grade { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.batch-item-score {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.detail-header { margin: var(--sp-xl) 0 var(--sp-md); }
.detail-header h3 { font-size: 1.25rem; font-weight: 700; }

/* ── Form Elements ───────────────────────────── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}
.upload-zone:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.upload-zone input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.file-selected {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
  border: 1px solid rgba(16, 185, 129, 0.1);
}
textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  padding: 16px 20px;
  font-family: var(--font-primary);
  font-size: 1rem;
  min-height: 180px;
  outline: none;
  transition: all 0.2s ease;
  resize: vertical;
  margin-top: 8px;
}
textarea:focus { 
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  font-family: var(--font-primary);
  text-decoration: none;
  gap: 10px;
}
.btn-primary {
  background: var(--accent);
  color: white;
  width: auto;
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  background: var(--surface-2);
  border-color: var(--muted);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

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

.nav-actions .btn {
  white-space: nowrap;
}

/* ── Loading Overlay ───────────────────────── */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.loading-overlay.active { display: flex; }
.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--accent-glow);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loading-steps { text-align: center; }
.loading-steps p { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.loading-steps small { color: var(--muted); }

/* ── Flash Messages ─────────────────────────── */
.flash {
  padding: var(--sp-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-md);
  font-size: 0.875rem;
  border: 1px solid transparent;
}
.flash.error { background: var(--red-bg); color: var(--red); border-color: rgba(244, 63, 94, 0.2); }
.flash.success { background: var(--green-bg); color: var(--green); border-color: rgba(16, 185, 129, 0.2); }

/* ── Results Page Components ────────────────── */
.score-section {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .score-section { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
}

.score-ring-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.score-ring { transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: var(--surface-2); stroke-width: 8; }
.score-ring-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.29; /* 2 * PI * 54 */
  stroke-dashoffset: 339.29;
  transition: stroke-dashoffset 1s ease-out;
}

.score-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.score-number { font-size: 2rem; font-weight: 800; line-height: 1; }
.score-slash { font-size: 0.75rem; color: var(--muted); font-weight: 600; }

.score-meta { flex: 1; }
.score-grade { font-size: 1.25rem; font-weight: 700; margin-bottom: var(--sp-xs); }
.summary-text { font-size: 0.95rem; color: var(--text); margin-bottom: var(--sp-lg); }

.score-breakdown { display: flex; flex-direction: column; gap: 12px; }
.breakdown-row { display: flex; align-items: center; gap: var(--sp-md); font-size: 0.85rem; }
.breakdown-row span:first-child { width: 100px; font-weight: 600; color: var(--muted); }
.breakdown-bar { flex: 1; height: 8px; background: var(--surface-2); border-radius: var(--radius-full); overflow: hidden; }
.breakdown-bar-fill { height: 100%; width: 0; transition: width 0.8s ease-out; border-radius: var(--radius-full); }
.breakdown-value { font-weight: 700; width: 30px; text-align: right; }

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

.skills-panel-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--sp-md); }
.skills-panel-title.green { color: var(--green); }
.skills-panel-title.red { color: var(--red); }

.skill-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 6px 8px 0;
}
.skill-chip.found { background: var(--green-bg); color: var(--green); }
.skill-chip.missing { background: var(--red-bg); color: var(--red); }

.bullet-list { list-style: none; }
.bullet-list li { position: relative; padding-left: 20px; font-size: 0.9rem; margin-bottom: 8px; }
.bullet-list li::before { content: "•"; position: absolute; left: 0; font-weight: bold; }
.bullet-list.green li::before { color: var(--green); }
.bullet-list.red li::before { color: var(--red); }

.ats-list { display: flex; flex-direction: column; gap: var(--sp-md); }
.ats-item { display: flex; gap: var(--sp-md); align-items: flex-start; }
.ats-status {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ats-status.pass { background: var(--green-bg); color: var(--green); }
.ats-status.fail { background: var(--red-bg); color: var(--red); }
.ats-check-name { font-weight: 600; font-size: 0.9rem; }
.ats-check-msg { font-size: 0.8rem; color: var(--muted); }

.divider { height: 1px; background: var(--border); margin: var(--sp-xl) 0; }
.flag-item { font-size: 0.85rem; color: var(--amber); background: var(--amber-bg); padding: 8px 12px; border-radius: var(--radius-md); margin-bottom: 8px; font-weight: 500; }

.btn-group { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 16px; 
}
.btn-green { background: var(--green); color: white; }
.btn-green:hover { filter: brightness(1.1); transform: translateY(-1px); }

.audio-player { margin-top: var(--sp-xl); display: none; padding-top: var(--sp-lg); border-top: 1px solid var(--border); }
audio { width: 100%; height: 36px; }

/* ── Interview Cards ───────────────────────── */
.interview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.interview-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--surface);
  font-weight: 700;
  color: var(--accent);
}
.interview-header:hover { background: var(--surface-2); }
.interview-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--surface);
}
.interview-card.open .interview-body {
  padding: 16px 24px 24px;
  max-height: 500px;
  border-top: 1px solid var(--border);
}
.interview-card.open .interview-chevron { transform: rotate(180deg); }

.question-item {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface-2);
}
.question-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.question-num {
  width: 24px;
  height: 24px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.4s ease-out forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }
