:root {
    /* Enhanced Prism Color System - 11 Colors */
    --bg-color: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #52525b;
    /* Darker, crisper grey */
    --border-color: #e5e5e5;

    /* Core Pastels - Enhanced Saturation */
    --c-1: #FFB7B2;
    /* Coral Red */
    --c-2: #B5EAD7;
    /* Mint Green */
    --c-3: #E2F0CB;
    /* Pale Lime */
    --c-4: #FFDAC1;
    /* Peach */
    --c-5: #C7CEEA;
    /* Periwinkle Blue */

    /* Additional Prism Colors */
    --c-6: #FDFD96;
    /* Pastel Lemon */
    --c-7: #ff9aa2;
    /* Salmon Pink */
    --c-8: #d6b4fc;
    /* Lavender */
    --c-9: #B5B9FF;
    /* Periwinkle Dark */
    --c-10: #F3E5AB;
    /* Vanilla */
    --c-11: #FFC3A0;
    /* Deep Peach */

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;

    /* Mouse Interaction Vars */
    --mouse-x: 0.5;
    --mouse-y: 0.5;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;

    /* Enhanced Prism Effect - "Pro Minimal" - Subtle & Artistic - Refined Spectrum */
    background-color: #FAFAFA;
    background-image:
        /* Soft Coral - Top Left - Subtle Wash */
        radial-gradient(circle at 20% 30%, rgba(255, 183, 178, 0.4) 0%, transparent 50vw),
        /* Soft Teal - Mid Right - Subtle Wash */
        radial-gradient(circle at 80% 50%, rgba(149, 225, 211, 0.4) 0%, transparent 50vw),
        /* Pale Lime - Bottom Left - Subtle Wash */
        radial-gradient(circle at 30% 80%, rgba(224, 240, 203, 0.4) 0%, transparent 60vw),
        /* Periwinkle - Center Overlay - Very Subtle */
        radial-gradient(circle at 50% 50%, rgba(199, 206, 234, 0.3) 0%, transparent 60vw);

    background-size: 100% 100%;
    background-attachment: fixed;
    /* Fixed background for stability */
    transition: background-position 0.1s ease-out;
}

/* Global typography reset - Removed forced lowercase */

/* Navigation Styles - default case */
.nav-link,
.dropdown-item {
    font-weight: 500;
}

/* Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Variations - Slide by Slide */
.section {
    min-height: 100vh;
    /* Full screen feel */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    padding: 10vh 0;
    /* Generous spacing */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    /* Thin divider */
}

/* Specific background shades for separation */
.section:nth-child(even) {
    background-color: #FAFAFA;
    /* Off-white */
}

.section:nth-child(odd) {
    background-color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Variations */
.section {
    padding: 8rem 0;
    /* Increased spacing */
}

/* Every other section gets a subtle tint */
.section:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.4);
    /* Very subtle off-white layer */
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
    /* Stronger weight */
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

/* Header */
.site-header {
    background-color: rgba(250, 250, 250, 0.95);
    /* More solid */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* Defined border */
}

.site-header:hover {
    /* No hover effect needed for fixed header */
    box-shadow: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    /* Increased padding to move menu left/logo right from edges */
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo-img {
    height: 40px;
    /* Smaller logo */
    width: auto;
    display: block;
}

.nav-link {
    font-size: 1rem;
    /* Slightly larger */
    color: #000000;
    /* High contrast */
    opacity: 1;
    /* Fully visible */
    font-weight: 700;
    /* Bold/Visible */
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 1;
}

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

/* Dropdown */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    cursor: pointer;
    color: #000000;
    /* High contrast */
    font-weight: 500;
    /* Bold/Confident */
    padding: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.dropdown-item:hover {
    background-color: var(--bg-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    letter-spacing: normal;
}

.btn-primary {
    background-color: var(--text-main);
    color: #FFFFFF;
    border: 1px solid transparent;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: none;
    background-color: var(--text-main);
}

.btn-outline {
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
}

/* Hero */
.hero {
    height: 100vh;
    /* Full viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    /* Account for header */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1A1A1A;
    /* Softer near-black */
    display: block;
    text-align: center;
    font-weight: 300;
    /* Lighter weight */
    letter-spacing: -0.03em;
}

/* Transition Cue (New) */
.transition-cue-container {
    text-align: center;
    /* Center aligned */
    padding: 6rem 0;
    /* Generous vertical spacing */
}

.transition-cue {
    font-size: 1.75rem;
    /* Smaller than hero, larger than body */
    font-family: var(--font-heading);
    /* Primary font */
    font-weight: 300;
    /* Light/Minimal */
    color: #A0A0A0;
    /* Neutral pastel tone (Warm Grey) */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* FLIP ANIMATION ON HOVER */
.brand-phrase {
    display: inline-block;
    cursor: default;
}

.flip-word {
    display: inline-block;
    transition: transform 0.3s linear;
    transform-origin: center center;
}



.brand-phrase:hover .flip-word {
    transform: rotateX(180deg);
}

.hero-sub {
    letter-spacing: 0.05em;
    opacity: 0.7;
}

/* Contact Page Styles */
.contact-details-container {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-title-spans {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    font-size: clamp(3rem, 8vw, 6rem);
    /* Responsive adjustments */
    line-height: 1;
}

.c-letter {
    font-weight: 900;
    /* Heavier */
    display: inline-block;
    transition: transform 0.2s ease;
}

.c-letter:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Bright Distinct Colors (Not Pastel) */
.cl-1 {
    color: #FF2E00;
}

/* Bright Red */
.cl-2 {
    color: #0044FF;
}

/* Bright Blue */
.cl-3 {
    color: #00CC44;
}

/* Bright Green */
.cl-4 {
    color: #FFCC00;
}

/* Yellow/Gold */
.cl-5 {
    color: #AA00FF;
}

/* Purple */
.cl-6 {
    color: #FF00AA;
}

/* Magenta */
.cl-7 {
    color: #00DDFF;
}

/* Cyan */

.contact-item {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
    color: #000000;
    transform: translateY(-2px);
}

.contact-phone {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* About Extras (Socials & Contact) */
.about-extras {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.contact-block p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.social-links-about {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}



.social-icon {
    color: #CCC;
    /* Very subtle default */
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

.accent-text {
    /* Removed or reset if not used */
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.125rem;
}

.highlight-dot {
    position: relative;
    display: inline-block;
}

.highlight-dot::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 6px;
    height: 6px;
    background-color: var(--c-1);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    max-width: 1000px;
    /* Constraint */
    margin: 0 auto;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 3rem 1.5rem;
    /* Reduced horizontal padding slightly */
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    box-shadow: none;
    border: none;
}

.service-card:hover {
    background-color: #FFFFFF;
    transform: none;
    box-shadow: none;
}

.service-card h3 {
    font-size: 1.5rem;
    max-width: 15ch;
    line-height: 1.2;
    position: relative;
}

/* Dots - Colorful & Darker */
.highlight-dot::after {
    opacity: 1;
    /* Darker/Full Opacity */
}

/* Specific Service Colors - Neon/Bright */
.c-1 {
    color: #FF0000;
}

/* Neon Red */
.c-2 {
    color: #00FFD1;
}

/* Neon Teal */
.c-3 {
    color: #FFE600;
}

/* Neon Yellow */
.c-4 {
    color: #0066FF;
}

/* Bright Blue */
.c-5 {
    color: #FF8800;
}

/* Bright Orange */
.c-6 {
    color: #00E5FF;
}

/* Cyan */

/* Trust */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap);
    border-top: 1px solid var(--border-color);
    padding-top: var(--grid-gap);
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* New Sections */
.intro-text {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    color: var(--text-main);
    line-height: 1.5;
}

/* Paths - Split Screen */
.split-paths-section {
    padding: 0;
    width: 100%;
}

.split-paths-container {
    display: flex;
    width: 100%;
    min-height: 80vh;
    /* Generous height */
}

.split-path-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem;
    position: relative;
    transition: background-color 0.3s ease;
}

.path-content {
    max-width: 400px;
}

.path-left {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle divider */
}

.path-right {
    border: none;
}

.split-path-card h3 {
    font-size: 3rem;
    /* Larger */
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.split-path-card .link-arrow {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Hover effects */
.split-path-card:hover {
    background-color: #FAFAFA;
}

@media (max-width: 768px) {
    .split-paths-container {
        flex-direction: column;
        min-height: auto;
    }

    .split-path-card {
        padding: 6rem 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Scroll Anchoring Fix */
#owners,
#partners,
#services,
#how,
#about {
    scroll-margin-top: 120px;
    /* Ensures header doesn't cover content */
}

.path-card {
    background: #FFFFFF;
    padding: 5rem 2rem;
    /* Increased vertical spacing */
    border: none;
    /* No borders */
    border-radius: 4px;
    /* Minimal radius */
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    /* Ensure height for spacing */
    box-shadow: none;
    /* Removed shadow */
}

.path-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    /* No shadow on hover either */
    background-color: #FAFAFA;
    /* Subtle interaction */
}

.path-card .link-arrow {
    margin-top: auto;
    /* Push to bottom */
    align-self: center;
}

/* Removed ::before pseudo element */

.path-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.path-card p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.link-arrow {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
}

/* Themed Submit Button */
.submit-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: lowercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    opacity: 0.8;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 6rem;
    /* Significant spacing */
    margin-top: 5rem;
}

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

.step-num {
    display: block;
    font-size: 3.5rem;
    /* Larger */
    color: var(--text-main);
    /* Darker/Bolder */
    font-weight: 600;
    /* Bolder */
    margin-bottom: 1.5rem;
    opacity: 1;
    /* Fully visible */
}

/* About */
.about-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Form Confirmation */
.confirmation-message {
    text-align: center;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.confirmation-divider {
    width: 60px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.confirmation-message h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.confirmation-message p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    padding: 2rem 0 0 0;
    /* Minimized padding */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    /* Thin horizontal line */
    margin-top: 0;
    background-color: #FAFAFA;
    /* Gallery feel */
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 100%;
    /* Allow full width for wordmark */
    margin: 0 auto;
    padding: 0 2rem;
    /* Comfortable margins */
}

/* Footer Bottom - Simple Grid */
/* Footer Bottom - Horizontal Line */
.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    background-color: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.big-wordmark {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    /* Semi-Bold */
    font-size: 1.1rem;
    /* Smaller */
    color: #000000;
    line-height: 1;
    letter-spacing: normal;
    text-transform: lowercase;
    text-align: center;
    margin: 0;
    width: auto;
    position: static;
    display: block;
    mix-blend-mode: normal;
    order: 2;
    /* Center */
}

.footer-links-minimal {
    position: static;
    transform: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    order: 3;
    /* Right */
}

.footer-links-minimal a {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    text-transform: lowercase;
    opacity: 1;
}

.separator {
    display: none;
    /* Hide separators in flex layout if we want gaps, but user liked dots. Let's keep dots but maybe spacing handles it better? Or keep dots. */
    color: #000000;
    font-weight: 500;
}

.copyright {
    position: static;
    transform: none;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: lowercase;
    order: 1;
    /* Left */
}



/* Responsive */
@media (max-width: 768px) {
    :root {
        --grid-gap: 2rem;
        --section-spacing: 6rem;
    }

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

    .header-container {
        padding: 0 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-sub,
.hero-actions,
.service-card,
.trust-item {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-sub {
    animation-delay: 0.3s;
}

.hero-actions {
    animation-delay: 0.5s;
}

/* Partner Page Fixes */
.partner-hero {
    min-height: auto;
    padding-bottom: 4rem;
}

.partner-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.partner-intro h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.partner-intro p {
    font-size: 1.25rem;
    max-width: 400px;
    line-height: 1.6;
}

/* Forms */
.partner-form-container {
    background: #FFFFFF;
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.2s ease;
    box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--text-main);
    background-color: #FFFFFF;
    box-shadow: none;
}

textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .partner-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .partner-form-container {
        padding: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Team Page */
.team-header-section {
    padding-top: 10rem;
    padding-bottom: 4rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-member.reverse {
    flex-direction: row-reverse;
}

.member-img-container {
    flex: 0 0 400px;
    /* Fixed width for image column */
    height: 500px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: none;
}

.member-img-container:hover {
    box-shadow: none;
    transform: none;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.member-img-container:hover .team-img {
    transform: scale(1.02);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* In a real scenario, an img tag would go here */
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.member-role {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.member-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 45ch;
}

@media (max-width: 900px) {
    .team-member {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }

    .member-img-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .member-info p {
        margin: 0 auto;
    }
}

/* =========================================
   NEW UPDATE STYLES 
   ========================================= */

/* CONTACT PAGE TITLE - VIBRANT, BOLD, TIGHT */
.contact-title-spans {
    display: flex;
    justify-content: center;
    /* Removed gap to allow overlap */
    gap: 0;
    font-size: clamp(4rem, 10vw, 7rem);
    /* Slightly larger */
    line-height: 0.9;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.c-letter {
    font-weight: 900;
    /* Changing font as requested to something thicker/blockier */
    font-family: 'Impact', 'Arial Black', 'Outfit', sans-serif;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase !important;
    /* Negative margin for "barely overlapping" look */
    margin: 0 -0.04em;
    position: relative;
    z-index: 1;
}

.c-letter:hover {
    transform: scale(1.1) rotate(-5deg);
    z-index: 10;
    /* Bring to front on hover */
}

.c-letter:nth-child(even):hover {
    transform: scale(1.1) rotate(5deg);
}

/* Distinct Creative Pastels (Every letter clearly different) */
.cl-1 {
    color: #FF9AA2;
}

/* Salmon Pink */
.cl-2 {
    color: #81C784;
}

/* Fresh Green (NOT Mint) */
.cl-3 {
    color: #64B5F6;
}

/* Sky Blue */
.cl-4 {
    color: #FFD54F;
}

/* Amber Gold */
.cl-5 {
    color: #BA68C8;
}

/* Orchid Purple */
.cl-6 {
    color: #4DB6AC;
}

/* Teal Turquoise */
.cl-7 {
    color: #FF8A65;
}

/* Deep Peach/Orange */

/* About Page - Faded Intro Quote */
.intro-quote-faded {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* Smaller */
    color: var(--text-muted);
    opacity: 0.6;
    /* Faded */
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 300;
}

/* Updated About Styles */
.about-hero-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* ABOUT SUMMARY SECTION (INDEX REVERT) */
.about-summary-section {
    padding: 8rem 0;
    background-color: #FAFAFA;
    /* Off-white for distinction */
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    scroll-margin-top: 100px;
    /* For smooth snap offset */
}

.quote-faint {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 300;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.quote-faint .brand-phrase {
    opacity: 0.8;
    /* Slightly more visible part */
    color: rgba(0, 0, 0, 0.3);
}

.about-summary-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: capitalize !important;
    /* Ensure capitalization */
}

.about-summary-text {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* SKETCHES FOR ABOUT SECTION */
.sketch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.minimal-sketch {
    width: 64px;
    height: 64px;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: default;
}

.minimal-sketch svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-main);
    stroke-width: 1.2;
    /* Fine line */
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.minimal-sketch:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Refined Minimal Scribble Styles */
.about-scribble-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    position: relative;
    padding: 1rem 2rem;
}

.scribble-underline {
    position: relative;
    display: inline-block;
    color: var(--text-main);
    font-weight: 500;
}

.scribble-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #BA68C8; /* Subtle purple underline */
    opacity: 0.7;
    pointer-events: none;
}

/* Connection Wrapper */
.connection-wrapper {
    position: relative;
    white-space: normal;
}

.connection-arrow-svg {
    position: absolute;
    top: -1.5rem;
    left: 10%;
    width: 80%;
    height: 4rem;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

/* Connection Wrapper */
.connection-wrapper {
    position: relative;
    white-space: normal;
}

.connection-arrow-svg {
    position: absolute;
    top: -1.5rem;
    left: 20%;
    width: 60%;
    height: 3rem;
    pointer-events: none;
    opacity: 0.8;
    z-index: 0;
}

/* We will use JS to scrollIntoView, but here we ensure sections look good centered */
.section-fullscreen-focus {
    /* Optional class if we want to force full height on focus */
    min-height: 90vh;
    /* Ensure it takes up space */
    scroll-margin-top: 80px;
    /* Header offset */
}
/* Visual Summary Section */
.visual-summary-section {
    padding: 6rem 0;
    background-color: transparent; /* Seamless with body or prism */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.visual-grid-container {
    max-width: 1000px;
}

.visual-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}

.visual-left,
.visual-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Left Image */
.visual-chaos-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 300px; /* Constraint */
}

/* Right Flow */
.solution-flow {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.solution-icon-person {
    width: 64px;
    height: 64px;
    color: var(--text-main);
    stroke-width: 1.5;
}

.solution-arrow {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: 0.6;
}

.visual-ft-logo {
    height: 80px; /* Adjust based on logo proportions */
    width: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .visual-grid {
        flex-direction: column;
        gap: 4rem;
    }

    .solution-flow {
        gap: 1rem;
    }

    .solution-icon-person {
        width: 48px;
        height: 48px;
    }

    .solution-arrow {
        width: 32px;
        height: 32px;
    }
}

/* Visual Summary Section - Large & Revised */
.visual-summary-section-large {
    padding: 8rem 0;
    width: 100%;
    background-color: transparent;
}

.visual-grid-large {
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically align centers */
    gap: 8rem; /* Large gap */
    max-width: 1400px;
    margin: 0 auto;
}

.visual-col-large {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.visual-label {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-muted);
    text-transform: lowercase;
}

/* Images */
.visual-img-large {
    width: 100%;
    max-width: 500px; /* Big but contained */
    height: auto;
    object-fit: contain;
}

.visual-solution-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.visual-arrow-man {
    width: 60%; /* Takes up left side of right col */
    max-width: 300px;
    height: auto;
}

.visual-ft-logo-large {
    width: 40%; /* Takes up right side of right col */
    max-width: 200px;
    height: auto;
}

@media (max-width: 900px) {
    .visual-grid-large {
        flex-direction: column;
        gap: 6rem;
    }
    
    .visual-solution-row {
        flex-direction: column;
    }
    
    .visual-arrow-man, .visual-ft-logo-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Visual Section - Cute Spacing */
.visual-grid-large {
    gap: 10rem; /* Increased for "space it out" */
    padding: 4rem 0; /* Add vertical breathing room */
}

.visual-col-large {
    /* Ensure no extra margins from previous labels */
    justify-content: center;
}

.visual-img-large {
    /* Ensure they look good and not too overwhelming */
    max-height: 400px;
    width: auto;
    object-fit: contain;
}
