/* ============================================================
   Healy Computer Systems — Styles
   Roocode-inspired dark theme with violet/blue accents
   ============================================================ */

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
    /* Dark Theme Colors — near-black base like roocode */
    --github-dark: #000000;
    --github-gray: #0a0a0a;
    --github-border: rgba(255, 255, 255, 0.08);
    --github-text: #94a3b8;

    /* Brand Colors - Violet/Blue (Roocode-inspired) */
    --violet-primary: #7c3aed;
    --violet-light: #a78bfa;
    --violet-dark: #6d28d9;
    --blue-secondary: #3b82f6;
    --blue-light: #60a5fa;

    /* Functional Colors */
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-muted-light: #64748b;
    --amber-500: #f59e0b;
    --amber-900: #78350f;
    --green-500: #22c55e;
    --green-900: #14532d;

    /* Additional Colors */
    --white: #ffffff;

    /* Fonts */
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, Inconsolata, monospace;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   Reset & Base Styles
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-inter);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   Utility Classes
   ============================================================ */

/* Display & Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-shrink-0 { flex-shrink: 0; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }
.space-y-1 > * + * { margin-top: 4px; }
.space-y-2 > * + * { margin-top: 8px; }
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
.space-y-6 > * + * { margin-top: 24px; }
.space-y-8 > * + * { margin-top: 32px; }
.space-x-4 > * + * { margin-left: 16px; }
.space-x-8 > * + * { margin-left: 32px; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }

/* Sizing */
.w-full { width: 100%; }
.w-4 { width: 16px; }
.w-5 { width: 20px; }
.w-6 { width: 24px; }
.h-4 { height: 16px; }
.h-5 { height: 20px; }
.h-6 { height: 24px; }
.h-16 { height: 64px; }
.min-h-screen { min-height: 100vh; }
.hero-section {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
}
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }
.max-w-7xl { max-width: 1280px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Spacing */
.px-2 { padding-left: 8px; padding-right: 8px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-8 { padding-left: 32px; padding-right: 32px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }
.pt-2 { padding-top: 8px; }
.pt-4 { padding-top: 16px; }
.pt-6 { padding-top: 24px; }
.pb-2 { padding-bottom: 8px; }
.pb-3 { padding-bottom: 12px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-16 { margin-bottom: 64px; }
.mt-0\.5 { margin-top: 2px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mr-1 { margin-right: 4px; }
.mr-2 { margin-right: 8px; }
.ml-2 { margin-left: 8px; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.bottom-8 { bottom: 32px; }
.left-1\/2 { left: 50%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Transform */
.transform { transform: translateZ(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Typography */
.text-xs { font-size: 12px; line-height: 16px; }
.text-sm { font-size: 14px; line-height: 20px; }
.text-lg { font-size: 18px; line-height: 28px; }
.text-xl { font-size: 20px; line-height: 28px; }
.text-2xl { font-size: 24px; line-height: 32px; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.75; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }

/* Fluid Typography */
.fluid-text-h1 {
    font-size: clamp(2.25rem, 5vw + 1rem, 3.5rem);
    line-height: 1.1;
}

.fluid-text-h2 {
    font-size: clamp(1.875rem, 3.5vw + 0.75rem, 2.5rem);
    line-height: 1.2;
}

/* Colors */
.bg-github-dark { background-color: var(--github-dark); }
section.bg-github-dark { background-color: rgba(0, 0, 0, 0.7); }
section.bg-muted-30 { background-color: rgba(10, 10, 20, 0.6); }
.bg-github-gray { background-color: var(--github-gray); }
footer.bg-github-gray { background-color: rgba(5, 5, 12, 0.9); }
.text-white { color: var(--text-white); }
.text-github-text { color: var(--github-text); }
.text-muted { color: var(--text-muted); }
.text-muted-light { color: var(--text-muted-light); }
.text-violet-primary { color: var(--violet-primary); }

/* Gradient Text */
.text-transparent { color: transparent; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-violet-primary { --tw-gradient-from: var(--violet-primary); }
.to-blue-secondary { --tw-gradient-to: var(--blue-secondary); }

/* Border */
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-github-border { border-color: var(--github-border); }

/* Effects */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* Transitions */
.transition-transform { transition: transform 0.2s ease; }
.transition-all { transition: all 0.3s ease; }

/* Font */
.font-inter { font-family: var(--font-inter); }

/* Hidden */
.hidden { display: none !important; }

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Anchor offset for fixed header */
.anchor-offset {
    scroll-margin-top: 80px;
}

/* ============================================================
   Navigation
   ============================================================ */
nav {
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.bg-github-dark\/95 {
    background-color: rgba(0, 0, 10, 0.84);
}

.nav-link {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 6px 0;
}

.nav-link:hover,
.nav-link-active {
    color: var(--text-white);
}

.mobile-nav-link {
    display: block;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--github-text);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu-button:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   Logo
   ============================================================ */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-container {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-container-small {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.logo-svg-small {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    gap: 0;
    white-space: nowrap;
}

/* ============================================================
   Buttons — Pill-shaped (Roocode-inspired)
   ============================================================ */
.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--violet-primary);
    color: var(--text-white);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-pill:hover {
    background: var(--violet-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary-pill-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--violet-primary);
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-pill-large:hover {
    background: var(--violet-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
}

.btn-secondary-pill-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--github-text);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--github-border);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.btn-secondary-pill-large:hover {
    border-color: var(--violet-primary);
    color: var(--text-white);
    background: rgba(124, 58, 237, 0.1);
}

/* Small CTA buttons for panels */
.btn-cta-sm {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--violet-primary);
    color: var(--text-white);
    font-weight: 500;
    font-size: 13px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-cta-sm:hover {
    background: var(--violet-dark);
}

.btn-cta-sm-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: transparent;
    color: var(--github-text);
    font-weight: 500;
    font-size: 13px;
    border: 1px solid var(--github-border);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-cta-sm-secondary:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

/* Legacy button compat */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: transparent;
    color: var(--github-text);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--github-border);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--violet-primary);
    color: var(--text-white);
}

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

/* Full-viewport ambient glow — two massive overlapping radials like roocode's canvas */
.ambient-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0, 80, 255, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 30% 60%, rgba(80, 0, 220, 0.06) 0%, transparent 70%);
}

/* Section-centered glow behind card grids — smooth radial that fades before edges */
.section-glow-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 80, 255, 0.10) 0%, rgba(60, 0, 200, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Glow wrap kept for any section-specific glows */
.glow-wrap {
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.glow-blob-violet {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 400px;
    width: 100%;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    background: rgba(109, 40, 217, 0.15);
    filter: blur(140px);
}

.glow-blob-blue {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 800px;
    width: 100%;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    background: rgba(29, 78, 216, 0.12);
    filter: blur(140px);
}

/* Subtle background lift for alternating sections */
.bg-muted-30 {
    background: rgba(10, 10, 20, 0.6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-full);
    color: var(--violet-light);
    font-size: 14px;
    font-weight: 500;
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ============================================================
   Cards — Rounded (Roocode-inspired)
   ============================================================ */
.card-rounded {
    background: var(--github-gray);
    outline: 1px solid rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.card-rounded:hover {
    outline-width: 6px;
    outline-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-2xl);
}

/* ============================================================
   Problem / Solution Items
   ============================================================ */
.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    padding-left: 16px;
    border-left: 2px solid var(--amber-500);
    padding-top: 4px;
    padding-bottom: 4px;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    padding-left: 16px;
    border-left: 2px solid var(--green-500);
    padding-top: 4px;
    padding-bottom: 4px;
}

.icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.icon-badge-amber {
    background: rgba(245, 158, 11, 0.15);
    color: var(--amber-500);
}

.icon-badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green-500);
}

/* ============================================================
   Service Cards
   ============================================================ */
.service-card {
    background: var(--github-gray);
    outline: 1px solid rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.service-card:hover {
    outline-width: 6px;
    outline-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(124, 58, 237, 0.12);
    transform: translateY(-2px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(124, 58, 237, 0.15);
    color: var(--violet-light);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(124, 58, 237, 0.20);
}

/* ============================================================
   Feature Cards (About Section Pillars)
   ============================================================ */
.feature-card {
    background: var(--github-gray);
    outline: 1px solid rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
    box-shadow: var(--shadow-lg);
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    outline-width: 6px;
    outline-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(124, 58, 237, 0.10);
}

.feature-icon-violet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(124, 58, 237, 0.15);
    color: var(--violet-light);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-violet {
    background: rgba(124, 58, 237, 0.20);
}

/* ============================================================
   Credential Cards
   ============================================================ */
.credential-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--github-gray);
    border: 1px solid var(--github-border);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.credential-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

a.credential-card-link {
    text-decoration: none;
    cursor: pointer;
}

.credential-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 36px;
    padding: 0 10px;
    background: rgba(124, 58, 237, 0.2);
    color: var(--violet-light);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.credential-badge-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(124, 58, 237, 0.2);
    color: var(--violet-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* ============================================================
   Expertise Items
   ============================================================ */
.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.expertise-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--violet-primary);
    flex-shrink: 0;
}

/* ============================================================
   LinkedIn Link
   ============================================================ */
.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--violet-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.linkedin-link:hover {
    color: var(--text-white);
}

/* ============================================================
   Engagement Cards
   ============================================================ */
.engagement-card {
    background: var(--github-gray);
    outline: 1px solid rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.engagement-card:hover {
    outline-width: 6px;
    outline-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.engagement-card-featured {
    outline-color: rgba(124, 58, 237, 0.25);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(124, 58, 237, 0.05);
    position: relative;
}

.engagement-card-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--violet-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.engagement-tier {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(124, 58, 237, 0.15);
    color: var(--violet-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

/* ============================================================
   About Page
   ============================================================ */
.about-hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.about-photo-frame {
    max-width: 260px;
}

.about-photo-inner {
    border: 1px solid var(--github-border);
    border-radius: var(--radius-xl);
    background: var(--github-gray);
    padding: 12px;
}

.about-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.about-name {
    font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.about-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.about-callout {
    margin-top: 32px;
    padding-left: 20px;
    border-left: 3px solid var(--violet-primary);
    color: var(--github-text);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
}

.about-info-card {
    background: var(--github-gray);
    border: 1px solid var(--github-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: border-color 0.2s ease;
}

.about-info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.about-link-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--github-border);
    border-radius: var(--radius-full);
    color: var(--github-text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.about-link-pill:hover {
    border-color: var(--violet-primary);
    color: var(--text-white);
    background: rgba(124, 58, 237, 0.1);
}

.about-value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--github-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    color: var(--github-text);
    font-size: 14px;
    line-height: 1.6;
    transition: border-color 0.2s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.about-value-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.w-3\.5 { width: 14px; }
.h-3\.5 { height: 14px; }
.ml-1\.5 { margin-left: 6px; }

.about-grid > * {
    min-width: 0;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1.3fr 1fr; }
    .lg\:gap-16 { gap: 64px; }
}

.about-why-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--github-border);
    border-radius: var(--radius-xl);
    padding: 20px;
}

.about-cta-panel {
    background: var(--github-gray);
    border: 1px solid var(--github-border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.about-cta-panel .about-grid {
    align-items: start;
}

.about-next-steps-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--github-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.about-step-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--github-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--github-text);
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .about-cta-panel {
        padding: 24px;
    }
}

/* ============================================================
   Footer
   ============================================================ */
.footer-link {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--white);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Responsive — Medium (768px+)
   ============================================================ */
@media (min-width: 768px) {
    .md\:flex { display: flex !important; }
    .md\:hidden { display: none !important; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Responsive — Small (640px+)
   ============================================================ */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
    .sm\:py-20 { padding-top: 80px; padding-bottom: 80px; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:text-2xl { font-size: 24px; line-height: 32px; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Flex wrap */
.flex-wrap { flex-wrap: wrap; }

/* ============================================================
   Responsive — Large (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 32px; padding-right: 32px; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Responsive — Mobile Guards
   ============================================================ */
@media (max-width: 400px) {
    .logo-text span:last-child {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .fluid-text-h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .py-24 {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

/* ============================================================
   Accessibility
   ============================================================ */
*:focus-visible {
    outline: 2px solid var(--violet-primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --github-text: #ffffff;
        --github-border: #ffffff;
    }
}

::selection { background: rgba(167,139,250,0.4); color: var(--white); }
::-moz-selection { background: rgba(167,139,250,0.4); color: var(--white); }

/* ============================================================
   Print Styles
   ============================================================ */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    nav, .floating-particles, .gradient-blob, .animate-bounce {
        display: none !important;
    }
}

/* ============================================================
   Custom Scrollbar
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--github-dark); }
::-webkit-scrollbar-thumb { background: var(--github-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--github-text); }
