/* ============================================
   NEXORA — Full-BG Keyboard Scrollytelling
   Canvas always visible · Sections float above
   ============================================ */

/* ---------- RESET ---------- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

html {
    font-size: 16px;
    /* No smooth scroll — we control it manually */
}

body {
    font-family: 'Inter', sans-serif;
    /* background matches the cloud/fog color in the frames */
    background: #c4c0bc;
    color: #000;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Custom cursor setup */
    cursor: url('cursor.png'), auto;
}

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

/* Ensure custom cursor applies over links and buttons */
a, button, .social-link, .btn-schedule, .form-submit {
    cursor: url('cursor.png'), pointer; 
}

::selection { background: #000; color: #fff; }

button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* ============================================
   DEDICATED ABOUT PAGE 
   ============================================ */
.page-container {
    position: relative;
    z-index: 100;
    max-width: 1400px;
    margin: 0 auto;
    padding: 180px 56px 100px;
}

.founders-vision {
    margin-bottom: 120px;
    max-width: 1000px;
}

.vision-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: #000;
}

.vision-text {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.6;
    font-weight: 400;
    color: rgba(0,0,0,0.85);
}

/* ── Founder stacked sections ── */
.founder-section {
    margin-bottom: 100px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 60px;
}

.founder-row {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

/* ── Circular avatar ── */
.founder-avatar-col {
    flex-shrink: 0;
}

.founder-avatar {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.35);
}

.founder-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.4s ease;
}

.founder-section:hover .founder-avatar-img {
    filter: grayscale(0%) contrast(1);
}

/* ── Info column ── */
.founder-info-col {
    flex: 1;
}

.founder-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: #000;
}

.founder-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin-bottom: 28px;
}

.founder-vision {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.8;
    color: rgba(0,0,0,0.8);
    margin-bottom: 36px;
    max-width: 640px;
}

.founder-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-geo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 24px;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.btn-geo:hover {
    background: #000;
    color: #fff;
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.15);
}

.page-footer {
    padding-top: 60px;
}

/* ============================================
   PAGE TRANSITION OVERLAY
   ============================================ */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   NAV LINK FLASH (Initiatives)
   ============================================ */
.nav-link--flash {
    position: relative;
}

.nav-link--flash::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: navFlash 2.5s ease-in-out infinite;
}

@keyframes navFlash {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50%      { opacity: 1; transform: scaleX(1); }
}

/* ============================================
   INITIATIVES PAGE
   ============================================ */
.initiatives-header {
    margin-bottom: 80px;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.initiative-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.initiative-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.initiative-icon {
    width: 80px;
    height: 80px;
    color: #000;
    margin-bottom: 28px;
    opacity: 0.7;
}

.initiative-icon svg {
    width: 100%;
    height: 100%;
}

/* ── Status Badge ── */
.initiative-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 100px;
}

.badge--dev {
    background: rgba(255, 165, 0, 0.12);
    color: #c47600;
    border: 1px solid rgba(255, 165, 0, 0.25);
}

.badge--live {
    background: rgba(0, 200, 80, 0.12);
    color: #00a040;
    border: 1px solid rgba(0, 200, 80, 0.25);
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: badgePulse 1.8s ease-in-out infinite;
}

.badge--dev .badge-dot { background: #e68a00; }
.badge--live .badge-dot { background: #00c850; }

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
}

.initiative-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: #000;
}

.initiative-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin-bottom: 20px;
}

.initiative-desc {
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.75;
    color: rgba(0,0,0,0.75);
    margin-bottom: 32px;
    flex: 1;
}

/* ── Project Photo ── */
.initiative-photo-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
}

.initiative-photo-wrapper.photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.3);
    font-size: 14px;
    letter-spacing: 1px;
}

.initiative-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.initiative-photo:hover {
    transform: scale(1.03);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    transform: scale(0.92);
    transition: transform 0.35s ease;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 28px;
    right: 36px;
    font-size: 36px;
    color: rgba(255,255,255,0.7);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 9001;
}

.lightbox-close:hover {
    color: #fff;
}

/* ============================================
   STATS COUNTERS
   ============================================ */
.stats-section {
    position: relative;
    z-index: 100;
    padding: 80px 0;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 32px;
    padding: 56px 40px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    opacity: 0.5;
}

.stat-label {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#kb-scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: #000;
    z-index: 2000;
    transition: width 0.05s linear;
    pointer-events: none;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

#loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255,255,255,0.12);
    border-top-color: rgba(255,255,255,0.75);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
    margin-top: 1.2rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.loading-progress {
    margin-top: 1rem;
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

#loading-bar {
    height: 100%;
    width: 0%;
    background: rgba(255,255,255,0.55);
    transition: width 0.2s ease;
}

/* ============================================
   KEYBOARD CANVAS — Fixed full-viewport BG
   ============================================ */
#kb-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    /* Tell the browser compositor to use highest-quality scaling */
    image-rendering: -webkit-optimize-contrast; /* Safari */
    image-rendering: crisp-edges;               /* Firefox */
    image-rendering: high-quality;              /* Chrome 108+ */
}

/* ============================================
   ALL CONTENT: sits above canvas
   ============================================ */
#main-nav, #hero, #about, #services, #contact {
    position: relative;
    z-index: 10;
}

/* ============================================
   NAV
   ============================================ */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2px 0;
    /* Starts transparent, gets tinted after hero */
    background: transparent;
    transition: background 0.4s ease, transform 0.3s ease;
}

#main-nav.nav-scrolled {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

#main-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 4px;
    /* white on dark frames, black on light */
    mix-blend-mode: difference;
    color: #fff;
}

.nav-links { display: flex; gap: 48px; }

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    mix-blend-mode: difference;
    color: #fff;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

/* ============================================
   HERO — 200vh tall so animation plays here
   ============================================ */
#hero {
    height: 200vh;          /* two-viewport tall — gives animation room */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    background: transparent;
    pointer-events: none;   /* clicks pass through to canvas layer */
}

.hero-sticky {
    /* Sticks at vertical center while hero scrolls */
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    pointer-events: none;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(72px, 14vw, 200px);
    letter-spacing: clamp(6px, 1.8vw, 28px);
    line-height: 0.9;
    color: #000;
    /* Pop off the bright clouds */
    text-shadow:
        0 0 60px rgba(255,255,255,0.9),
        0 2px 4px rgba(255,255,255,0.8);
}

.hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(55px);
    animation: letterDrop 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 0.07s + 0.5s);
}

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

.hero-sub {
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-top: 36px;
    color: rgba(0,0,0,0.7);
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
    text-shadow: 0 1px 12px rgba(255,255,255,0.6);
}

/* Scroll hint arrow — sits inside hero-sticky, below content */
.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 0.9s ease 1.6s forwards;
    pointer-events: none;
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -52px; left: 0;
    width: 1px; height: 52px;
    background: #000;
    animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(104px); opacity: 1; }
    51%  { opacity: 0; }
    100% { transform: translateY(104px); opacity: 0; }
}

.scroll-text {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FLOATING SECTION CARDS
   Sections float as cards over the canvas
   ============================================ */

/* Shared "card" style for About & Services */
.section-card {
    background: rgba(248, 246, 244, 0.55);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-top: 1px solid rgba(0,0,0,0.12);
}

/* ============================================
   ABOUT
   ============================================ */
#about {
    background: rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.about-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 110px 56px 130px;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
}

.label-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.5);
}

.label-line {
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.15);
}

.label-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(38px, 6.5vw, 88px);
    letter-spacing: -0.01em;
    line-height: 1.07;
    color: #000;
    margin-bottom: 64px;
    text-shadow: 0 1px 20px rgba(255,255,255,0.8);
}

.about-body {
    max-width: 680px;
}

.about-body p {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.8;
    font-weight: 400;
    color: rgba(0,0,0,0.9);
    margin-bottom: 22px;
    text-shadow: 0 1px 12px rgba(255,255,255,0.7);
}

.about-body p:last-child { margin-bottom: 0; }
.about-body strong { font-weight: 700; color: #000; }

.about-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.about-text-column {
    flex: 1;
}

.about-logo-column {
    flex-shrink: 0;
    width: 320px;
    display: flex;
    justify-content: flex-end;
}

.about-logo-img {
    width: 100%;
    max-width: 320px;
    /* Since the image has a solid dark blue background,
       we give it a distinct layout block style */
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease;
}

.about-logo-img:hover {
    transform: translateY(-8px);
}

/* ============================================
   SERVICES
   ============================================ */
#services {
    background: rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.services-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 110px 56px 130px;
}

.services-label {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0,0,0,0.15);
}

.service-box {
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    position: relative;
    /* Semi-opaque card so text is legible over bright keyboard */
    background: rgba(255, 255, 255, 0.45);
    color: #000;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: default;
    border-right: 1px solid rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.service-box:last-child { border-right: none; }

.service-box:hover {
    background: rgba(0,0,0,0.88);
    color: #fff;
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.4;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2.2vw, 34px);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-desc {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
    opacity: 0.7;
}

.service-arrow {
    font-size: 26px;
    margin-top: 28px;
    align-self: flex-end;
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-box:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
    background: rgba(10, 10, 10, 0.25);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.contact-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 110px 56px 70px;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
}

.label-tag--inv { color: rgba(255,255,255,0.35); }
.label-line--inv { background: rgba(255,255,255,0.1); }

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 5.5vw, 76px);
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 80px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* FORM */
.contact-form { max-width: 620px; }

.form-group { margin-bottom: 44px; }

.form-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
}

.form-input {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.18); }
.form-input:focus { border-bottom-color: rgba(255,255,255,0.7); }

.form-textarea { resize: none; min-height: 90px; line-height: 1.7; }

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    background: #fff;
    padding: 18px 44px;
    cursor: pointer;
    border: 1px solid #fff;
    transition: background 0.3s ease, color 0.3s ease;
}

.form-submit:hover { background: transparent; color: #fff; }

.submit-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-arrow { transform: translateX(5px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    margin-top: 100px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    width: 140px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.footer-col { display: flex; flex-direction: column; gap: 7px; }

.footer-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

.footer-value {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
                transform 0.85s cubic-bezier(0.22,1,0.36,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ============================================
   FIXED SOCIAL SIDEBAR
   ============================================ */
.social-sidebar {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    animation: fadeInLeft 0.6s ease 2s forwards;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateY(-50%) translateX(-12px); }
    to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    color: #000;
    border: 1px solid rgba(0,0,0,0.1);
    transition: background 0.25s ease, color 0.25s ease,
                transform 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.social-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: scale(1.1);
}

/* Calendly button — distinct accent */
.social-link--cal {
    background: rgba(0, 100, 255, 0.12);
    border-color: rgba(0, 100, 255, 0.25);
    color: #0064ff;
}

.social-link--cal:hover {
    background: #0064ff;
    color: #fff;
    border-color: #0064ff;
}

/* ============================================
   FORM ACTIONS — submit + schedule side by side
   ============================================ */
.form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 18px 32px;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.btn-schedule:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

/* ============================================
   FOOTER SOCIALS
   ============================================ */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s ease;
}

.footer-social-link:hover {
    color: #fff;
}

.footer-social-link svg {
    opacity: 0.6;
    transition: opacity 0.25s ease;
    flex-shrink: 0;
}

.footer-social-link:hover svg {
    opacity: 1;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-inner { padding: 16px 32px; }
    .about-inner, .services-inner, .contact-inner { padding-left: 32px; padding-right: 32px; }

    .about-content-wrapper {
        flex-direction: column;
        gap: 48px;
    }

    .about-logo-column {
        width: 100%;
        justify-content: flex-start;
    }

    .about-logo-img {
        max-width: 280px;
    }

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

    .founders-profiles {
        grid-template-columns: 1fr;
    }

    .founder-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .founder-avatar {
        width: 200px;
        height: 200px;
    }

    .founder-vision {
        max-width: 100%;
    }

    .founder-links {
        justify-content: center;
    }

    .founder-section {
        padding: 40px 28px;
    }

    .service-box {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        min-height: auto;
    }

    .service-box:last-child { border-bottom: none; }

    /* Hide sidebar on tablet — not enough horizontal space */
    .social-sidebar { display: none; }

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

    .page-container {
        padding: 140px 32px 80px;
    }
}

@media (max-width: 768px) {
    .form-actions { flex-direction: column; align-items: stretch; }
    .btn-schedule { justify-content: center; }

    .nav-inner { padding: 14px 20px; }
    .nav-logo { font-size: 14px; letter-spacing: 3px; }
    .nav-links { gap: 24px; }
    .nav-link { font-size: 10px; }

    .about-inner, .services-inner, .contact-inner {
        padding: 72px 24px 80px;
    }

    .about-label, .services-label, .contact-label {
        margin-bottom: 48px;
    }

    .about-body { margin-left: 0; }

    .footer-row { flex-direction: column; gap: 28px; }

    .form-submit { width: 100%; justify-content: center; }

    .stats-inner {
        flex-wrap: wrap;
        gap: 24px;
        padding: 40px 24px;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .nav-link--flash::after {
        display: none;
    }
}
