        :root {
            --forge-orange: #C45D2E;
            --forge-orange-light: #E8845A;
            --forge-orange-dark: #8B3D1A;
            --steel-gray: #3A3D42;
            --steel-gray-light: #5A5D62;
            --trust-blue: #1E4D6B;
            --trust-blue-light: #2A6A94;
            --cream: #FAF7F2;
            --cream-dark: #EDE8DF;
            --charcoal: #1C1D1F;
            --text-primary: #2C2D2F;
            --text-secondary: #5A5C5E;
            --gold-accent: #B8860B;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Sans 3', sans-serif;
            background-color: var(--cream);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 17px;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 247, 242, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(196, 93, 46, 0.1);
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--charcoal);
        }

        .logo-icon {
            width: 48px;
            height: 48px;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .logo-tagline {
            font-size: 0.7rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-top: -2px;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--forge-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--forge-orange);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--forge-orange);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--forge-orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(196, 93, 46, 0.3);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 2rem 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(196, 93, 46, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 77, 107, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--forge-orange) 0%, var(--forge-orange-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

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

        .btn-primary:hover {
            background: var(--forge-orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 93, 46, 0.35);
        }

        .btn-secondary {
            background: transparent;
            color: var(--charcoal);
            border: 2px solid var(--steel-gray-light);
        }

        .btn-secondary:hover {
            border-color: var(--charcoal);
            background: var(--charcoal);
            color: white;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.8rem;
            animation: float 2s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        .hero-scroll span {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--text-secondary), transparent);
        }

        /* Section Styles */
        section {
            padding: 100px 2rem;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--forge-orange);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Problem Section */
        .problem {
            background: var(--charcoal);
            color: white;
        }

        .problem .section-label {
            color: var(--forge-orange-light);
        }

        .problem .section-title {
            color: white;
        }

        .problem .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .problem-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .problem-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            border-color: var(--forge-orange);
        }

        .problem-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--forge-orange) 0%, var(--forge-orange-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .problem-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .problem-conclusion {
            margin-top: 4rem;
            padding: 3rem;
            background: rgba(196, 93, 46, 0.15);
            border-radius: 16px;
            border: 1px solid rgba(196, 93, 46, 0.3);
        }

        .problem-conclusion p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--forge-orange-light);
        }

        /* Vision Section */
        .vision {
            background: linear-gradient(180deg, var(--cream) 0%, white 100%);
            position: relative;
        }

        .vision-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .vision-text h3 {
            font-size: 2.25rem;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }

        .vision-text p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .vision-pillars {
            display: grid;
            gap: 1.5rem;
        }

        .vision-pillar {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .vision-pillar:hover {
            transform: translateX(10px);
            border-color: var(--forge-orange);
            box-shadow: 0 8px 30px rgba(196, 93, 46, 0.1);
        }

        .vision-pillar-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--trust-blue) 0%, var(--trust-blue-light) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .vision-pillar h4 {
            font-size: 1.15rem;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .vision-pillar p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Solution Section */
        .solution {
            background: white;
        }

        .solution-intro {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
            border-radius: 20px;
        }

        .solution-intro-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--forge-orange) 0%, var(--forge-orange-dark) 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            flex-shrink: 0;
        }

        .solution-intro-text h3 {
            font-size: 2rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .solution-intro-text p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .solution-metaphor {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-style: italic;
            color: var(--forge-orange-dark);
            border-left: 4px solid var(--forge-orange);
            padding-left: 1.5rem;
            margin-top: 1.5rem;
        }

        /* Nessi Grid */
        .nessi-title {
            margin-bottom: 3rem;
        }

        .nessi-title h3 {
            font-size: 2rem;
            color: var(--charcoal);
        }

        .nessi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .nesso-card {
            background: var(--cream);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nesso-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--forge-orange) 0%, var(--trust-blue) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .nesso-card:hover::before {
            transform: scaleX(1);
        }

        .nesso-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }

        .nesso-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--forge-orange);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .nesso-card h4 {
            font-size: 1.25rem;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
        }

        .nesso-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Technology Section */
        .technology {
            background: var(--trust-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .technology::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .technology .section-label {
            color: rgba(255, 255, 255, 0.6);
        }

        .technology .section-title {
            color: white;
        }

        .technology .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }

        .tech-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 3rem;
            transition: all 0.3s ease;
        }

        .tech-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: scale(1.02);
        }

        .tech-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--forge-orange) 0%, var(--forge-orange-dark) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .tech-card h3 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .tech-card .tech-subtitle {
            font-size: 1rem;
            color: var(--forge-orange-light);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .tech-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .tech-features {
            list-style: none;
            margin-top: 1.5rem;
        }

        .tech-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.75rem;
        }

        .tech-features li::before {
            content: '→';
            color: var(--forge-orange-light);
            font-weight: bold;
        }

        /* Beneficiaries Section */
        .beneficiaries {
            background: linear-gradient(180deg, white 0%, var(--cream) 100%);
        }

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

        .beneficiary-card {
            display: flex;
            gap: 1.5rem;
            padding: 2.5rem;
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .beneficiary-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--forge-orange);
        }

        .beneficiary-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .beneficiary-content h3 {
            font-size: 1.35rem;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
        }

        .beneficiary-content p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Why Now Section */
        .why-now {
            background: var(--cream);
        }

        .why-now-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .why-now-text h3 {
            font-size: 2.25rem;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }

        .why-now-text p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .convergence-cards {
            display: grid;
            gap: 1.5rem;
        }

        .convergence-card {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            background: white;
            border-radius: 14px;
            border-left: 4px solid var(--forge-orange);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .convergence-card:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .convergence-icon {
            width: 50px;
            height: 50px;
            background: var(--forge-orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .convergence-card h4 {
            font-size: 1.15rem;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .convergence-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Team Section */
        .team {
            background: white;
        }

        .team-intro {
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .team-intro p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

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

        .team-subsection {
            margin-bottom: 4rem;
        }

        .team-subsection:last-child {
            margin-bottom: 0;
        }

        .team-subsection-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--forge-orange);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .team-card {
            padding: 2.5rem 2rem;
            background: var(--cream);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 0 1.5rem;
            overflow: hidden;
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card h3 {
            font-size: 1.35rem;
            color: var(--charcoal);
            margin-bottom: 0.25rem;
        }

        .team-role {
            font-size: 0.9rem;
            color: var(--forge-orange);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-bio {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Partnership Section */
        .partnership {
            background: linear-gradient(135deg, var(--charcoal) 0%, #2a2c30 100%);
            color: white;
        }

        .partnership .section-label {
            color: var(--forge-orange-light);
        }

        .partnership .section-title {
            color: white;
        }

        .partnership .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .partnership-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .partnership-benefits h3 {
            font-size: 1.75rem;
            margin-bottom: 2rem;
        }

        .benefit-item {
            display: flex;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: var(--forge-orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .benefit-item h4 {
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
        }

        .benefit-item p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .partnership-ask {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
        }

        .partnership-ask h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .ask-amount {
            font-size: 3rem;
            font-weight: 700;
            color: var(--forge-orange-light);
            margin-bottom: 0.5rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .ask-period {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        .ask-uses {
            list-style: none;
        }

        .ask-uses li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .ask-uses li::before {
            content: '✓';
            color: var(--forge-orange-light);
            font-weight: bold;
            flex-shrink: 0;
        }

        /* Governance Section */
        .governance {
            background: var(--cream);
        }

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

        .governance-card {
            padding: 2.5rem;
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .governance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }

        .governance-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--trust-blue) 0%, var(--trust-blue-light) 100%);
            border-radius: 14px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .governance-card h3 {
            font-size: 1.35rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .governance-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Blog Section */
        .blog {
            background: white;
        }

        .blog-intro {
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .blog-intro p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
        }

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

        .blog-card {
            background: var(--cream);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .blog-card-header {
            height: 160px;
            background: linear-gradient(135deg, var(--forge-orange) 0%, var(--forge-orange-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .blog-card-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.2);
        }

        .blog-card-content {
            padding: 2rem;
        }

        .blog-card-date {
            font-size: 0.8rem;
            color: var(--forge-orange);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .blog-card h3 {
            font-size: 1.25rem;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .blog-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .blog-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--forge-orange);
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: gap 0.3s ease;
        }

        .blog-link:hover {
            gap: 0.75rem;
        }

        .blog-cta {
            margin-top: 3rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--forge-orange) 0%, var(--forge-orange-dark) 100%);
            color: white;
            padding: 80px 2rem;
        }

        .cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }

        .cta p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .cta .btn {
            background: white;
            color: var(--forge-orange-dark);
        }

        .cta .btn:hover {
            background: var(--cream);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            background: var(--charcoal);
            color: white;
            padding: 60px 2rem 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.1rem;
            color: var(--forge-orange-light);
        }

        .footer-column h4 {
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--forge-orange-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--forge-orange);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .vision-content,
            .why-now-content,
            .partnership-content {
                grid-template-columns: 1fr;
            }

            .tech-grid,
            .beneficiaries-grid,
            .team-grid,
            .governance-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 1.5rem;
            }

            .hero {
                padding: 100px 1.5rem 60px;
            }

            .solution-intro {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
            }
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--cream);
            z-index: 999;
            padding: 100px 2rem;
            flex-direction: column;
            gap: 2rem;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            font-size: 1.5rem;
            color: var(--charcoal);
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Blog Card Accordion */
        .blog-card {
            cursor: pointer;
        }

        .blog-card.expanded {
            grid-column: 1 / -1;
        }

        .blog-card.expanded:hover {
            transform: none;
        }

        .blog-card-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--forge-orange);
            font-weight: 600;
            margin-top: 1rem;
            transition: gap 0.3s ease;
        }

        .blog-card-toggle::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .blog-card.expanded .blog-card-toggle::after {
            transform: rotate(90deg);
        }

        .blog-card-accordion {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            padding: 0 2rem;
            background: var(--warm-white);
            border-top: 1px solid transparent;
        }

        .blog-card.expanded .blog-card-accordion {
            max-height: 2000px;
            padding: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .blog-card-accordion h4 {
            font-size: 1.1rem;
            color: var(--charcoal);
            margin: 1.5rem 0 0.75rem 0;
            font-weight: 600;
        }

        .blog-card-accordion h4:first-child {
            margin-top: 0;
        }

        .blog-card-accordion p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .blog-card-accordion blockquote {
            border-left: 3px solid var(--forge-orange);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: var(--charcoal);
        }

        .blog-card-accordion ul, .blog-card-accordion ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .blog-card-accordion li {
            margin-bottom: 0.5rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .blog-card-accordion strong {
            color: var(--charcoal);
        }

        .blog-card-accordion em {
            color: var(--forge-orange-dark);
        }

/* ============================================================
   Componenti aggiunti col redesign 2026-08 (multi-pagina)
   ============================================================ */

/* Nav: dropdown Fondamenta */
.nav-links { gap: 2rem; }
.nav-links a { white-space: nowrap; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-dropdown .caret { font-size: 0.6rem; transform: translateY(1px); }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.nav-dropdown-menu-inner {
    background: var(--cream);
    border: 1px solid rgba(196, 93, 46, 0.15);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
    min-width: 240px;
}
.nav-dropdown-menu-inner a {
    display: block;
    padding: 0.5rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.nav-dropdown-menu-inner a:hover {
    color: var(--forge-orange);
    background: rgba(196, 93, 46, 0.06);
}
.mobile-nav .mobile-nav-group {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}
.mobile-nav a.sub { padding-left: 1rem; font-size: 0.95rem; }

/* Hero interno (pagine non-landing) */
.page-hero {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.page-hero .page-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--forge-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--charcoal);
    max-width: 900px;
    margin: 0 auto 1.25rem;
}
.page-hero .page-hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto;
}
/* Riga di collocazione: ogni pagina interna e' una porta d'ingresso dalla
   ricerca, e chi ci atterra deve sapere di chi sta leggendo prima di scorrere. */
.page-hero .page-hero-collocazione {
    font-size: 1rem;
    max-width: 760px;
    margin: 1.25rem auto 0;
}
.page-hero .hero-cta-group { margin-top: 2rem; justify-content: flex-start; }

/* Le porte (landing ask) */
.doors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.door-card {
    background: white;
    border: 1px solid rgba(196, 93, 46, 0.12);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.door-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.door-card.door-primary {
    border: 2px solid var(--forge-orange);
    background: linear-gradient(180deg, #fff 0%, rgba(196, 93, 46, 0.04) 100%);
}
.door-card .door-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--forge-orange);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.door-card h3 {
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}
.door-card p { color: var(--text-secondary); flex-grow: 1; }
.door-card .btn { margin-top: 1.5rem; align-self: flex-start; }

/* Fatti verificabili (Oggi) */
.facts-list { max-width: 860px; margin: 2.5rem auto 0; }
.fact-row {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(58, 61, 66, 0.12);
}
.fact-row:last-child { border-bottom: none; }
.fact-row .fact-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    min-width: 260px;
}
.fact-row .fact-state { color: var(--text-secondary); }

/* Passi numerati (come funziona / founder) */
.steps-list { max-width: 860px; margin: 2.5rem auto 0; counter-reset: step; }
.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(58, 61, 66, 0.12);
}
.step-item:last-child { border-bottom: none; }
.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--forge-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
}
.step-item h4 {
    font-size: 1.35rem;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}
.step-item p { color: var(--text-secondary); }

/* Archetipi Genesis */
.archetypes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.archetype-card {
    background: white;
    border: 1px solid rgba(58, 61, 66, 0.1);
    border-radius: 10px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.archetype-card h4 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
}
.archetype-card .archetype-product {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forge-orange);
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.archetype-card p { color: var(--text-secondary); font-size: 0.97rem; }

/* Box nota / placeholder */
.note-box {
    max-width: 860px;
    margin: 3rem auto 0;
    background: rgba(184, 134, 11, 0.07);
    border-left: 4px solid var(--gold-accent);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
}

/* Prosa generica su pagina interna */
.prose-block { max-width: 860px; margin: 0 auto; }
.prose-block + .prose-block { margin-top: 2rem; }
/* Uscita: il periodo in coda a una pagina delle Fondamenta, che porta a una
   delle porte. In prosa, con il rimando dentro la frase — mai un blocco di
   bottoni (DD, agosto 2026). */
.prose-block.uscita {
    margin-top: 3.5rem;
    padding-top: 2rem;
}
.prose-block h3 {
    font-size: 1.7rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}
.prose-block p { color: var(--text-secondary); margin-bottom: 1rem; }

@media (max-width: 968px) {
    .doors-grid { grid-template-columns: 1fr; }
    .fact-row { flex-direction: column; gap: 0.25rem; }
    .fact-row .fact-name { min-width: 0; }
    .page-hero { padding: 8rem 1.5rem 3rem; }
}
.subpage > section:first-child { padding-top: 8rem; }

/* Paragrafi consecutivi: stacco dopo il punto che introduce (direttiva DD 2026-08-18) */
.hero-content .hero-subtitle { margin-bottom: 1.25rem; }
.hero-content .hero-subtitle:last-of-type { margin-bottom: 2.5rem; }
.section-header .section-subtitle + .section-subtitle { margin-top: 1rem; }
.step-item p + p { margin-top: 0.85rem; }
.door-card p + p { margin-top: 0.85rem; }
.cta p + p { margin-top: -1.5rem; }

/* Testo a bandiera come il sito EN: niente giustificato, niente sillabazione.
   Gli a capo si governano con colonne strette e wrap tipografico. */
body { -webkit-hyphens: none; hyphens: none; }
p, li, dd, td, .hero-subtitle, .section-subtitle { text-wrap: pretty; }
h1, h2, h3, h4, h5 { text-wrap: balance; }
