/* Vision 2 Page Styles - Conversational & Story-Driven Design */

:root {
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'IBM Plex Serif', Georgia, serif;
  --color-text: #111;
  --color-muted: #555;
  --color-border: #ddd;
  --spacing-section: 6rem;
  --spacing-element: 2rem;
}

/* Hero Section */
.v2-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.v2-hero-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.v2-hero-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--spacing-element);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.v2-highlight {
    display: block;
    color: var(--color-text);
    margin-top: 8px;
}

.v2-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    font-weight: 400;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.v2-hero-button {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.v2-hero-button:hover {
    background: #f9f9f9;
}

.v2-hero-decoration {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: flex-end;
    z-index: 1;
}

.voice-wave {
    width: 4px;
    background: linear-gradient(180deg, transparent, #FF6B35, transparent);
    border-radius: 4px;
    animation: voiceWave 1.5s ease-in-out infinite;
}

.voice-wave:nth-child(1) {
    height: 40px;
    animation-delay: 0s;
    background: linear-gradient(180deg, transparent, #FF6B35, transparent);
}

.voice-wave:nth-child(2) {
    height: 60px;
    animation-delay: 0.1s;
    background: linear-gradient(180deg, transparent, #FFB84D, transparent);
}

.voice-wave:nth-child(3) {
    height: 80px;
    animation-delay: 0.2s;
    background: linear-gradient(180deg, transparent, #FFD166, transparent);
}

.voice-wave:nth-child(4) {
    height: 60px;
    animation-delay: 0.3s;
    background: linear-gradient(180deg, transparent, #76D7EA, transparent);
}

.voice-wave:nth-child(5) {
    height: 40px;
    animation-delay: 0.4s;
    background: linear-gradient(180deg, transparent, #56CCF2, transparent);
}

/* Manifesto Section */
.v2-manifesto {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

.manifesto-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-headline {
    font-family: var(--font-serif);
    font-size: 54px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--spacing-element);
}

.manifesto-paragraph {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.manifesto-paragraph strong {
    color: var(--color-text);
    font-weight: 600;
}

.manifesto-paragraph.bold-text {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Section Utilities */
.section-intro {
    text-align: center;
    margin-bottom: 64px;
}

.section-intro.centered {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 16px;
}

.section-heading {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

/* Conversation Section */
.v2-conversation {
    padding: 100px 0;
    text-align: left;
    margin: 0 auto;
}

.conversation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.conversation-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 48px 40px;
    transition: all 0.4s ease;
    position: relative;
}

.conversation-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.conversation-card:hover {
    transform: translateY(-8px);
    background: rgba(139, 92, 246, 0.05);
}

.conversation-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 56px;
    margin-bottom: 14px;
    display: block;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--spacing-element);
}

.card-description {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

/* Scenarios Section */
.v2-scenarios {
    padding: 100px 0;
    background: #FFFFFF;
    text-align: left;
    margin: 0 auto;
}

.scenarios-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.scenario-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.scenario-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 184, 77, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
}

.scenario-content {
    flex: 1;
}

.scenario-title {
    font-family: var(--font-serif);
    font-size: 54px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--spacing-element);
}

.scenario-description {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.scenario-description strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Intelligence Section */
.v2-intelligence {
    padding: 100px 0;
}

.intelligence-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intelligence-description {
    font-size: 17.7px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 40px;
}

.intelligence-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intelligence-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    font-size: 18px;
    font-weight: 700;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 17.7px;
    color: #000000;
    line-height: 1.6;
}

.intelligence-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-brain {
    position: relative;
    width: 200px;
    height: 200px;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #FF6B35 0%, #FFB84D 50%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    animation: brainGlow 3s ease-in-out infinite;
}

.brain-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #FFB84D;
    opacity: 0.6;
}

.pulse-1 {
    width: 120px;
    height: 120px;
    border-color: #FF6B35;
    animation: brainPulse 3s ease-out infinite;
}

.pulse-2 {
    width: 160px;
    height: 160px;
    border-color: #FFD166;
    animation: brainPulse 3s ease-out 1s infinite;
}

.pulse-3 {
    width: 200px;
    height: 200px;
    border-color: #56CCF2;
    animation: brainPulse 3s ease-out 2s infinite;
}

/* Transformation Section */
.v2-transformation {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, transparent 100%);
}

.transformation-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-column {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px 32px;
    border: 1px solid #1E1E1E;
}

.comparison-column.after {
    background: #FFFFFF;
    border-color: #1F2937;
}

.column-header h3 {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 32px;
    text-align: center;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.comparison-item p {
    font-size: 17.7px;
    line-height: 1.6;
    color: #000000;
}

.comparison-arrow {
    font-size: 48px;
    color: #8B5CF6;
    font-weight: 700;
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Principles Section */
.v2-principles {
    padding: 100px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.principle-card {
    background: #FFFFFF;
    border: 1px solid #1E1E1E;
    border-radius: 8px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    text-align: center;
}

.principle-card:hover {
    transform: translateY(-8px);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.4);
}

.principle-title {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.principle-description {
    font-size: 17.7px;
    line-height: 1.7;
    color: #000000;
}

/* Quote Section */
.v2-quote {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(234, 162, 125, 0.1) 0%, rgba(234, 162, 125, 0.05) 100%);
}

.large-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: 32px;
    line-height: 1.6;
    font-weight: 400;
    color: #000000;
    font-style: italic;
    margin-bottom: 32px;
}

.quote-author {
    font-size: 18px;
    color: #EAA27D;
    font-weight: 600;
    font-style: normal;
}

/* Future Section */
.v2-future {
    padding: 100px 0;
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.future-heading {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 32px;
}

.future-text {
    font-size: 19px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 24px;
}

/* Final CTA Section */
.v2-cta-final {
    padding: var(--spacing-section) 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.v2-cta-final .container {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-family: var(--font-serif);
    font-size: 54px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--spacing-element);
}

.cta-final-description {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.cta-final-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.cta-final-actions .btn-primary,
.cta-final-actions .btn-secondary {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-final-actions .btn-primary:hover,
.cta-final-actions .btn-secondary:hover {
    background: #f9f9f9;
}

.cta-glow {
    box-shadow: none;
    animation: none;
}

.cta-final-note {
    font-size: 14px;
    color: var(--color-muted);
    font-style: normal;
}

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

@keyframes voiceWave {
    0%, 100% {
        height: 40px;
        opacity: 0.5;
    }
    50% {
        height: 80px;
        opacity: 1;
    }
}

@keyframes brainGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 184, 77, 0.9);
    }
}

@keyframes brainPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(139, 92, 246, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .intelligence-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intelligence-visual {
        order: -1;
    }

    .transformation-comparison {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 767px) {
    .v2-hero {
        padding: 120px 16px 80px;
    }

    .v2-manifesto,
    .v2-conversation,
    .v2-scenarios,
    .v2-intelligence,
    .v2-transformation,
    .v2-principles,
    .v2-quote,
    .v2-future,
    .v2-cta-final {
        padding: 80px 0;
    }

    .conversation-grid,
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .scenario-item {
        flex-direction: column;
        gap: 20px;
    }

    .scenario-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .quote-text {
        font-size: 24px;
    }

    .cta-final-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-final-actions .btn-primary,
    .cta-final-actions .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .v2-hero-decoration {
        bottom: 40px;
        gap: 6px;
    }

    .voice-wave {
        width: 3px;
    }

    .voice-wave:nth-child(1),
    .voice-wave:nth-child(5) {
        height: 30px;
    }

    .voice-wave:nth-child(2),
    .voice-wave:nth-child(4) {
        height: 45px;
    }

    .voice-wave:nth-child(3) {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .v2-hero {
        padding: 100px 12px 60px;
    }

    .conversation-card,
    .principle-card,
    .comparison-column {
        padding: 32px 24px;
    }

    .ai-brain {
        width: 150px;
        height: 150px;
    }

    .brain-core {
        width: 60px;
        height: 60px;
    }

    .pulse-1 {
        width: 90px;
        height: 90px;
    }

    .pulse-2 {
        width: 120px;
        height: 120px;
    }

    .pulse-3 {
        width: 150px;
        height: 150px;
    }
}
