:root {
    --mint: #00d285;
    --black: #0a0a0a;
    --white: #ffffff;
    --soft-gray: #f9f9fb;
    --studio-radius: 30px;
}

* { box-sizing: border-box; }

html {
    overflow-x: hidden;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    line-height: 1.5;
    overflow-x: hidden;
}


/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 8%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px); /* Glass effect over the grid */
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px;  }
.logo span { color: var(--mint); }
.navbar .logo img{
    width: 130px;
}

.nav-links { display: flex; align-items: center; gap: 40px; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-links a { text-decoration: none; color: #444; font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: #00d285; }

.btn-black { 
    background: var(--dark); color: white; border: none; 
    padding: 12px 24px; border-radius: 10px; font-weight: 600; cursor: pointer;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    margin-top: 5px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: var(--mint);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.menu-toggle:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 10px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: -1px;
        text-align: center;
    }

    .menu-toggle.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.open .bar:nth-child(2) { transform: translateY(0px) rotate(-45deg); }
}

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

/* Unified About Section */
.unified-about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.unified-about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 133, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Logo Showcase */
.logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-frame {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    transition: transform 0.3s ease;
}

.logo-frame:hover {
    transform: scale(1.05);
}

.logo-frame.primary {
    background: var(--black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logo-frame.secondary {
    background: linear-gradient(135deg, var(--mint) 0%, #00b875 100%);
    box-shadow: 0 20px 40px rgba(0, 210, 133, 0.25);
}

.logo-img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

.logo-frame.secondary .logo-img {
    filter: none;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 210, 133, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.status-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--mint);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--black), var(--mint));
    border-radius: 1px;
}

/* Main Content */
.content-main {
    padding-top: 20px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 210, 133, 0.1);
    color: var(--mint);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 210, 133, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 40px;
    color: var(--black);
}

.title-break {
    display: block;
}

.mint-highlight {
    color: var(--mint);
    position: relative;
}

.mint-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 210, 133, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    margin-bottom: 60px;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

/* Parent Company Section */
.parent-company {
    background: rgba(0, 210, 133, 0.05);
    border: 1px solid rgba(0, 210, 133, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.company-pill {
    display: inline-block;
    background: var(--mint);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.company-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.mint-text {
    color: var(--mint);
}

.company-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 30px;
}

.company-description strong {
    color: var(--black);
    font-weight: 700;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mint);
    font-family: 'Courier New', monospace;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    animation: blink 2s infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .logo-showcase {
        flex-direction: row;
        justify-content: center;
        margin: 0 auto;
    }
    
    .connector-line {
        width: 40px;
        height: 2px;
        background: linear-gradient(to right, var(--black), var(--mint));
    }
    
    .hero-description p {
        max-width: 100%;
        margin: 0 auto 20px;
    }
}

@media (max-width: 640px) {
    .unified-about-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .company-title {
        font-size: 1.5rem;
    }
    
    .parent-company {
        padding: 30px 20px;
    }
    
    .logo-showcase {
        flex-direction: column;
        gap: 20px;
    }
    
    .connector-line {
        width: 2px;
        height: 30px;
        background: linear-gradient(to bottom, var(--black), var(--mint));
    }
}

/* NAVIGATION */
.studio-nav { padding: 40px 0; position: sticky; top: 0; z-index: 100; }
.nav-pill {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid #eee;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);


}

:root {
    --mint: #00d285;
    --studio-black: #0c0c0c;
    --border-soft: #f0f0f0;
    --primary-text: #121212;
    --secondary-text: #6b7280;
}

.studio-manifesto-grid {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

/* TOP RAIL */
.manifesto-top-rail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #bbb;
}

/* THE GRID SYSTEM */
.main-grid-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Perfect balance */
    gap: 80px;
    align-items: center;
}



.studio-logo-img {
    width: 300px;
  
    height: auto;
    z-index: 2;
}

.frame-decor {
    position: absolute;
    width: 100%; height: 100%;
    background-image: radial-gradient(circle at 2px 2px, #000 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.03;
}

/* CONTENT COLUMN */
.display-heavy-studio {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -4px;
    margin: 0 0 40px 0;
}

.mint-shimmer {
    background: linear-gradient(90deg, var(--mint), #0081ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.description-block {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.description-rail {
    width: 4px;
    height: 100px;
    background: var(--studio-black);
    border-radius: 100px;
}

.description-block p {
    max-width: 480px;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--primary-text);
    margin: 0;
}

/* BOTTOM RAIL */
.manifesto-bottom-rail {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    color: #ddd;
}

.flagship-audit-v2 {
    padding: 20px 0;
    background: #ffffff;
}

.audit-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.display-title-v3 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    margin-top: 20px;
}

.header-right p {
    font-family: monospace;
    font-size: 11px;
    font-weight: 900;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* PORTAL CARDS */
.audit-portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.portal-card {
    background: #fbfbfb;
    border: 3px solid var(--studio-black);
    padding: 60px;
    position: relative;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.portal-card:hover {
    transform: translateY(-15px);
    box-shadow: 20px 20px 0px var(--mint);
}

.featured-portal {
    background: #000;
    color: #fff;
    border-color: #000;
}

.featured-portal:hover {
    box-shadow: 20px 20px 0px #333;
}

/* CARD META */
.portal-meta {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
}

.status-pulse {
    color: var(--mint);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CARD TEXT */
.portal-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 30px 0 20px 0;
    letter-spacing: -1px;
}

.portal-content p {
    color: #666;
    line-height: 1.6;
    max-width: 350px;
}

.featured-portal p { color: #aaa; }

/* ACTION BUTTONS */
.btn-node-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 20px 25px;
    margin-top: 40px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.featured-portal .btn-node-link {
    background: var(--mint);
    color: #000;
}

.link-icon {
    width: 20px;
    height: 20px;
    transition: 0.3s;
}

.btn-node-link:hover .link-icon {
    transform: translate(5px, -5px);
}

@media (max-width: 900px) {
    .audit-portal-grid { grid-template-columns: 1fr; }
    .audit-header-v2 { flex-direction: column; align-items: flex-start; }
}


.origin-story-v2 {
    padding: 140px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.origin-grid-v2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

/* CONTENT STYLING */
.display-heavy {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 25px 0;
}

.origin-desc {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

.pill-label {
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    color: var(--mint);
    letter-spacing: 3px;
}

/* HUB LIST STYLING */
.hub-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hub-item {
    border: 2px solid #eee;
    padding: 30px;
    border-radius: 24px;
    transition: 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.hub-item:hover {
    border-color: #000;
    transform: translateX(10px);
}

.active-hub {
    background: #fbfbfb;
    border-color: var(--mint);
}

.hub-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hub-city {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hub-tag {
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
    background: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}

.hub-meta {
    font-family: monospace;
    font-size: 10px;
    color: #aaa;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .origin-grid-v2 { grid-template-columns: 1fr; gap: 60px; }
    .display-heavy { font-size: 3rem; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .main-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .impact-logo-frame { padding: 60px; }
    .display-heavy-studio { font-size: 3.5rem; letter-spacing: -2px; }
}
.brand-unit { display: flex; align-items: center; gap: 12px; }
.logo-box {
    width: 35px; height: 35px; background: var(--black); color: var(--white);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-weight: 900;
}
.brand-name { font-weight: 800; font-size: 1.1rem; letter-spacing: -1px; }
.brand-name span { color: var(--mint); }

.system-status { font-family: monospace; font-size: 10px; font-weight: 900; display: flex; align-items: center; gap: 8px; color: #999; }
.pulse-dot { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; animation: pulse 1.5s infinite; }

/* HERO MANIFESTO */
.hero-manifesto { padding: 100px 0; }
.meta-label { font-family: monospace; font-size: 11px; font-weight: 900; color: var(--mint); margin-bottom: 25px; letter-spacing: 2px; }

.display-title {
    font-size: clamp(3.5rem, 10vw, 8.5rem);
    font-weight: 800; line-height: 0.9; letter-spacing: -5px; margin: 0;
}
.stagger-1 { margin-left: 10vw; }
.stagger-2 { margin-left: 20vw; }
.mint-shimmer {
    background: linear-gradient(90deg, var(--mint), #0081ff);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -moz-background-clip: text;
    font-style: italic;
}

.hero-footer { display: flex; justify-content: flex-end; margin-top: 60px; }
.manifesto-text { max-width: 550px; font-size: 1.4rem; color: #444; }

/* ═══════════════════════════════════════════════════════
   CORPORATE ANCHOR — Editorial Brutalist Redesign
   ═══════════════════════════════════════════════════════ */

.corporate-anchor {
    padding: 140px 0 120px;
    /* background: #fafaf8; */
    position: relative;
    overflow: hidden;
}

.anchor-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Section Header */
.anchor-section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.anchor-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
}

.anchor-headline {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.95;
    color: white;
    margin: 20px 0 0;
    text-align: center;
}

.anchor-accent {
    color: transparent;
    -webkit-text-stroke: 2px var(--mint);
    position: relative;
    display: inline-block;
}

/* Cards Stack */
.anchor-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Card V2 Base */
.anchor-card-v2 {
    background: #ffffff;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}


/* Dark variant */
.anchor-card-dark {
    background:black;
    border: none;
}


.anchor-card-dark .card-v2-title {
    color: #ffffff;
}

.anchor-card-dark .card-v2-desc {
    color: #9ca3af;
}

.anchor-card-dark .card-v2-tag {
    color: #6b7280;
    border: none;
}

.anchor-card-dark .tag-dot {
    background: var(--mint);
    box-shadow: 0 0 8px var(--mint);
}

.anchor-card-dark .card-v2-status {
    color: var(--mint);
    border: none;
    background: rgba(0, 210, 133, 0.05);
}

/* Card Inner Layout */
.card-v2-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 0;
    min-height: 380px;
}

/* Content Side */
.card-v2-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.card-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 28px;
    padding: 8px 14px;
    border: none;
    border-radius: 3px;
    width: fit-content;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: #0a0a0a;
    border-radius: 50%;
    animation: tagPulse 2.5s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.card-v2-title {
    font-size: clamp(2rem, 4vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    color: #0a0a0a;
    margin: 0 0 24px;
}

.card-v2-desc {
    font-size: 1.2rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 16px;
    max-width: 520px;
}

.card-v2-desc-secondary {
    font-size: 0.95rem;
    color: #6b7280;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.anchor-card-dark .card-v2-desc-secondary {
    border-top-color: #222;
}

.card-v2-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0a0a0a;
    margin-top: 28px;
    padding: 8px 16px;
    border: none;
    border-radius: 3px;
    width: fit-content;
}

.status-live-dot {
    width: 7px;
    height: 7px;
    background: var(--mint);
    border-radius: 50%;
    animation: tagPulse 2s infinite;
    box-shadow: 0 0 6px rgba(0, 210, 133, 0.5);
}

/* Visual Side */
.card-v2-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-left: none;
    overflow: hidden;
}

.anchor-card-dark .card-v2-visual {
    border-left: none;
}

.visual-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.frame-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(0, 210, 133, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

.frame-glow-dark {
    background: radial-gradient(circle, rgba(0, 210, 133, 0.15) 0%, transparent 70%);
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.card-v2-logo {
    width: 360px;
    height: auto;
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}


/* Grid Lines Decoration */
.visual-grid-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    pointer-events: none;
    z-index: 1;
}

.visual-grid-lines span {
    border-right: none;
}

.visual-grid-lines span:last-child {
    border-right: none;
}

.visual-grid-dark span {
    border-right: none;
}

/* Bottom Accent Bar */
.card-v2-border-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mint), #00b875, #009e5f);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}


.card-v2-border-accent-dark {
    background: linear-gradient(90deg, var(--mint), #00ffaa, var(--mint));
}

/* ═══ Responsive ═══ */
@media (max-width: 968px) {
    .corporate-anchor {
        padding: 100px 0 80px;
    }

    .anchor-section-header {
        margin-bottom: 60px;
    }

    .anchor-headline {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .card-v2-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .card-v2-content {
        padding: 40px;
    }

    .card-v2-visual {
        border-left: none;
        border-top: none;
        padding: 50px 40px;
    }

    .anchor-card-dark .card-v2-visual {
        border-top: none;
    }
}

@media (max-width: 640px) {
    .corporate-anchor {
        padding: 80px 0 60px;
    }

    .anchor-headline {
        font-size: 2.4rem;
        letter-spacing: -1.5px;
    }

    .card-v2-content {
        padding: 30px 24px;
    }

    .card-v2-title {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }

    .card-v2-desc {
        font-size: 0.95rem;
    }

    .card-v2-visual {
        padding: 40px 24px;
    }

    .card-v2-logo {
        width: 120px;
    }

    .visual-frame {
        width: 150px;
        height: 150px;
    }
}

/* FLAGSHIP AUDIT */
.flagship-audit { padding: 20px 0; }
.section-head { margin-bottom: 60px; }
.section-head h3 { font-size: 3rem; font-weight: 800; letter-spacing: -2px; }

.audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.audit-item { border: 2px solid var(--border-soft); padding: 60px; border-radius: var(--studio-radius); transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1); }
.audit-item:hover { transform: translateY(-15px); border-color: var(--black); box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
.item-head { display: flex; justify-content: space-between; margin-bottom: 40px; }
.asset-id { font-family: monospace; font-weight: 900; color: #ccc; }
.icon-wrap { font-size: 1.5rem; }
.audit-item h4 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.audit-item.featured { background: var(--soft-gray); border-color: var(--soft-gray); }

/* ORIGIN STORY */
.origin-story { padding: 100px 0; border-top: 1px solid #eee; }
.origin-flex { display: flex; justify-content: space-between; align-items: flex-end; }
.origin-text h2 { font-size: 4rem; font-weight: 800; margin: 0; letter-spacing: -3px; }
.mint-text { color: var(--mint); }
.origin-coordinates { font-family: monospace; font-size: 11px; color: #aaa; font-weight: 900; }

/* FOOTER */
.studio-footer { padding: 120px 0; background: var(--black); color: var(--white); border-radius: 60px 60px 0 0; }
.footer-cta h3 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.footer-mail { font-size: 2.5rem; font-weight: 800; color: var(--white); text-decoration: none; border-bottom: 5px solid var(--mint); }
.footer-bottom { margin-top: 100px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #333; padding-top: 40px; }
.footer-bottom p { font-size: 10px; font-weight: 800; color: #666; font-family: monospace; }
.collab-marquee { font-weight: 900; font-size: 12px; color: #444; letter-spacing: 5px; }

/* ANIMATIONS */
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.4; } }

@media (max-width: 1024px) {
    .display-title { font-size: 4rem; letter-spacing: -2px; }
    .stagger-1, .stagger-2, .hero-footer { margin-left: 0; }
    .anchor-grid, .audit-grid, .origin-flex { grid-template-columns: 1fr; flex-direction: column; gap: 40px; align-items: flex-start; }
}

.impact-logo-frame {
    padding: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 500px; /* Ensures consistent height */
}

/* THE IMAGE CONTAINER */
.diagram-overlay {
    position: absolute;
    width: 140%; /* Slightly larger to bleed off edges */
    height: auto;
    opacity: 0.15; /* Keeps it subtle and professional */
    filter: grayscale(1);
    transform: rotate(-5deg); /* Creative studio tilt */
    pointer-events: none;
    z-index: 1;
}


/* INTERFACE ACCENT */
.corner-status {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
    color: var(--mint);
    background: rgba(0, 210, 133, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 6;
}


/* CTA Section Layout */
.studio-cta {
    padding: 0px 8%;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.ultra-bold {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.1;
    margin: 30px 0;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* CTA Section */
.studio-cta {
    padding: 50px 8%;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.ultra-bold {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin: 30px 0;
}

.cta-sub {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 50px;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.btn-demo-white {
    background: #000;
    color: #fff;
    border: none;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-demo-white:hover {
    background: var(--mint);
    color: #000;
    transform: translateY(-5px);
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);    
}

.wa-icon {
    width: 35px;
    height: 35px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .action-row { flex-direction: column; gap: 30px; }
}


/* footer */


.studio-footer {
    padding: 100px 8% 40px;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #64748b;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 25px;
}

.footer-head {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #000;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--mint);
    padding-left: 5px;
}

.contact-detail {
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    text-decoration: none;
}

.contact-detail a {
    text-decoration: none;
    color: #000;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    font-size: 0.7rem;
    transition: 0.3s;
}

.social-links a:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
}

.back-to-top {
    background: none;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    color: #000;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* MODERN LANDING PAGE STYLES */
.hero-landing {
    min-height: 100vh;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-weight: 900;
    font-size: 0.8rem;
    color: rgba(0, 210, 133, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: float 6s ease-in-out infinite;
}

.elem-1 { top: 20%; left: 10%; animation-delay: 0s; }
.elem-2 { top: 60%; left: 85%; animation-delay: 1s; }
.elem-3 { top: 80%; left: 20%; animation-delay: 2s; }
.elem-4 { top: 30%; left: 75%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: pulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--mint), #0081ff);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    bottom: -150px;
    left: -50px;
    animation-delay: 4s;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

/* Hero Content Layout */
.hero-landing .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 210, 133, 0.1);
    border: 1px solid rgba(0, 210, 133, 0.2);
    padding: 12px 24px;
    border-radius: 100px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 210, 133, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--mint);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography */
.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.title-line {
    color: var(--black);
    margin-bottom: 0.1em;
}

.title-highlight {
    background: var(--mint);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    position: relative;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
    margin: 0;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--mint);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--black);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--mint);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 133, 0.3);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--black);
    color: white;
    transform: translateY(-3px);
}

.btn-play {
    font-size: 0.8rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-text {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    gap: 40px;
    align-items: center;
}

.logo-placeholder {
    font-weight: 800;
    color: #cbd5e1;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
}

.dashboard-preview {
    background: var(--black);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(400px); }
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.dashboard-title {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--mint);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-assistant {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    background: rgba(0, 210, 133, 0.1);
    border: 1px solid rgba(0, 210, 133, 0.2);
    border-radius: 12px;
    padding: 15px;
}

.assistant-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.assistant-message {
    flex: 1;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-10px); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-landing .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-landing {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .trust-logos {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .dashboard-preview {
        max-width: 100%;
    }
}
:root {
    --mint: #00d285;
    --dark: #0a0f0d;
    --gray: #64748b;
    --border: #f1f5f9;
}


.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    filter: opacity(.4);
}

.hero-main {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #e6fcf5;
    border: 1px solid rgba(0, 210, 133, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--mint);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.accent-text {
    color: var(--mint);
    text-shadow: 0 0 20px rgba(0, 210, 133, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.btn-primary-glow {
    background: var(--mint);
    color: #000;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(0, 210, 133, 0.3);
    transition: 0.3s;
}

.btn-primary-glow:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(0, 210, 133, 0.5); }

.btn-secondary {
    background: white; 
    border: 1px solid #e2e8f0;
    padding: 18px 36px; 
    border-radius: 12px; 
    font-weight: 700; 
    cursor: pointer;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-title { font-size: 2.8rem; }
    .onboarding-staggered{
        margin-top: -10px;
    }

}



/* 

.hero-main {
  margin-bottom: 0;
} */

/* Desktop only */
@media (min-width: 992px) {
  .hero-main {
    margin-bottom: 150px;
  }
}

/* Container for the specific card content */
.centered-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;   /* Centers horizontally in flex */
    justify-content: center !important;
    text-align: center !important;    /* Centers text */
    padding: 80px 40px !important;    /* Adjusted padding for a cleaner look */
    width: 100%;
}

/* Specific styling for the logo to ensure it's the right size and centered */
.card-v2-logo-centered {
    width: 320px;          /* Adjust the width as needed */
    height: auto;
    margin-bottom: 30px;   /* Space between logo and paragraph */
    display: block;
}

/* Ensure the description text doesn't span the full width of the screen */
.centered-block .card-v2-desc {
    max-width: 700px;      /* Keeps the line length readable */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #9ca3af;        /* Soft gray for readability on black */
}

/* Override the previous card-v2-inner grid if it still exists */
.anchor-card-dark .card-v2-inner {
    display: block !important; /* Disables the 2-column grid */
}

/* Re-center the headline just in case */
.anchor-headline {
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 40px;
}