/* =========================================
   ThinkPrompt - Core Styles
   ========================================= */

:root {
    /* Color Palette - Dark Premium Theme */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-panel: rgba(20, 20, 30, 0.6);
    --bg-panel-hover: rgba(30, 30, 45, 0.8);

    --primary: #8b5cf6;
    /* Neon Purple */
    --primary-glow: rgba(139, 92, 246, 0.5);
    --primary-light: #a78bfa;

    --secondary: #14b8a6;
    /* Bright Teal */
    --secondary-glow: rgba(20, 184, 166, 0.5);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(139, 92, 246, 0.3);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Outfit', var(--font-sans);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-8: 4rem;
    --space-12: 6rem;

    /* Effects */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* =========================================
   Reset & Base
   ========================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   Typography
   ========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-light);
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   Utilities & Layouts
   ========================================= */
.mt-1 {
    margin-top: var(--space-1);
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-3 {
    margin-top: var(--space-3);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-5 {
    margin-top: var(--space-5);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-3 {
    margin-bottom: var(--space-3);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-5 {
    margin-bottom: var(--space-5);
}

.ml-0 {
    margin-left: 0 !important;
}

.p-5 {
    padding: var(--space-5);
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.w-full {
    width: 100%;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: var(--space-12) 0;
    position: relative;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.gap-5 {
    gap: var(--space-5);
}

.rounded-layout {
    align-items: stretch;
}

/* =========================================
   Components (Glassmorphism & Buttons)
   ========================================= */

.glass-panel,
.glass-card {
    background: var(--bg-panel);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: var(--transition-normal);
}

.glass-panel-inner {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: var(--space-3);
}

.hover-glow:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
    background: var(--bg-panel-hover);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Background Effects */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.orb-1 {
    background: var(--primary);
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.orb-2 {
    background: var(--secondary);
    width: 300px;
    height: 300px;
    top: 20%;
    right: -50px;
}

.orb-3 {
    background: var(--primary);
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}

.pattern-bg {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* =========================================
   Navigation
   ========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:not(.btn):hover {
    color: var(--text-main);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* =========================================
   Hero Section
   ========================================= */

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 2rem;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-highlight);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: var(--space-2);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto var(--space-3);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-4);
    font-weight: 500;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Mockup styles for Hero */
.hero-visual {
    width: 100%;
    max-width: 600px;
    margin-top: var(--space-4);
    perspective: 1000px;
    z-index: 5;
}

.app-mockup {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-bottom: none;
    transform: rotateX(5deg) translateY(0px);
    transform-style: preserve-3d;
    box-shadow: 0 -20px 40px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 0;
}

.mockup-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #eab308;
}

.mockup-dots span:nth-child(3) {
    background: #22c55e;
}

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 48px;
    /* Balance visually */
}

.mockup-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(to bottom, rgba(20, 20, 30, 0) 0%, rgba(20, 20, 30, 0.8) 100%);
    min-height: 250px;
    text-align: left;
}

.chat-message {
    display: flex;
    gap: 1rem;
    max-width: 85%;
}

.chat-message.user {
    margin-left: auto;
    flex-direction: row-reverse;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.ai .avatar {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--border-highlight);
}

.user .avatar {
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.user .message-content {
    border-radius: var(--radius-sm) 0 var(--radius-sm) var(--radius-sm);
    background: rgba(20, 184, 166, 0.1);
}

.file-attachment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    font-family: monospace;
}

.loading-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 8px;
}

.loading-dots span {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* =========================================
   What is ThinkPrompt Section
   ========================================= */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.glass-card {
    padding: var(--space-4);
    height: 100%;
}

.card-negative {
    border-color: rgba(239, 68, 68, 0.2);
}

.card-positive {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(30, 41, 59, 0.6);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: var(--space-2);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.list-negative li::before {
    content: "❌";
    margin-right: 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.list-positive li::before {
    content: "✅";
    margin-right: 12px;
    font-size: 0.9rem;
}

.list-positive li {
    font-weight: 500;
}

/* =========================================
   Founder Story
   ========================================= */

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-5);
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    border-radius: var(--radius-md);
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 30, 0.9);
    border-color: var(--border-highlight);
    border-radius: var(--radius-md);
    z-index: 2;
}

.story-text {
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
    color: var(--text-muted);
}

.problem-list {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    margin-bottom: var(--space-4);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.problem-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.problem-item:last-child {
    margin-bottom: 0;
}

.problem-icon {
    margin-right: 12px;
    margin-top: 2px;
    font-size: 0.9rem;
}

.solution-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(20, 184, 166, 0.1));
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.125rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.portfolio-mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.portfolio-item-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.portfolio-item-mini:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
}

.portfolio-item-mini img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

.port-info {
    display: flex;
    flex-direction: column;
}

.port-info strong {
    font-size: 0.9rem;
    color: var(--text-main);
}

.port-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

/* =========================================
   Features Section
   ========================================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-bottom: -10px;
    line-height: 1;
}

.hover-glow:hover .feature-number {
    -webkit-text-stroke: 1px var(--primary);
    color: rgba(139, 92, 246, 0.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.mini-list li {
    list-style-type: disc;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.mini-list.doc-list li {
    list-style-type: none;
    margin-left: 0;
    color: var(--text-main);
    padding: 4px 0;
}

.feature-outcome {
    font-size: 0.9rem;
    font-weight: 600;
    padding-top: var(--space-2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-bubble-mini {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--border-highlight);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    display: inline-block;
}

.highlight-box {
    background: rgba(20, 184, 166, 0.1);
    color: var(--secondary);
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
}

/* =========================================
   Chatbot Section
   ========================================= */

.chatbot-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.capabilities-list .capability-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cap-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.cap-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.cap-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.phone-mockup {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 36px;
    padding: 12px;
    background: #111;
    border: 4px solid #333;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #333;
    border-radius: 0 0 16px 16px;
    z-index: 20;
}

.phone-screen {
    background: var(--bg-darker);
    border-radius: 24px;
    height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.p-chat-header {
    padding: 2.5rem 1rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.p-chat-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-msg {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.p-msg.ai {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    align-self: flex-start;
    border-top-left-radius: 4px;
}

.p-msg.user {
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.p-msg.sending {
    background: transparent;
    border: none;
    align-self: center;
    color: var(--text-muted);
}

.sending-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.check-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* =========================================
   How It Works & Target Audience
   ========================================= */

.stepper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.step:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.glow-num {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.2);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-content {
    font-size: 1.05rem;
}

.audience-list li {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aud-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   Comparison Table
   ========================================= */

.table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th,
.compare-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table th {
    font-family: var(--font-display);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.col-traditional {
    color: var(--text-muted);
}

.col-thinkprompt {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.glow-text {
    text-shadow: 0 0 10px var(--primary-glow);
}

.highlight-cell {
    background: rgba(139, 92, 246, 0.05);
    font-weight: 600;
    color: var(--primary-light);
}

.compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* =========================================
   CTA & Footer
   ========================================= */

.cta-section {
    padding: var(--space-12) 0;
}

.cta-box {
    padding: var(--space-8) var(--space-5);
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(to bottom right, rgba(20, 20, 30, 0.8), rgba(30, 20, 50, 0.6));
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.group {
    position: relative;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.75s ease;
}

.group:hover .shine-effect {
    left: 200%;
}

.footer {
    background: var(--bg-darker);
    padding: var(--space-5) 0 var(--space-4);
}

.border-top-glow {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* =========================================
   Animations
   ========================================= */

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* =========================================
   Media Queries
   ========================================= */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .grid-2,
    .comparison-grid,
    .founder-grid,
    .chatbot-layout {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .founder-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .phone-mockup {
        margin-top: var(--space-4);
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-8) 0;
    }

    .hero {
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: var(--transition-normal);
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mockup-header {
        padding: 0.75rem;
    }

    .mockup-body {
        padding: 1rem;
    }

    .hero-visual {
        transform: scale(0.9);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: var(--space-5) var(--space-4);
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .chat-message {
        max-width: 95%;
    }

    .hero-benefits li {
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}