:root {
    --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --token-1822648e-5316-4fbf-8031-cdd7a6a80848: #000000e6;
    --token-8c2257fb-8bb0-4d60-9c2c-a72b1c0cbe60: #666;
    --token-8f430da9-3316-41fc-b43a-4e8c8d4a9c6d: #f8fafc;
    /* slightly cooler white */
    --token-56f66afe-75f9-4c9e-ae81-8e972ebfc474: #0f172a;
    --token-primary: #3b82f6;
    --token-secondary: #8b5cf6;
    /* purple */
    --token-tertiary: #ec4899;
    /* pink */
    --token-green: #10b981;
    --token-yellow: #fde047;
    --token-cyan: #06b6d4;
    --bg-color: var(--token-8f430da9-3316-41fc-b43a-4e8c8d4a9c6d);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-light: rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 40px -10px rgba(59, 130, 246, 0.15);
    /* tinted shadow */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
    /* purple tinted hover */
    --card-radius: 16px;
    --btn-radius: 99px;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--token-primary), var(--token-secondary));
    --gradient-text: linear-gradient(to right, var(--token-primary), var(--token-secondary), var(--token-tertiary));
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08), transparent 25%);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotateZ(var(--rz, 0deg)) rotateY(var(--ry, 0deg));
    }

    50% {
        transform: translateY(-10px) rotateZ(var(--rz, 0deg)) rotateY(var(--ry, 0deg));
    }

    100% {
        transform: translateY(0px) rotateZ(var(--rz, 0deg)) rotateY(var(--ry, 0deg));
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.w-full {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.brand span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: none;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-link {
    font-weight: 600;
    color: var(--text-main);
}

/* Common Section */
section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.highlight {
    position: relative;
    display: inline-block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--token-secondary);
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}

/* Hero Section */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--token-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.hero-title {
    font-size: clamp(4rem, 9vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.06em;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.hero-actions {
    margin-bottom: 3rem;
}

.plus-icon {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-weight: bold;
}

.hero-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0.4;
    margin-top: 1rem;
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    filter: grayscale(1);
    transition: all 0.3s;
}

.logo-placeholder:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--token-primary);
}

/* Hero Visuals */
.hero-visuals {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 350px;
    margin: 0 auto;
    perspective: 1200px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-card:hover {
    z-index: 10;
}

.fc-1 {
    top: 10px;
    left: 15%;
    --rz: -6deg;
    --ry: 12deg;
    transform: rotateZ(var(--rz)) rotateY(var(--ry));
    width: 220px;
    animation: float 6s ease-in-out infinite;
}

.fc-1:hover {
    transform: rotateZ(0deg) scale(1.08);
}

.fc-2 {
    bottom: 20px;
    right: 15%;
    --rz: 4deg;
    --ry: -8deg;
    transform: rotateZ(var(--rz)) rotateY(var(--ry));
    width: 200px;
    animation: float 7s ease-in-out infinite alternate;
    animation-delay: 1s;
}

.fc-2:hover {
    transform: rotateZ(0deg) scale(1.08);
}

.fc-header {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.fc-body {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
}

.status-green {
    color: var(--token-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-green::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--token-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--token-green);
}

.floating-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.1), transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: pulse-glow 8s infinite alternate;
}

.floating-sticky {
    position: absolute;
    top: -30px;
    right: 25%;
    background: var(--token-yellow);
    color: #000;
    padding: 1.2rem;
    font-size: 0.95rem;
    font-weight: bold;
    transform: rotate(8deg);
    box-shadow: 4px 8px 15px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 12px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 2s;
    --rz: 8deg;
}

/* Showcase Cards */
.cards-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .cards-showcase {
        flex-direction: column;
    }
}

.showcase-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    width: 280px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.sc-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.sc-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.sc-logo.blue {
    background: linear-gradient(135deg, #94a3b8, #475569);
    box-shadow: 0 4px 15px rgba(71, 85, 105, 0.3);
}

.sc-logo.green {
    background: var(--gradient-brand);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.showcase-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.showcase-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.sc-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 1.2rem;
    font-size: 0.95rem;
}

.sc-footer strong {
    font-weight: 800;
    color: var(--text-main);
}

.sc-right .sc-footer strong {
    color: var(--token-green);
    font-size: 1.2rem;
}

.connector-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(5deg);
    background: var(--token-cyan);
    background: linear-gradient(135deg, var(--token-cyan), var(--token-primary));
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
    z-index: 3;
}

.yellow-sticky {
    position: absolute;
    bottom: -50px;
    left: 45%;
    background: var(--token-yellow);
    padding: 1.5rem;
    font-weight: bold;
    color: #000;
    transform: rotate(-6deg);
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

/* Flexibility grid with colored icons */
.flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    margin: 4rem 0 2rem 0;
}

.flex-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s;
}

.flex-item:hover {
    transform: translateY(-5px);
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.icon-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
}

.icon-pink {
    background: rgba(236, 72, 153, 0.15);
    color: #db2777;
}

.flex-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.flex-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    padding: 4rem 2rem;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 800px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
}

.founder-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.founder-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.founder-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--token-primary);
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.founder-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--token-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.founder-email:hover {
    background: var(--token-primary);
    color: #fff;
}