:root {
    --ake-blue: #1677ff;
    --ake-blue-dark: #0f52b3;
    --ake-dark: #000000;
    --ake-light-bg: #f3f3f3;
    --ake-white: #ffffff;

    --text-primary: var(--ake-blue);
    --text-secondary: var(--ake-blue-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Enforce Satoshi rigorously. Shopify uses very tight tracking for headers */
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body {
    background-color: var(--ake-light-bg);
    /* Behind the hero */
    color: var(--ake-blue);
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   Navigation (Minimalist)
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 4vw;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ake-blue);
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a:not(.btn-pill) {
    text-decoration: none;
    color: var(--ake-blue);
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.btn-pill {
    text-decoration: none;
    background: var(--ake-blue);
    color: var(--ake-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-pill:hover {
    transform: scale(1.05);
}

/* Light Navbar when over blue section */
.navbar.nav-light .logo {
    color: var(--ake-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar.nav-light .nav-links a:not(.btn-pill) {
    color: var(--ake-white);
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar.nav-light .nav-links a:not(.btn-pill):hover {
    opacity: 1;
}

.navbar.nav-light .btn-pill {
    background-color: var(--ake-white);
    color: var(--ake-blue) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ==========================================
   Hero Section - PURE IMAGE, NO TINT
   ========================================== */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

/* We ensure the image is NOT tinted, so the user sees exactly what they uploaded */
.hero-bg-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: 50% 80%;
    /* Target the sphere in the new image */
    will-change: transform;
    /* Removed brightness filter for clean white background */
}

.hero-text-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.title-orchestrator {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    will-change: transform, opacity;
}

/* Brutalist Typography to match Editions */
.massive-text {
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--ake-blue);
    /* Dark text for light background */
    margin-bottom: 24px;
    text-transform: none;
    /* Let it be sentence/title case if needed */
}

.sub-massive {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ake-blue);
    /* Blue accent for light background */
    margin-bottom: 30px;
}

.hero-description {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    font-weight: 500;
    color: var(--ake-blue);
    max-width: 600px;
}

.scroll-affordance {
    position: absolute;
    bottom: 40px;
    left: 4vw;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.scroll-affordance span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--ake-blue);
    /* Changed for light background */
}

.line-drop {
    width: 1px;
    height: 40px;
    background: var(--ake-blue);
    /* Changed for light background */
    transform-origin: top;
    animation: dropScale 2s infinite ease-in-out;
}

@keyframes dropScale {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ==========================================
   Healthcare Pipeline Content Section
   ========================================== */
.content-section {
    position: relative;
    z-index: 20;
    /* Shopify creates distinct blocks of stark color. Let's use the PDF Blue */
    background-color: var(--ake-blue);
    color: var(--ake-white);
    padding: 15vh 4vw;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.text-left {
    text-align: left;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.section-title.dark-text {
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 500;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
}

.section-subtitle.dark-text {
    color: var(--text-secondary);
}

/* Editions Sharp Grid */
.editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2px;
    background: rgba(255, 255, 255, 0.2);
    /* Creates hairline dividers */
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 1 !important;
    /* Force visibility */
    visibility: visible !important;
}

.edition-card {
    background: var(--ake-blue);
    /* Match section bg so borders shine through */
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    opacity: 1 !important;
    /* Force visibility */
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ake-white);
    color: var(--ake-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.edition-card h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.card-desc {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.feature-list {
    list-style: none;
    margin-bottom: auto;
    /* pushes button to bottom */
    padding-bottom: 40px;
}

.feature-list li {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn-primary-solid {
    background: var(--ake-white);
    color: var(--ake-blue);
    padding: 20px 40px;
    border-radius: 80px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
    width: fit-content;
}

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

.btn-inverted {
    background: var(--ake-dark);
    color: var(--ake-white);
}

/* ==========================================
   Founders Section
   ========================================== */
.founders-section {
    background: var(--ake-light-bg);
    padding: 15vh 4vw;
    color: var(--text-primary);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

/* High-end minimalist photo portraits */
.founder-card-premium {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.founder-photo-holder {
    width: 100%;
    max-width: 280px; /* Reduced max width to avoid blown up appearance */
    aspect-ratio: 1/1; /* Switch to 1:1 for a balanced tight crop */
    border-radius: 8px; /* Elegant slightly rounded corners */
    overflow: hidden;
    margin-bottom: 24px;
    background: #e2e2e2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft drop shadow */
}

.founder-photo-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Premium editorial look */
    transition: filter 0.5s ease, transform 0.5s ease;
}

.founder-card-premium:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.founder-meta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.founder-link {
    text-decoration: none;
    color: var(--ake-blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.founder-link:hover {
    text-decoration: underline;
}

.contact-hook {
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 60px;
}

.contact-hook p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.massive-contact-link {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.04em;
    transition: opacity 0.3s;
}

.massive-contact-link:hover {
    opacity: 0.6;
}