:root {
    --bg: #070b09;
    --text: #eaf2ee;
    --muted: #b9c7bf;
    --muted2: #97a89f;
    --line: rgba(255, 255, 255, .08);
    --shadow: 0 18px 55px rgba(0, 0, 0, .45);
    --accent: #2ad37d;
    --accent2: #f0c86b;
    --r16: 16px;
    --r20: 20px;
    --r26: 26px;
    --max: 1120px;
    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    --focus: 0 0 0 4px rgba(42, 211, 125, .18);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background:
    radial-gradient(900px 520px at 18% 8%, rgba(42, 211, 125, .14), transparent 60%),
    radial-gradient(760px 520px at 82% 0%, rgba(240, 200, 107, .10), transparent 62%),
    radial-gradient(680px 520px at 50% 92%, rgba(42, 211, 125, .08), transparent 58%),
    var(--bg);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 11, 9, .70);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    padding: 10px 0;
}

.navbar .navbar-nav{
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100px
}

.brand img{
    width: 100%;
}

.brand-item{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 16px;
    color: var(--muted);
    position: relative;
}

.brand-item:hover{
    color: var(--text);
}

.brand-item img{
    width: 20px;
}

.brand-item span{
    font-size: 14px;
}

.nav-item.nav-link {
    color: var(--muted);
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 12px;
    margin-right: 10px;
    background: transparent;
    border: 0;
    box-shadow: 0;
}

.nav-item.nav-link:hover {
    color: var(--text)
}

.nav-item.nav-link:focus {
    outline: none;
    box-shadow: var(--focus)
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 500;
    border: 1px solid rgba(42, 211, 125, .32);
    background: rgba(42, 211, 125, .10);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    user-select: none;
    white-space: nowrap;
    color: var(--text);
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(42, 211, 125, .14);
    color: #fff;
}

.btn:focus {
    outline: none;
    box-shadow: var(--focus)
}

.btn.secondary {
    border: 1px solid rgba(240, 200, 107, .30);
    background: rgba(240, 200, 107, .10);
}

.btn.secondary:hover {
    background: rgba(240, 200, 107, .14)
}

img {
    max-width: 100%;
    height: auto;
}

.error-msg {
    color: #b30707;
    font-size: 13px;
}

header.hero {
    padding: 44px 0 26px
}

.hero-banner {
    margin-bottom: 40px;
}

.hero-banner .card{
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-direction: row;
}

.hero-banner .left {
    width: 400px;
    min-width: 400px;
}

.hero-banner .right {
    width: calc(100% - 460px);
    min-width: calc(100% - 460px);
    padding: 0 40px;
}

.hero-banner .img-group {
    width: 100%;
    padding-top: 0px;
    position: relative;
}

.hero-banner .img1 {
    position: relative;
    z-index: 2;
    /* animation: rotateAntiClockwise 60s linear infinite; */
}

.hero-banner .img2 {
    position: absolute;
    left: 0;
    z-index: 0;
    animation: rotateClockwise 40s linear infinite;
    opacity: .6;
}

@keyframes rotateClockwise {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.hero-banner h1{
    font-size: 54px;
    color: #8bbdbc;
}

.hero-banner h3{
    font-size: 28px;
    margin: 6px 0 60px;
    font-weight: 400;
}

.hero-banner p{
    font-size: 26px;
    color: #fff;
    margin: 0;
    animation: fadeInRight 2s ease-out forwards;
    opacity: 0;
    transform: translateX(50px);
}

.hero-banner p.one{
    animation-delay: 1s;
}

.hero-banner p.two{
    animation-delay: 3s;
}

.hero-banner p.three{
    animation-delay: 5s;
}


@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px;
    align-items: stretch;
}

.card {
    background: linear-gradient(180deg, rgba(15, 23, 19, .88), rgba(12, 18, 15, .88));
    border: 1px solid var(--line);
    border-radius: var(--r26);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
    radial-gradient(620px 280px at 22% 18%, rgba(42, 211, 125, .16), transparent 62%),
    radial-gradient(520px 260px at 85% 10%, rgba(240, 200, 107, .12), transparent 62%);
    pointer-events: none;
}

.heroLeft {
    padding: 26px
}

.heroRight {
    padding: 22px
}

.heroInner {
    position: relative;
    z-index: 1
}

.pillTop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 14px;
}

.pillTop b {
    color: var(--text)
}

.pillTop .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(240, 200, 107, .9);
    display: inline-block
}

h1 {
    margin: 0 0 10px;
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -.6px;
    max-width: 18ch;
}

.lead {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    max-width: 68ch;
}

.note {
    margin: 14px 0 14px;
    padding: 10px 12px;
    border-radius: var(--r16);
    border: 1px solid rgba(240, 200, 107, .18);
    background: rgba(240, 200, 107, .06);
    color: rgba(234, 242, 238, .92);
    font-size: 13.5px;
}

.pillRow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 16px
}

.pill {
    font-size: 13px;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    padding: 8px 10px;
    border-radius: 999px;
}

.ctaRow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.micro {
    margin-top: 16px;
    color: var(--muted2);
    font-size: 12px
}

.h2mini {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.2px
}

.rightText {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px
}

.quote {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: var(--r16);
    background: rgba(42, 211, 125, .05);
    border: 1px solid rgba(42, 211, 125, .14);
    border-left: 2px solid rgba(42, 211, 125, .55);
    color: rgba(234, 242, 238, .90);
    font-size: 14px;
}

.gridStats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.stat {
    border-radius: var(--r16);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    padding: 12px;
}

.stat strong {
    display: block;
    font-size: 14px;
    color: var(--text)
}

.stat span {
    display: block;
    font-size: 12px;
    color: var(--muted2);
    margin-top: 2px
}

section {
    padding: 22px 0
}

.sectionCard {
    padding: 24px;
    border-radius: var(--r26);
    border: 1px solid var(--line);
    background: rgba(15, 23, 19, .78);
    box-shadow: var(--shadow);
}

h2 {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: -.2px
}

p {
    margin: 0 0 12px;
    color: var(--muted)
}

ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted)
}

li {
    margin: 7px 0
}

.twoCol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.callout {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--r20);
    border: 1px dashed rgba(240, 200, 107, .30);
    background: rgba(240, 200, 107, .06);
    color: var(--muted);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}

.ic {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(240, 200, 107, .25);
    background: rgba(240, 200, 107, .12);
    flex: 0 0 auto;
    color: var(--text);
    font-weight: 900;
}

.flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.flowCard {
    padding: 14px;
    border-radius: var(--r20);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.flowCard b {
    display: block;
    font-size: 14px
}

.flowCard small {
    display: block;
    margin-top: 6px;
    color: var(--muted2);
    font-size: 12px
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    padding: 6px 10px;
    border-radius: 999px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.step {
    padding: 14px;
    border-radius: var(--r20);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.step b {
    display: block;
    font-size: 14px
}

.step small {
    display: block;
    margin-top: 6px;
    color: var(--muted2);
    font-size: 12px
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 18px 0
}

.filterBox {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--r20);
    border: 1px solid rgba(240, 200, 107, .18);
    background: rgba(240, 200, 107, .05);
    color: var(--muted);
}

.filterBox h3 {
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: -.1px;
    color: var(--text);
}

.filterBox ul {
    margin: 8px 0 0
}

form {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.full {
    grid-column: 1 / -1
}

label {
    display: block;
    color: var(--muted2);
    font-size: 13px;
    margin: 0 0 6px
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .20);
    color: var(--text);
    outline: none;
}

textarea {
    min-height: 110px;
    resize: vertical
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: var(--focus);
    border-color: rgba(42, 211, 125, .45)
}

.formFooter {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2px
}

.hint {
    font-size: 12px;
    color: var(--muted2)
}

.result {
    display: none;
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--r20);
    border: 1px solid rgba(42, 211, 125, .20);
    background: rgba(42, 211, 125, .06);
    color: rgba(234, 242, 238, .92);
}

footer {
    padding: 26px 0 42px;
    color: var(--muted2)
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    font-size: 12px;
}

.stickyCta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px 14px;
    background: rgba(7, 11, 9, .72);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    display: none;
}

.stickyCta .inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.stickyCta .inner span {
    color: var(--muted);
    font-size: 12px
}

@media (max-width: 980px) {
    .heroGrid {
    grid-template-columns: 1fr
    }

    h1 {
    font-size: 40px;
    max-width: 22ch;
    }

    .steps {
    grid-template-columns: 1fr 1fr
    }

    .twoCol {
    grid-template-columns: 1fr
    }

    .flow {
    grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    form {
        grid-template-columns: 1fr;
    }

    .navlinks a.link {
        display: none;
    }

    .stickyCta {
        display: block;
    }

    header.hero {
        padding-bottom: 70px;
    }

    .hero-banner .card{
        align-items: start;
        flex-direction: column;
    }

    .hero-banner .img-group{
        width: 500px;
        margin: auto;
    }

    .hero-banner .left{
        width: 100%;
        min-width: 100%;
    }

    .hero-banner .right{
        width: 100%;
        min-width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .brand{
        width: 120px;
    }
}

@media (max-width: 576px) {
    .hero-banner .img-group{
        width: 100%;
        margin: auto;
    }

    .hero-banner .right{
        padding: 0;
    }

    .hero-banner h1{
        font-size: 34px;
    }

    .hero-banner h3 {
        font-size: 24px;
        margin: 6px 0 40px;
    }

    .hero-banner p{
        font-size: 18px;
    }
}

@media (max-width: 468px) {
    .hero-banner .right{
        margin-top: 30px;
    }
}
