@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&display=swap');

@font-face {
    font-family: 'Fixel Display';
    src: url('Fixel/FixelDisplay/FixelDisplay-Regular.woff2') format('woff2'),
        url('Fixel/FixelDisplay/FixelDisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fixel Display';
    src: url('Fixel/FixelDisplay/FixelDisplay-Bold.woff2') format('woff2'),
        url('Fixel/FixelDisplay/FixelDisplay-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fixel Display';
    src: url('Fixel/FixelDisplay/FixelDisplay-Italic.woff2') format('woff2'),
        url('Fixel/FixelDisplay/FixelDisplay-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Fixel Text';
    src: url('Fixel/FixelText/FixelText-Regular.woff2') format('woff2'),
        url('Fixel/FixelText/FixelText-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}





:root {
    --bg-color: #0B0B0B;
    --primary-color: #8A38F5;
    --text-color: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --button-bg: #202020;
    --font-family: 'Fixel Text', sans-serif;
}

/* Responsive Variables */
@media (max-width: 599px) {
    :root {
        --padding: 10px;
        --font-size: 14px;
    }
}

@media (min-width: 600px) and (max-width: 1199px) {
    :root {
        --padding: 10px;
        --font-size: 14px;
    }
}

@media (min-width: 1200px) {
    :root {
        --padding: 30px;
        --font-size: 20px;
    }
}





/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body,
html {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Background Layers */
.bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background: url('images/HomeBG.png') center/cover no-repeat;
    mask-image: radial-gradient(circle 400px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 400px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
    opacity: 1;
}

/* Header */
.header {
    padding: 24px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    overflow: hidden;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 100px;
    height: 56px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    padding: 13px 24px;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}

.btn__text {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: "Fixel Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.192px;
    text-transform: uppercase;
}

.btn__blurredEllipse-1,
.btn__blurredEllipse-2,
.btn__blurredEllipse-3,
.btn__blurredEllipse-4 {
    filter: blur(18px);
    position: absolute;
    width: 96px;
    height: 96px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 0;
}

.btn__blurredEllipse-1 {
    background-color: #F4B684;
    transform: translateX(-174px) translateY(82px);
}

.btn__blurredEllipse-2 {
    background-color: #E66800;
    transform: translateX(186px) translateY(-48px);
}

.btn__blurredEllipse-3 {
    background-color: #FF5900;
    transform: translateX(0px) translateY(-184px);
}

.btn__blurredEllipse-4 {
    background-color: #FF8C2E;
    transform: translateX(60px) translateY(108px);
}

.btn:hover .btn__blurredEllipse-1 {
    transform: translateX(60px) translateY(10px);
}

.btn:hover .btn__blurredEllipse-2 {
    transform: translateX(-84px) translateY(12px);
}

.btn:hover .btn__blurredEllipse-3 {
    transform: translateX(0px) translateY(36px);
}

.btn:hover .btn__blurredEllipse-4 {
    transform: translateX(0px) translateY(-32px);
}



.btn-header {
    background: #ffffff12;
    backdrop-filter: blur(24px);
    color: var(--text-color);
}

.btn-header:hover {
    background: transparent;
}

.btn-primary {
    background: var(--button-bg);
    color: var(--text-color);
    border-color: var(--button-bg);
}

.btn-secondary:hover {
    background: var(--button-bg);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    max-width: 1390px;
    margin: 0 auto;
}

.hero-title {
    font-size: 84px;
    font-weight: 500;
    letter-spacing: -2.016px;
    line-height: 120%;
    margin-bottom: 24px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.192px;
    line-height: 25.6px;
    color: var(--text-color);
    opacity: 0.6;
    margin: 0 auto 48px;
}



/* ==== Feature Grid ==== */
.grid-row {
    display: flex;
    gap: 24px;
    margin-bottom: 90px;
    flex-wrap: wrap;
    /* allow wrapping on smaller screens */
}

/* ---- Grid items ---- */
.grid-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image cover */
.grid-cover {
    border-radius: 24px;
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
}

.grid-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title & subtitle */
.grid-title {
    color: var(--text-color);
    font-family: "Fixel Display";
    font-style: normal;
    align-self: stretch;
    font-weight: 500;
    line-height: 135%;
}

.grid-large .grid-title {
    margin: 18px 10px 10px;
    font-size: 48px;
    letter-spacing: -1.152px;
}

.grid-medium .grid-title {
    margin: 12px 10px 10px;
    font-size: 32px;
    letter-spacing: -0.72px;
}

.grid-small .grid-title {
    margin: 12px 10px 10px;
    font-size: 30px;
    letter-spacing: -0.64px;
}


.grid-subtitle {
    margin: 0 12px;
    max-width: 720px;
    align-self: stretch;
    color: var(--text-secondary);
    font-family: "Fixel Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    /* 25.6px */
    letter-spacing: -0.192px;
}

/* ---- Size variants ---- */
.grid-large {
    flex: 1 1 calc(100% - 330px - 24px);
    min-width: 0;
}

.grid-medium {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
}

.grid-small {
    flex: 0 0 330px;
    width: 330px;
}

.grid-full {
    flex: 1 1 100%;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .grid-large {
        flex: 1 1 100%;
    }

    .grid-medium {
        flex: 1 1 100%;
    }

    .grid-small {
        flex: 1 1 100%;
        width: 100%;
    }
}





/* Grid CTA Section (inside grid-full) */
.grid-cta-content {
    height: 540px;
    padding: 60px 20px;
    background: url('images/CTA-Section-Background.png') center/cover no-repeat;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.grid-cta-title {
    font-family: "Fixel Display";
    font-size: 84px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 100.8px */
    letter-spacing: -2.016px;
    mix-blend-mode: soft-light;
}

.grid-cta-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
}

.grid-cta-label {
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: var(--grayscale-950, #0E0E0E);
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    display: flex;
    padding: 12px 12px 12px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.grid-cta-input {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--font-family);
    outline: none;
    width: 100%;
}

.grid-cta-input::placeholder {
    color: var(--text-secondary);
}

.grid-cta-input:focus {
    border-color: rgba(255, 255, 255, 0.24);
}

.grid-cta-submit {
    cursor: pointer;
    opacity: .24;
}

.grid-cta-submit.-valid {
    opacity: 1;
}

.grid-cta-footnote {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.192px;
    line-height: 25.6px;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 24px;

    color: #FFF;
    text-align: center;
    font-family: "Fixel Text";
    font-style: normal;
    line-height: 160%;
    letter-spacing: -0.192px;
}

/* Footer Section */
.footer {
    padding: 60px 0 240px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.footer-content {
    max-width: 1390px;
    margin: 0 auto;
}

.footer-title {
    font-size: 84px;
    font-weight: 500;
    letter-spacing: -2.016px;
    line-height: 100.8px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.footer-links {
    margin-top: 0;
}

.footer-link {
    font-size: 84px;
    font-weight: 500;
    letter-spacing: -2.016px;
    line-height: 100.8px;
    color: var(--text-color);
    transition: opacity 0.3s;
    text-decoration: underline;
}

.footer-link:hover {
    opacity: 0.8;
}