:root {
    --brand: #f07c00;
    --brand-2: #ffb000;
    --brand-dark: #b95400;
    --ink: #172033;
    --muted: #64748b;
    --soft: #f8fafc;
    --line: rgba(148, 163, 184, .24);
    --card: rgba(255, 255, 255, .82);
    --white: #fff;
    --dark: #111827;
    --success: #17a673;
    --danger: #e5484d;
    --radius: 28px;
    --radius-sm: 18px;
    --shadow: 0 24px 80px rgba(15, 23, 42, .12);
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, .08);
    --container: 1180px;
    --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: linear-gradient(180deg, #fff 0%, #fff7ed 42%, #fff 100%);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden
}

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

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

button,
input,
textarea {
    font: inherit
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    transform: translateY(-160%);
    transition: .25s
}

.skip-link:focus {
    transform: translateY(0)
}

:focus-visible {
    outline: 3px solid rgba(240, 124, 0, .35);
    outline-offset: 4px
}

.cg-container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .35s, visibility .35s
}

.site-loader.hidden {
    opacity: 0;
    visibility: hidden
}

.site-loader span {
    width: 13px;
    height: 13px;
    margin: 5px;
    border-radius: 999px;
    background: var(--brand);
    display: inline-block;
    animation: jump .8s infinite ease-in-out
}

.site-loader span:nth-child(2) {
    animation-delay: .12s
}

.site-loader span:nth-child(3) {
    animation-delay: .24s
}

@keyframes jump {
    50% {
        transform: translateY(-14px);
        opacity: .55
    }
}

.cg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: .28s
}

.cg-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .7)
}

.cg-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.cg-brand {
    display: flex;
    align-items: center
}

.cg-brand img {
    width: 150px;
    height: auto;
    object-fit: contain
}

.cg-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(18px);
    border-radius: 999px;
    box-shadow: var(--shadow-soft)
}

.cg-nav a {
    padding: 10px 15px;
    border-radius: 999px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
    transition: .22s
}

.cg-nav a:hover,
.cg-nav a.active {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: 0 10px 25px rgba(240, 124, 0, .24)
}

.cg-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 16px 35px rgba(17, 24, 39, .18);
    transition: .22s
}

.cg-nav-cta:hover {
    transform: translateY(-2px);
    background: #000
}

.cg-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    cursor: pointer
}

.cg-menu-btn span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    margin: 4px auto;
    border-radius: 99px;
    transition: .22s
}

.cg-hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 90px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden
}

.cg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 80% 12%, rgba(255, 176, 0, .28), transparent 32%), radial-gradient(circle at 16% 20%, rgba(240, 124, 0, .2), transparent 34%), linear-gradient(135deg, #fff 0%, #fff7ed 48%, #f8fafc 100%)
}

.cg-hero:before,
.cg-hero:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    z-index: -1
}

.cg-hero:before {
    width: 520px;
    height: 520px;
    right: -160px;
    top: 120px;
    background: linear-gradient(135deg, rgba(240, 124, 0, .18), rgba(255, 176, 0, .08));
    animation: float 8s ease-in-out infinite
}

.cg-hero:after {
    width: 340px;
    height: 340px;
    left: -130px;
    bottom: 20px;
    background: rgba(17, 24, 39, .06);
    animation: float 9s ease-in-out infinite reverse
}

@keyframes float {
    50% {
        transform: translateY(-22px) scale(1.03)
    }
}

.cg-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .72fr;
    align-items: center;
    gap: 64px
}

.cg-eyebrow,
.cg-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(240, 124, 0, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.cg-hero h1,
.cg-section h2,
.cg-footer h2,
.cg-cta h2 {
    margin: 18px 0 18px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.02;
    /* letter-spacing: -.05em */
}

.cg-hero h1 {
    font-size: clamp(42px, 7vw, 40px);
    max-width: 820px
}

.cg-hero p {
    max-width: 680px;
    margin: 0;
    color: #475569;
    font-size: clamp(17px, 2vw, 21px)
}

.cg-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 34px 0
}

.cg-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s, background .22s;
    color: inherit;
    overflow: hidden
}

.cg-btn:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .42), transparent);
    transform: translateX(-120%);
    transition: .55s
}

.cg-btn:hover:before {
    transform: translateX(120%)
}

.cg-btn:hover {
    transform: translateY(-3px)
}

.cg-btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: 0 18px 42px rgba(240, 124, 0, .28)
}

.cg-btn-soft {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(148, 163, 184, .24);
    box-shadow: var(--shadow-soft);
    color: #1f2937
}

.cg-btn-full {
    width: 100%;
    justify-content: space-between
}

.cg-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 650px;
    margin: 0
}

.cg-stats div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 22px;
    background: rgba(255, 255, 255, .62);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft)
}

.cg-stats dt {
    font-size: 28px;
    font-weight: 600;
    color: var(--brand);
    line-height: 1
}

.cg-stats dd {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 500
}

.cg-hero-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .55));
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
    overflow: hidden
}

.cg-card-orbit {
    position: absolute;
    inset: auto -90px -100px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(240, 124, 0, .22), transparent 68%)
}

.cg-hero-card img {
    width: 74px;
    height: 74px;
    padding: 12px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(240, 124, 0, .16)
}

.cg-hero-card h2 {
    font-size: 28px;
    line-height: 1.14;
    letter-spacing: -.03em;
    margin: 24px 0 12px
}

.cg-hero-card p {
    font-size: 15px;
    color: #64748b
}

.cg-hero-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none
}

.cg-hero-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #344054
}

.cg-hero-card li i {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(23, 166, 115, .1);
    color: var(--success)
}

.cg-section {
    padding: 110px 0
}

.cg-muted {
    background: linear-gradient(180deg, rgba(248, 250, 252, .84), rgba(255, 247, 237, .65));
    border-block: 1px solid rgba(148, 163, 184, .14)
}

.cg-split,
.cg-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center
}

.cg-section-copy h2,
.cg-section-head h2,
.cg-footer h2,
.cg-cta h2 {
    font-size: clamp(34px, 4.2vw, 40px)
}

.cg-section-copy p,
.cg-section-head p,
.cg-contact-card p {
    color: #64748b;
    font-size: 17px;
    margin: 0 0 14px
}

.cg-info-panel {
    display: grid;
    gap: 18px
}

.cg-info-panel article,
.cg-feature-card,
.cg-contact-card,
.cg-form,
.cg-cta-card {
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px)
}

.cg-info-panel article {
    padding: 28px
}

.cg-info-panel i,
.cg-feature-card span {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(240, 124, 0, .13), rgba(255, 176, 0, .14));
    color: var(--brand);
    font-size: 22px
}

.cg-info-panel h3,
.cg-feature-card h3,
.cg-benefit-list h3 {
    margin: 18px 0 8px;
    font-size: 20px;
    letter-spacing: -.02em
}

.cg-info-panel p,
.cg-feature-card p,
.cg-benefit-list p {
    margin: 0;
    color: #64748b
}

.cg-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px
}

.cg-section-head .cg-kicker {
    margin-inline: auto
}

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

.cg-feature-card {
    padding: 28px;
    transition: .25s
}

.cg-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.cg-device {
    position: relative
}

.cg-device:before {
    content: "";
    position: absolute;
    inset: 14% -6% -8% 16%;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(240, 124, 0, .14), rgba(17, 24, 39, .06));
    z-index: -1
}

.cg-device img {
    border-radius: 34px;
    box-shadow: var(--shadow)
}

.cg-benefit-list {
    display: grid;
    gap: 16px;
    margin-top: 28px
}

.cg-benefit-list article {
    display: flex;
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(255, 255, 255, .72)
}

.cg-benefit-list strong {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--dark);
    color: #fff
}

.cg-benefit-list h3 {
    margin: 0 0 4px
}

.cg-cta {
    padding: 40px 0 110px
}

.cg-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(255, 247, 237, .82))
}

.cg-cta-card h2 {
    max-width: 760px;
    margin-bottom: 0
}

.cg-footer {
    position: relative;
    padding: 110px 0 28px;
    background: radial-gradient(circle at 12% 20%, rgba(240, 124, 0, .2), transparent 28%), linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    overflow: hidden
}

.cg-footer:before {
    content: "";
    position: absolute;
    right: -160px;
    top: -100px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(240, 124, 0, .16);
    filter: blur(2px)
}

.cg-footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 36px
}

.cg-footer h2 {
    color: #fff
}

.cg-contact-card,
.cg-form {
    padding: 32px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12)
}

.cg-contact-card p {
    color: rgba(255, 255, 255, .72)
}

.cg-contact-list {
    display: grid;
    gap: 12px;
    margin-top: 26px
}

.cg-contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: .2s
}

.cg-contact-list a:hover {
    background: rgba(240, 124, 0, .22);
    transform: translateX(4px)
}

.cg-form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 16px
}

.cg-form label {
    font-weight: 800;
    color: #fff
}

.cg-form input,
.cg-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    outline: 0;
    transition: .2s;
    resize: vertical
}

.cg-form input::placeholder,
.cg-form textarea::placeholder {
    color: rgba(255, 255, 255, .48)
}

.cg-form input:focus,
.cg-form textarea:focus {
    border-color: rgba(240, 124, 0, .75);
    box-shadow: 0 0 0 4px rgba(240, 124, 0, .14);
    background: rgba(255, 255, 255, .12)
}

.cg-form input.invalid,
.cg-form textarea.invalid {
    border-color: rgba(229, 72, 77, .9)
}

.cg-form small {
    min-height: 18px;
    color: #ffb4b4;
    font-weight: 700;
    font-size: 12px
}

.cg-form-note {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .54);
    font-size: 13px
}

.cg-subfooter {
    position: relative;
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .68);
    font-size: 14px
}

.cg-subfooter p {
    margin: 0
}

.cg-subfooter a {
    color: #fff;
    font-weight: 900
}

.cg-social {
    display: flex;
    gap: 10px
}

.cg-social a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    transition: .2s
}

.cg-social a:hover {
    transform: translateY(-3px);
    background: var(--brand)
}

.cg-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: 0 16px 36px rgba(240, 124, 0, .3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .22s
}

.cg-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease
}

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

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition: none !important
    }

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

@media (max-width:980px) {
    .cg-nav-cta {
        display: none
    }

    .cg-menu-btn {
        display: block
    }

    .cg-nav {
        position: fixed;
        top: 78px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 6px;
        padding: 14px;
        border-radius: 24px;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    .cg-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0)
    }

    .cg-nav a {
        padding: 13px 16px
    }

    .cg-hero {
        padding-top: 130px
    }

    .cg-hero-grid,
    .cg-split,
    .cg-benefit-grid,
    .cg-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .cg-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .cg-cta-card {
        align-items: flex-start;
        flex-direction: column
    }

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

@media (max-width:640px) {
    .cg-container {
        width: min(100% - 24px, var(--container))
    }

    .cg-header {
        padding: 10px 0
    }

    .cg-brand img {
        width: 132px
    }

    .cg-hero {
        min-height: auto;
        padding: 112px 0 60px
    }

    .cg-hero h1 {
        font-size: 40px
    }

    .cg-hero p {
        font-size: 16px
    }

    .cg-stats,
    .cg-feature-grid {
        grid-template-columns: 1fr
    }

    .cg-stats div,
    .cg-hero-card,
    .cg-contact-card,
    .cg-form,
    .cg-cta-card {
        border-radius: 24px
    }

    .cg-section {
        padding: 74px 0
    }

    .cg-section-copy h2,
    .cg-section-head h2,
    .cg-footer h2,
    .cg-cta h2 {
        font-size: 34px
    }

    .cg-hero-actions,
    .cg-btn {
        width: 100%
    }

    .cg-subfooter {
        display: grid;
        text-align: center;
        justify-content: center
    }

    .cg-social {
        justify-content: center
    }
}