@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --background: #0B0F17;
    --foreground: #F4F7FB;
    --card: rgba(17, 24, 39, 0.4);
    --primary: #14F195;
    --accent: #2DD4BF;
    --border: rgba(255, 255, 255, 0.05);
}

.philosophy-card {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.philosophy-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -20px rgba(20, 241, 149, 0.2);
}

.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

.belief-item {
    transition: all 0.4s ease;
}

.belief-item:hover {
    transform: translateX(10px);
    color: white;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(20, 241, 149, 0.15);
}

.orb-2 {
    bottom: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: rgba(45, 212, 191, 0.15);
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
    color: #ffffff;
    /* Pure white for headers */
}

p {
    color: #cbd5e1;
    /* Lighter gray (slate-300) for standard paragraphs */
    font-weight: 500;
    /* Slightly heavier weight for clarity */
}

.text-gray-400 {
    color: #e2e8f0 !important;
    /* Forces a much lighter, high-contrast gray (slate-200) */
}

.glass-panel {
    background: rgba(17, 24, 39, 0.85);
    /* More opaque for better text contrast */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Brighter border */
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #0B0F17;
    font-weight: 700;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s;
}

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

.text-gradient {
    background: linear-gradient(135deg, #14F195, #2DD4BF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -- Cycle Diagram (Pure CSS) -- */
.cycle-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.cycle-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.cycle-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--background);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.cycle-node:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(20, 241, 149, 0.2);
    transform: scale(1.1);
}

.node-1 {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

/* Top */
.node-2 {
    bottom: 20px;
    right: -20px;
}

/* Bottom Right */
.node-3 {
    bottom: 20px;
    left: -20px;
}

/* Bottom Left */

.cycle-label {
    position: absolute;
    width: 200px;
    text-align: center;
    pointer-events: none;
}

.label-1 {
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.label-2 {
    top: 50%;
    right: -160px;
    transform: translateY(-50%);
    text-align: left;
}

.label-3 {
    top: 50%;
    left: -160px;
    transform: translateY(-50%);
    text-align: right;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* -- Roadmap Styles -- */
.roadmap-step {
    position: relative;
    padding-left: 3rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.roadmap-step:last-child {
    border-left: 2px solid transparent;
}

.step-marker {
    position: absolute;
    left: -17px;
    /* Center circle on 2px border */
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--background);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    z-index: 5;
}

@media (max-width: 768px) {
    .cycle-container {
        transform: scale(0.7);
        margin: 60px auto;
    }

    .label-2 {
        right: -100px;
    }

    .label-3 {
        left: -100px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
}

/* -- Premium Mockup Styles -- */
.mockup-container {
    position: relative;
    border-radius: 2rem;
    padding: 8px;
    /* Frame thickness */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    /* Deep shadow */
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(0.95);
    }

    50% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.05);
    }
}