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

:root {
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #2d2d3a;
    --text-muted: #888;
    --accent: #9b8bb8;
    --accent-hover: #b0a0c8;
    --border-dark: #222;
    --border-light: #ddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    font-size: 18px;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 600;
}

h2 em {
    font-style: italic;
    color: var(--accent);
}

p {
    margin-bottom: 1.5rem;
}

strong {
    font-weight: 600;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.logo-u {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-cta {
    background: var(--accent);
    color: var(--text-light) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(155, 139, 184, 0.3);
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    color: var(--text-light) !important;
    box-shadow: 0 4px 20px rgba(155, 139, 184, 0.5);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s;
}

/* Nav Light (for pages with light backgrounds) */
nav.nav-light {
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(20px);
}

nav.nav-light .logo {
    color: var(--text-dark);
}

nav.nav-light .nav-links a {
    color: #555;
}

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

nav.nav-light .mobile-menu-btn span {
    background: var(--text-dark);
}

/* Hero */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(155, 139, 184, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(155, 139, 184, 0.08) 0%, transparent 40%),
                var(--bg-dark);
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239b8bb8' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    position: relative;
    text-shadow: 0 0 80px rgba(155, 139, 184, 0.3);
}

.hero-title-accent {
    color: var(--accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-title .line {
    display: block;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}


.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #7a6b9e 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(155, 139, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(155, 139, 184, 0.5);
}

.cta-button-light {
    background: var(--text-light);
    color: var(--accent);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta-button-light:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.hero-tagline {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 4rem;
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
}

.hero-tagline p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-dark {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-dark h2 em {
    color: var(--accent);
}

.section-dark .section-label {
    color: var(--text-dark);
    border-color: var(--border-light);
}

/* Intro Section - Narrative */
.intro-narrative {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro-narrative p {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    min-height: 1.8em;
}

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

.intro-narrative .type-line-final {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-dark);
}

.intro-narrative em {
    color: var(--accent);
    font-style: italic;
}

.intro-narrative strong {
    color: var(--text-dark);
    font-weight: 600;
}

.intro-narrative .logo-u {
    color: var(--accent);
}

/* Typing cursor */
.type-line.typing::after {
    content: '|';
    color: var(--accent);
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.type-line {
    opacity: 0;
}

.type-line.visible {
    opacity: 1;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-dark);
    display: block;
    text-align: center;
    font-weight: 500;
}

.section-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-content h2 {
    text-align: center;
}

.section-content p {
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-text {
    max-width: 700px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-body p {
    margin-bottom: 1.25rem;
}

.about-body .emphasis {
    text-align: left;
    font-size: 1.2rem;
    margin: 2rem 0;
    color: var(--accent);
}

.about-body-bottom {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.about-body-bottom p {
    text-align: center;
    color: var(--text-muted);
}

.about-photo {
    position: relative;
}

.about-photo::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid var(--accent);
    border-radius: 16px;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.4s ease;
}

.about-photo:hover::before {
    top: -15px;
    right: -15px;
    opacity: 0.5;
}

.about-photo img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-photo:hover img {
    transform: scale(1.02);
}

.about-body p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.about-body em {
    color: var(--accent);
    font-style: italic;
}

.section-dark .about-text h2 {
    color: var(--text-dark);
}

.section-dark .about-text h2 em {
    color: var(--accent);
}

.brands-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #555;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

/* Logo Carousel */
.logo-carousel {
    margin-top: 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.logo-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 40px;
    width: auto;
    opacity: 0.5;
    filter: brightness(0);
    transition: opacity 0.3s;
}

.logo-item img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-dark .about-body p,
.section-dark .philosophy-body p,
.section-dark .curiosity-body p {
    color: #555;
}

/* Philosophy */
.philosophy-body {
    max-width: 600px;
    margin: 0 auto;
}

.philosophy-body p {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-body .highlight {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 2rem 0;
    border-left: 3px solid var(--accent);
    padding-left: 2rem;
    margin: 2rem auto;
    max-width: 750px;
}

/* Autonomous Human */
.concept-intro {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.autonomous-body p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.concept-visual {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 4rem;
}

.concept-words {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.concept-words span {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--border-dark);
    transition: color 0.3s;
}

.concept-words span:hover {
    color: var(--accent);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    padding: 2rem;
    background: var(--bg-dark);
    border-radius: 12px;
}

.service-item h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.services-outro {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
}

.services-body p {
    font-size: 1.1rem;
    color: #555;
}

/* Why Section Enhancements */
#what .section-content {
    display: flex;
    justify-content: center;
}

#what h2 {
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 auto;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

#why .section-content {
    max-width: none;
    text-align: center;
}

#why h2 {
    white-space: nowrap;
    text-align: center;
    margin-bottom: 2rem;
}

#why .philosophy-body {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 2rem;
    text-align: left;
}

/* Capacities Grid */
.capacities-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.capacities-intro em {
    color: var(--accent);
    font-style: italic;
}

.capacity-carousel {
    max-width: 720px;
    margin: 3rem auto 2.5rem;
    text-align: center;
}

.capacity-carousel-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.capacity-carousel-track {
    flex: 1;
}

.capacity-slide {
    display: none;
    padding: 2.5rem 2rem;
    min-height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    animation: slideIn 0.35s ease;
    box-sizing: border-box;
}

.capacity-slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.capacity-slide .capacity-icon {
    margin: 0 auto 1.25rem;
}

.capacity-slide h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.capacity-slide p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.carousel-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.25rem;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.capacities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 3rem auto 2.5rem;
}

.capacity-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
}

.capacity-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.capacity-item:nth-child(1).revealed { transition-delay: 0s; }
.capacity-item:nth-child(2).revealed { transition-delay: 0.07s; }
.capacity-item:nth-child(3).revealed { transition-delay: 0.14s; }
.capacity-item:nth-child(4).revealed { transition-delay: 0.21s; }
.capacity-item:nth-child(5).revealed { transition-delay: 0.28s; }
.capacity-item:nth-child(6).revealed { transition-delay: 0.35s; }
.capacity-item:nth-child(7).revealed { transition-delay: 0.42s; }

.capacity-item:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(155, 139, 184, 0.15);
    background: rgba(155, 139, 184, 0.08);
}

.capacity-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(155, 139, 184, 0.1);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.capacity-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.capacity-item:hover .capacity-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

.capacity-item:hover .capacity-icon svg {
    color: var(--text-light);
}

.capacity-number {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.capacity-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.capacity-item:hover h3 {
    color: var(--accent);
}

.capacity-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.capacity-item-full {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

.capacities-closing {
    font-size: 1.15rem;
    color: var(--accent);
    text-align: center;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.capacities-audience {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-dark);
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

@media (max-width: 768px) {
    .capacities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .capacity-item {
        padding: 1.5rem;
    }

    .capacity-item-full {
        max-width: 100%;
    }
}

/* How It Works */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.how-step {
    text-align: left;
    padding: 2rem;
    border-top: 2px solid var(--border-light);
    border-left: 3px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    cursor: default;
}

.how-step.revealed {
    opacity: 1;
    transform: translateY(0);
}

.how-step:nth-child(1).revealed { transition-delay: 0s; }
.how-step:nth-child(2).revealed { transition-delay: 0.12s; }
.how-step:nth-child(3).revealed { transition-delay: 0.24s; }

.how-step:hover {
    border-left-color: var(--accent);
    padding-left: 2.5rem;
    background: rgba(155, 139, 184, 0.04);
}

.how-step-number {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.how-step:hover .how-step-number {
    transform: scale(1.15);
}

.how-step h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.how-step:hover h3 {
    color: var(--accent);
}

.how-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .how-step {
        padding: 1.5rem 0;
    }
}

/* Autonomous Human Section */
.emphasis {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 1.5rem auto;
    text-align: center;
    max-width: 700px;
}

.section-dark .emphasis {
    color: var(--accent);
}

/* Values Grid */
.about-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.about-layout .about-text h2 {
    text-align: left;
}

.about-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-right .about-photo {
    max-width: 280px;
    margin: 0 auto;
}

.about-right .about-photo img {
    width: 100%;
    border-radius: 20px;
}

.about-right .values-grid {
    margin-top: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
}

.value-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.value-card:nth-child(1).revealed { transition-delay: 0s; }
.value-card:nth-child(2).revealed { transition-delay: 0.1s; }
.value-card:nth-child(3).revealed { transition-delay: 0.2s; }
.value-card:nth-child(4).revealed { transition-delay: 0.3s; }

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(155, 139, 184, 0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(155, 139, 184, 0.1);
    transition: all 0.4s ease;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

.value-card:hover .value-icon svg {
    color: var(--text-light);
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.value-card:hover h4 {
    color: var(--accent);
}

.value-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: var(--text-dark);
}

.values-outro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

    .about-right {
        order: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-right .about-photo {
        margin-bottom: 2rem;
    }

    .about-right .values-grid {
        margin-top: 0;
        width: 100%;
        max-width: 500px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }
}

/* What Section */
.what-body {
    max-width: 700px;
    margin: 0 auto;
}

.what-body p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
}

.audience-list {
    list-style: none;
    margin: 1.5rem auto;
    padding-left: 0;
    max-width: 500px;
    text-align: left;
}

.audience-list li {
    padding: 0.75rem 0;
    color: #555;
    font-size: 1.1rem;
}

.audience-list li strong {
    color: var(--text-dark);
}

/* Framework Section */
#framework .section-content {
    max-width: 950px;
}

.framework-intro {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 0;
    max-width: 900px;
}

.framework-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
}

.framework-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.framework-card:nth-child(1).revealed { transition-delay: 0s; }
.framework-card:nth-child(2).revealed { transition-delay: 0.1s; }
.framework-card:nth-child(3).revealed { transition-delay: 0.2s; }
.framework-card:nth-child(4).revealed { transition-delay: 0.3s; }

.framework-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(155, 139, 184, 0.15);
}

.framework-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1;
}

.framework-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.framework-signal {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem !important;
    font-weight: 500;
}

.framework-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.framework-card p + p {
    margin-top: 0.5rem;
}

/* Who Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto 0;
    max-width: 1000px;
}

.audience-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s ease;
    border-radius: 0 0 4px 0;
}

.audience-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(155, 139, 184, 0.2);
}

.audience-card:hover::before {
    height: 100%;
}

.audience-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(155, 139, 184, 0.1);
    transition: all 0.4s ease;
}

.audience-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.audience-card:hover .audience-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.audience-card:hover .audience-icon svg {
    color: white;
}

.audience-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.audience-card:hover h3 {
    color: var(--accent);
}

.audience-card > p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
}

.audience-card:hover > p {
    color: var(--text-dark);
}

.audience-card ul {
    list-style: none;
    padding-left: 0;
}

.audience-card li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.audience-card:hover li {
    color: var(--text-dark);
}

.audience-card:hover li:nth-child(1) { transform: translateX(5px); transition-delay: 0.05s; }
.audience-card:hover li:nth-child(2) { transform: translateX(5px); transition-delay: 0.1s; }
.audience-card:hover li:nth-child(3) { transform: translateX(5px); transition-delay: 0.15s; }

.audience-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.audience-card:hover li::before {
    transform: scale(1.5);
}

.about-who {
    margin-top: 4rem;
    padding-top: 3rem;
}

/* Audience Carousel */
.audience-carousel {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-arrow {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.carousel-arrow:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 16px rgba(155, 139, 184, 0.3);
}

@media (min-width: 769px) {
    .carousel-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.audience-card-single {
    flex: 1;
    min-width: 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.6s ease;
    text-align: center;
    user-select: none;
    opacity: 0;
    transform: translateY(20px);
}

.audience-card-single:hover {
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(155, 139, 184, 0.15);
}

.audience-carousel-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(155, 139, 184, 0.1);
    transition: all 0.4s ease;
}

.audience-carousel-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.audience-card-single:hover .audience-carousel-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.audience-card-single:hover .audience-carousel-icon svg {
    color: white;
}

.audience-carousel-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.audience-carousel-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.audience-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-light);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--accent);
}

.audience-card-single.revealed {
    opacity: 1;
    transform: translateY(0);
}

.audience-card-single.revealed.carousel-fading {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Join / Field Guide Section */
#join .section-content {
    max-width: 750px;
}

.section-join {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0d14 100%);
    text-align: center;
}

#join .join-subtitle {
    font-size: 1.35rem;
    color: var(--accent);
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
}

.field-guide-card {
    max-width: 650px;
    margin: 0 auto 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 139, 184, 0.2);
    border-radius: 24px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.field-guide-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.field-guide-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(155, 139, 184, 0.15);
}

.field-guide-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
}

.field-guide-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 2rem 0;
}

.field-guide-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(155, 139, 184, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(155, 139, 184, 0.1);
}

.field-guide-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.field-guide-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.field-guide-pricing {
    text-align: center;
    margin: 2.5rem 0 0;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.field-guide-pricing .cta-button {
    margin-bottom: 1rem;
}

.pricing-min {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem !important;
    text-align: center;
}

.pricing-period {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0 !important;
    text-align: center;
}

.field-guide-content .cta-button {
    display: block;
    text-align: center;
    margin-top: 0;
}

#join .join-closing {
    font-size: 1.15rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
    font-style: italic;
}

/* Scroll Reveal Animations */
.audience-card {
    opacity: 0;
    transform: translateY(30px);
}

.audience-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.audience-card:nth-child(1).revealed { transition-delay: 0s; }
.audience-card:nth-child(2).revealed { transition-delay: 0.15s; }
.audience-card:nth-child(3).revealed { transition-delay: 0.3s; }
.audience-card:nth-child(4).revealed { transition-delay: 0.45s; }

/* Scroll reveal for text elements */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-label.reveal-text.revealed {
    transition-delay: 0s;
}

.section h2.reveal-text.revealed {
    transition-delay: 0.1s;
}

.section p.reveal-text.revealed {
    transition-delay: 0.2s;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .framework-card {
        padding: 2rem;
    }

    .framework-number {
        font-size: 2.5rem;
    }

    .framework-card h3 {
        font-size: 1.15rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .audience-card {
        padding: 2rem;
    }

    .audience-card:hover {
        transform: translateY(-4px);
    }

    .field-guide-card {
        padding: 2rem;
    }

    .field-guide-includes {
        grid-template-columns: 1fr;
    }

    .pricing-min {
        font-size: 1.75rem;
    }
}

/* Curiosity */
.curiosity-body p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.curiosity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.curiosity-tags span {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-dark);
    border-radius: 100px;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.curiosity-tags span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Contact CTA */
.section-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #7a6b9e 50%, var(--accent) 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.section-cta .container {
    position: relative;
    z-index: 1;
}

.section-cta h2 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.section-cta h2 em {
    color: var(--text-light);
}

.cta-sub {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-link {
    text-decoration: none;
    color: var(--text-light);
    text-align: left;
    transition: opacity 0.2s;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
.section-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.section-footer .footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.section-footer .footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-footer .footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(155, 139, 184, 0.1);
    transform: translateY(-3px);
}

.section-footer .footer-social svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-dark);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

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

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 1.5rem;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-light);
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    #hero {
        min-height: 100vh;
        padding: 6rem 0 4rem;
    }

    .hero-content,
    .hero-tagline,
    .concept-visual {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    .section-label {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    /* What section */
    #what h2 {
        white-space: normal;
        font-size: 1.1rem;
        letter-spacing: 0.08em;
    }

    /* Intro narrative */
    .intro-narrative {
        padding: 0;
    }

    .intro-narrative p {
        font-size: 1.05rem;
    }

    /* About layout */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-layout .about-text h2 {
        font-size: clamp(1.4rem, 5vw, 1.75rem);
    }

    .about-right {
        order: -1;
    }

    .about-right .about-photo {
        max-width: 180px;
        margin-bottom: 1.5rem;
    }

    .about-right .values-grid {
        margin-top: 0;
    }

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

    .about-body .emphasis {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-photo {
        order: -1;
        max-width: 250px;
    }

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

    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

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

    /* Footer */
    .section-footer {
        padding: 2rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .philosophy-body .highlight {
        font-size: 1.25rem;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .container {
        padding: 0 1rem;
    }

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

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

    .value-card {
        padding: 1.25rem;
    }

    .audience-card {
        padding: 1.5rem;
    }
}
