/* ===============================
HOMEPAGE HERO
================================ */

.hero {

```
position: relative;

padding: 65px 0 35px;
```

}

.heroContent {

```
display: grid;

grid-template-columns:
    minmax(0, 1.35fr)
    minmax(320px, .65fr);

align-items: center;

gap: 55px;
```

}

.heroText {

```
position: relative;
```

}

.kicker {

```
display: inline-flex;

align-items: center;

gap: 9px;

margin-bottom: 22px;

padding: 8px 14px;

border: 1px solid var(--border);

border-radius: 999px;

background:

    rgba(109,94,252,.12);

color: #c4bfff;

font-size: 12px;

font-weight: 700;

letter-spacing: .5px;
```

}

.dot {

```
width: 8px;

height: 8px;

border-radius: 50%;

background: var(--secondary);

box-shadow:

    0 0 14px

    rgba(34,197,94,.75);
```

}

.hero h1 {

```
max-width: 760px;

margin-bottom: 22px;

font-size:

    clamp(42px, 7vw, 76px);

line-height: 1.02;

letter-spacing: -2.5px;

background:

    linear-gradient(

        90deg,

        #ffffff,

        #b9b2ff,

        #67e8f9

    );

-webkit-background-clip: text;

-webkit-text-fill-color: transparent;

background-clip: text;
```

}

.lead {

```
max-width: 680px;

margin-bottom: 18px;

color: var(--text);

font-size:

    clamp(18px, 2.4vw, 23px);

line-height: 1.55;
```

}

.heroDescription {

```
max-width: 650px;

margin-bottom: 28px;

color: var(--muted);

font-size: 15px;

line-height: 1.8;
```

}

.heroButtons {

```
display: flex;

align-items: center;

flex-wrap: wrap;

gap: 12px;
```

}

.btn {

```
display: inline-flex;

align-items: center;

justify-content: center;

min-height: 46px;

padding: 0 20px;

border: 1px solid var(--border);

border-radius: 12px;

color: var(--text);

background:

    rgba(255,255,255,.05);

text-decoration: none;

font-size: 14px;

font-weight: 700;

transition:

    transform .25s ease,

    background .25s ease,

    border-color .25s ease;
```

}

.btn:hover {

```
transform: translateY(-2px);

border-color:

    rgba(109,94,252,.65);

background:

    rgba(109,94,252,.16);
```

}

.btn.primary {

```
border-color: transparent;

color: white;

background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--accent)

    );

box-shadow:

    0 12px 30px

    rgba(109,94,252,.25);
```

}

.btn.primary:hover {

```
background:

    linear-gradient(

        135deg,

        #7c6fff,

        #22d3ee

    );
```

}

.btn.secondary {

```
background:

    rgba(255,255,255,.045);
```

}

.miniNote {

```
margin-top: 22px;

color: var(--muted);

font-size: 12px;
```

}

/* ===============================
HERO CARD
================================ */

.heroCard {

```
position: relative;

padding: 30px;

border: 1px solid var(--border);

border-radius: 24px;

background:

    linear-gradient(

        145deg,

        rgba(255,255,255,.10),

        rgba(255,255,255,.035)

    );

box-shadow: var(--shadow);

overflow: hidden;
```

}

.heroCard::before {

```
content: "";

position: absolute;

width: 220px;

height: 220px;

top: -110px;

right: -80px;

border-radius: 50%;

background:

    rgba(6,182,212,.18);

filter: blur(55px);
```

}

.heroCardHeader,

.heroList,

.heroCardFooter {

```
position: relative;
```

}

.cardBadge {

```
display: inline-block;

margin-bottom: 14px;

color: #8b82ff;

font-size: 10px;

font-weight: 800;

letter-spacing: 1.4px;
```

}

.heroCard h3 {

```
margin-bottom: 8px;

color: white;

font-size: 25px;
```

}

.heroCardHeader p {

```
margin-bottom: 24px;

color: var(--muted);

font-size: 14px;

line-height: 1.6;
```

}

.heroList {

```
display: grid;

gap: 17px;

padding: 0;

list-style: none;
```

}

.heroList li {

```
display: flex;

align-items: flex-start;

gap: 12px;

color: #dce4f2;

font-size: 14px;

line-height: 1.5;
```

}

.check {

```
display: inline-flex;

flex: 0 0 auto;

align-items: center;

justify-content: center;

width: 24px;

height: 24px;

border: 1px solid

    rgba(34,197,94,.25);

border-radius: 50%;

color: var(--secondary);

background:

    rgba(34,197,94,.10);
```

}

.check svg {

```
width: 15px;

height: 15px;
```

}

.heroCardFooter {

```
display: flex;

align-items: center;

justify-content: space-between;

margin-top: 28px;

padding-top: 18px;

border-top: 1px solid var(--border);

color: var(--muted);

font-size: 12px;
```

}

.arrow {

```
color: #8b82ff;

font-size: 20px;
```

}

/* ===============================
SECTIONS
================================ */

.section {

```
padding: 75px 0 25px;
```

}

.sectionHeading {

```
display: flex;

align-items: flex-end;

justify-content: space-between;

gap: 35px;

margin-bottom: 30px;
```

}

.sectionHeading h2,

.ctaSection h2 {

```
margin-top: 8px;

color: white;

font-size:

    clamp(27px, 4vw, 40px);

line-height: 1.15;

letter-spacing: -.8px;
```

}

.sectionHeading > p {

```
max-width: 470px;

color: var(--muted);

font-size: 14px;

line-height: 1.7;
```

}

.sectionEyebrow {

```
color: #8b82ff;

font-size: 10px;

font-weight: 800;

letter-spacing: 1.5px;
```

}

.centered {

```
display: block;

max-width: 700px;

margin-right: auto;

margin-left: auto;

text-align: center;
```

}

.centered p {

```
max-width: 620px;

margin: 16px auto 0;
```

}

/* ===============================
BENEFIT CARDS
================================ */

.grid {

```
display: grid;

grid-template-columns:

    repeat(3, minmax(0, 1fr));

gap: 18px;
```

}

.card {

```
position: relative;

padding: 28px;

border: 1px solid var(--border);

border-radius: 20px;

background:

    linear-gradient(

        145deg,

        rgba(255,255,255,.08),

        rgba(255,255,255,.035)

    );

transition:

    transform .25s ease,

    border-color .25s ease,

    background .25s ease;
```

}

.card:hover {

```
transform: translateY(-5px);

border-color:

    rgba(109,94,252,.55);

background:

    linear-gradient(

        145deg,

        rgba(109,94,252,.14),

        rgba(255,255,255,.045)

    );
```

}

.icon {

```
display: flex;

align-items: center;

justify-content: center;

width: 48px;

height: 48px;

margin-bottom: 20px;

border: 1px solid

    rgba(109,94,252,.35);

border-radius: 14px;

color: #b9b2ff;

background:

    linear-gradient(

        135deg,

        rgba(109,94,252,.22),

        rgba(6,182,212,.12)

    );
```

}

.icon svg {

```
width: 24px;

height: 24px;
```

}

.card h4 {

```
margin-bottom: 10px;

color: white;

font-size: 19px;
```

}

.card p {

```
min-height: 72px;

color: var(--muted);

font-size: 14px;

line-height: 1.7;
```

}

.cardLink {

```
display: inline-block;

margin-top: 18px;

color: #9b93ff;

text-decoration: none;

font-size: 13px;

font-weight: 700;
```

}

.cardLink:hover {

```
color: white;
```

}

/* ===============================
SOLUTIONS
================================ */

.solutionsSection {

```
padding-top: 90px;
```

}

.solutionGrid {

```
display: grid;

grid-template-columns:

    repeat(3, minmax(0, 1fr));

gap: 16px;
```

}

.solutionCard {

```
display: flex;

align-items: flex-start;

gap: 16px;

min-height: 170px;

padding: 24px;

border: 1px solid var(--border);

border-radius: 18px;

color: inherit;

background:

    rgba(255,255,255,.045);

text-decoration: none;

transition:

    transform .25s ease,

    border-color .25s ease,

    background .25s ease;
```

}

.solutionCard:hover {

```
transform: translateY(-4px);

border-color:

    rgba(6,182,212,.55);

background:

    rgba(6,182,212,.08);
```

}

.solutionIcon {

```
display: flex;

flex: 0 0 auto;

align-items: center;

justify-content: center;

width: 42px;

height: 42px;

border-radius: 12px;

color: #67e8f9;

background:

    rgba(6,182,212,.12);

font-size: 21px;
```

}

.solutionCard h3 {

```
margin-bottom: 8px;

color: white;

font-size: 17px;
```

}

.solutionCard p {

```
color: var(--muted);

font-size: 13px;

line-height: 1.65;
```

}

.solutionArrow {

```
margin-left: auto;

color: #8b82ff;

font-size: 20px;
```

}

/* ===============================
CTA SECTION
================================ */

.ctaSection {

```
position: relative;

margin-top: 90px;

padding: 55px 35px;

border: 1px solid var(--border);

border-radius: 24px;

text-align: center;

background:

    linear-gradient(

        135deg,

        rgba(109,94,252,.16),

        rgba(6,182,212,.09)

    );

overflow: hidden;
```

}

.ctaSection::before {

```
content: "";

position: absolute;

width: 350px;

height: 350px;

top: -230px;

left: 50%;

transform: translateX(-50%);

border-radius: 50%;

background:

    rgba(109,94,252,.20);

filter: blur(65px);
```

}

.ctaContent {

```
position: relative;
```

}

.ctaSection h2 {

```
max-width: 720px;

margin: 10px auto 14px;
```

}

.ctaSection p {

```
max-width: 620px;

margin: 0 auto 25px;

color: var(--muted);

font-size: 15px;

line-height: 1.7;
```

}

.ctaSection .heroButtons {

```
justify-content: center;
```

}

/* ===============================
RESPONSIVE DESIGN
================================ */

@media (max-width: 900px) {

```
.heroContent {

    grid-template-columns: 1fr;

    gap: 35px;

}


.heroCard {

    max-width: 650px;

}


.grid,

.solutionGrid {

    grid-template-columns: 1fr;

}


.card p {

    min-height: auto;

}
```

}

@media (max-width: 700px) {

```
.hero {

    padding-top: 45px;

}


.hero h1 {

    font-size: 44px;

    letter-spacing: -1.5px;

}


.section {

    padding-top: 60px;

}


.sectionHeading {

    display: block;

}


.sectionHeading > p {

    margin-top: 15px;

}


.heroButtons {

    align-items: stretch;

    flex-direction: column;

}


.btn {

    width: 100%;

}


.heroCard {

    padding: 22px;

    border-radius: 18px;

}


.ctaSection {

    margin-top: 65px;

    padding: 40px 20px;

    border-radius: 18px;

}
```

}

@media (max-width: 500px) {

```
.hero h1 {

    font-size: 38px;

}


.lead {

    font-size: 17px;

}


.solutionCard {

    padding: 20px;

}
```

}
