/* Local Fonts */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/Inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/Inter-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/Inter-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/Inter-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Instrument Serif';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/InstrumentSerif-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Instrument Serif';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/InstrumentSerif-italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/PlayfairDisplay-600.woff2') format('woff2');
}

/* 
   GROWFULDA - FUNDORY CLONE
   High-end elegance tech. Soft dark backgrounds, mixed typography, huge border-radii.
*/

:root {
    /* Fundory Dark Palette -> Deep Black Theme */
    --f-bg: #000000;
    /* Deep Black */
    --f-card: #0a0a0a;
    /* Very dark gray for cards */
    --f-card-hover: #141414;

    /* Typography Colors */
    --f-text: #ffffff;
    /* Pure white */
    --f-muted: #888888;
    /* Dimmed text */

    /* Accents & Borders */
    --f-border: rgba(255, 255, 255, 0.1);
    /* Faint border */
    --f-accent: #0A84FF;
    /* iCloud Blue */

    /* Fonts Setup - Only Inter */
    --font-heading: 'Inter', -apple-system, sans-serif;
    --font-italic: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Extremely rounded corners */
    --radi-sm: 12px;
    --radi-md: 24px;
    --radi-lg: 32px;
    --radi-pill: 100px;
}

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

body,
html {
    font-family: var(--font-body);
    color: var(--f-text);
    background-color: var(--f-bg);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* =========================================
   Intro Animation Overlay
   ========================================= */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--f-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Optional: add a subtle gradient if desired, or keep it solid black */
    background: radial-gradient(circle at center, #111111 0%, #050505 100%);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 15px;
    /* For standard styling without text */
}

.intro-logo {
    height: 64px;
    width: auto;
    opacity: 0;
}

.intro-text {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--f-text);
    opacity: 0;
}

/* =========================================
   Typography
   ========================================= */
.f-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.f-section {
    padding: 8vw 0;
    position: relative;
    z-index: 2;
}

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

.mb-small {
    margin-bottom: 1.5rem;
}

.mb-large {
    margin-bottom: 4rem;
}

.mt-0 {
    margin-top: 0;
}

/* ------------------- TYPOGRAPHY & THE ITALIC TRICK ------------------- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* The Fundory magic: Mixing standard font with italic */
.f-italic {
    font-family: var(--font-italic);
    font-weight: 300;
    font-style: italic;
    /* Remains italic, but now uses Inter */
    color: var(--f-accent);
    /* Make italic standout with iCloud Blue */
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--f-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.body-text {
    font-size: 1.125rem;
    color: var(--f-muted);
    font-weight: 300;
}

/* Fundory Pill Badges */
.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radi-pill);
    border: 1px solid var(--f-border);
    font-size: 0.85rem;
    color: var(--f-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.03);
}

/* ------------------- BUTTONS ------------------- */
.f-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radi-pill);
    /* Fundory buttons are always pills */
    transition: all 0.3s ease;
    cursor: pointer;
}

.f-btn-primary {
    background-color: var(--f-text);
    color: var(--f-bg);
    padding: 12px 28px;
}

.f-btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.f-btn-outline {
    background-color: transparent;
    color: var(--f-text);
    border: 1px solid var(--f-border);
    padding: 12px 28px;
}

.f-btn-outline:hover {
    background-color: var(--f-card);
    border-color: rgba(255, 255, 255, 0.2);
}

.f-btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.f-btn-full {
    width: 100%;
    padding: 16px;
}

/* ------------------- AMBIENT GLOWS (No images needed) ------------------- */
.fundory-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    /* Soft presence */
}

/* iCloud Blue Glow (Top right) */
.glow-1 {
    top: -10vw;
    right: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.4) 0%, transparent 70%);
}

/* Deep Blue Glow (Mid left) */
.glow-2 {
    top: 40vh;
    left: -20vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.3) 0%, transparent 70%);
    opacity: 0.3;
}


/* ------------------- HEADER ------------------- */
.f-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-logo {
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.f-nav {
    display: flex;
    gap: 2.5rem;
    background: rgba(20, 20, 20, 0.8);
    padding: 10px 30px;
    border-radius: var(--radi-pill);
    border: 1px solid var(--f-border);
    backdrop-filter: blur(10px);
}

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

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


/* ------------------- HERO ------------------- */
.hero-section {
    padding-top: 22vh;
    min-height: 90vh;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* ------------------- 0. ABOUT / FOUNDERS MESSAGE ------------------- */
.about-section {
    padding-top: 15vh;
    padding-bottom: 5vh;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.founders-message {
    display: flex;
    align-items: center;
}

.founders-avatars {
    display: flex;
    align-items: center;
    position: relative;
}

.founders-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--f-bg);
    margin-right: -15px;
    position: relative;
    z-index: 1;
}

.founders-avatars img:nth-child(2) {
    z-index: 2;
}

.founders-avatars img:nth-child(3) {
    z-index: 3;
}

.founders-info {
    margin-left: 25px;
    display: flex;
    flex-direction: column;
}

.f-title {
    font-size: 0.95rem;
    color: var(--f-text);
    font-weight: 500;
}

.massive-text {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.text-right {
    text-align: right;
}

/* ------------------- 1. MISSION & VISION (ICON BLOCKS) ------------------- */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    padding: 2rem 0;
}

.mission-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--f-text);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

/* Base glowing pulse effect */
.pulse-glow::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(10, 132, 255, 0.8) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0.8;
    animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        filter: blur(8px);
        transform: translateX(-50%) scale(0.9);
    }

    100% {
        opacity: 1;
        filter: blur(12px);
        transform: translateX(-50%) scale(1.1);
    }
}

.floating-icon {
    animation: floatIcon 4s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    position: relative;
    z-index: 2;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.mission-block h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.mission-block p {
    color: var(--f-muted);
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
}

/* ------------------- 2. OUR APPROACH SECTION (STICKY MULTIPAGE) ------------------- */
.approach-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8vw;
    align-items: flex-start;
}

.approach-sidebar {
    position: sticky;
    top: 140px;
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 50vh;
    /* Allow scrolling room for sticky effect */
}

.a-card {
    display: flex;
    gap: 2.5rem;
    padding: 3rem;
    background: linear-gradient(145deg, #111116 0%, var(--f-card) 100%);
    border: 1px solid var(--f-border);
    border-radius: var(--radi-lg);
    transition: transform 0.4s ease, border-color 0.4s ease;

    /* STICKY STACKING EFFECT */
    position: sticky;
    top: 140px;
    /* Offset to stack below header */
    transform-origin: top center;
}

/* Offset top spacing for natural stacking */
.a-card:nth-child(1) {
    top: 140px;
}

.a-card:nth-child(2) {
    top: 160px;
}

.a-card:nth-child(3) {
    top: 180px;
}

.a-card:hover {
    border-color: rgba(10, 132, 255, 0.3);
}

.a-card:hover .floating-icon {
    transform: translateY(-5px) scale(1.1);
    transition: transform 0.3s ease;
}

.a-icon-box {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
    color: var(--f-accent);
    position: relative;
    overflow: hidden;
}

.a-icon-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 0;
}

.a-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.a-content p {
    color: var(--f-muted);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ------------------- 3. BENTO GRID (REAL DATA / ANIMATED) ------------------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 900px) {
    .bento-card:nth-child(1) {
        grid-column: span 2;
    }

    .bento-card:nth-child(2) {
        grid-column: span 1;
    }

    .bento-card:nth-child(3) {
        grid-column: span 1;
    }

    .bento-card:nth-child(4) {
        grid-column: span 2;
    }
}

.bento-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--f-card);
    border: 1px solid var(--f-border);
    border-radius: var(--radi-lg);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Mouse tracking radial gradient */
.interactive-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.interactive-glow:hover::after {
    opacity: 1;
}

.bento-card:hover {
    border-color: rgba(10, 132, 255, 0.2);
}

.bento-graphic {
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    /* Below the hover glow */
}

/* Chart SVG Animation */
.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line-svg,
.chart-line-secondary {
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
}

.chart-svg.animate .chart-line-svg,
.chart-svg.animate .chart-line-secondary {
    animation: drawLine 2s ease-out forwards;
}

.chart-fill {
    opacity: 0;
    transform: translateY(20px);
}

.chart-svg.animate .chart-fill {
    animation: fadeUpFill 1.5s ease-out 1s forwards;
}

.chart-point,
.chart-tooltip {
    opacity: 0;
    transform: translateY(10px);
}

.chart-svg.animate .chart-point,
.chart-svg.animate .chart-tooltip {
    animation: fadeUpTooltip 1s ease-out 1.5s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeUpFill {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUpTooltip {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stationary Beam Animation */
.stationary-beam {
    opacity: 0;
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-svg.animate .stationary-beam {
    animation: growBeam 1.5s ease-out forwards;
    animation-delay: 2s;
    /* Start after line draws */
}

@keyframes growBeam {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}


.glow-graphic {
    background: radial-gradient(circle at center bottom, rgba(10, 132, 255, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.envelope-graphic {
    background: radial-gradient(circle at center center, rgba(10, 132, 255, 0.15) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    padding-top: 50px;
}

/* ------------------- BENTO ENVELOPE ANIMATION ------------------- */
.envelope-wrapper {
    position: relative;
    width: 180px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 40px;
    z-index: 2;
    perspective: 1000px;
}

.envelope {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.envelope-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.4), rgba(5, 60, 150, 0.6));
    border-radius: 8px;
    z-index: 1;
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.2);
}

.envelope-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: 8px;
    background: transparent;
    overflow: hidden;
}

.envelope-front::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 132, 255, 0.7);
    clip-path: polygon(0 0, 50% 50%, 100% 0, 100% 100%, 0 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(10, 132, 255, 0.6);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 4;
    border-radius: 8px 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.envelope-letter {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
    display: flex;
    justify-content: center;
}

.envelope-icons {
    position: absolute;
    top: -20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.env-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px) scale(0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.env-icon-box img {
    width: 24px;
    height: 24px;
}

/* Hover/Active Animations for Envelope */
.bento-card.active .envelope-flap,
.bento-card:hover .envelope-flap {
    transform: rotateX(160deg);
    z-index: 1;
    /* Drop flap behind the letter when opened */
}

.bento-card.active .envelope-letter,
.bento-card:hover .envelope-letter {
    transform: translateY(-40px);
}

.bento-card.active .env-icon-box,
.bento-card:hover .env-icon-box {
    opacity: 1;
}

/* Stagger popping icons */
.bento-card.active .env-icon-1,
.bento-card:hover .env-icon-1 {
    transform: translateY(-20px) scale(0.9);
    transition-delay: 0.3s;
}

.bento-card.active .env-icon-2,
.bento-card:hover .env-icon-2 {
    transform: translateY(-50px) scale(1.1);
    transition-delay: 0.4s;
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.5);
}

.bento-card.active .env-icon-3,
.bento-card:hover .env-icon-3 {
    transform: translateY(-20px) scale(0.9);
    transition-delay: 0.5s;
}

.bento-text {
    padding: 2.5rem;
    position: relative;
    z-index: 3;
}

.bento-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.1rem;
    font-weight: 500;
}

.bento-text p {
    color: var(--f-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

/* ------------------- BENTO CARD: BAR CHART ------------------- */
.bar-graphic {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.b-bar {
    width: 30px;
    background: rgba(10, 132, 255, 0.15);
    border-radius: 6px 6px 0 0;
    position: relative;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card.active .b-bar-1 {
    transform: scaleY(1);
    height: 100px;
    transition-delay: 0.1s;
}

.bento-card.active .b-bar-2 {
    transform: scaleY(1);
    height: 160px;
    transition-delay: 0.2s;
}

.bento-card.active .highlight {
    transform: scaleY(1);
    height: 220px;
    transition-delay: 0.3s;
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.8) 0%, rgba(10, 132, 255, 0.2) 100%);
    box-shadow: 0 0 30px rgba(10, 132, 255, 0.4);
    z-index: 2;
}

.bento-card.active .b-bar-4 {
    transform: scaleY(1);
    height: 140px;
    transition-delay: 0.4s;
}

.bento-card.active .b-bar-5 {
    transform: scaleY(1);
    height: 180px;
    transition-delay: 0.5s;
}

.b-point {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--f-accent);
    opacity: 0;
}

.bento-card.active .highlight .b-point {
    opacity: 1;
    transition: opacity 0.5s ease 0.8s;
}

/* ------------------- BENTO CARD: UI ELEMENTS ------------------- */
.ui-graphic {
    position: relative;
    background: radial-gradient(circle at center, rgba(10, 132, 255, 0.05) 0%, transparent 70%);
}

.ui-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(10, 132, 255, 0.15);
    filter: blur(50px);
    border-radius: 50%;
}

.ui-float-1,
.ui-float-2 {
    position: absolute;
    background: rgba(30, 30, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
}

.bento-card.active .ui-float-1 {
    animation: floatUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bento-card.active .ui-float-2 {
    animation: floatUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

@keyframes floatUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ui-float-1 {
    top: 40px;
    left: 10%;
    z-index: 3;
}

.ui-float-2 {
    top: 90px;
    right: 15%;
    width: 60%;
    padding: 1.5rem;
    z-index: 2;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #222;
    margin-right: -12px;
}

.avatar-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 5;
}

.badge-tag {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--f-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 6;
    box-shadow: 0 4px 10px rgba(10, 132, 255, 0.4);
}

.mock-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.mock-progress-bar-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    height: 12px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.mock-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(10, 132, 255, 0.5) 0%, var(--f-accent) 100%);
    border-radius: 6px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.bento-card.active .mock-progress-bar {
    width: 67%;
}

.mock-progress-text {
    position: absolute;
    right: 10px;
    top: -1px;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 14px;
}

.mock-circle-progress {
    width: 48px;
    height: 48px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke: var(--f-accent);
    stroke-dasharray: 0, 100;
    transition: stroke-dasharray 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1s;
}

.bento-card.active .circle {
    stroke-dasharray: 67, 100;
}

.percentage {
    fill: #fff;
    font-family: inherit;
    font-size: 0.5em;
    text-anchor: middle;
}

/* ------------------- SERVICES (PRICING) ------------------- */
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

@media (max-width: 1100px) {
    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4col {
        grid-template-columns: 1fr;
    }
}

.service-icon-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    overflow: hidden;
    position: relative;
    background: #0d0d10;
    border: 1px solid var(--f-border);
    border-radius: var(--radi-lg);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.service-icon-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(77, 163, 255, 0.4) 0%, rgba(10, 132, 255, 0) 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.service-icon-card:hover {
    transform: translateY(-10px);
    border-color: rgba(10, 132, 255, 0.4);
}

.service-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-svg {
    width: 80px;
    height: 80px;
    color: #4da3ff;
    filter: drop-shadow(0 0 15px rgba(10, 132, 255, 0.6));
    transition: transform 0.5s ease;
}

.service-icon-card:hover .service-svg {
    transform: scale(1.1);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #4da3ff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-content p {
    color: #d0d0dc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

/* ------------------- FAQ (Clean List Style) ------------------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--f-border);
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2rem 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--f-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--f-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, background 0.3s;
    font-size: 1.2rem;
    font-weight: 300;
}

.faq-header:hover .faq-icon {
    background: var(--f-text);
    color: var(--f-bg);
    border-color: var(--f-text);
}

.faq-header.active .faq-icon {
    transform: rotate(45deg);
    background: var(--f-text);
    color: var(--f-bg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body p {
    padding-bottom: 2rem;
    color: var(--f-muted);
    font-weight: 300;
    max-width: 90%;
    line-height: 1.8;
}

/* ------------------- massive CALENDLY CTA ------------------- */
.massive-cta-card {
    background: radial-gradient(circle at center, #111111 0%, var(--f-card) 100%);
    border: 1px solid var(--f-border);
    border-radius: 40px;
    /* Gigantic radius */
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.cta-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-sub {
    color: var(--f-muted);
    font-size: 1.125rem;
    font-weight: 300;
}

.calendly-embed-area {
    background: transparent;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 700px;
}

.mock-calendly {
    text-align: center;
    color: var(--f-muted);
}

/* ------------------- FOOTER ------------------- */
.f-footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--f-border);
    background: #050505;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--f-muted);
    margin: 1rem 0;
    font-weight: 300;
    max-width: 250px;
}

.footer-mail {
    color: var(--f-text);
    text-decoration: none;
    font-size: 1.1rem;
}

.footer-title {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-link {
    display: block;
    color: var(--f-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--f-text);
}

.footer-line {
    height: 1px;
    background: var(--f-border);
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    color: var(--f-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ------------------- ANIMATIONS ------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-1 {
    transition-delay: 0.15s;
}

.stagger-2 {
    transition-delay: 0.3s;
}

.stagger-3 {
    transition-delay: 0.45s;
}

/* ------------------- CONTACT PAGE ------------------- */
.contact-section {
    padding: 8rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-details {
    color: var(--f-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-socials {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.contact-socials a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-socials a:hover {
    color: var(--f-accent);
}

.contact-form-wrapper {
    background: #111114;
    border: 1px solid var(--f-border);
    border-radius: var(--radi-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

/* Form Styles */
.f-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--f-text);
    font-weight: 400;
}

.f-input {
    width: 100%;
    background: #000;
    border: 1px solid var(--f-border);
    border-radius: var(--radi-md);
    padding: 1rem 1.2rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.f-input::placeholder {
    color: var(--f-muted);
}

.f-input:focus {
    border-color: var(--f-accent);
    box-shadow: 0 0 0 1px var(--f-accent), 0 0 15px rgba(10, 132, 255, 0.2);
}

.f-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 900px) {
    .f-nav {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .f-btn {
        width: 100%;
    }

    .approach-layout {
        grid-template-columns: 1fr;
    }

    .approach-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }

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

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

    .a-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .quote-offset:hover {
        transform: translateY(-5px);
    }

    .massive-cta-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

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

    .footer-links-group {
        width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .massive-text {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .f-header {
        padding: 1rem 0;
    }

    .f-btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .founders-message {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .founders-info {
        margin-left: 0;
    }
}