    /* -------------------- RESET & VARIABLES -------------------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --deep-navy: #0f1a2f;
      --rich-gold: #e4b363;
      --soft-coral: #ff7b6b;
      --mist-aqua: #6c9ebf;
      --fresh-lavender: #9b8cbc;
      --deep-plum: #2d2a4e;
      --rich-lavender: #9f7aea;
      --soft-berry: #e996b8;
      --warm-sand: #f4efe9;
      --warm-parchment: #fbf3e8;
      --pure-white: #ffffff;
      --charcoal: #2e3532;
      --gradient-navy: linear-gradient(135deg, #0f1a2f 0%, #1d3355 100%);
      --gradient-gold: linear-gradient(120deg, #ff7b6b 0%, #e4b363 100%);
      --gradient-lavender: linear-gradient(120deg, #e996b8 0%, #9f7aea 100%);
      --gradient-aqua: linear-gradient(135deg, #6c9ebf 0%, #9b8cbc 100%);
      --shadow-sm: 0 10px 30px -15px rgba(0,0,0,0.2);
      --shadow-md: 0 20px 40px -20px rgba(0,0,0,0.3);
      --shadow-lg: 0 30px 50px -25px rgba(0,0,0,0.4);
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(145deg, var(--warm-sand) 0%, #f8f4ee 100%);
      color: var(--charcoal);
      line-height: 1.5;
      min-height: 100vh;
    }

    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

    /* -------------------- CONTAINER & UTILITY -------------------- */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
    }

    /* -------------------- DECORATIVE ELEMENTS -------------------- */
    .bg-orb {
      position: fixed;
      top: -10%;
      right: -5%;
      width: 60vmax;
      height: 60vmax;
      background: radial-gradient(circle, rgba(228,179,99,0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .bg-orb-2 {
      position: fixed;
      bottom: -10%;
      left: -5%;
      width: 50vmax;
      height: 50vmax;
      background: radial-gradient(circle, rgba(159,122,234,0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    /* -------------------- HEADER -------------------- */
    .site-header {
      padding: 2rem 0 1.5rem;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .breadcrumb ol {
      display: flex;
      list-style: none;
      gap: 0.5rem;
      align-items: center;
      font-size: 0.95rem;
    }

    .breadcrumb li:not(:last-child)::after {
      content: "→";
      margin-left: 0.5rem;
      color: var(--rich-gold);
      font-weight: 300;
    }

    .breadcrumb a {
      color: var(--deep-navy);
      text-decoration: none;
      font-weight: 500;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      transition: all 0.2s;
    }

    .breadcrumb a:hover {
      background: rgba(228,179,99,0.15);
      color: var(--rich-gold);
    }

    .breadcrumb li[aria-current="page"] {
      color: var(--mist-aqua);
      font-weight: 600;
      background: rgba(108,158,191,0.1);
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
    }

    .header-content {
      margin-top: 2rem;
      text-align: center;
    }

    .page-title {
      font-size: 4.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: var(--gradient-navy);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .page-subtitle {
      font-size: 1.3rem;
      color: #5f5f6b;
      max-width: 600px;
      margin: 0 auto;
      font-weight: 300;
    }

    /* -------------------- CATEGORY GRID -------------------- */
    .categories-section {
      padding: 3rem 0 5rem;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      margin: 4rem 0;
    }

    .category-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 40px;
      padding: 2.5rem;
      box-shadow: var(--shadow-sm);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255,255,255,0.8);
      position: relative;
      overflow: hidden;
    }

    .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: var(--gradient-gold);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .category-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }

    .category-card:hover::before {
      opacity: 1;
    }

    /* Individual card gradients */
    .category-card.image-tools::before {
      background: linear-gradient(90deg, var(--soft-coral), var(--rich-gold));
    }
    .category-card.text-tools::before {
      background: linear-gradient(90deg, var(--rich-lavender), var(--soft-berry));
    }
    .category-card.cv-tools::before {
      background: linear-gradient(90deg, var(--mist-aqua), var(--fresh-lavender));
    }
    .category-card.document-tools::before {
      background: linear-gradient(90deg, #667eea, #764ba2);
    }

    .category-icon {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.5);
      border-radius: 30px;
      backdrop-filter: blur(4px);
    }

    .category-name {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--deep-navy);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .category-name a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }

    .category-name a:hover {
      color: var(--rich-gold);
    }

    .tool-count {
      font-size: 0.9rem;
      background: rgba(0,0,0,0.05);
      padding: 0.3rem 1rem;
      border-radius: 30px;
      font-weight: 500;
    }

    .category-description {
      color: #4a4f5c;
      margin-bottom: 2rem;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .tool-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin: 1.5rem 0;
    }

    .tool-preview-item {
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(4px);
      padding: 0.4rem 1rem;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--deep-navy);
      border: 1px solid rgba(0,0,0,0.05);
      transition: all 0.2s;
    }

    .tool-preview-item:hover {
      background: white;
      border-color: var(--rich-gold);
    }

    .tool-preview-item a {
      color: inherit;
      text-decoration: none;
    }

    .category-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--deep-navy);
      text-decoration: none;
      font-weight: 600;
      margin-top: 1rem;
      padding: 0.5rem 0;
      border-bottom: 2px solid transparent;
      transition: all 0.2s;
    }

    .category-link:hover {
      border-bottom-color: var(--rich-gold);
      color: var(--rich-gold);
    }

    /* -------------------- COMING SOON SECTION -------------------- */
    .soon-section {
      padding: 3rem 0;
    }

    .soon-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .soon-card {
      background: rgba(255,255,255,0.4);
      backdrop-filter: blur(8px);
      border-radius: 30px;
      padding: 2rem;
      border: 2px dashed rgba(159,122,234,0.3);
      transition: all 0.3s;
    }

    .soon-card:hover {
      background: rgba(255,255,255,0.6);
      border-color: var(--rich-lavender);
    }

    .soon-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      opacity: 0.7;
    }

    .soon-name {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--deep-plum);
      margin-bottom: 0.5rem;
    }

    .soon-badge {
      display: inline-block;
      background: var(--gradient-lavender);
      color: white;
      padding: 0.3rem 1rem;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-top: 1rem;
    }

    /* -------------------- STATS SECTION -------------------- */
    .stats-section {
      padding: 4rem 0;
      background: rgba(255,255,255,0.3);
      backdrop-filter: blur(8px);
      border-radius: 60px;
      margin: 3rem 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      text-align: center;
    }

    .stat-item {
      padding: 1rem;
    }

    .stat-number {
      font-size: 2.8rem;
      font-weight: 700;
      background: var(--gradient-navy);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
    }

    .stat-label {
      color: #5f6b7a;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* -------------------- CTA SECTION -------------------- */
    .cta-section {
      padding: 5rem 0;
      text-align: center;
    }

    .cta-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--deep-navy);
      margin-bottom: 1.5rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s;
      display: inline-block;
    }

    .btn-primary {
      background: var(--gradient-navy);
      color: white;
      box-shadow: 0 10px 20px -8px rgba(15,26,47,0.3);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 30px -8px rgba(15,26,47,0.5);
    }

    .btn-secondary {
      background: transparent;
      color: var(--deep-navy);
      border: 2px solid var(--rich-gold);
    }

    .btn-secondary:hover {
      background: var(--rich-gold);
      color: var(--deep-navy);
    }

    /* -------------------- FOOTER -------------------- */
    .site-footer {
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(8px);
      padding: 3rem 0;
      border-top: 1px solid rgba(0,0,0,0.05);
      margin-top: 3rem;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-logo {
      font-size: 1.5rem;
      font-weight: 700;
      background: var(--gradient-navy);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      color: var(--charcoal);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--rich-gold);
    }

    .footer-legal {
      color: #94a3b8;
      font-size: 0.9rem;
    }

    /* -------------------- RESPONSIVE -------------------- */
    @media (max-width: 768px) {
      .page-title {
        font-size: 3rem;
      }
      .category-card {
        padding: 1.5rem;
      }
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

/* removed-styles.css
   Contains only the inline styles that were removed from the HTML
   to maintain CSP compliance
*/

/* Style from: <span class="tool-preview-item" style="opacity: 0.6;">diff checker (soon)</span> */
.tool-preview-item.soon-item {
  opacity: 0.6;
}

/* Style from: <span class="tool-preview-item" style="opacity: 0.6;">resume builder</span> */
/* Style from: <span class="tool-preview-item" style="opacity: 0.6;">ATS checker</span> */
/* Already covered by .soon-item rule above */

/* Style from: <div class="section-header" style="text-align: center; margin-bottom: 3rem;"> */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Style from: <h2 style="font-size: 2.2rem; color: var(--deep-navy);">on the horizon</h2> */
.soon-heading {
  font-size: 2.2rem;
  color: var(--deep-navy);
}

/* Style from: <p style="color: #6b7280;">New tools we're building — clean, focused, and always free.</p> */
.soon-subheading {
  color: #6b7280;
}

/* Style from: <p style="color: #4b5563; margin: 1rem 0;">A clean, private text editor...</p> */
.soon-description {
  color: #4b5563;
  margin: 1rem 0;
}

/* Style from: <p style="color: #4b5563; margin: 1rem 0;">Calculator, unit converter...</p> */
/* Already covered by .soon-description rule above */

/* Style from: <p style="color: #4b5563; margin: 1rem 0;">Password generator, hash checker...</p> */
/* Already covered by .soon-description rule above */

/* Style from: <div style="text-align: center; margin-top: 3rem; padding: 2rem; background: rgba(255,255,255,0.5); border-radius: 40px;"> */
.document-tools-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 40px;
}

/* Style from: <span style="background: var(--gradient-lavender); color: white; padding: 0.3rem 1rem; border-radius: 30px; font-size: 0.9rem; font-weight: 600;">coming soon</span> */
.coming-soon-tag {
  background: var(--gradient-lavender);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Style from: <h3 style="font-size: 1.8rem; color: var(--deep-plum); margin: 1rem 0;">document-tools</h3> */
.document-tools-title {
  font-size: 1.8rem;
  color: var(--deep-plum);
  margin: 1rem 0;
}

/* Style from: <p style="max-width: 600px; margin: 0 auto; color: #4b5563;">A focused text editor...</p> */
.document-tools-text {
  max-width: 600px;
  margin: 0 auto;
  color: #4b5563;
}

/* Style from: <code style="background: rgba(0,0,0,0.05); padding: 0.2rem 0.5rem; border-radius: 4px;">/tools/document-tools/</code> */
.inline-code {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Style from: <p style="font-size: 1.2rem; color: #4a5568; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto;"> */
.cta-description {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

  /* Additional styles for new categories - maintains existing design language */
    .category-card.pdf-tools::before {
      background: linear-gradient(90deg, #e67e22, #f39c12);
    }
    .category-card.developer-tools::before {
      background: linear-gradient(90deg, #3498db, #2ecc71);
    }
    .soon-item {
      opacity: 0.6;
    }
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .soon-heading {
      font-size: 2.2rem;
      color: var(--deep-navy);
    }
    .soon-subheading {
      color: #6b7280;
    }
    .soon-description {
      color: #4b5563;
      margin: 1rem 0;
    }
    .document-tools-note {
      text-align: center;
      margin-top: 3rem;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 40px;
    }
    .coming-soon-tag {
      background: var(--gradient-lavender);
      color: white;
      padding: 0.3rem 1rem;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      display: inline-block;
    }
    .document-tools-title {
      font-size: 1.8rem;
      color: var(--deep-plum);
      margin: 1rem 0;
    }
    .document-tools-text {
      max-width: 600px;
      margin: 0 auto;
      color: #4b5563;
    }
    .inline-code {
      background: rgba(0, 0, 0, 0.05);
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-family: monospace;
    }
    .cta-description {
      font-size: 1.2rem;
      color: #4a5568;
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .stat-number {
      font-size: 2.8rem;
      font-weight: 700;
      background: var(--gradient-navy);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
    }