:root {
    --orange-300: #ffc14d;
    --orange-400: #f5a623;
    --orange-500: #e0900d;
    --orange-600: #c47508;
    --orange-glow: rgba(245, 166, 35, 0.12);
    --orange-glow-md: rgba(245, 166, 35, 0.20);
    --orange-glow-lg: rgba(245, 166, 35, 0.08);
    --n-950: #06090f;
    --n-900: #0b1120;
    --n-850: #0f1629;
    --n-800: #141d34;
    --n-700: #1c2844;
    --n-600: #283756;
    --n-500: #3d4f6f;
    --n-400: #5b6b8a;
    --n-300: #8594b0;
    --n-200: #b0bdd4;
    --n-100: #d5dde9;
    --n-50: #eef1f6;
    --white: #fff;
    --bg: var(--n-950);
    --bg-raised: var(--n-900);
    --bg-overlay: var(--n-850);
    --bg-interactive: var(--n-800);
    --text: var(--n-50);
    --text-2: var(--n-300);
    --text-3: var(--n-400);
    --text-4: var(--n-500);
    --accent: var(--orange-400);
    --accent-hover: var(--orange-300);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.10);
    --border-accent: rgba(245, 166, 35, 0.25);
    --f-display: 'Outfit', sans-serif;
    --f-body: 'DM Sans', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: .4s;
    --max-w: 1180px
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--f-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease-out)
}

button {
    cursor: pointer;
    border: 0;
    background: 0;
    font-family: inherit
}

ul {
    list-style: none
}


.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px
}

.topbar {
    background: var(--accent);
    color: var(--n-950);
    text-align: center;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .5px;
    font-family: var(--f-display)
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 9, 15, 0.8);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border-subtle)
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 14px;
    color: var(--n-950)
}

.logo-text {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.5px;
    color: var(--white)
}

.logo-text span {
    color: var(--accent)
}

.logo-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(1)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-menu a {
    font-family: var(--f-display);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-3);
    padding: 4px 0;
    position: relative
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--duration) var(--ease-out)
}

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

.nav-menu a:hover::after {
    width: 100%
}

.nav-menu a.active {
    color: var(--text)
}

.nav-menu a.active::after {
    width: 100%
}

.nav-menu a.nav-cta-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--n-950) !important;
    background: var(--accent);
    padding: 9px 20px;
    border-radius: 9999px;
    transition: all var(--duration) var(--ease-out)
}

.nav-menu a.nav-cta-btn::after {
    display: none !important
}

.nav-menu a.nav-cta-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 24px var(--orange-glow-md);
    transform: translateY(-1px);
    color: var(--n-950) !important
}

.hamburger {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg)
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(6, 9, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 40px 24px;
    flex-direction: column;
    gap: 24px
}

.nav-overlay.open {
    display: flex
}

.nav-overlay a {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-2);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: color .3s, padding-left .3s
}

.nav-overlay a:hover {
    color: var(--accent);
    padding-left: 8px
}

.page-hero {
    padding: 72px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(circle, var(--orange-glow-lg) 0, transparent 70%);
    pointer-events: none
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-display);
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 24px
}

.breadcrumb a {
    color: var(--text-3);
    transition: color .3s
}

.breadcrumb a:hover {
    color: var(--accent)
}

.breadcrumb .sep {
    color: var(--text-4)
}

.breadcrumb .current {
    color: var(--accent);
    font-weight: 600
}

.page-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.page-hero h1 em {
    font-style: normal;
    color: var(--accent)
}

.page-hero-desc {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

section {
    padding: 72px 0
}

.sec-tag {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px
}

.sec-title {
    font-family: var(--f-display);
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 12px
}

.sec-sub {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 520px
}

.sec-header {
    text-align: center;
    margin-bottom: 56px
}

.sec-header .sec-sub {
    margin: 0 auto
}

.founder-section {
    background: linear-gradient(180deg, var(--bg) 0, var(--bg-raised) 40%, var(--bg-raised) 60%, var(--bg) 100%)
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.founder-card {
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--duration) var(--ease-out)
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--duration)
}

.founder-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 40px var(--orange-glow-lg);
    transform: translateY(-4px)
}

.founder-card:hover::before {
    opacity: 1
}

.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--n-950);
    margin: 0 auto 24px;
    border: 3px solid var(--border-accent);
    box-shadow: 0 0 40px var(--orange-glow-md)
}

.founder-name {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.3px;
    margin-bottom: 4px
}

.founder-role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px
}

.founder-bio {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 24px
}

.founder-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    border-radius: 9999px;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent)
}

.founder-content h2 {
    margin-bottom: 16px
}

.founder-content .sec-sub {
    margin-bottom: 24px;
    max-width: 100%
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all var(--duration)
}

.highlight-item:hover {
    border-color: var(--border-accent);
    transform: translateX(6px)
}

.hi-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    display: grid;
    place-items: center;
    font-size: 18px
}

.hi-text h4 {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px
}

.hi-text p {
    font-size: 12.5px;
    color: var(--text-3);
    line-height: 1.5
}

.stats-section {
    padding: 72px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stat-card {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all var(--duration)
}

.stat-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px var(--orange-glow-lg)
}

.stat-num {
    font-family: var(--f-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px
}

.stat-num span {
    color: var(--accent)
}

.stat-label {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: .3px
}

.values-section {
    background: linear-gradient(180deg, var(--bg) 0, var(--bg-raised) 40%, var(--bg-raised) 60%, var(--bg) 100%)
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.val-card {
    padding: 28px;
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all var(--duration)
}

.val-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px var(--orange-glow-lg)
}

.val-emoji {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--orange-glow);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px
}

.val-card h4 {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -.2px
}

.val-card p {
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.65
}

.services-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px
}

.sq-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-overlay);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-2);
    transition: all var(--duration)
}

.sq-item:hover {
    border-color: var(--border-accent);
    color: var(--white)
}

.sq-icon {
    font-size: 18px
}

.mission-banner {
    background: linear-gradient(145deg, var(--orange-400), var(--orange-600));
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 72px 0
}

.mission-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(255, 255, 255, 0.12) 0, transparent 70%);
    pointer-events: none
}

.mission-banner h2 {
    font-family: var(--f-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--n-950);
    letter-spacing: -.8px;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.mission-banner p {
    font-size: 16px;
    color: rgba(6, 9, 15, 0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1
}

.mission-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--orange-500);
    background: var(--n-950);
    padding: 13px 28px;
    border-radius: 9999px;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    z-index: 1
}

.mission-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3)
}

.team-section {
    padding: 72px 0
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.team-card {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all var(--duration)
}

.team-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3)
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--orange-glow);
    border: 1px solid var(--border-accent);
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 16px
}

.team-name {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px
}

.team-role {
    font-size: 12.5px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.team-desc {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6
}

.footer {
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-raised);
    padding: 48px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand .logo {
    margin-bottom: 12px
}

.footer-brand>p {
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.7;
    max-width: 260px
}

.footer-col h4 {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    color: var(--text-3);
    margin-bottom: 8px;
    transition: color var(--duration), padding-left var(--duration)
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 4px
}

.footer-bar {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.footer-bar p {
    font-size: 12.5px;
    color: var(--text-4)
}

.footer-soc {
    display: flex;
    gap: 8px
}

.soc-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: grid;
    place-items: center;
    color: var(--text-3);
    transition: all var(--duration) var(--ease-out)
}

.soc-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--orange-glow);
    transform: translateY(-2px)
}

.soc-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.c-soc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(6, 9, 15, 0.15);
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: all var(--duration)
}

.c-soc:hover {
    background: rgba(6, 9, 15, 0.3);
    transform: translateY(-2px)
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s var(--ease-out), transform .65s var(--ease-out)
}

.reveal.vis {
    opacity: 1;
    transform: none
}

@media(max-width:1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-menu {
        display: none
    }

    .hamburger {
        display: flex
    }

    section {
        padding: 48px 0
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: 1fr
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-bar {
        flex-direction: column;
        text-align: center
    }

    .mission-banner {
        padding: 40px 24px;
        border-radius: 16px;
        margin: 48px 0
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 14px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .founder-card {
        padding: 28px 20px
    }
}