
        :root {
            --primary: #D84315;
            --primary-dark: #BF360C;
            --secondary: #FFA726;
            --accent: #FFE082;
            --bg: #FFFBF5;
            --surface: #FFFFFF;
            --text: #1A1A1A;
            --text-muted: #666666;
            --border: #E0D5C7;
            --success: #43A047;
            --shadow: rgba(216, 67, 21, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 167, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(216, 67, 21, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        
        h1, h2, h3 {
            font-family: 'Fraunces', Georgia, serif;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            padding: 40px 0 20px;
        }
        
        .logo {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 10px;
        }
        
        .hero {
            text-align: center;
            padding: 40px 0 60px;
        }
        
        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--text);
            margin-bottom: 16px;
            font-style: italic;
        }
        
        .authority-badge {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .authority-badge::before {
            content: "✓";
            display: inline-block;
            width: 24px;
            height: 24px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            line-height: 24px;
            font-weight: 700;
        }
        
        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        
        .tool-section {
            background: var(--surface);
            border-radius: 24px;
            padding: 48px;
            margin-bottom: 60px;
            box-shadow: 
                0 4px 24px var(--shadow),
                0 0 0 1px var(--border);
            position: relative;
            overflow: hidden;
        }
        
        .tool-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .input-group {
            margin-bottom: 24px;
        }
        
        label {
            display: block;
            font-weight: 500;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--text);
        }
        
        input[type="text"] {
            width: 100%;
            padding: 18px 24px;
            font-size: 1.125rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            background: var(--bg);
            transition: all 0.3s ease;
            font-family: inherit;
            text-transform: lowercase;
        }
        
        input[type="text"]:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(216, 67, 21, 0.1);
        }
        
        .button-group {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
        }
        
        button {
            flex: 1;
            padding: 18px 32px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(216, 67, 21, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(216, 67, 21, 0.4);
        }
        
        .btn-secondary {
            background: var(--bg);
            color: var(--text);
            border: 2px solid var(--border);
        }
        
        .btn-secondary:hover {
            background: var(--border);
        }
        
        .results {
            min-height: 200px;
        }
        
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--border);
        }
        
        .results-count {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.125rem;
        }
        
        .filter-group {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .filter-group label {
            margin: 0;
            font-size: 0.875rem;
        }
        
        select {
            padding: 8px 12px;
            border: 2px solid var(--border);
            border-radius: 8px;
            background: var(--bg);
            font-family: inherit;
            cursor: pointer;
        }
        
        .words-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
        }
        
        .word-card {
            background: var(--bg);
            padding: 16px;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: all 0.2s ease;
            text-align: center;
        }
        
        .word-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--shadow);
        }
        
        .word-text {
            font-weight: 600;
            font-size: 1.125rem;
            color: var(--text);
            margin-bottom: 4px;
        }
        
        .word-length {
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
        }
        
        .empty-icon {
            font-size: 4rem;
            margin-bottom: 16px;
            opacity: 0.3;
        }
        
        /* Quick Benefits Section */
        .quick-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0 60px;
        }
        
        .benefit-item {
            text-align: center;
            padding: 20px;
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
            display: block;
        }
        
        .benefit-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--text);
        }
        
        .benefit-text {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Social Proof Section */
        .social-proof {
            background: var(--surface);
            padding: 40px;
            border-radius: 16px;
            margin: 60px 0;
            border: 1px solid var(--border);
            text-align: center;
        }
        
        .social-stats {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .social-text {
            font-size: 1.125rem;
            color: var(--text);
            margin-bottom: 32px;
        }
        
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        
        .testimonial {
            background: var(--bg);
            padding: 24px;
            border-radius: 12px;
            text-align: left;
            border: 1px solid var(--border);
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--text-muted);
            margin-bottom: 16px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--text);
            font-size: 0.95rem;
        }
        
        .testimonial-role {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        
        /* Compact Sections */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            padding: 30px 0;
        }
        
        .info-card {
            background: var(--surface);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
        }
        
        .info-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--text);
        }
        
        .info-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .info-card ul {
            list-style: none;
            padding: 0;
            margin: 12px 0 0 0;
        }
        
        .info-card li {
            padding: 8px 0;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .info-card li::before {
            content: "✓";
            color: var(--success);
            font-weight: 700;
            margin-right: 8px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 40px 0 20px 0;
        }
        
        .faq-section h2 {
            font-size: 2rem;
            margin-bottom: 32px;
            text-align: center;
        }
        
        .faq-item {
            background: var(--surface);
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid var(--border);
        }
        
        .faq-question {
            font-weight: 600;
            font-size: 1.125rem;
            margin-bottom: 12px;
            color: var(--text);
        }
        
        .faq-answer {
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        /* Footer */
        footer {
            background: var(--surface);
            padding: 60px 0 40px;
            margin-top: 100px;
            border-top: 1px solid var(--border);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-family: 'Fraunces', serif;
            font-size: 1.125rem;
            margin-bottom: 16px;
            color: var(--text);
        }
        
        .footer-links {
            list-style: none;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.875rem;
        }
        
        @media (max-width: 768px) {
            .tool-section {
                padding: 32px 24px;
            }
            
            .button-group {
                flex-direction: column;
            }
            
            .results-header {
                flex-direction: column;
                gap: 16px;
                align-items: flex-start;
            }
            
            .words-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .testimonials {
                grid-template-columns: 1fr;
            }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .loading .word-card {
            animation: pulse 1.5s ease-in-out infinite;
        }
