        :root {
            --serif: 'Libre Baskerville', Georgia, serif;
            --sans: 'Geist', -apple-system, system-ui, sans-serif;
            --section-gap: 24px;
            --content-width: 800px;
            --page-width: 1200px;
            --t: 0.5s cubic-bezier(0.4, 0, 0.2, 1)
        }

        [data-theme="dark"] {
            --bg: #0A0A0A;
            --bg-el: #0F0F0E;
            --bg-card: #141312;
            --bg-input: #1A1917;
            --tx1: #E8E4DF;
            --tx2: #9A9590;
            --tx3: #5C5856;
            --accent: #C8A882;
            --glow: rgba(200, 168, 130, 0.15);
            --glow-s: rgba(200, 168, 130, 0.25);
            --rule: #2A2725;
            --noise: 0.06;
            --orb: 1;
            --logo-color: #E8E4DF;
            --modal-bg: #111110;
            --input-border: #2A2725;
            --overlay: rgba(0, 0, 0, 0.7);
            --error: #D4736E
        }

        [data-theme="light"] {
            --bg: #FFFFFF;
            --bg-el: #EDE8E1;
            --bg-card: #E8E2DB;
            --bg-input: #FFFFFF;
            --tx1: #1A1816;
            --tx2: #5C5650;
            --tx3: #9A9490;
            --accent: #9A7B5A;
            --glow: rgba(154, 123, 90, 0.1);
            --glow-s: rgba(154, 123, 90, 0.18);
            --rule: #D5CEC6;
            --noise: 0.035;
            --orb: 0.5;
            --logo-color: #1A1816;
            --modal-bg: #F0EBE4;
            --input-border: #D5CEC6;
            --overlay: rgba(0, 0, 0, 0.4);
            --error: #B5443E
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 17px;
            overflow-x: hidden
        }

        body {
            background: var(--bg);
            color: var(--tx1);
            font-family: var(--sans);
            font-weight: 300;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            transition: background var(--t), color var(--t)
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            opacity: var(--noise);
            z-index: 9999;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            transition: opacity var(--t)
        }

        [data-theme="light"] body::before {
            content: '';
            position: fixed;
            inset: 0;
            opacity: 0.025;
            z-index: 9998;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.02 0.08' numOctaves='3' seed='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.5'/%3E%3C/svg%3E")
        }

        [data-theme="dark"] body::before {
            content: none
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 2px;
            height: 0%;
            background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
            z-index: 10001
        }

        .ambient-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            opacity: var(--orb);
            transition: opacity var(--t)
        }

        .ambient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0;
            animation: of 20s ease-in-out infinite, oi 2s ease 1s forwards
        }

        .o1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(200, 168, 130, 0.06) 0%, transparent 70%);
            top: -80px;
            right: -150px
        }

        .o2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(200, 168, 130, 0.04) 0%, transparent 70%);
            bottom: 30%;
            left: -200px;
            animation-delay: -10s;
            animation-duration: 25s
        }

        .o3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(180, 150, 120, 0.04) 0%, transparent 70%);
            top: 60%;
            right: -100px;
            animation-delay: -5s;
            animation-duration: 30s
        }

        @keyframes of {

            0%,
            100% {
                transform: translate(0, 0) scale(1)
            }

            25% {
                transform: translate(25px, -30px) scale(1.04)
            }

            50% {
                transform: translate(-15px, 15px) scale(0.96)
            }

            75% {
                transform: translate(30px, 20px) scale(1.02)
            }
        }

        @keyframes oi {
            to {
                opacity: 1
            }
        }

        .cursor-glow {
            position: fixed;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 168, 130, 0.03) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s
        }

        .cursor-glow.on {
            opacity: 1
        }

        [data-theme="light"] .cursor-glow {
            display: none
        }

        .pw {
            position: relative;
            z-index: 2
        }

        .c {
            max-width: var(--page-width);
            margin: 0 auto;
            padding: 0 40px
        }

        header {
            padding: 36px 0 0;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            opacity: 0;
            animation: fi 0.8s ease 0.3s forwards
        }

        header>a {
            grid-column: 2;
            justify-self: center;
            line-height: 0
        }

        .logo-long {
            height: 20px;
            width: auto;
            display: block
        }

        .logo-short {
            height: 28px;
            width: auto;
            display: none
        }

        .logo-long,
        .logo-short {
            color: var(--logo-color);
            transition: color var(--t)
        }

        .logo-long path,
        .logo-short path {
            fill: currentColor
        }

        .theme-btn {
            grid-column: 3;
            justify-self: end;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid var(--rule);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: border-color 0.3s, background 0.3s
        }

        .theme-btn:hover {
            border-color: var(--accent);
            background: var(--glow)
        }

        .theme-btn svg {
            width: 18px;
            height: 18px;
            stroke: var(--tx2);
            stroke-width: 1.8;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke var(--t)
        }

        .theme-btn:hover svg {
            stroke: var(--accent)
        }

        [data-theme="dark"] .icon-sun {
            display: block
        }

        [data-theme="dark"] .icon-moon {
            display: none
        }

        [data-theme="light"] .icon-sun {
            display: none
        }

        [data-theme="light"] .icon-moon {
            display: block
        }

        .hero {
            padding: 64px 0 var(--section-gap);
            position: relative;
            overflow: hidden
        }

        .hero h1 {
            font-family: var(--serif);
            font-size: clamp(2rem, 4vw, 2rem);
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: -0.01em;
            max-width: 760px
        }

        .hero h1 .w {
            display: inline-block;
            overflow: hidden;
            vertical-align: bottom;
            margin-right: 0.22em
        }

        .hero h1 .wi {
            display: inline-block;
            transform: translateY(110%);
            opacity: 0;
            animation: wr 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards
        }

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

        .hero-glow {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: min(600px, calc(100vw - 32px));
            height: 300px;
            background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            z-index: -1;
            opacity: 0;
            animation: fi 2s ease 1.2s forwards
        }

        .sr {
            height: 0px;
            background: var(--rule);
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), background var(--t)
        }

        .sr.visible {
            transform: scaleX(1)
        }

        .ms {
            padding: var(--section-gap) 0;
            opacity: 0;
            transform: translateY(28px)
        }

        .ms[data-anim="sl"] {
            transform: translateX(-32px) translateY(0)
        }

        .ms[data-anim="sc"] {
            transform: scale(0.97)
        }

        .ms.visible {
            opacity: 1;
            transform: none;
            transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1)
        }

        .ms p {
            font-family: var(--sans);
            font-size: 1.02rem;
            font-weight: 400;
            /*line-height: 1.85;*/
            color: var(--tx2);
            margin-bottom: 12px;
            max-width: var(--content-width);
            transition: color var(--t)
        }

        .ms p:last-child {
            margin-bottom: 0
        }

        .ms p em {
            font-style: italic;
            color: var(--tx1)
        }

        .ms p strong {
            font-weight: 400;
            color: var(--tx1)
        }

        .sh {
            font-family: var(--serif);
            font-size: clamp(1.5rem, 3.2vw, 1.5rem);
            font-weight: 400;
            line-height: 1.25;
            color: var(--tx1);
            margin-bottom: 16px;
            max-width: 580px;
            transition: color 0.3s
        }

        .sh:hover {
            color: var(--accent)
        }

        .sn {
            font-family: var(--sans);
            font-size: 0.62rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--tx3);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .sn::before {
            content: '';
            width: 20px;
            height: 1px;
            background: var(--accent);
            opacity: 0.5
        }

        .va {
            padding: 40px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            opacity: 0
        }

        .va.visible {
            opacity: 1;
            transition: opacity 1.2s ease
        }

        .al {
            width: 40px;
            height: 1px;
            background: var(--accent);
            opacity: 0.3;
            transform: scaleX(0);
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s
        }

        .va.visible .al {
            transform: scaleX(1)
        }

        .ad {
            width: 5px;
            height: 5px;
            background: var(--accent);
            transform: rotate(45deg) scale(0);
            opacity: 0.5;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s
        }

        .va.visible .ad {
            transform: rotate(45deg) scale(1)
        }

        .decl {
            /*padding: 72px 0;*/
            text-align: center;
            position: relative;
            opacity: 0;
            transform: scale(0.93)
        }

        .decl.visible {
            opacity: 1;
            transform: scale(1);
            transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1)
        }

        .decl-text {
            font-family: var(--serif);
            font-size: clamp(1.4rem, 3.2vw, 2.3rem);
            font-weight: 400;
            font-style: italic;
            line-height: 1.4;
            position: relative;
            z-index: 2
        }

        .decl::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 160px;
            background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
            filter: blur(50px);
            z-index: 1;
            opacity: 0;
            transition: opacity 1.5s ease 0.3s
        }

        .decl.visible::before {
            opacity: 1
        }

        .bf {
            padding: 16px 0 16px 16px;
            border-left: 1px solid var(--rule);
            color: var(--tx2);
            font-size: 1.02rem;
            line-height: 1.8;
            max-width: var(--content-width);
            transition: border-color 0.4s, background 0.4s
        }

        .bf:hover {
            border-left-color: var(--accent);
            background: linear-gradient(90deg, var(--glow) 0%, transparent 50%)
        }

        .bf p {
            margin: 0;
            max-width: none
        }

        .bf--p {
            padding: 16px 0 16px 16px;
            /*border-left: 2px solid var(--accent);*/
            font-size: 1.08rem
        }

        .bf--p p {
            /*color: var(--tx1);*/
            font-weight: 300
        }

        .cta {
            padding: var(--section-gap) 0;
            /*text-align: center;*/
            position: relative;
            opacity: 0;
            transform: translateY(28px)
        }

        .cta.visible {
            padding-block: 48px;
            opacity: 1;
            transform: none;
            transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1)
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 100vw;
            transform: translateX(-50%);
            background: linear-gradient(180deg, var(--bg-el) 0%, var(--bg) 100%);
            border-top: 1px solid var(--rule);
            border-bottom: 1px solid var(--rule);
            z-index: -1;
            transition: all var(--t)
        }

        .cta .sh {
            /*margin-left: auto;
            margin-right: auto;
            text-align: center*/
        }

        .cta .sn {
            justify-content: center
        }

        .cta p {
            font-family: var(--sans);
            font-size: 1.02rem;
            font-weight: 400;
            line-height: 1.85;
            color: var(--tx2);
            margin-bottom: 22px;
            max-width: 660px;
            /*margin-left: auto;
            margin-right: auto*/
        }

        .cta-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 16px 52px;
            font-family: var(--sans);
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--bg);
            background: var(--accent);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px var(--glow-s), 0 2px 8px var(--glow)
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
            animation: shm 3.5s ease-in-out infinite
        }

        @keyframes shm {
            0% {
                left: -100%
            }

            50%,
            100% {
                left: 150%
            }
        }

        .cta-btn::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: var(--accent);
            z-index: -1;
            filter: blur(10px);
            opacity: 0;
            animation: bp 3s ease-in-out infinite
        }

        @keyframes bp {

            0%,
            100% {
                opacity: 0
            }

            50% {
                opacity: 0.25
            }
        }

        .meet-link {
            display: inline-block;
            padding: 16px 40px;
            margin-top: 20px;
            font-family: var(--sans);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--tx3);
            text-decoration: none;
            transition: color 0.3s;
            position: relative
        }

        .meet-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s
        }

        .meet-link:hover {
            color: var(--accent)
        }

        .meet-link:hover::after {
            width: 100%
        }

        .meet-link svg {
            display: inline-block;
            width: 12px;
            height: 12px;
            vertical-align: middle;
            margin-left: 6px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

        footer {
            padding: 44px 0 56px;
            text-align: center;
            opacity: 0
        }

        footer.visible {
            opacity: 1;
            transition: opacity 1s ease
        }

        .cs {
            font-family: var(--serif);
            font-size: 1rem;
            font-style: italic;
            color: var(--tx3)
        }

        /* MODAL */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: var(--overlay);
            z-index: 10002;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px
        }

        .modal-overlay.open {
            display: flex
        }

        .modal {
            background: var(--modal-bg);
            max-width: 520px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 44px 40px;
            position: relative;
            transition: background var(--t)
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            background: transparent;
            border: 1px solid var(--rule);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: border-color 0.3s, background 0.3s
        }

        .modal-close:hover {
            border-color: var(--accent);
            background: var(--glow)
        }

        .modal-close svg {
            width: 14px;
            height: 14px;
            stroke: var(--tx3);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round
        }

        .modal-close:hover svg {
            stroke: var(--accent)
        }

        .modal h3 {
            font-family: var(--serif);
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 8px
        }

        .modal .modal-sub {
            font-family: var(--sans);
            font-size: 0.88rem;
            font-weight: 300;
            color: var(--tx2);
            margin-bottom: 32px;
            line-height: 1.6
        }

        .form-group {
            margin-bottom: 24px
        }

        .form-label {
            display: block;
            font-family: var(--sans);
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--tx3);
            margin-bottom: 8px
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            font-family: var(--sans);
            font-size: 0.92rem;
            font-weight: 300;
            color: var(--tx1);
            background: var(--bg-input);
            border: 1px solid var(--input-border);
            padding: 12px 16px;
            outline: none;
            transition: border-color 0.3s, background var(--t), color var(--t);
            -webkit-appearance: none;
            appearance: none;
            border-radius: 0
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--accent)
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--tx3)
        }

        .form-select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239A9590' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
            line-height: 1.65
        }

        .form-error {
            font-family: var(--sans);
            font-size: 0.72rem;
            color: var(--error);
            margin-top: 6px;
            display: none
        }

        .form-group.has-error .form-error {
            display: block
        }

        .form-group.has-error .form-input,
        .form-group.has-error .form-select,
        .form-group.has-error .form-textarea {
            border-color: var(--error)
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            font-family: var(--sans);
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--bg);
            background: var(--accent);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s
        }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px var(--glow-s)
        }

        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            animation: shm 3.5s ease-in-out infinite
        }

        #tyState {
            display: none
        }

        .ty-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--glow);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px
        }

        .ty-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round
        }

        .ty-title {
            font-family: var(--serif);
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 10px
        }

        .ty-msg {
            font-family: var(--sans);
            font-size: 0.92rem;
            font-weight: 300;
            color: var(--tx2);
            line-height: 1.7;
            margin-bottom: 28px
        }

        .ty-divider {
            height: 1px;
            background: var(--rule);
            margin: 28px 0
        }

        .ty-connect {
            font-family: var(--sans);
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--tx3);
            margin-bottom: 20px
        }

        .founder-cards {
            display: flex;
            gap: 16px;
            margin-bottom: 28px
        }

        .founder-card {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px;
            border: 1px solid var(--rule);
            transition: border-color 0.3s, background 0.3s;
            text-decoration: none;
            color: inherit
        }

        .founder-card:hover {
            border-color: var(--accent);
            background: var(--glow)
        }

        .founder-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            flex-shrink: 0;
            overflow: hidden;
            border: 1px solid var(--rule)
        }

        .founder-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block
        }

        .founder-name,
        .founder-name-sm {
            font-family: var(--sans);
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.3
        }

        .founder-role-sm {
            font-family: var(--sans);
            font-size: 0.68rem;
            font-weight: 300;
            color: var(--tx3)
        }

        .founder-linkedin {
            margin-left: auto;
            flex-shrink: 0
        }

        .founder-linkedin svg {
            width: 16px;
            height: 16px;
            fill: var(--tx3);
            transition: fill 0.3s
        }

        .founder-card:hover .founder-linkedin svg {
            fill: var(--accent)
        }

        .ty-meet-link {
            display: inline-block;
            font-family: var(--sans);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            text-decoration: none;
            position: relative
        }

        .ty-meet-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--accent);
            opacity: 0.3;
            transition: opacity 0.3s
        }

        .ty-meet-link:hover::after {
            opacity: 1
        }

        .ty-meet-link svg {
            display: inline-block;
            width: 12px;
            height: 12px;
            vertical-align: middle;
            margin-left: 6px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

        @keyframes fi {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        body.modal-open {
            overflow: hidden
        }

        @media(max-width:768px) {
            html {
                font-size: 16px
            }

            :root {
                --section-gap: 24px
            }

            .c {
                padding: 0 24px
            }

            .hero {
                padding: 56px 0 var(--section-gap)
            }

            header {
                padding: 24px 0 0
            }

            .decl {
                padding: 56px 0
            }

            .ambient-orb,
            .cursor-glow {
                display: none
            }

            .logo-long {
                height: 16px
            }

            .hero h1 {
                font-size: clamp(1.7rem, 6vw, 2rem)
            }

            .sh {
                font-size: clamp(1.3rem, 4.5vw, 1.5rem)
            }

            .bf {
                padding: 20px 0 20px 20px
            }

            .bf--p {
                padding: 24px 0 24px 20px
            }

            .cta-btn {
                padding: 14px 40px
            }

            .meet-link {
            padding: 16px 32px;
            }   

            .modal {
                padding: 36px 28px
            }

            .founder-cards {
                flex-direction: column
            }
        }

        @media(max-width:480px) {
            .c {
                padding: 0 18px
            }

            footer {
                text-align: center
            }

            .cta-btn {
                width: 100%;
                text-align: center;
                padding: 14px 24px
            }

            .meet-link{
                margin-inline: 0px;
                width: 100%;
                text-align: center;
                padding: 14px 24px
            }

            .va {
                padding: 28px 0
            }

            .logo-long {
                display: block
            }

            .logo-short {
                display: none
            }

            .theme-btn {
                width: 36px;
                height: 36px
            }

            .theme-btn svg {
                width: 16px;
                height: 16px
            }

            .modal {
                padding: 28px 20px
            }

            .modal h3 {
                font-size: 1.2rem
            }
        }
