:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --header-bg: rgba(30, 58, 138, 0.9);
    /* Blue 900 with opacity */
    --background-light: #ffffff;
    --text-dark: #111827;
    --text-light: #f9fafb;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --brutalist-blue-light: #DBEAFE;
    --brutalist-blue-dark: #1E40AF;

    /* Spacing */
    --container-width: 1152px;
    /* max-w-6xl */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Fonts */
    --font-sans: 'Open Sans', sans-serif;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #f0f4f8, #e0e7ff, #dbeafe, #eff6ff);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Layout Utilities */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    height: 4rem;
    /* Back to original compact height */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 var(--spacing-lg);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Move to left */
    gap: var(--spacing-sm);
    text-decoration: none;
    color: white;
    overflow: hidden;
    /* Crop the excess height */
    height: 4rem;
    /* Match header height */
    width: auto;
    /* Allow width to grow with the image */
}

.logo-img {
    height: 6rem;
    /* Smaller logo for mobile */
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
    flex-shrink: 0;
    transform: translateY(8px);
}

.logo-icon {
    height: 2.5rem;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
    flex-shrink: 0;
    transform: rotate(-45deg);
    margin-right: 0.5rem;
}

/* ... (skipping unchanged rules) ... */

.hero-section {
    position: relative;
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    /* Base padding for mobile */
    text-align: center;
    overflow: hidden;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.nav-links {
    display: none;
    /* Hidden on mobile by default */
    gap: 2rem;
}

.nav-links a {
    color: #d1d5db;
    /* gray-300 */
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-decoration: none;
    min-width: 84px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
}

.btn-lg {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10rem 1.5rem;
    /* Increased top padding from 6rem */
    text-align: center;
    overflow: hidden;
}

.hero-background-shapes .shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.shape-1 {
    bottom: -25%;
    left: 0;
    height: 80vh;
    width: 90vw;
    transform: translateX(-25%) skewY(-20deg);
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    top: -25%;
    right: 0;
    height: 70vh;
    width: 60vw;
    transform: translateX(33%) skewY(-20deg);
    animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 10%;
    right: 5%;
    height: 40vh;
    width: 50vw;
    transform: skewY(-20deg);
    animation: float 20s ease-in-out infinite 2s;
}

@keyframes float {
    0% {
        transform: translateX(0) skewY(-20deg) translateY(0);
    }

    50% {
        transform: translateX(0) skewY(-20deg) translateY(-20px);
    }

    100% {
        transform: translateX(0) skewY(-20deg) translateY(0);
    }
}

/* Need to adjust the transforms in the keyframes to match the initial state of each shape */
/* Actually, it's better to wrap the transform in the animation or use a wrapper,
   but since they have different initial transforms, I'll customize the keyframes or use a relative movement if possible.
   CSS transforms overwrite each other.
   Better approach: Use a separate animation for each or include the base transform.
*/

/* Let's redefine to include the specific base transforms */
@keyframes float-1 {

    0%,
    100% {
        transform: translateX(-25%) skewY(-20deg) translateY(0);
    }

    50% {
        transform: translateX(-25%) skewY(-20deg) translateY(-30px);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateX(33%) skewY(-20deg) translateY(0);
    }

    50% {
        transform: translateX(33%) skewY(-20deg) translateY(30px);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: skewY(-20deg) translateY(0);
    }

    50% {
        transform: skewY(-20deg) translateY(-25px);
    }
}

.shape-1 {
    bottom: -25%;
    left: 0;
    height: 80vh;
    width: 90vw;
    animation: float-1 15s ease-in-out infinite;
}

.shape-2 {
    top: -25%;
    right: 0;
    height: 70vh;
    width: 60vw;
    animation: float-2 18s ease-in-out infinite;
}

.shape-3 {
    bottom: 10%;
    right: 5%;
    height: 40vh;
    width: 50vw;
    animation: float-3 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-full);
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: 2.5rem;
    /* Reduced for mobile */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.025em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 42rem;
    margin-bottom: 2rem;
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: -1rem;
    margin-bottom: 2.5rem;
}

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

/* Sections */
.workflow-section,
.deep-agents-section,
.features-section {
    padding: 6rem 0;
    width: 100%;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: #f9fafb;
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-container-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 4rem;
    width: auto;
}

.logo-img-footer {
    height: 6rem;
    width: auto;
    object-fit: contain;
    transform: translateY(8px);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Mobile Optimizations */
@media (max-width: 767px) {

    /* Hide download button on mobile - both in header and hero */
    .hero-actions .btn-primary,
    .nav-actions .btn-primary {
        display: none;
    }

    .hero-image-container {
        max-width: 100%;
        margin-left: calc(-1 * var(--spacing-lg));
        margin-right: calc(-1 * var(--spacing-lg));
        border-radius: 0;
        border: none;
    }

    .hero-section {
        padding: 4rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        min-width: auto;
        padding: 0.625rem 1rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem;
    }

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

    .section-description {
        font-size: 1rem;
    }

    /* Make workflow image fill screen edge-to-edge */
    .workflow-visual {
        margin-left: calc(-1 * var(--spacing-lg));
        margin-right: calc(-1 * var(--spacing-lg));
        border-radius: 0;
        border: none;
    }

    /* Make deep agent video fill screen edge-to-edge */
    .deep-agent-visual {
        margin-left: calc(-1 * var(--spacing-lg));
        margin-right: calc(-1 * var(--spacing-lg));
        border-radius: 0;
        border: none;
    }

    /* Make agent chat video fill screen edge-to-edge */
    .agent-chat-visual {
        margin-left: calc(-1 * var(--spacing-lg));
        margin-right: calc(-1 * var(--spacing-lg));
        border-radius: 0;
        border: none;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-section {
        padding: 10rem 1.5rem;
        /* Increased padding for desktop */
    }

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

    .logo-img {
        height: 8rem;
        /* Larger logo for desktop */
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hero Image */
.hero-image-container {
    margin-top: 4rem;
    width: 100%;
    max-width: 1100px;
    /* Increased for better visibility */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Workflow Image */
.workflow-visual {
    margin-top: 3rem;
    width: 100%;
    max-width: 900px;
    /* Added max-width */
    margin-left: auto;
    /* Center alignment */
    margin-right: auto;
    /* Center alignment */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
}

.workflow-img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Deep Agent Video */
.deep-agent-visual {
    margin-top: 3rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
}

.deep-agent-video {
    width: 100%;
    height: auto;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Agent Chat Section */
.agent-chat-section {
    padding: 6rem 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.03), rgba(255, 255, 255, 0));
}

.chat-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.chat-feature {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.chat-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.chat-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-feature h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.chat-feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Problem / Solution Section --- */
.problem-solution-section {
    padding: 6rem 0;
    background-color: white;
}

.problem-block {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.problem-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.problem-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.solution-block {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.solution-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.solution-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.solution-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Core Value Props Section --- */
.value-props-section {
    padding: 6rem 0;
    width: 100%;
    background-color: #f9fafb;
    /* Light gray background to separate */
}

.value-prop-item {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .value-prop-item {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
    }

    .value-prop-item.reverse {
        flex-direction: row-reverse;
    }
}

.value-prop-content {
    flex: 1;
}

.value-prop-visual {
    flex: 1;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.value-prop-img,
.value-prop-video {
    width: 100%;
    height: auto;
    display: block;
}

.value-prop-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-prop-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.value-prop-list li span {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.value-prop-grid-small {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .value-prop-grid-small {
        grid-template-columns: 1fr 1fr;
    }
}

.value-prop-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-fast);
}

.value-prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.value-prop-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-prop-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* --- Features Buckets Grid --- */
.features-buckets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .features-buckets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-bucket {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition-fast);
}

.feature-bucket:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bucket-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.bucket-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.feature-bucket h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.bucket-list {
    list-style: none;
    padding: 0;
}

.bucket-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.bucket-list li strong {
    color: var(--text-dark);
    display: block;
    /* Stack title and description for cleaner look inside columns */
    margin-bottom: 0.25rem;
}


/* --- Social Proof & Closing CTA --- */
.social-proof-section {
    padding: 4rem 0;
    background-color: var(--background-light);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.social-proof-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.closing-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.08));
    text-align: center;
}

.closing-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* --- About Section --- */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.03), rgba(255, 255, 255, 0));
    border-top: 1px solid var(--border-light);
}

.about-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.about-header {
    margin-bottom: 2.5rem;
}

.about-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-full);
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-size: 0.875rem;
    font-weight: 600;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.about-narrative {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-narrative p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-narrative p:last-child {
    margin-bottom: 0;
}

.about-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.about-connect {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.connect-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.connect-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.connect-link .material-symbols-outlined,
.connect-link svg {
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
}

.about-license {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

.about-license strong {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .about-title {
        font-size: 1.75rem;
    }

    .about-lead {
        font-size: 1.125rem;
    }

    .about-narrative p {
        font-size: 1rem;
    }
}
