.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 120px;
    position: relative;
    overflow: hidden;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero .hero-bg .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 20%, rgba(0, 217, 255, 0.13), transparent 55%), radial-gradient(ellipse at 15% 80%, rgba(13, 63, 143, 0.08), transparent 50%);
}

.hero .hero-bg .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 40%, rgba(0, 0, 0, 0.4), transparent 70%);
}

.hero .h-title {
    font-family: 'Unbounded', sans-serif;
    font-size: min(12vw, 200px);
    font-weight: 900;
    line-height: .82;
    position: relative;
    z-index: 1;
}

.hero .h-title .h-t-line {
    overflow: hidden;
    display: block;
    color: var(--text-primary);
}

.hero .h-title .h-t-line .h-t-w {
    display: inline-block;
}

.hero .h-title .h-t-line .h-t-w.stroke {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}

.section .container {
    max-width: 1440px;
    width: 100%;
    margin: auto;
}

.main-hero {
    padding: 100px 0 50px;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    width: 100%;
    padding: 0px 20px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    font-family: var(--cod);
    color: var(--primary-dark);
    background: rgba(0, 217, 255, .10);
    border: 1px solid rgba(0, 217, 255, .22);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-grid .term-h {
    display: block;
    text-align: center;
    position: relative;
    translate: none;
    rotate: none;
    scale: none;
    border-radius: 50px;
    font-family: var(--bold);
    font-size: min(7.5vw, 7.5rem);
    font-weight: bolder;
    line-height: .89;
}

.hero-grid .term-h .term-h-set {
    background: linear-gradient(to right, var(--primary-dark) 50%, var(--text-primary) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    max-width: 660px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.section {
    padding: 50px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-head h2 {
    color: var(--text-primary);
    font-family: var(--unb);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.05em;
}

.section-head h2 .g-f-a {
    display: inline-block;
    overflow: hidden;
}

.section-head h2 .g-f-a .g-f-a-s {
    display: inline-flex;
    flex-wrap: nowrap;
    transform: translateY(95px);
}

.section-head h2 .g-f-a .g-f-a-s .g-f-a-s-a {
    color: transparent;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
}

.section-head p {
    max-width: 540px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.terms-card {
    min-height: 230px;
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(237, 247, 255, .74));
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.08);
}

.terms-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -80px;
    right: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, .58), transparent 70%);
}

.terms-card .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--bg-secondary);
    background: var(--gradient-primary);
    border: 1px solid var(--border-hover);
    font-weight: 900;
}

.terms-card h3 {
    margin-bottom: 13px;
    color: var(--text-primary);
    font-size: 22px;
}

.terms-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}


.terms-card {
    opacity: 0;
    transform: translateY(44px);
}

@media (max-width: 900px) {

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 8px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 786px) {
    .hero-grid {
        padding: 0px 8px;
    }

    .hero-grid .term-h .term-h-set {
        background-position: 200% 100%;
    }

    .main-hero {
        padding: 40px 0 0px;
    }

    .section-head h2 .g-f-a .g-f-a-s {
        transform: translateY(0px);
    }

    .section-head {
        margin-bottom: 15px;
        gap: 15px;
    }

    .terms-card {
        padding: 22px;
    }

    .terms-card h3 {
        font-size: 17px;
    }

    .terms-card p {
        font-size: 14px;
    }

    .terms-card {
        opacity: 1;
        transform: translateY(0px);
    }
}