    /* -------------------- RESET & MODERN VARIABLES -------------------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --deep-plum: #2d2a4e;
      --rich-lavender: #9f7aea;
      --soft-berry: #e996b8;
      --mint-cream: #c7f0db;
      --warm-parchment: #fbf3e8;
      --pure-white: #ffffff;
      --ink-black: #2d3748;
      --gradient-1: linear-gradient(135deg, #2d2a4e 0%, #4a3f6e 100%);
      --gradient-2: linear-gradient(120deg, #e996b8 0%, #9f7aea 100%);
      --gradient-3: linear-gradient(45deg, #c7f0db, #e6ccff);
      --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-glow: 0 0 0 2px rgba(159, 122, 234, 0.3);
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--warm-parchment);
      color: var(--ink-black);
      line-height: 1.5;
      overflow-x: hidden;
    }

    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

    /* -------------------- CONTAINER & UTILITY -------------------- */
    .container {
      max-width: 1300px;
      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 BACKGROUND -------------------- */
    .bg-pattern {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.2;
      background: 
        radial-gradient(circle at 10% 20%, rgba(159, 122, 234, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 40%, rgba(233, 150, 184, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(199, 240, 219, 0.12) 0%, transparent 35%),
        repeating-linear-gradient(45deg, rgba(0,0,0,0.01) 0px, rgba(0,0,0,0.01) 2px, transparent 2px, transparent 8px);
    }

    /* -------------------- TYPOGRAPHY PLAYGROUND -------------------- */
    .fancy-font-1 {
      font-family: 'Crimson Pro', serif;
      font-style: italic;
    }
    
    .fancy-font-2 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    /* -------------------- HEADER -------------------- */
    .site-header {
      padding: 2rem 0 1rem;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(159, 122, 234, 0.2);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .breadcrumb {
      margin-bottom: 1.5rem;
    }

    .breadcrumb ol {
      display: flex;
      list-style: none;
      gap: 0.5rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .breadcrumb li {
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .breadcrumb li:not(:last-child)::after {
      content: "→";
      margin-left: 0.5rem;
      color: var(--rich-lavender);
      font-weight: 300;
    }

    .breadcrumb a {
      color: var(--deep-plum);
      text-decoration: none;
      font-weight: 500;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      transition: all 0.2s;
    }

    .breadcrumb a:hover {
      background: rgba(159, 122, 234, 0.15);
      color: var(--rich-lavender);
    }

    .breadcrumb li[aria-current="page"] {
      color: var(--soft-berry);
      font-weight: 600;
      background: rgba(233, 150, 184, 0.1);
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
    }

    .header-content {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .title-group {
      display: flex;
      flex-direction: column;
    }

    .page-title {
      font-size: 4.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .page-sigil {
      font-size: 1rem;
      font-weight: 400;
      color: var(--rich-lavender);
      letter-spacing: 0.4em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }

    .header-accent {
      display: flex;
      gap: 1rem;
    }

    .pill {
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      font-weight: 500;
      font-size: 0.9rem;
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(159,122,234,0.3);
      color: var(--deep-plum);
    }

    .pill-highlight {
      background: var(--gradient-2);
      color: var(--pure-white);
      border: none;
      font-weight: 600;
    }

    /* -------------------- HERO SECTION -------------------- */
    .hero {
      padding: 3rem 0 2rem;
      position: relative;
    }

    .hero-content {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
    }

    .hero-text {
      flex: 2;
      min-width: 300px;
    }

    .hero-tagline {
      display: inline-block;
      background: rgba(159,122,234,0.15);
      color: var(--rich-lavender);
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(159,122,234,0.3);
    }

    .hero-title {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--deep-plum);
    }

    .hero-title span {
      background: var(--gradient-2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 1.25rem;
      color: #4a5568;
      max-width: 600px;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--deep-plum);
      line-height: 1.2;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hero-visual {
      flex: 1;
      min-width: 280px;
      background: var(--gradient-3);
      padding: 2rem;
      border-radius: 30px;
      color: var(--deep-plum);
      box-shadow: var(--shadow-md);
      transform: rotate(-1deg);
      transition: transform 0.3s ease;
      border: 1px solid rgba(255,255,255,0.6);
    }

    .hero-visual:hover {
      transform: rotate(0deg) scale(1.02);
    }

    .text-playground {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .text-sample {
      background: rgba(255,255,255,0.4);
      backdrop-filter: blur(4px);
      border-radius: 16px;
      padding: 1rem;
      font-size: 1.1rem;
      border: 1px solid rgba(255,255,255,0.6);
      transition: all 0.2s;
      text-decoration: none;
      color: var(--deep-plum);
    }

    .text-sample:hover {
      background: rgba(255,255,255,0.7);
      transform: translateX(5px);
    }

    .sample-fancy {
      font-family: 'Crimson Pro', serif;
      font-size: 1.3rem;
      font-weight: 600;
      background: linear-gradient(45deg, var(--deep-plum), var(--soft-berry));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .sample-diff {
      font-family: 'Courier New', monospace;
      letter-spacing: -0.5px;
    }

    /* -------------------- TOOLS SECTION -------------------- */
    .tools-section {
      padding: 4rem 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-eyebrow {
      color: var(--soft-berry);
      text-transform: uppercase;
      letter-spacing: 0.3em;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--deep-plum);
      margin-bottom: 1rem;
    }

    .section-divider {
      width: 80px;
      height: 4px;
      background: var(--gradient-2);
      margin: 1.5rem auto;
      border-radius: 2px;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .tool-card {
      background: var(--pure-white);
      border-radius: 24px;
      padding: 2rem;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(159,122,234,0.1);
      position: relative;
      overflow: hidden;
    }

    .tool-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-2);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .tool-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
      border-color: rgba(159,122,234,0.3);
    }

    .tool-card:hover::before {
      opacity: 1;
    }

    .tool-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      background: rgba(159,122,234,0.1);
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
    }

    .tool-name {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--deep-plum);
      margin-bottom: 1rem;
    }

    .tool-name a {
      color: inherit;
      text-decoration: none;
    }

    .tool-name a:hover {
      color: var(--rich-lavender);
    }

    .tool-summary {
      color: #4a5568;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .tool-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: auto;
    }

    .tool-tag {
      background: var(--warm-parchment);
      padding: 0.3rem 1rem;
      border-radius: 30px;
      font-size: 0.85rem;
      color: var(--deep-plum);
      font-weight: 500;
      border: 1px solid rgba(0,0,0,0.05);
    }

    .tool-badge {
      background: var(--gradient-2);
      color: white;
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-left: 1rem;
      display: inline-block;
    }

    .coming-soon {
      opacity: 0.9;
      background: #f8fafc;
      border: 2px dashed rgba(159,122,234,0.3);
    }

    .coming-soon .tool-icon {
      opacity: 0.6;
    }

    /* -------------------- FEATURES SECTION -------------------- */
    .features-section {
      background: var(--deep-plum);
      color: var(--pure-white);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .features-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 70% 30%, rgba(233,150,184,0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .feature-item {
      text-align: center;
    }

    .feature-emoji {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      background: rgba(255,255,255,0.1);
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 40px;
      margin: 0 auto 1.5rem;
      border: 1px solid rgba(233,150,184,0.3);
    }

    .feature-title {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: var(--soft-berry);
    }

    .feature-desc {
      color: #cbd5e0;
      line-height: 1.6;
    }

    /* -------------------- PREVIEW SECTION -------------------- */
    .preview-section {
      padding: 5rem 0;
      background: linear-gradient(145deg, var(--pure-white), var(--warm-parchment));
    }

    .preview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .preview-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: var(--shadow-sm);
      text-align: center;
    }

    .preview-fancy {
      font-size: 2rem;
      line-height: 1.4;
      margin-bottom: 1rem;
    }

    .preview-label {
      color: var(--rich-lavender);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.8rem;
    }

    /* -------------------- CTA SECTION -------------------- */
    .cta-section {
      padding: 5rem 0;
      background: linear-gradient(145deg, var(--warm-parchment) 0%, #fff 100%);
      text-align: center;
    }

    .cta-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--deep-plum);
      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;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .btn-primary {
      background: var(--gradient-2);
      color: white;
      box-shadow: 0 10px 20px -8px rgba(159,122,234,0.4);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 30px -8px rgba(159,122,234,0.6);
    }

    .btn-secondary {
      background: transparent;
      color: var(--deep-plum);
      border: 2px solid var(--rich-lavender);
    }

    .btn-secondary:hover {
      background: var(--rich-lavender);
      color: white;
    }

    /* -------------------- FOOTER -------------------- */
    .site-footer {
      background: var(--pure-white);
      padding: 3rem 0;
      border-top: 1px solid rgba(159,122,234,0.2);
    }

    .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-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      color: var(--ink-black);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--rich-lavender);
    }

    .footer-legal {
      color: #94a3b8;
      font-size: 0.9rem;
    }

    /* -------------------- RESPONSIVE -------------------- */
    @media (max-width: 768px) {
      .page-title {
        font-size: 3rem;
      }
      .hero-title {
        font-size: 2.2rem;
      }
      .hero-visual {
        transform: none;
      }
      .footer-content {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ============================================
   TEXT TOOLS HOME PAGE - ADDITIONAL STYLES
   Add these to your existing text-tools-home.css
   ============================================ */

/* Hero Visual Title */
.hero-visual-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Text Sample Label */
.text-sample-label {
    font-size: 0.8rem;
    color: var(--deep-plum);
    margin-bottom: 0.3rem;
}

/* Text Sample Header (for diff checker) */
.text-sample-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-sample-label-small {
    font-size: 0.8rem;
    color: var(--deep-plum);
}

.text-sample-badge {
    font-size: 0.7rem;
    background: var(--gradient-2);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

/* Text Sample Diff Container */
.text-sample-diff {
    display: flex;
    gap: 0.5rem;
    font-family: monospace;
}

.diff-removed {
    background: #ffb3b3;
    padding: 0.2rem;
}

.diff-added {
    background: #b3ffb3;
    padding: 0.2rem;
}

/* Text Sample (coming soon variant) */
.text-sample-soon {
    pointer-events: none;
    opacity: 0.8;
}

/* Hero Visual Note */
.hero-visual-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Section Subtitle */
.section-subtitle {
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Tool Card (soon variant) */
.tool-card-soon {
    opacity: 0.8;
}

.tool-name-text {
    /* For when there's no link */
}

/* Tool Badge (soon variant) */
.tool-badge-soon {
    background: #94a3b8;
}

/* Tools Aside */
.tools-aside {
    text-align: center;
    margin-top: 3rem;
    color: #6b7280;
}

/* Preview Fancy Styles */
.preview-fancy-double-struck {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
}

.preview-fancy-cursive {
    font-family: monospace;
    letter-spacing: 2px;
}

.preview-fancy-fullwidth {
    text-transform: full-width;
}

/* Features Section Overrides */
.features-section-header {
    /* No inline styles, uses existing classes */
}

.features-eyebrow {
    color: var(--soft-berry);
}

.features-title {
    color: var(--pure-white);
}

.features-divider {
    /* Inherits from section-divider */
}

/* CTA Section */
.cta-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}