/**
 * Nirman Design System
 * Premium · Minimal · Apple-level restraint · Stripe-clean · Linear motion
 * Mobile-first · Light + Dark
 */

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  /* Brand — deep teal with indigo accent (unique, not LinkedIn blue) */
  --n-brand: #0F766E;
  --n-brand-hover: #0D9488;
  --n-brand-soft: rgba(15, 118, 110, 0.1);
  --n-accent: #4F46E5;
  --n-accent-soft: rgba(79, 70, 229, 0.1);

  /* Surfaces */
  --n-bg: #FAFAF9;
  --n-bg-elevated: #FFFFFF;
  --n-bg-muted: #F5F5F4;
  --n-bg-inverse: #0C0A09;

  /* Text */
  --n-text: #1C1917;
  --n-text-secondary: #57534E;
  --n-text-muted: #A8A29E;
  --n-text-inverse: #FAFAF9;

  /* Borders */
  --n-border: rgba(28, 25, 23, 0.08);
  --n-border-strong: rgba(28, 25, 23, 0.14);

  /* Feedback */
  --n-success: #059669;
  --n-warning: #D97706;
  --n-danger: #DC2626;
  --n-info: #0284C7;

  /* Gradients */
  --n-gradient-hero: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(15, 118, 110, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(79, 70, 229, 0.12), transparent);
  --n-gradient-card: linear-gradient(145deg, rgba(15, 118, 110, 0.06), rgba(79, 70, 229, 0.04));
  --n-gradient-cta: linear-gradient(135deg, #0F766E 0%, #0D9488 50%, #4F46E5 100%);

  /* Elevation */
  --n-shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04);
  --n-shadow: 0 4px 16px rgba(28, 25, 23, 0.06), 0 1px 3px rgba(28, 25, 23, 0.04);
  --n-shadow-lg: 0 24px 48px rgba(28, 25, 23, 0.1), 0 8px 16px rgba(28, 25, 23, 0.06);
  --n-shadow-glow: 0 0 0 1px rgba(15, 118, 110, 0.1), 0 8px 32px rgba(15, 118, 110, 0.15);

  /* Radii */
  --n-radius-sm: 8px;
  --n-radius: 12px;
  --n-radius-lg: 16px;
  --n-radius-xl: 24px;
  --n-radius-full: 9999px;

  /* Motion (Linear-like) */
  --n-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --n-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --n-duration: 200ms;
  --n-duration-slow: 400ms;

  /* Layout */
  --n-nav-h: 64px;
  --n-container: 1120px;
  --n-sidebar: 260px;

  /* Typography */
  --n-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --n-font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --n-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Dark mode */
[data-theme='dark'] {
  --n-brand: #2DD4BF;
  --n-brand-hover: #5EEAD4;
  --n-brand-soft: rgba(45, 212, 191, 0.12);
  --n-accent: #818CF8;
  --n-accent-soft: rgba(129, 140, 248, 0.14);

  --n-bg: #0C0A09;
  --n-bg-elevated: #1C1917;
  --n-bg-muted: #292524;
  --n-bg-inverse: #FAFAF9;

  --n-text: #FAFAF9;
  --n-text-secondary: #A8A29E;
  --n-text-muted: #78716C;
  --n-text-inverse: #1C1917;

  --n-border: rgba(250, 250, 249, 0.08);
  --n-border-strong: rgba(250, 250, 249, 0.14);

  --n-gradient-hero: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(45, 212, 191, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(129, 140, 248, 0.1), transparent);
  --n-gradient-card: linear-gradient(145deg, rgba(45, 212, 191, 0.06), rgba(129, 140, 248, 0.04));
  --n-gradient-cta: linear-gradient(135deg, #0F766E 0%, #14B8A6 50%, #6366F1 100%);

  --n-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --n-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.2);
  --n-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.45);
  --n-shadow-glow: 0 0 0 1px rgba(45, 212, 191, 0.15), 0 8px 32px rgba(45, 212, 191, 0.12);
}

/* System preference fallback when no explicit theme */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --n-brand: #2DD4BF;
    --n-brand-hover: #5EEAD4;
    --n-brand-soft: rgba(45, 212, 191, 0.12);
    --n-accent: #818CF8;
    --n-accent-soft: rgba(129, 140, 248, 0.14);
    --n-bg: #0C0A09;
    --n-bg-elevated: #1C1917;
    --n-bg-muted: #292524;
    --n-bg-inverse: #FAFAF9;
    --n-text: #FAFAF9;
    --n-text-secondary: #A8A29E;
    --n-text-muted: #78716C;
    --n-text-inverse: #1C1917;
    --n-border: rgba(250, 250, 249, 0.08);
    --n-border-strong: rgba(250, 250, 249, 0.14);
    --n-gradient-hero: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(45, 212, 191, 0.12), transparent),
      radial-gradient(ellipse 50% 40% at 100% 0%, rgba(129, 140, 248, 0.1), transparent);
    --n-gradient-card: linear-gradient(145deg, rgba(45, 212, 191, 0.06), rgba(129, 140, 248, 0.04));
    --n-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --n-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    --n-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.45);
  }
}

/* ─── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--n-font);
  background: var(--n-bg);
  color: var(--n-text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.15; letter-spacing: -0.025em; font-weight: 650; }

::selection {
  background: var(--n-brand-soft);
  color: var(--n-text);
}

:focus-visible {
  outline: 2px solid var(--n-brand);
  outline-offset: 2px;
}

/* ─── Utilities ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--n-container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─── Typography ─────────────────────────────────────────── */
.display {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.display-sm {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--n-text-secondary);
  line-height: 1.6;
  max-width: 40rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--n-brand);
}

.gradient-text {
  background: var(--n-gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.25rem;
  border-radius: var(--n-radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform var(--n-duration) var(--n-ease),
    background var(--n-duration) var(--n-ease),
    box-shadow var(--n-duration) var(--n-ease),
    opacity var(--n-duration) var(--n-ease),
    border-color var(--n-duration) var(--n-ease);
  white-space: nowrap;
  user-select: none;
}

.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.btn-primary {
  background: var(--n-text);
  color: var(--n-text-inverse);
  box-shadow: var(--n-shadow-sm);
}
.btn-primary:hover {
  box-shadow: var(--n-shadow);
  opacity: 0.92;
}

.btn-brand {
  background: var(--n-gradient-cta);
  color: #fff;
  box-shadow: var(--n-shadow-glow);
}
.btn-brand:hover { filter: brightness(1.05); }

.btn-secondary {
  background: var(--n-bg-elevated);
  color: var(--n-text);
  border: 1px solid var(--n-border-strong);
  box-shadow: var(--n-shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--n-text-muted);
  background: var(--n-bg-muted);
}

.btn-ghost {
  background: transparent;
  color: var(--n-text-secondary);
}
.btn-ghost:hover {
  background: var(--n-bg-muted);
  color: var(--n-text);
}

.btn-sm { height: 36px; padding: 0 0.875rem; font-size: 0.8125rem; }
.btn-lg { height: 52px; padding: 0 1.75rem; font-size: 1rem; }
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--n-radius);
}

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--n-bg-elevated);
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-lg);
  box-shadow: var(--n-shadow-sm);
  transition: box-shadow var(--n-duration-slow) var(--n-ease),
    transform var(--n-duration-slow) var(--n-ease),
    border-color var(--n-duration) var(--n-ease);
}

.card-hover:hover {
  box-shadow: var(--n-shadow);
  transform: translateY(-2px);
  border-color: var(--n-border-strong);
}

.card-glow {
  background: var(--n-gradient-card), var(--n-bg-elevated);
  border: 1px solid var(--n-border);
}

/* ─── Forms ──────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
  font-size: 0.8125rem;
  font-weight: 550;
  color: var(--n-text-secondary);
}

.input,
.textarea,
.select {
  width: 100%;
  height: 44px;
  padding: 0 0.875rem;
  background: var(--n-bg);
  border: 1px solid var(--n-border-strong);
  border-radius: var(--n-radius);
  transition: border-color var(--n-duration) var(--n-ease),
    box-shadow var(--n-duration) var(--n-ease);
}

.textarea {
  height: auto;
  min-height: 100px;
  padding: 0.75rem 0.875rem;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--n-brand);
  box-shadow: 0 0 0 3px var(--n-brand-soft);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--n-text-muted);
}

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--n-nav-h);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: color-mix(in srgb, var(--n-bg) 80%, transparent);
  border-bottom: 1px solid var(--n-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--n-gradient-cta);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: var(--n-shadow-glow);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: var(--n-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--n-text-secondary);
  transition: color var(--n-duration) var(--n-ease), background var(--n-duration) var(--n-ease);
}
.nav-link:hover { color: var(--n-text); background: var(--n-bg-muted); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-soon {
  font-size: 0.625rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: var(--n-radius-full);
  background: var(--n-bg-muted);
  color: var(--n-text-muted);
  margin-left: 0.35rem;
}

/* ─── Progress ───────────────────────────────────────────── */
.progress {
  height: 8px;
  border-radius: var(--n-radius-full);
  background: var(--n-bg-muted);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: inherit;
  background: var(--n-gradient-cta);
  transition: width 0.6s var(--n-ease);
}

/* ─── Chips / Tags ───────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 28px;
  padding: 0 0.65rem;
  border-radius: var(--n-radius-full);
  font-size: 0.75rem;
  font-weight: 550;
  background: var(--n-bg-muted);
  color: var(--n-text-secondary);
  border: 1px solid var(--n-border);
}

.chip-brand {
  background: var(--n-brand-soft);
  color: var(--n-brand);
  border-color: transparent;
}

/* ─── Toast ──────────────────────────────────────────────── */
.toast-host {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 260px;
  max-width: 360px;
  padding: 0.875rem 1rem;
  background: var(--n-bg-elevated);
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius);
  box-shadow: var(--n-shadow-lg);
  font-size: 0.875rem;
  animation: slideUp 0.35s var(--n-ease);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.animate-in {
  animation: scaleIn 0.45s var(--n-ease) both;
}

/* Stagger children */
.stagger > * {
  animation: slideUp 0.5s var(--n-ease) both;
}
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.2s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.3s; }

/* ─── Section ────────────────────────────────────────────── */
.section {
  padding: 4.5rem 0;
}
@media (min-width: 768px) {
  .section { padding: 6.5rem 0; }
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

/* ─── Grid helpers ───────────────────────────────────────── */
.grid-2 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Modal ──────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 10, 9, 0.5);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

.modal {
  width: 100%;
  max-width: 440px;
  background: var(--n-bg-elevated);
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-xl);
  box-shadow: var(--n-shadow-lg);
  padding: 1.75rem;
  animation: scaleIn 0.3s var(--n-ease);
  max-height: 90dvh;
  overflow-y: auto;
}

/* ─── Dashboard shell ────────────────────────────────────── */
.app-shell {
  display: grid;
  min-height: 100dvh;
}

@media (min-width: 1024px) {
  .app-shell {
    grid-template-columns: var(--n-sidebar) 1fr;
  }
}

.sidebar {
  display: none;
  flex-direction: column;
  border-right: 1px solid var(--n-border);
  background: var(--n-bg-elevated);
  padding: 1.25rem 0.875rem;
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .sidebar { display: flex; }
}

.sidebar-section {
  margin-top: 1.25rem;
}

.sidebar-label {
  font-size: 0.6875rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--n-text-muted);
  padding: 0.5rem 0.75rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--n-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--n-text-secondary);
  transition: all var(--n-duration) var(--n-ease);
}
.sidebar-link:hover {
  background: var(--n-bg-muted);
  color: var(--n-text);
}
.sidebar-link.active {
  background: var(--n-brand-soft);
  color: var(--n-brand);
}
.sidebar-link.disabled {
  opacity: 0.55;
  cursor: default;
}
.sidebar-link.disabled:hover {
  background: transparent;
  color: var(--n-text-secondary);
}

.main-area {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  height: var(--n-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--n-border);
  background: color-mix(in srgb, var(--n-bg) 85%, transparent);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.content {
  padding: 1.25rem;
  flex: 1;
}
@media (min-width: 768px) {
  .content { padding: 1.75rem 2rem; }
}

/* Mobile bottom nav */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
  background: var(--n-bg-elevated);
  border-top: 1px solid var(--n-border);
}
@media (min-width: 1024px) {
  .mobile-nav { display: none; }
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.625rem;
  font-weight: 550;
  color: var(--n-text-muted);
  padding: 0.35rem 0.5rem;
}
.mobile-nav a.active { color: var(--n-brand); }

/* ─── Resume builder ─────────────────────────────────────── */
.builder-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1100px) {
  .builder-layout {
    grid-template-columns: 380px 1fr;
    align-items: start;
  }
}

.resume-paper {
  background: #fff;
  color: #1c1917;
  border-radius: var(--n-radius);
  box-shadow: var(--n-shadow-lg);
  padding: 2rem;
  min-height: 600px;
  font-size: 0.8125rem;
  line-height: 1.45;
}

[data-theme='dark'] .resume-paper {
  /* Keep paper white for print fidelity */
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), var(--n-shadow-lg);
}

.resume-section-handle {
  cursor: grab;
  opacity: 0.4;
}
.resume-section-handle:active { cursor: grabbing; }

.dnd-ghost {
  opacity: 0.5;
  outline: 2px dashed var(--n-brand);
}

/* ─── Confetti canvas ────────────────────────────────────── */
#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--n-border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}
.faq-a {
  display: none;
  padding: 0 0 1.15rem;
  color: var(--n-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; animation: fadeIn 0.25s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform var(--n-duration) var(--n-ease); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--n-border);
  padding: 3.5rem 0 2rem;
  background: var(--n-bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.footer h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--n-text-muted);
  margin-bottom: 0.85rem;
}

.footer a {
  display: block;
  font-size: 0.875rem;
  color: var(--n-text-secondary);
  padding: 0.25rem 0;
  transition: color var(--n-duration) var(--n-ease);
}
.footer a:hover { color: var(--n-text); }

/* ─── Skeleton ───────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--n-bg-muted) 25%, var(--n-border) 50%, var(--n-bg-muted) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--n-radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── Print (PDF export) ─────────────────────────────────── */
@media print {
  body * { visibility: hidden; }
  .resume-paper, .resume-paper * { visibility: visible; }
  .resume-paper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0.5in;
  }
  .no-print { display: none !important; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
