:root {
    --ah-bg: #0F0F0F;
    --ah-text: #F3E9DE;
    --ah-gold: #65b3dc;
    --ah-gray: rgba(243, 233, 222, 0.6);
    --ah-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*{
    margin: 0px;
}
.about-hero-wrapper {
    position: relative;
    min-height: 90vh;
    background-color: var(--ah-bg);
    color: var(--ah-text);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.hero-noise {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(15, 15, 15, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    animation: glowPulse 8s infinite alternate;
}

.hero-container-inner {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: gold;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ah-ease) forwards 0.2s;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background-color: gold;
}

.hero-heading {
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.block-reveal {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ah-ease) forwards;
}

.block-reveal:nth-child(1) { animation-delay: 0.3s; }
.block-reveal:nth-child(2) { animation-delay: 0.4s; }
.block-reveal:nth-child(3) { animation-delay: 0.5s; }

.text-gold {
    color: var(--ah-gold);
    font-style: italic;
}

.hero-desc {
    font-family: system-ui, sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: var(--ah-gray);
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s var(--ah-ease) forwards 0.6s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    animation: fadeUp 1s var(--ah-ease) forwards 0.7s;
}

.magnetic-btn {
    position: relative;
    display: inline-flex;
    padding: 16px 36px;
    border: 1px solid var(--ah-gold);
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-fill {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--ah-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ah-ease);
    z-index: 1;
}

.btn-label {
    position: relative;
    z-index: 2;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--ah-gold);
    transition: color 0.4s ease;
}

.magnetic-btn:hover .btn-fill {
    transform: scaleX(1);
    transform-origin: left;
}

.magnetic-btn:hover .btn-label {
    color: var(--ah-bg);
}

.magnetic-btn:active {
    transform: scale(0.95);
}

.trusted-badge {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 20px;
}

.badge-count {
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    color: var(--ah-text);
}

.badge-text {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--ah-gray);
    letter-spacing: 1px;
}

.hero-visual-side {
    position: relative;
    height: 600px;
    width: 100%;
    opacity: 0;
    animation: imageReveal 1.5s var(--ah-ease) forwards 0.4s;
}

.image-parallax-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.1s linear;
    filter: brightness(0.8) contrast(1.1);
}

.glass-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--ah-gold);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 10;
}

.card-icon {
    font-size: 24px;
}

.card-data {
    display: flex;
    flex-direction: column;
}

.data-num {
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    color: var(--ah-text);
}

.data-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ah-gray);
    margin-top: 4px;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes imageReveal {
    from { clip-path: inset(100% 0 0 0); transform: translateY(40px); opacity: 0; }
    to { clip-path: inset(0 0 0 0); transform: translateY(0); opacity: 1; }
}

@keyframes glowPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .about-hero-wrapper {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-container-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-visual-side {
        height: 400px;
        order: -1;
    }

    .glass-card {
        right: 20px;
        left: auto;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .trusted-badge {
        border-left: none;
        padding-left: 0;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .badge-count {
        font-size: 24px;
    }

    .glass-card {
        padding: 15px 20px;
        bottom: 20px;
        right: 10px;
    }

    .data-num {
        font-size: 22px;
    }
}


:root {
    --leg-bg: #F3E9DE;
    --leg-text: #ffffff;
    --leg-accent: #65b3dc;
    --leg-gold: #65b3dc;
    --ease-out: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.legacy-section {
    position: relative;
    padding: 120px 0;
      background-color: var(--ah-bg);

    color: var(--leg-text);
    overflow: hidden;
}

.legacy-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.legacy-header {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.legacy-header.in-view {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    display: inline-block;
    font-family: system-ui, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: gold;
    margin-bottom: 15px;
    border: 1px solid rgba(107, 79, 50, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
}

.legacy-title {
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--leg-text);
}

.text-accent {
    color: var(--leg-accent);
    font-style: italic;
}

/* Timeline Layout */
.timeline-wrapper {
    position: relative;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: rgba(107, 79, 50, 0.1);
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--leg-accent);
    transition: height 0.1s linear;
}

.milestone-item {
    position: relative;
    margin-bottom: 100px;
    padding-left: 40px;
}

.milestone-item:last-child {
    margin-bottom: 0;
}

.milestone-year {
    position: absolute;
    left: -65px;
    top: 0;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 24px;
    color: var(--leg-accent);
    font-weight: 700;
    background: var(--leg-bg);
    padding: 5px 0;
    z-index: 2;
    width: 80px;
    text-align: right;
    padding-right: 20px;
}

.milestone-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s var(--ease-out);
}

.milestone-item.active .milestone-content {
    opacity: 1;
    transform: translateX(0);
}

.milestone-content h3 {
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--leg-text);
}

.milestone-content p {
    font-family: system-ui, sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f8f8f8;
    max-width: 600px;
    margin-bottom: 30px;
}

.milestone-img {
    width: 100%;
    max-width: 600px;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(107, 79, 50, 0.1);
}

.milestone-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.milestone-item:hover .milestone-img img {
    transform: scale(1.05);
}

/* Stats Grid for Last Item */
.stat-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-n {
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 3rem;
    color: gold;
    line-height: 1;
}

.stat-l {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: gold;
    margin-top: 5px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .legacy-section { padding: 80px 0; }

    .timeline-wrapper { padding-left: 20px; }

    .milestone-year {
        position: relative;
        left: 0;
        top: 0;
        text-align: left;
        margin-bottom: 10px;
        padding-right: 0;
        font-size: 32px;
        color: var(--leg-gold);
    }

    .timeline-line {
        left: 0;
        display: none; /* Hide line on mobile for cleaner look */
    }

    .milestone-item {
        padding-left: 0;
        margin-bottom: 80px;
        border-left: 2px solid rgba(107, 79, 50, 0.1);
        padding-left: 20px;
    }

    .milestone-img { height: 250px; }

    .stat-grid { gap: 30px; }
}

:root {
    --proc-bg: #0F0F0F;
    --proc-card: rgba(255, 255, 255, 0.03);
    --proc-border: rgba(255, 255, 255, 0.08);
    --proc-gold: #65b3dc;
    --proc-text: #F3E9DE;
    --proc-muted: rgba(243, 233, 222, 0.6);
}

.process-section {
    background-color: var(--proc-bg);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--proc-border);
}

.process-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.process-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.process-tag {
    display: inline-block;
    font-family: system-ui, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--proc-gold);
    margin-bottom: 15px;
}

.process-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--proc-text);
    margin-bottom: 20px;
}

.process-title .text-gold {
    color: var(--proc-gold);
    font-style: italic;
}

.process-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--proc-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--proc-card);
    border: 1px solid var(--proc-border);
    padding: 40px 30px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bento-card:hover {
    border-color: var(--proc-gold);
    transform: translateY(-5px);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    line-height: 1;
}

.card-icon {
    color: gold;
    margin-bottom: 25px;
}

.card-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--proc-text);
    margin-bottom: 15px;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--proc-muted);
}

/* Reveal Animation Class */
.bento-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card {
        padding: 30px 20px;
    }

    .card-number {
        font-size: 40px;
    }
}
/* --- Material Section --- */
.materials-section {
    background-color: #141414; /* Slightly lighter than pure black */
    padding: 100px 0;
    color: var(--ah-text);
}

.mat-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.mat-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 50px;
}

.mat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mat-card {
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.mat-icon-box {
    color: gold;
    margin-bottom: 20px;
}

.mat-card h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.mat-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--ah-bg);
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.faq-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
}

.faq-desc {
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-link {
    color: gold;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid gold;
    padding-bottom: 5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item[open] {
    background: rgba(255,255,255,0.05);
}

.faq-item summary {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-plus {
    position: relative;
    width: 14px;
    height: 14px;
}

.faq-plus::before, .faq-plus::after {
    content: '';
    position: absolute;
    background: var(--ah-gold);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq-plus::before { width: 14px; height: 2px; }
.faq-plus::after { width: 2px; height: 14px; }

.faq-item[open] .faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-body {
    padding: 0 25px 25px 25px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease-out;
}

/* --- Insights & Interlinking --- */
.insights-link-section {
    padding: 80px 0 120px;
    background-color: var(--ah-bg);
}

.insights-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background: #1A1A1A;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-10px);
}

.insight-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.insight-card h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.insight-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.read-more-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.read-more-btn::after {
    content: '→';
}

.read-more-btn:hover {
    gap: 15px;
    color: var(--ah-gold);
}

.btn-solid {
    background: var(--ah-gold);
    color: #000 !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
        font-family: sans-serif;
}

.btn-solid::after { content: none; }

/* --- Mobile Queries (Ultra Responsive) --- */
@media (max-width: 1024px) {
    .mat-grid { grid-template-columns: 1fr; gap: 30px; }
    .faq-split { grid-template-columns: 1fr; gap: 40px; }
    .insights-container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .mat-title, .faq-title { font-size: 2.2rem; }
    .faq-item summary { font-size: 1rem; padding: 20px; }
    .insight-card { padding: 30px 20px; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
