:root {
    --bg: #0B0F14;
    --card: #10141b;
    --card-border: rgba(255,255,255,0.08);
    --text: #FFFFFF;
    --muted: #B6C0D0;
    --orange: #e96100;
    --orange2: #ff961f;
    --container-width: 1440px;
    font-size: 16px;
}

/* =========================
   BASE / RESET
   ========================= */

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', Arial;
    background-color: var(--bg);
    color: var(--text);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

p {
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

input,
select,
textarea,
button {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    transition: color 0.2s ease;
}

a:hover {
    color: var(--orange2);
}
/* =========================
   LAYOUT
   ========================= */

.section {
    padding: 6% 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.section__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section__text {
    text-align: center;
}

.section__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    display: inline-block;
}

.section__title::before,
.section__title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(-90deg, var(--orange), transparent);
    transform: translateY(-50%);
}

.section__title::before {
    left: -100px;
}

.section__title::after {
    right: -100px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

/* =========================
   HEADER
   ========================= */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    border-bottom: 2px solid var(--card-border);
    position: sticky;
    top: 0;
    background-color: var(--bg);
    z-index: 1000;
}

.header__inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-weight: 600;
}

.header__logo {
    font-size: 1rem;
    font-weight: 600;
}

.logo__icon {
    width: 3rem;
    height: 3rem;
    vertical-align: middle;
}

/* =========================
   HERO
   ========================= */

.hero__inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 6rem;
    align-items: start;
}

.hero__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    max-width: 55rem;
}

.hero__title span {
    color: var(--orange2);
}

.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.hero__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: fit-content;
}

.hero__pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hero__pills .pill {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--orange2);
    border-radius: 0.5rem;
    padding: 1.5rem 2.25rem;
    gap: 0.5rem;
    background-color: var(--card);
}

.pill__title {
    font-size: 1.5rem;
    color: var(--orange2);
}

/* =========================
   CARDS
   ========================= */

.card {
    display: flex;
    gap: 1rem;
    border: 2px solid var(--card-border);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background-color: var(--card);
}

.card__icon {
    width: 6rem;
    height: 6rem;
}

.card__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card__text h3 {
    font-size: 1.25rem;
}

.card--vertical {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card--horisontal {
    flex-direction: row;
    align-items: center;
}

.what__cards,
.how__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.section.what {
    gap: 2rem;
}

.what__cards .card,
.how__cards .card {
    padding: 1.5rem 3rem;
}

.what__cards .card__icon,
.how__cards .card__icon {
    width: 6rem;
    height: 6rem;
}

.what__cards .card__text h3,
.how__cards .card__text h3 {
    font-size: 1.5rem;
}


/* =========================
   BUTTONS
   ========================= */

.button {
    position: relative;
    display: grid;
    place-content: center;
    padding: 0.875rem clamp(1.5rem, 4vw, 5rem);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    max-width: fit-content;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);

    color: #ffffff;
    background: linear-gradient(
        180deg,
        #ff7b00 0%,
        #eb6200 55%,
        #eb5e00 100%
    );

    box-shadow:
        0 6px 18px rgba(233, 97, 0, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.25),
        inset 0 -1px 0 rgba(0,0,0,0.25);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
            

}

.button::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: radial-gradient(
        circle at center,
        rgba(233, 97, 0, 0.25),
        transparent 60%
    );
    opacity: 0;
    filter: blur(18px);
    z-index: -1;
    transition: opacity 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    color: white;
}

.button:hover::after {
    opacity: 1;
}

/* =========================
   FORM
   ========================= */

.form {
    max-width: 650px;
    margin: auto;
    display: grid;
    gap: 1rem;
    width: 100%;
}

.form__input,
.form__textarea,
.form__select {
    background: #0f141b;
    border: 2px solid rgba(255,255,255,0.08);
    color: white;
    padding: 0.875rem;
    border-radius: 12px;
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
}

.form .button {
    min-width: 100%;
}

/* =========================
   FOOTER
   ========================= */

.footer {
    border-top: 1px solid var(--card-border);
    padding: 1.5rem 2rem;
    color: var(--muted);
}

.footer__inner {
    margin: 0 auto;
    max-width: var(--container-width);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
   RESPONSIVE ≤ 992px
   ========================= */

@media (max-width: 992px) {

    .header__nav {
        display: none;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero__left {
        gap: 2rem;
    }

    .hero__cards {
        max-width: 100%;
    }

    .hero__pills {
        grid-template-columns: 1fr;
    }

    .what__cards,
    .how__cards {
        grid-template-columns: 1fr 1fr;
        min-width: 100%;
    }

    .section {
        padding: 5rem 2rem;
        min-width: 100%;
    }

    .footer__inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =========================
   RESPONSIVE ≤ 767px
   ========================= */

@media (max-width: 767px) {

    .hero__cards {
        width: 100%;
    }

    .card {
        padding: 1.25rem 1.5rem;
    }

    .card--horisontal {
        flex-direction: column;
        text-align: center;
    }

    .card__icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .hero__pills .pill {
        padding: 1.25rem 1.5rem;
    }

    .pill__title {
        font-size: 1.25rem;
    }

    .what__cards,
    .how__cards {
        grid-template-columns: 1fr;
    }

    .what__cards .card,
    .how__cards .card {
        padding: 1.5rem 2rem;
    }

    .what__cards .card__text h3,
    .how__cards .card__text h3 {
        font-size: 1.25rem;
    }

    .form {
        max-width: 100%;
    }

    .button {
        width: 100%;
        text-align: center;
    }
}

.header__link--cta {
    padding: 0.5rem 1.5rem;
    background: var(--orange);
    border-radius: 0.5rem;
}


/* Golden aura */


.global-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(233, 97, 0, 0.096),
            rgba(233, 97, 0, 0.05) 30%,
            rgba(233, 97, 0, 0.020) 50%,
            transparent 70%
        );


    filter: blur(30px);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-aura::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(233,97,0,0.35) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.15;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}

body > * {
    position: relative;
    z-index: 1;
}

::selection {
    background-color: var(--orange);
    color: #fff;
}

::-moz-selection {
    background-color: var(--orange);
    color: #fff;
}

