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

    :root {
      --font-display: 'Google Sans', ui-sans-serif, system-ui, sans-serif;
      --font-sans:    'DM Sans', ui-sans-serif, system-ui, sans-serif;
      --font-mono:    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      --bg:           #FFFFFF;
      --bg-soft:      #F7F5F2;
      --ink:          #141210;
      --ink-mid:      #4A4540;
      --ink-muted:    #8A837C;
      --accent:       #B8915A;
      --accent-dk:    #9C7845;
      --line:         #EBEBEB;
      --radius:       16px;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-align: left;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: 68px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s;
    }
    nav.scrolled { border-color: var(--line); }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      height: 100%;
      display: flex; justify-content: space-between; align-items: center;
    }
    .nav-logo {
      text-decoration: none;
      display: flex; align-items: center; gap: 10px; line-height: 1;
    }
    .nav-logo img {
      width: 172px; height: 42px;
      display: block; flex-shrink: 0;
    }
    .nav-logo.footer-logo-link img {
      width: 32px; height: 32px;
    }
    .logo-wordmark {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      color: var(--ink);
      letter-spacing: -0.03em;
    }
    .logo-wordmark span {
      color: var(--accent);
    }
    .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
    .nav-links a { font-size: 14px; font-weight: 400; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; letter-spacing: -0.01em; }
    .nav-links a:hover { color: var(--ink); }
    .nav-back {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 400;
      color: var(--ink-muted); text-decoration: none;
      transition: color 0.2s; letter-spacing: -0.01em;
    }
    .nav-back:hover { color: var(--ink); }
    .nav-back svg { transition: transform 0.2s; }
    .nav-back:hover svg { transform: translateX(-3px); }

    /* ── CONTAINER ── */
    .container     { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .container-md  { max-width: 900px;  margin: 0 auto; padding: 0 24px; }

    /* ── HERO ── */
    .cs-hero {
      padding: 140px 0 80px;
      border-bottom: 1px solid var(--line);
    }
    .cs-hero-meta {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 24px;
    }
    .cs-hero-meta span { color: var(--ink-muted); font-weight: 400; letter-spacing: 0; text-transform: none; }
    .cs-hero-meta .sep { color: var(--line); }
    .cs-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4.2vw, 54px);
      font-weight: 600; line-height: 1.18;
      letter-spacing: -0.02em; color: var(--ink);
      max-width: 820px; margin-bottom: 32px;
    }
    .cs-hero-desc {
      font-size: 18px; font-weight: 300;
      line-height: 1.75; color: var(--ink-mid);
      max-width: 620px; letter-spacing: -0.01em;
      margin-bottom: 52px;
    }
    .cs-meta-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
      padding-top: 36px;
    }
    .cs-meta-item {
      padding-right: 32px;
      border-right: 1px solid var(--line);
      margin-right: 32px;
    }
    .cs-meta-item:last-child { border-right: none; }
    .cs-meta-key {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--ink-muted); margin-bottom: 6px;
    }
    .cs-meta-val {
      font-size: 14px; font-weight: 400;
      color: var(--ink); line-height: 1.5;
    }

    /* ── HERO IMAGE ── */
    .cs-cover {
      width: 100%; aspect-ratio: 16/7;
      background: var(--bg-soft);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .cs-cover img { width: 100%; height: 100%; object-fit: cover; }
    .placeholder {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px; width: 100%; height: 100%;
      color: var(--ink-muted);
    }
    .placeholder-label {
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
    }

    /* ── SECTIONS ── */
    .cs-section { padding: 96px 0; }
    .cs-section.bg-soft { background: var(--bg-soft); }

    .section-eyebrow {
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 12px;
    }
    .cs-section h2 {
      font-family: var(--font-display);
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 700; letter-spacing: -0.03em;
      line-height: 1.12; color: var(--ink);
      margin-bottom: 28px;
    }
    .cs-body {
      font-size: 17px; font-weight: 300;
      line-height: 1.82; color: var(--ink-mid);
      letter-spacing: -0.01em;
      max-width: 760px;
      margin-left: 0; margin-right: auto;
      text-align: left;
    }
    .cs-body p + p { margin-top: 20px; }
    .cs-body strong { color: var(--ink); font-weight: 500; }
    .cs-findings {
      list-style: none; display: flex; flex-direction: column; gap: 16px;
      margin: 20px 0;
    }
    .cs-findings li {
      font-size: 17px; font-weight: 300; line-height: 1.7;
      color: var(--ink-mid); letter-spacing: -0.01em;
      padding-left: 24px; position: relative;
    }
    .cs-findings li::before {
      content: '';
      position: absolute; left: 0; top: 10px;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent);
    }
    .cs-findings li strong { color: var(--ink); font-weight: 500; }

    /* ── LAYOUT: texto + sidebar ── */
    .cs-split {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 80px; align-items: start;
    }

    /* ── CALLOUT ── */
    .cs-callout {
      border-left: 3px solid var(--accent);
      padding: 20px 24px;
      background: var(--bg-soft);
      border-radius: 0 var(--radius) var(--radius) 0;
      margin: 32px 0;
    }
    .cs-callout p {
      font-size: 17px; font-weight: 400;
      font-style: italic; color: var(--ink-mid);
      line-height: 1.7; letter-spacing: -0.01em;
    }

    /* ── STATS ROW ── */
    .cs-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--line);
      border: 1px solid var(--line); border-radius: var(--radius);
      overflow: hidden; margin-top: 52px;
    }
    .cs-stat {
      background: var(--bg);
      padding: 36px 32px;
    }
    .cs-stat-num {
      font-family: var(--font-display);
      font-size: 40px; font-weight: 700;
      letter-spacing: -0.04em; color: var(--ink);
      line-height: 1; margin-bottom: 8px;
    }
    .cs-stat-label {
      font-size: 13px; font-weight: 400;
      color: var(--ink-muted); line-height: 1.45;
    }

    /* ── PROCESS STEPS ── */
    .cs-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px; margin-top: 52px;
    }
    .cs-step {
      padding: 28px 24px;
      background: var(--bg-soft);
      border-radius: var(--radius);
    }
    .cs-step-num {
      font-family: var(--font-display);
      font-size: 13px; font-weight: 700;
      color: var(--accent); letter-spacing: 0.04em;
      margin-bottom: 12px;
    }
    .cs-step h3 {
      font-size: 15px; font-weight: 500;
      color: var(--ink); margin-bottom: 8px;
      letter-spacing: -0.02em;
    }
    .cs-step p {
      font-size: 13px; font-weight: 400;
      color: var(--ink-muted); line-height: 1.6;
    }

    /* ── IMAGE PLACEHOLDERS ── */
    .cs-img {
      width: 100%; border-radius: var(--radius);
      overflow: hidden; margin: 56px 0;
    }
    .cs-img-inner {
      width: 100%; aspect-ratio: 16/9;
      background: var(--bg-soft);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px;
    }
    .cs-img-inner.tall { aspect-ratio: 4/3; }
    .cs-img-inner svg { opacity: 0.25; }
    .cs-img-caption {
      font-size: 12px; font-weight: 400;
      color: var(--ink-muted); margin-top: -28px;
      margin-bottom: 40px; text-align: left;
      letter-spacing: -0.01em;
    }

    .cs-img-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px; margin: 56px 0;
    }
    .cs-img-grid .cs-img { margin: 0; }

    /* ── SIDEBAR BLOCKS ── */
    .sidebar-block {
      padding: 20px 0; border-bottom: 1px solid var(--line);
    }
    .sidebar-block:last-child { border-bottom: none; }
    .sidebar-key {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--ink-muted); margin-bottom: 5px;
    }
    .sidebar-val {
      font-size: 14px; font-weight: 400;
      color: var(--ink); line-height: 1.5;
    }

    /* ── NAV BETWEEN CASES ── */
    .cs-nav-cases {
      padding: 64px 0;
      border-top: 1px solid var(--line);
      display: flex; justify-content: space-between; align-items: center;
      gap: 24px;
    }
    .cs-nav-case {
      text-decoration: none; display: flex; flex-direction: column; gap: 6px;
      max-width: 300px;
    }
    .cs-nav-case.next { align-items: flex-end; text-align: right; }
    .cs-nav-dir {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--ink-muted); display: flex; align-items: center; gap: 6px;
    }
    .cs-nav-title {
      font-family: var(--font-display);
      font-size: 18px; font-weight: 700;
      letter-spacing: -0.02em; color: var(--ink);
      transition: color 0.2s;
    }
    .cs-nav-case:hover .cs-nav-title { color: var(--accent); }

    /* ── FOOTER ── */
    footer {
      padding: 28px 0; background: var(--ink);
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    footer .container { display: flex; justify-content: space-between; align-items: center; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer-logo { font-family: var(--font-sans); font-weight: 700; font-size: 16px; color: rgba(255,255,255,0.35); letter-spacing: -0.04em; text-decoration: none; }

    /* ── REVEAL — Apple style ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition:
        opacity 0.8s cubic-bezier(0.25, 0.1, 0.0, 1.0),
        transform 0.8s cubic-bezier(0.25, 0.1, 0.0, 1.0);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Elementos grandes — más recorrido y más velocidad */
    .reveal-up {
      opacity: 0;
      transform: translateY(72px);
      transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-up.visible { opacity: 1; transform: translateY(0); }

    /* Fade puro — para texto secundario */
    .reveal-fade {
      opacity: 0;
      transition: opacity 1s cubic-bezier(0.25, 0.1, 0.0, 1.0);
    }
    .reveal-fade.visible { opacity: 1; }

    .reveal-d1 { transition-delay: 0.08s; }
    .reveal-d2 { transition-delay: 0.16s; }
    .reveal-d3 { transition-delay: 0.24s; }
    .reveal-d4 { transition-delay: 0.32s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .cs-split { grid-template-columns: 1fr; gap: 48px; }
      .cs-meta-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .cs-meta-item { border-right: none; margin-right: 0; }
      .cs-steps { grid-template-columns: repeat(2, 1fr); }
      .cs-stats { grid-template-columns: 1fr; }
      .cs-img-grid { grid-template-columns: 1fr; }
      .cs-nav-cases { flex-direction: column; align-items: flex-start; }
      .cs-nav-case.next { align-items: flex-start; text-align: left; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-up, .reveal-fade { transition: none !important; opacity: 1 !important; transform: none !important; }
    }

    /* ── FUNNEL CHART ── */
    .cs-funnel {
      background: var(--ink);
      border-radius: var(--radius);
      padding: 48px 40px 32px;
      color: #F7F5F2;
      margin: 36px 0;
    }
    .cs-funnel-source {
      font-size: 12px; color: #8A837C; margin-bottom: 32px;
      letter-spacing: 0.02em;
    }
    .cs-funnel-bars {
      display: flex; align-items: flex-end; gap: 20px;
      height: 200px; margin-bottom: 16px;
    }
    .cs-funnel-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 200px; position: relative; }
    .cs-funnel-pct {
      font-size: 12px; font-weight: 600; color: var(--accent);
      margin-bottom: 8px; white-space: nowrap;
    }
    .cs-funnel-bar {
      width: 100%; background: var(--accent);
      border-radius: 4px 4px 0 0;
      min-height: 3px;
    }
    .cs-funnel-val {
      font-size: 13px; font-weight: 600; color: #F7F5F2;
      margin-top: 8px;
    }
    .cs-funnel-labels {
      display: flex; gap: 20px;
    }
    .cs-funnel-label {
      flex: 1; text-align: center; font-size: 11px; color: #8A837C;
      letter-spacing: 0.01em;
    }
    .cs-funnel-note {
      margin-top: 8px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 13px; color: #A89070; line-height: 1.6;
    }

    /* ── STEP CONVERSION CHIPS ── */
    .cs-funnel-steps {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-top: 24px; padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .cs-funnel-chip {
      display: flex; align-items: center; gap: 8px;
      background: rgba(184,145,90,0.12);
      border: 1px solid rgba(184,145,90,0.3);
      border-radius: 999px;
      padding: 6px 14px 6px 6px;
    }
    .cs-funnel-chip .chip-pct {
      background: var(--accent); color: var(--ink);
      font-size: 12px; font-weight: 700;
      border-radius: 999px; padding: 3px 9px;
      white-space: nowrap;
    }
    .cs-funnel-chip .chip-label {
      font-size: 12px; color: #D8C8B0; white-space: nowrap;
    }

    /* ── LIFECYCLE TIMELINE ── */
    .cs-timeline { position: relative; }
    .cs-timeline-item {
      display: flex; gap: 28px; position: relative; padding-bottom: 48px;
    }
    .cs-timeline-item:last-child { padding-bottom: 0; }
    .cs-timeline-marker {
      flex-shrink: 0; width: 44px;
      display: flex; flex-direction: column; align-items: center;
    }
    .cs-timeline-num {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid var(--accent); color: var(--accent);
      background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 500; font-size: 17px;
      position: relative; z-index: 1;
    }
    .cs-timeline-line {
      width: 1px; flex: 1; background: var(--line); margin-top: 6px;
    }
    .cs-timeline-content { flex: 1; padding-top: 6px; }
    .cs-timeline-content h3 {
      font-family: var(--font-display); font-size: 21px; font-weight: 500;
      color: var(--accent-dk); margin-bottom: 14px;
    }
    .cs-timeline-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .cs-timeline-content li {
      font-size: 14.5px; color: var(--ink-mid); padding-left: 18px; position: relative; line-height: 1.5;
    }
    .cs-timeline-content li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
    .cs-timeline-content li strong { color: var(--ink); font-weight: 500; }

    @media (max-width: 860px) {
      .cs-funnel-steps { gap: 8px; }
      .cs-funnel-chip .chip-label { display: none; }
    }

    /* ── BEFORE/AFTER COMPARISON ── */
    .cs-compare {
      border: 1px solid var(--line); border-radius: var(--radius);
      overflow: hidden; margin-top: 36px;
    }
    .cs-compare-row {
      display: grid; grid-template-columns: 1fr 110px 110px 130px;
      gap: 12px; padding: 16px 24px; align-items: center;
      border-bottom: 1px solid var(--line);
    }
    .cs-compare-row:last-child { border-bottom: none; }
    .cs-compare-row.header {
      background: var(--bg-soft);
      font-size: 11px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.06em; color: var(--ink-muted);
    }
    .cs-compare-metric { font-size: 14.5px; color: var(--ink-mid); }
    .cs-compare-row.header .cs-compare-metric { color: var(--ink-muted); }
    .cs-compare-before, .cs-compare-after, .cs-compare-delta {
      font-size: 14.5px; font-weight: 500; color: var(--ink); text-align: right;
      font-variant-numeric: tabular-nums;
    }
    .cs-compare-after { color: var(--accent-dk); font-weight: 600; }
    .cs-compare-delta { color: #5A8A5A; font-weight: 600; }
    .cs-compare-note {
      font-size: 12px; color: var(--ink-muted); margin-top: 12px; line-height: 1.6;
    }
    .cs-subhead {
      font-family: var(--font-display); font-size: 15px; font-weight: 500;
      color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em;
      padding-bottom: 12px; border-bottom: 1px solid var(--line);
    }

    /* ── NEXT STEPS ── */
    .cs-next-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      margin-top: 40px;
    }
    .cs-next-card {
      background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 28px;
    }
    .cs-next-label {
      font-size: 11px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.06em; color: var(--accent); margin-bottom: 10px;
    }
    .cs-next-card h3 {
      font-family: var(--font-display); font-size: 18px; font-weight: 500;
      color: var(--ink); margin-bottom: 14px;
    }
    .cs-next-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .cs-next-card li {
      font-size: 14px; color: var(--ink-mid); line-height: 1.6;
      padding-left: 16px; position: relative;
    }
    .cs-next-card li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

    /* ── USER TESTING FINDINGS ── */
    .cs-test-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    }
    .cs-test-item {
      border: 1px solid var(--line); border-radius: var(--radius);
      padding: 24px; background: var(--bg);
    }
    .cs-test-label {
      font-size: 11px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.06em; color: var(--ink-muted); margin-bottom: 10px;
    }
    .cs-test-finding {
      font-size: 15px; font-weight: 400; font-style: italic;
      color: var(--ink-mid); line-height: 1.6;
      padding-left: 18px; position: relative; margin-bottom: 16px;
    }
    .cs-test-finding::before {
      content: '\201C'; position: absolute; left: 0; top: -2px;
      color: var(--accent); font-size: 20px; font-style: normal; font-weight: 700;
    }
    .cs-test-decision {
      display: flex; gap: 10px; align-items: flex-start;
      padding-top: 14px; border-top: 1px solid var(--line);
    }
    .cs-test-badge {
      flex-shrink: 0; font-size: 10.5px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
      padding: 4px 10px; border-radius: 999px; white-space: nowrap;
      margin-top: 1px;
    }
    .cs-test-badge.adopted { background: rgba(184,145,90,0.15); color: var(--accent-dk); }
    .cs-test-badge.kept { background: var(--bg-soft); color: var(--ink-muted); border: 1px solid var(--line); }
    .cs-test-badge.declined { background: var(--bg-soft); color: var(--ink-muted); border: 1px solid var(--line); }
    .cs-test-decision-text { font-size: 13.5px; color: var(--ink-mid); line-height: 1.55; }

    @media (max-width: 860px) {
      .cs-test-grid { grid-template-columns: 1fr; }
    }

    /* ── BENCHMARK TABLE ── */
    .cs-benchmark {
      background: var(--bg); border: 1px solid var(--line);
      border-radius: var(--radius); padding: 30px;
      overflow: hidden; margin-top: 48px;
    }
    .cs-benchmark-eyebrow {
      font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
      color: var(--accent-dk); text-transform: uppercase; margin-bottom: 12px;
    }
    .cs-benchmark-title {
      font-family: var(--font-display); font-size: 26px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.01em; margin-bottom: 6px;
    }
    .cs-benchmark-sub { font-size: 14px; color: var(--ink-muted); }
    .cs-benchmark-scroll { overflow-x: auto; margin-top: 28px; }
    .cs-benchmark-table {
      width: 100%; min-width: 760px; border-collapse: collapse;
    }
    .cs-benchmark-table th {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.03em; color: var(--ink-mid); text-align: center;
      padding: 14px 8px; background: var(--bg-soft);
      border-bottom: 1px solid var(--line); line-height: 1.4;
    }
    .cs-benchmark-table th:first-child { text-align: left; padding-left: 4px; }
    .cs-benchmark-table td {
      text-align: center; padding: 14px 8px;
      border-bottom: 1px solid var(--line);
    }
    .cs-benchmark-table td:first-child {
      text-align: left; padding-left: 4px;
      font-family: var(--font-display); font-weight: 600;
      font-size: 15px; color: var(--ink-mid);
    }
    .cs-benchmark-table tr:last-child td { border-bottom: none; }
    .cs-benchmark-table tr.highlight td { background: none; }
    .cs-benchmark-table tr.highlight td:first-child { color: var(--ink); font-weight: 700; }
    .bench-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    }
    .bench-icon.yes { background: var(--ink); color: var(--bg); }
    .bench-icon.no { border: 1.5px solid var(--line); background: none; color: var(--ink-muted); }
    tr.highlight .bench-icon.yes { background: var(--accent); color: var(--bg); }
    @media (max-width: 640px) {
      .cs-benchmark { padding: 24px; }
    }

    /* ── SLIDER (Apple-style, bleeds right only) ── */
    .cs-slider { margin: 40px 0; }
    .cs-slider-track {
      display: flex; gap: 20px; overflow-x: auto;
      scroll-snap-type: x mandatory; scroll-behavior: smooth;
      scrollbar-width: none; -ms-overflow-style: none;
      padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
      padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
      scroll-padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
      scroll-padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
    }
    .cs-slider-track::-webkit-scrollbar { display: none; }
    .cs-slider-slide { flex: 0 0 auto; width: min(600px, 44vw); scroll-snap-align: start; }
    .cs-slider-img {
      border-radius: var(--radius); overflow: hidden;
      border: 1px solid var(--line); aspect-ratio: 16/10;
    }
    .cs-slider-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .cs-slider-caption {
      margin-top: 16px; font-size: 15px; font-weight: 300;
      color: var(--ink-mid); line-height: 1.55; max-width: 90%;
    }
    .cs-slider-nav {
      display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px;
      padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
    }
    .cs-slider-btn {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid var(--line); background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--ink); padding: 0;
      box-shadow: 0 4px 14px rgba(20,18,16,0.08);
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }
    .cs-slider-btn:hover { background: var(--bg-soft); border-color: var(--ink-muted); transform: translateY(-1px); }
    .cs-slider-btn:disabled { opacity: 0.3; cursor: default; box-shadow: none; }
    .cs-slider-btn:disabled:hover { background: var(--bg); border-color: var(--line); transform: none; }
    @media (max-width: 760px) {
      .cs-slider-slide { width: 84vw; }
    }

    /* ── ACCESS GATE ── */
    #gatedContent.locked { display: none; }
    #gatedContent.unlocked { animation: gateFadeIn 0.5s ease; }
    @keyframes gateFadeIn { from { opacity: 0; } to { opacity: 1; } }

    .gate-overlay {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(20, 18, 16, 0.72);
      backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      padding: 24px;
    }
    .gate-overlay.hidden { display: none; }

    .gate-modal {
      width: 100%; max-width: 440px;
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 40px;
      position: relative;
      box-shadow: 0 24px 64px rgba(20,18,16,0.35);
    }
    .gate-close {
      position: absolute; top: 24px; right: 24px;
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      color: var(--ink-muted); text-decoration: none;
      border-radius: 50%; transition: background 0.15s, color 0.15s;
    }
    .gate-close:hover { background: var(--line); color: var(--ink); }

    .gate-title {
      font-family: var(--font-display); font-size: 30px; font-weight: 700;
      letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px;
      padding-right: 32px;
    }
    .gate-desc {
      font-size: 15px; font-weight: 400; line-height: 1.65;
      color: var(--ink-mid); margin-bottom: 28px;
    }
    .gate-field { margin-bottom: 20px; }
    .gate-label {
      display: block; font-size: 13px; font-weight: 600;
      color: var(--ink); margin-bottom: 8px;
    }
    .gate-input-wrap { position: relative; }
    .gate-input {
      width: 100%; font-family: var(--font-sans); font-size: 15px;
      color: var(--ink); background: var(--bg);
      border: 1px solid var(--line); border-radius: 100px;
      padding: 14px 20px; outline: none;
      transition: border-color 0.15s;
    }
    .gate-input::placeholder { color: var(--ink-muted); }
    .gate-input:focus { border-color: var(--accent); }
    .gate-input.gate-key { padding-right: 64px; }
    .gate-toggle {
      position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
      background: none; border: none; cursor: pointer;
      font-family: var(--font-sans); font-size: 13px; font-weight: 500;
      color: var(--ink-muted); padding: 4px;
    }
    .gate-toggle:hover { color: var(--ink); }

    .gate-error {
      font-size: 13px; color: var(--accent-dk); margin: -8px 0 16px;
      display: none;
    }
    .gate-error.show { display: block; }

    .gate-submit {
      width: 100%; font-family: var(--font-sans); font-size: 15px; font-weight: 600;
      padding: 15px 20px; border-radius: 100px; border: none;
      cursor: not-allowed; transition: background 0.2s, color 0.2s, transform 0.15s;
      background: var(--line); color: var(--ink-muted);
      margin-top: 4px;
    }
    .gate-submit.ready {
      cursor: pointer; background: var(--ink); color: #fff;
    }
    .gate-submit.ready:hover { background: var(--accent); transform: translateY(-1px); }

    .gate-footer {
      text-align: center; margin-top: 28px;
      font-size: 13px; color: var(--ink-muted); line-height: 1.6;
    }
    .gate-footer a { color: var(--accent-dk); font-weight: 600; text-decoration: underline; }
    .gate-footer a:hover { color: var(--ink); }

    /* ── SOCIAL ICONS ── */
    .social-icons { display: flex; align-items: center; gap: 10px; }
    .social-icon {
      width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid #C8C8C8;
      font-family: var(--font-display); font-weight: 700; font-size: 14px;
      color: var(--ink); text-decoration: none;
      transition: border-color 0.2s, background 0.2s, transform 0.15s, color 0.2s;
    }
    .social-icon:hover {
      border-color: var(--accent); color: var(--accent-dk);
      background: var(--bg-soft); transform: translateY(-2px);
    }
    .social-icon.on-dark {
      border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.75);
    }
    .social-icon.on-dark:hover {
      border-color: var(--accent); color: var(--accent);
      background: rgba(255,255,255,0.06);
    }
    .hero-social { display: flex; align-items: center; gap: 10px; margin-top: 28px; }

    /* ── COPY EMAIL (inline text trigger) ── */
    .copy-email-inline {
      display: block; background: none; border: none; cursor: pointer;
      font-family: var(--font-sans); font-size: 13px; font-weight: 400;
      color: rgba(255,255,255,0.4); padding: 0; margin-top: 18px;
      transition: color 0.2s;
    }
    .copy-email-inline:hover { color: rgba(255,255,255,0.75); text-decoration: underline; }

    /* ── TOAST ── */
    .toast {
      position: fixed; left: 50%; bottom: 32px; z-index: 300;
      display: flex; align-items: center; gap: 10px;
      background: var(--bg); color: var(--ink);
      padding: 14px 24px; border-radius: 999px;
      border: 1px solid var(--line);
      font-family: var(--font-sans); font-size: 14px; font-weight: 500;
      box-shadow: 0 16px 40px rgba(20,18,16,0.28);
      transform: translate(-50%, 16px); opacity: 0; pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .toast svg { color: var(--accent-dk); flex-shrink: 0; }
    .toast.show { opacity: 1; transform: translate(-50%, 0); }

    @media (max-width: 860px) {
      .cs-next-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .cs-compare-row { grid-template-columns: 1fr 70px 70px 80px; padding: 14px 16px; gap: 6px; }
      .cs-compare-metric, .cs-compare-before, .cs-compare-after, .cs-compare-delta { font-size: 12.5px; }
    }

    @media (max-width: 860px) {
      .cs-funnel-bars { height: 140px; gap: 10px; }
      .cs-funnel-pct { font-size: 10px; }
    }
  
/* ══════════════════════════════════════════════
   HOME PAGE — estilos exclusivos de index.html
   ══════════════════════════════════════════════ */

    /* ── HOME NAV EXTRAS ── */
    .logo-m {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 20px;
      color: var(--ink);
      letter-spacing: -0.04em;
    }
    .logo-dot {
      width: 5px; height: 5px;
      background: var(--accent);
      border-radius: 50%;
      margin: 0 1px 1px;
      flex-shrink: 0;
      align-self: flex-end;
    }
    .logo-r {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 20px;
      color: var(--accent);
      letter-spacing: -0.04em;
    }
    .nav-cta {
      background: var(--ink) !important;
      color: #fff !important;
      padding: 9px 20px;
      border-radius: 100px;
      font-size: 13px !important;
      font-weight: 500 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--accent) !important; }

    /* ── HOME HERO ── */
    .hero {
      min-height: 100vh;
      padding: 190px 0 100px;
    }
    .hero-inner { max-width: 1200px; }

    .hero-kicker {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 400;
      color: var(--ink-muted);
      margin-bottom: 32px;
      letter-spacing: -0.01em;
    }
    .hero-kicker-dot {
      width: 7px; height: 7px;
      background: #3DAB6A;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(61,171,106,0.18);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-optical-sizing: auto;
      font-variation-settings: "GRAD" 0;
      font-size: 84px;
      font-weight: 600;
      line-height: 1.06;
      letter-spacing: -0.04em;
      color: var(--ink);
      margin-bottom: 28px;
    }
    .hero h1 .highlight { color: var(--accent); }

    .hero-desc {
      font-size: 18px; font-weight: 300;
      line-height: 1.75;
      color: var(--ink-mid);
      max-width: 580px;
      margin-bottom: 44px;
      letter-spacing: -0.01em;
    }

    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--ink); color: #fff;
      font-family: var(--font-sans);
      font-size: 14px; font-weight: 500;
      letter-spacing: -0.01em;
      text-decoration: none;
      padding: 13px 24px;
      border-radius: 100px;
      border: none; outline: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
    .btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 14px; font-weight: 400;
      color: var(--ink-muted); text-decoration: none;
      transition: color 0.2s;
      letter-spacing: -0.01em;
    }
    .btn-ghost:hover { color: var(--ink); }

    .hero-stats {
      margin-top: 72px; padding-top: 40px;
      border-top: 1px solid var(--line);
      display: flex; gap: 56px; flex-wrap: wrap;
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 30px; font-weight: 700;
      letter-spacing: -0.04em; color: var(--ink); line-height: 1;
    }
    .stat-label {
      font-size: 13px; font-weight: 400;
      color: var(--ink-muted); margin-top: 5px;
      line-height: 1.45; max-width: 130px;
    }

    /* ── HOME SECTION TITLE ── */
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 700; letter-spacing: -0.03em;
      line-height: 1.12; color: var(--ink); margin-bottom: 52px;
    }

    /* ── WORK GRID ── */
    #work { padding: 120px 0; background: var(--bg-soft); }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    /* PROJECT CARD */
    .case-card {
      cursor: pointer; text-decoration: none; display: block; color: inherit;
      border-radius: 36px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/3;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .case-card.visible { opacity: 1; transform: translateY(0); }

    .card-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
    }
    .case-card:hover .card-img { transform: scale(1.04); }

    /* Simulated project image via CSS gradient */
    .card-img-sim {
      width: 100%; height: 100%;
      transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
      position: relative;
      overflow: hidden;
    }
    .case-card:hover .card-img-sim { transform: scale(1.04); }

    .card-img-sim-1 { background: linear-gradient(140deg, #E8DDD0 0%, #C8B8A2 40%, #A89070 100%); }
    .card-img-sim-2 { background: linear-gradient(140deg, #D0D8E8 0%, #9BB0C8 40%, #607890 100%); }
    .card-img-sim-3 { background: linear-gradient(140deg, #D8E0D0 0%, #A8C0A0 40%, #607860 100%); }
    .card-img-sim-4 { background: linear-gradient(140deg, #E8D8D0 0%, #C8A098 40%, #906860 100%); }

    /* Floating UI element inside each card */
    .card-img-sim::after {
      content: '';
      position: absolute;
      bottom: 20%; left: 50%; transform: translateX(-50%);
      width: 60%; height: 36%;
      background: rgba(255,255,255,0.18);
      border-radius: 10px;
      backdrop-filter: blur(6px);
    }

    /* Hover overlay */
    .card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(14,12,10,0.88) 0%, rgba(14,12,10,0.3) 70%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 32px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .case-card:hover .card-overlay { opacity: 1; }

    .overlay-tag {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 8px;
      transform: translateY(8px);
      transition: transform 0.35s ease 0.05s;
    }
    .overlay-title {
      font-family: var(--font-display);
      font-size: 28px; font-weight: 600;
      letter-spacing: -0.02em; line-height: 1.12;
      color: #fff;
      margin-bottom: 8px;
      transform: translateY(8px);
      transition: transform 0.35s ease 0.08s;
    }
    .overlay-subtitle {
      font-size: 13.5px; font-weight: 400;
      letter-spacing: -0.01em; line-height: 1.4;
      color: rgba(255,255,255,0.72);
      transform: translateY(8px);
      transition: transform 0.35s ease 0.11s;
    }
    .overlay-desc {
      font-size: 13px; font-weight: 300;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
      transform: translateY(8px);
      transition: transform 0.35s ease 0.11s;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .case-card:hover .overlay-tag,
    .case-card:hover .overlay-title,
    .case-card:hover .overlay-subtitle,
    .case-card:hover .overlay-desc { transform: translateY(0); }

    /* Always-visible small tag on card corner */
    .card-badge {
      position: absolute; top: 20px; left: 20px;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 100px;
      padding: 5px 12px;
      font-size: 11px; font-weight: 500;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.04em;
    }

    /* ── ABOUT ── */
    #about { padding: 120px 0; }
    .about-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 100px; align-items: start;
    }
    .about-header {
      display: flex; align-items: center; gap: 24px;
      margin-bottom: 56px;
    }
    .about-header .section-title { margin-bottom: 0; }
    .about-photo {
      width: 88px; height: 88px; border-radius: 50%;
      overflow: hidden; flex-shrink: 0;
    }
    .about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-text p {
      font-size: 17px; font-weight: 300;
      line-height: 1.82; color: var(--ink-mid);
      margin-bottom: 20px; letter-spacing: -0.01em;
    }
    .about-text p strong { color: var(--ink); font-weight: 500; }
    .about-text .btn-ghost { margin-top: 8px; }
    .about-text p:last-child { margin-bottom: 0; }

    /* ── CONTACT ── */
    #contact { padding: 120px 0; background: var(--ink); }
    #contact .section-eyebrow { color: var(--accent); }
    .contact-headline {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 500; letter-spacing: -0.03em;
      line-height: 1.08; color: #fff;
      max-width: 680px; margin-bottom: 18px;
    }
    .contact-headline .highlight { color: var(--accent); }
    .contact-sub {
      font-size: 16px; font-weight: 300;
      color: rgba(255,255,255,0.45);
      margin-bottom: 48px; max-width: 460px; line-height: 1.7;
    }
    .contact-links { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
    .contact-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-sans);
      font-size: 14px; font-weight: 500;
      letter-spacing: -0.01em;
      text-decoration: none; padding: 13px 28px;
      border-radius: 100px; transition: all 0.2s;
    }
    .contact-link.primary { background: var(--accent); color: #fff; }
    .contact-link.primary:hover { background: var(--accent-dk); }
    .contact-link.outline {
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.55);
    }
    .contact-link.outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

    /* ── HOME REVEAL (más rápida que la de case studies, por eso va con nombre propio) ── */
    .reveal-home { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal-home.visible { opacity: 1; transform: translateY(0); }
    .reveal-home-d1 { transition-delay: 0.1s; }
    .reveal-home-d2 { transition-delay: 0.2s; }
    .reveal-home-d3 { transition-delay: 0.3s; }

    /* ── HOME RESPONSIVE ── */
    .nav-hamburger {
      display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
      width: 28px; height: 28px; background: none; border: none; cursor: pointer;
      padding: 0; flex-shrink: 0;
    }
    .nav-hamburger span {
      display: block; width: 17px; height: 1.5px; background: var(--ink-mid);
      transition: transform 0.25s ease, opacity 0.25s ease, width 0.2s ease;
    }
    .nav-hamburger:hover span { background: var(--ink); }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

    @media (max-width: 860px) {
      .container { padding: 0 24px; }
      .hero { padding: 120px 0 60px; }
      .hero h1 { font-size: 38px; }
      .work-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 56px; }
      .hero-stats { gap: 32px; }
      .nav-hamburger { display: flex; }
      .nav-links {
        position: fixed; top: 68px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; opacity: 0;
        transition: max-height 0.3s ease, opacity 0.25s ease;
        padding: 0 24px;
      }
      .nav-links.open { max-height: 320px; opacity: 1; padding: 12px 24px 24px; }
      .nav-links li { width: 100%; }
      .nav-links li a:not(.nav-cta) {
        display: block; padding: 14px 0; font-size: 16px;
        border-bottom: 1px solid var(--line);
      }
      .nav-links li:last-child a:not(.nav-cta) { border-bottom: none; }
      .nav-links .nav-cta { display: inline-flex; margin-top: 10px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal-home, .case-card { transition: none !important; opacity: 1 !important; transform: none !important; }
    }

    /* ── RESUME PAGE ── */
    .resume-hero {
      padding: 160px 0 80px; text-align: center;
    }
    .resume-name {
      font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px);
      font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
      margin-bottom: 0;
    }
    .resume-title {
      font-size: 18px; color: var(--accent-dk); font-weight: 500;
      margin-bottom: 24px;
    }
    .resume-about {
      font-size: 16px; line-height: 1.7; color: var(--ink-mid);
      max-width: 760px; margin: 0 auto 36px;
    }
    .resume-download {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; flex-wrap: wrap;
    }

    .resume-timeline { display: flex; flex-direction: column; gap: 36px; }
    .resume-timeline-item { position: relative; padding-left: 26px; }
    .resume-timeline-dot {
      position: absolute; left: 0; top: 7px;
      width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    }
    .resume-timeline-item::before {
      content: ''; position: absolute; left: 3px; top: 20px; bottom: -36px;
      width: 1px; background: var(--line);
    }
    .resume-timeline-item:last-child::before { display: none; }
    .resume-timeline-date {
      font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
      text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px;
    }
    .resume-timeline-role {
      font-family: var(--font-sans); font-size: 16px; font-weight: 400;
      color: var(--ink); margin-bottom: 8px; line-height: 1.5;
    }
    .resume-timeline-role b { font-weight: 600; }
    .resume-timeline-role span { color: var(--ink-muted); font-weight: 400; }
    .resume-timeline-desc { font-size: 14.5px; line-height: 1.65; color: var(--ink-mid); }

    .resume-quals { display: flex; flex-direction: column; gap: 22px; }
    .resume-qual-item { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
    .resume-qual-item .resume-timeline-date { margin-bottom: 0; min-width: 100px; }
    .resume-qual-title { font-size: 15px; color: var(--ink-mid); }
    .resume-qual-title b { color: var(--ink); font-weight: 600; }

    .pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
    .pill {
      display: inline-block; padding: 8px 16px; border-radius: 100px;
      background: var(--bg);
      font-size: 13.5px; color: var(--ink-mid); font-weight: 500;
    }
    .cs-section.bg-soft .pill { background: var(--bg); }
    .cs-section:not(.bg-soft) .pill { background: var(--bg-soft); }

    @media (max-width: 640px) {
      .resume-hero { padding: 150px 0 60px; }
      .resume-download { flex-direction: column; align-items: stretch; }
    }

    .resume-photo {
      width: 134px; height: 134px; border-radius: 50%;
      overflow: hidden; margin: 0 auto 24px;
    }
    .resume-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .resume-print-contact { display: none; }

    @media print {
      #nav, .resume-download, #contact, .toast, footer { display: none !important; }
      body { background: #fff; color: #141210; }
      .resume-hero { padding: 20px 0 30px; }
      .cs-section { padding: 32px 0; }
      .cs-section.bg-soft { background: #fff; }
      .container-md { max-width: 100%; }
      a { color: inherit; text-decoration: none; }
      .resume-print-contact {
        display: block; font-size: 13px; color: var(--ink-mid); margin-bottom: 28px;
      }
      @page { margin: 0.6in; }
    }
