@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Instrument+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg: #050A16;
    --navy: #0A1428;
    --navy-2: #0E1C3A;
    --navy-3: #14264E;
    --white: #F7F5F0;
    --dim: rgba(247, 245, 240, 0.62);
    --dimmer: rgba(247, 245, 240, 0.38);
    --gold: #FFD700;
    --amber: #FFA928;
    --gold-deep: #B8860B;
    --green: #7CE38B;
    --glass: rgba(150, 180, 255, 0.05);
    --glass-2: rgba(150, 180, 255, 0.09);
    --stroke: rgba(170, 200, 255, 0.15);
    --stroke-soft: rgba(170, 200, 255, 0.08);
    --gold-stroke: rgba(255, 215, 0, 0.28);
    --g-blue: #4285F4;
    --g-red: #EA4335;
    --g-yellow: #FBBC05;
    --g-green: #34A853;
    --g-link: #1a0dab;
    --g-text: #202124;
    --g-sub: #4d5156;
    --g-grey: #70757a;
    --g-line: #ebecf0;
    --g-purple: #9B72CB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background:
        radial-gradient(ellipse 120% 60% at 50% -10%, var(--navy-2), transparent 60%),
        radial-gradient(ellipse 80% 50% at 100% 110%, rgba(20, 38, 78, 0.6), transparent 65%),
        var(--bg);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 17px;
}

::selection {
    background: var(--gold);
    color: #000;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes spin {
    to {
        --angle: 360deg;
    }
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.6);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hl {
    background: linear-gradient(100deg, var(--gold), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-fx {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-fx::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(170, 200, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 200, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black, transparent 82%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.14), transparent 70%);
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.14), transparent 70%);
    top: 90vh;
    left: -200px;
}

main,
.nav-wrap,
footer {
    position: relative;
    z-index: 1;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    position: relative;
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 0.72rem 1.55rem;
    border-radius: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    color: #1a1400;
    background:
        linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968) padding-box,
        conic-gradient(from var(--angle), #fff, var(--gold), var(--gold-deep), var(--amber), #fff) border-box;
    background-size: 300% 100%, 100% 100%;
    animation: gradShift 3.5s linear infinite alternate, spin 3s linear infinite;
    box-shadow: 0 0 20px -2px rgba(255, 215, 0, 0.45), 0 4px 14px rgba(2, 6, 18, 0.55);
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pill i {
    font-size: 0.85em;
    transition: transform 0.2s ease;
}

.pill:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 0 34px 0 rgba(255, 215, 0, 0.65), 0 6px 18px rgba(2, 6, 18, 0.55);
}

.pill:hover i {
    transform: translateX(4px);
}

.pill:active {
    transform: translateY(1px) scale(0.98);
}

/* Nav */
.nav-wrap {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 4%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    background: rgba(8, 14, 30, 0.6);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid var(--stroke-soft);
    border-radius: 100px;
    padding: 0.65rem 0.7rem 0.65rem 1.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    max-width: 980px;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.brand-logo {
    height: 34px;
    width: auto;
    display: block;
}

.brand-fallback {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    color: var(--white);
}

.brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 30%;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 800;
    color: #1a1400;
    font-family: 'Bricolage Grotesque';
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-links a {
    color: var(--dim);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 500;
    padding: 0.6rem 1.05rem;
    border-radius: 100px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: var(--glass);
}

.menu-btn {
    display: none;
    background: var(--glass-2);
    border: 1px solid var(--stroke);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'Instrument Sans';
}

.mobile-sheet {
    display: none;
    position: fixed;
    top: 78px;
    left: 4%;
    right: 4%;
    z-index: 99;
    background: rgba(10, 18, 38, 0.94);
    backdrop-filter: blur(28px);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.mobile-sheet.open {
    display: block;
}

.mobile-sheet a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.9rem 1rem;
    border-radius: 14px;
}

.mobile-sheet a:hover {
    background: var(--glass);
}

.mobile-sheet a:last-child {
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ---------- Hero ---------- */
.ct-hero {
    max-width: 760px;
    margin: 0 auto;
    padding: 10.5rem 5% 0;
    text-align: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'JetBrains Mono';
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.3rem;
}

.kicker i {
    font-size: 0.8rem;
}

.ct-hero h1 {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: clamp(2.2rem, 5.4vw, 3.7rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.ct-hero .lede {
    color: var(--dim);
    font-size: 1.12rem;
    margin-top: 1.1rem;
}

/* ---------- Contact layout ---------- */
.ct-grid {
    max-width: 1120px;
    margin: 3rem auto 0;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }
}

/* Left: contact methods */
.ct-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--glass);
    backdrop-filter: blur(18px);
    border: 1px solid var(--stroke-soft);
    border-radius: 20px;
    padding: 1.4rem 1.4rem;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.method:hover {
    transform: translateY(-3px);
    border-color: var(--gold-stroke);
    box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.8), 0 0 26px -14px rgba(255, 215, 0, 0.3);
}

.method-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.16), rgba(255, 169, 40, 0.08));
    border: 1px solid var(--gold-stroke);
    color: var(--gold);
    font-size: 1.1rem;
}

.method h3 {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--white);
}

.method p {
    color: var(--dim);
    font-size: 0.9rem;
}

.method:hover h3 {
    color: var(--gold);
}

.method .val {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 0.35rem;
    display: inline-block;
}

.ct-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.3rem;
    padding: 0 0.2rem;
}

.ct-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ct-social a svg {
    display: block;
}

.ct-social a.s-fb {
    background: #1877F2;
}

.ct-social a.s-x {
    background: #16181c;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ct-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
}

/* Right: white form sheet */
.form-shell {
    position: relative;
}

.form-shell::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50px;
    background: conic-gradient(from var(--angle), rgba(255, 215, 0, 0.3), rgba(66, 133, 244, 0.2), rgba(155, 114, 203, 0.2), rgba(255, 169, 40, 0.28), rgba(255, 215, 0, 0.3));
    animation: spin 10s linear infinite;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
}

.form-card {
    position: relative;
    z-index: 1;
    isolation: isolate;
    background: #fff;
    color: var(--g-text);
    border-radius: 28px;
    padding: 2.4rem clamp(1.5rem, 4vw, 2.6rem);
    box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.07), 0 0 80px -30px rgba(255, 215, 0, 0.3);
}

.form-card ::selection {
    background: var(--g-blue);
    color: #fff;
}

.form-card .fc-eyebrow {
    font-family: 'JetBrains Mono';
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--g-grey);
    margin-bottom: 0.5rem;
}

.form-card h2 {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--g-text);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.field {
    margin-bottom: 1.1rem;
}

.field.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

@media (max-width: 520px) {
    .field.two {
        grid-template-columns: 1fr;
    }
}

.field label {
    display: block;
    font-family: 'JetBrains Mono';
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--g-grey);
    margin-bottom: 0.45rem;
}

.input-wrap {
    position: relative;
}

.input-wrap>i {
    position: absolute;
    left: 1.05rem;
    top: 1.05rem;
    color: var(--g-grey);
    font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: 'Instrument Sans';
    font-size: 1rem;
    color: var(--g-text);
    background: #fff;
    border: 1.5px solid #dadce0;
    border-radius: 14px;
    padding: 0.88rem 1rem 0.88rem 2.7rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
    padding-top: 0.88rem;
    resize: vertical;
    min-height: 130px;
}

.field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2370757a' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    padding-right: 2.6rem;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9aa0a6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--g-blue);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}

.submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    color: #1a1400;
    background:
        linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968) padding-box,
        conic-gradient(from var(--angle), #fff, var(--gold), var(--gold-deep), var(--amber), #fff) border-box;
    background-size: 300% 100%, 100% 100%;
    animation: gradShift 3.5s linear infinite alternate, spin 3s linear infinite;
    box-shadow: 0 0 20px -2px rgba(255, 215, 0, 0.45), 0 4px 14px rgba(2, 6, 18, 0.4);
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit i {
    font-size: 0.85em;
    transition: transform 0.2s ease;
}

.submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 0 34px 0 rgba(255, 215, 0, 0.6), 0 6px 18px rgba(2, 6, 18, 0.4);
}

.submit:hover i {
    transform: translateX(4px);
}

.fc-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--g-grey);
    margin-top: 1rem;
}

.fc-note i {
    color: var(--g-green);
    margin-right: 0.35rem;
}

/* success */
.sent {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
}

.sent.show {
    display: block;
}

.form-view.hide {
    display: none;
}

.sent-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 168, 83, 0.12);
    border: 1.5px solid rgba(52, 168, 83, 0.4);
    color: var(--g-green);
    font-size: 1.7rem;
    animation: popIn 0.5s cubic-bezier(0.34, 1.7, 0.64, 1);
}

.sent h2 {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--g-text);
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.sent p {
    color: var(--g-sub);
    font-size: 0.98rem;
}

/* FAQ */
.faq-sec {
    max-width: 780px;
    margin: 6rem auto 0;
    padding: 0 5%;
}

.faq-sec .sec-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-sec .eyebrow {
    font-family: 'JetBrains Mono';
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dimmer);
    margin-bottom: 0.8rem;
}

.faq-sec h2 {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    letter-spacing: -0.02em;
}

.faq details {
    background: var(--glass);
    backdrop-filter: blur(18px);
    border: 1px solid var(--stroke-soft);
    border-radius: 18px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq details:hover,
.faq details[open] {
    border-color: var(--gold-stroke);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary i {
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq details[open] summary {
    color: var(--gold);
}

.faq details[open] summary i {
    transform: rotate(180deg);
}

.faq .ans {
    padding: 0 1.5rem 1.35rem;
    color: var(--dim);
    font-size: 0.98rem;
}

.faq .ans a {
    color: var(--gold);
    text-decoration: none;
}

/* Footer */
footer {
    border-top: 1px solid var(--stroke-soft);
    padding: 3.75rem 5% 2.5rem;
    margin-top: 6rem;
    background: linear-gradient(180deg, transparent, rgba(10, 20, 40, 0.7));
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.9fr 0.9fr 1fr;
    gap: 2.25rem;
    padding-bottom: 2.5rem;
}

.foot-col h5 {
    font-family: 'JetBrains Mono';
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.foot-col a {
    display: block;
    color: var(--dim);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.foot-col a:hover {
    color: var(--gold);
}

.foot-brand p {
    font-size: 0.9rem;
    color: var(--dim);
    max-width: 270px;
    margin-top: 0.85rem;
}

.foot-brand .brand-logo {
    height: 34px;
}

.foot-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.1rem;
}

.foot-col .foot-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    color: #fff;
    border: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.foot-col .foot-social a svg {
    display: block;
    margin: 0 auto;
}

.foot-col .foot-social a.s-fb {
    background: #1877F2;
}

.foot-col .foot-social a.s-x {
    background: #16181c;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.foot-col .foot-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
    color: #fff;
}

.foot-base {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--stroke-soft);
    padding-top: 1.8rem;
    font-size: 0.78rem;
    color: var(--dimmer);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.foot-legal a {
    color: var(--dimmer);
    text-decoration: none;
}

.foot-legal a:hover {
    color: var(--gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 940px) {
    .foot-inner {
        grid-template-columns: 1fr 1fr;
    }

    .foot-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .brand-logo {
        height: 28px;
    }
}