* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080b12;
    color: #ffffff;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}


/* NAVBAR */

.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    background: rgba(8, 11, 18, 0.96);
    border-bottom: 1px solid #202632;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-link img {
    width: 105px;
    display: block;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    color: #b8c0ce;
    font-weight: 600;
    transition: 0.2s;
}

.navbar nav a:hover {
    color: #ffffff;
}


/* HERO */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background:
        radial-gradient(circle at 80% 40%, #1d4270 0%, transparent 28%),
        radial-gradient(circle at 70% 80%, #12243d 0%, transparent 30%),
        #080b12;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(76, 166, 255, 0.12);
    border-radius: 50%;
    right: -150px;
    top: 80px;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    border: 1px solid #315477;
    background: rgba(39, 125, 224, 0.1);
    color: #69b4ff;
    border-radius: 30px;
    padding: 9px 17px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.eyebrow {
    color: #4ca6ff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 100px);
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.hero h1 span {
    color: #4ca6ff;
}

.hero-content > p:not(.eyebrow) {
    color: #aeb6c5;
    font-size: 19px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* BUTTONS */

.button {
    display: inline-block;
    padding: 15px 25px;
    background: #277de0;
    border-radius: 7px;
    font-weight: bold;
    border: 1px solid #277de0;
    cursor: pointer;
    transition: 0.2s;
}

.button:hover {
    transform: translateY(-2px);
    background: #3690f5;
}

.secondary-button {
    background: transparent;
    border-color: #394554;
    color: #d5dbe5;
}

.secondary-button:hover {
    background: #151c27;
    border-color: #4ca6ff;
}


/* SECTIONS */

.section {
    padding: 100px 8%;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 38px;
    letter-spacing: -1px;
}

.view-all {
    color: #4ca6ff;
    font-weight: bold;
}

.view-all:hover {
    text-decoration: underline;
}


/* PRODUCTS */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 25px;
}

.product-card {
    background: #10151f;
    border: 1px solid #202936;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #347fc9;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.product-image {
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at center, #1b2d45 0%, #111721 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* PLACEHOLDER CARD */

.card-placeholder {
    width: 72%;
    height: 78%;
    border: 2px solid #385b7e;
    border-radius: 9px;
    background:
        linear-gradient(145deg, #182a40, #0d1520);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.placeholder-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #277de0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 15px;
}

.card-placeholder span {
    color: #dbe6f4;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.3;
}

.product-info {
    padding: 18px;
}

.product-category {
    color: #4ca6ff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 7px;
}

.product-info p {
    color: #8f98a8;
    font-size: 14px;
    margin-bottom: 14px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-bottom strong {
    font-size: 20px;
}

.stock {
    color: #6fda9b;
    font-size: 12px;
    font-weight: 600;
}

.sold-text {
    color: #e47777;
    font-size: 12px;
    font-weight: 600;
}

.sold-out {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #161a22;
    border: 1px solid #424854;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
}


/* WHY SECTION */

.why-section {
    padding: 120px 8%;
    border-top: 1px solid #202632;
    border-bottom: 1px solid #202632;
    background:
        linear-gradient(135deg, #0c111a, #0a0e15);
}

.why-content {
    max-width: 650px;
}

.why-content h2 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    margin-bottom: 25px;
}

.why-content > p:not(.eyebrow) {
    color: #9da6b5;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* INVENTORY HEADER */

.inventory-header {
    padding: 80px 8% 40px;
}

.inventory-header h1 {
    font-size: 60px;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.inventory-header > p:last-child {
    color: #9da6b5;
    font-size: 18px;
}


/* INVENTORY */

.inventory-section {
    padding: 20px 8% 100px;
}

.filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 110px 110px auto;
    gap: 10px;
    margin-bottom: 20px;
}

.filters input,
.filters select {
    width: 100%;
    background: #10151f;
    border: 1px solid #28303c;
    border-radius: 7px;
    color: white;
    padding: 14px;
    font-size: 14px;
    outline: none;
}

.filters input:focus,
.filters select:focus {
    border-color: #347fc9;
}

.filters input::placeholder {
    color: #697383;
}

.filters select option {
    background: #10151f;
}

.filters .button {
    padding: 14px 20px;
}

.inventory-count {
    color: #7f8999;
    font-size: 14px;
    margin-bottom: 25px;
}


/* EMPTY */

.empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #10151f;
    border: 1px solid #202936;
    border-radius: 12px;
}

.empty h2 {
    margin-bottom: 10px;
}

.empty p {
    color: #7f8999;
    margin-bottom: 25px;
}


/* PRODUCT DETAIL */

.product-detail {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 70px;
    align-items: center;
}

.product-detail-image {
    min-height: 600px;
    padding: 30px;
    background:
        radial-gradient(circle at center, #182b43, #10151f);
    border: 1px solid #202936;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}

.product-detail-image .card-placeholder {
    width: 72%;
    max-width: 320px;
    height: 78%;
    min-height: 420px;
}

.product-detail-info {
    padding: 20px 0;
}

.product-detail-info .eyebrow {
    margin-bottom: 18px;
}

.product-detail-info h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.product-set {
    color: #8d97a7;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.product-price {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 35px;
}

.product-details {
    border-top: 1px solid #272f3b;
    border-bottom: 1px solid #272f3b;
    margin-bottom: 30px;
}

.product-details > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid #202731;
}

.product-details > div:last-child {
    border-bottom: none;
}

.product-details span {
    color: #7f8999;
    font-size: 14px;
}

.product-details strong {
    color: #ffffff;
    font-size: 15px;
    text-align: right;
}

.product-detail-info .button {
    margin-top: 5px;
}


/* FOOTER */

footer {
    border-top: 1px solid #202632;
    padding: 50px 8%;
    background: #06080d;
}

.footer-content img {
    width: 100px;
    margin-bottom: 15px;
}

.footer-content p {
    color: #7e8796;
    margin-bottom: 5px;
}


/* MOBILE */

@media (max-width: 900px) {

    .filters {
        grid-template-columns: 1fr 1fr;
    }

    .filters .search-box {
        grid-column: 1 / -1;
    }

    .filters .button {
        grid-column: 1 / -1;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


@media (max-width: 700px) {

    .navbar {
        height: auto;
        padding: 18px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .navbar nav {
        gap: 18px;
        font-size: 14px;
    }

    .hero {
        min-height: 560px;
        padding: 60px 25px;
    }

    .hero h1 {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .section {
        padding: 70px 25px;
    }

    .section-heading {
        align-items: start;
        gap: 15px;
        flex-direction: column;
    }

    .inventory-header {
        padding: 60px 25px 30px;
    }

    .inventory-header h1 {
        font-size: 48px;
    }

    .inventory-section {
        padding: 20px 25px 70px;
    }

    .filters {
        grid-template-columns: 1fr;
    }

    .filters .search-box {
        grid-column: auto;
    }

    .filters .button {
        grid-column: auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 13px;
    }

    .product-info h3 {
        font-size: 14px;
    }

    .product-info p {
        font-size: 12px;
    }

    .product-bottom strong {
        font-size: 17px;
    }

    .stock,
    .sold-text {
        font-size: 10px;
    }

    .product-detail {
        margin: 40px auto;
        padding: 0 20px;
    }

    .detail-image {
        min-height: 350px;
    }

    .detail-info h1 {
        font-size: 38px;
    }

}
/* =========================================
   NEXTPULL HOMEPAGE
   ========================================= */

.hero {
    min-height: calc(100vh - 90px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;
    padding: 95px 8% 75px;
    background:
        radial-gradient(circle at 78% 45%, rgba(39, 125, 224, 0.22), transparent 30%),
        radial-gradient(circle at 55% 90%, rgba(76, 166, 255, 0.08), transparent 35%),
        #080b12;
    position: relative;
    overflow: hidden;
}


/* subtle background lines */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(76, 166, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(76, 166, 255, 0.025),
        0 0 0 140px rgba(76, 166, 255, 0.02);
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}


.hero-logo {
    width: 115px;
    height: auto;
    display: block;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.45));
}


.hero-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid #315477;
    background: rgba(39, 125, 224, 0.08);
    border-radius: 30px;
    color: #69b4ff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}


.hero h1 {
    position: relative;
    margin-bottom: 25px;
    font-size: clamp(58px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: -4px;
}


.hero h1 span {
    color: #4ca6ff;
    position: relative;
}


.hero h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 65%;
    height: 3px;
    background: #277de0;
    border-radius: 5px;
}


.hero-description {
    max-width: 510px;
    margin-bottom: 32px;
    color: #aeb6c5;
    font-size: 18px;
    line-height: 1.65;
}


.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 38px;
    flex-wrap: wrap;
}


.hero-trust div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8f98a8;
    font-size: 12px;
    font-weight: 600;
}


.hero-trust strong {
    color: #4ca6ff;
}


/* HERO CARD DISPLAY */

.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 520px;
    justify-self: end;
    z-index: 2;
}


.showcase-card {
    position: absolute;
    width: 245px;
    height: 350px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}


.showcase-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* back card */

.showcase-card-back {
    left: 20px;
    top: 90px;
    transform: rotate(-16deg);
    background:
        radial-gradient(circle at center, #21466e, #101721 70%);
    opacity: 0.7;
}


.showcase-card-back .showcase-card-inner::before {
    content: "NP";
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    font-size: 42px;
    font-weight: 900;
}


/* middle card */

.showcase-card-middle {
    left: 115px;
    top: 50px;
    transform: rotate(2deg);
    background:
        linear-gradient(145deg, #182a40, #0c1119);
    opacity: 0.9;
}


.showcase-card-middle .showcase-card-inner::before {
    content: "✦";
    font-size: 90px;
    color: #4ca6ff;
    text-shadow: 0 0 35px rgba(76,166,255,0.45);
}


/* front card */

.showcase-card-front {
    left: 180px;
    top: 105px;
    transform: rotate(13deg);
    z-index: 3;
    background:
        linear-gradient(145deg, #1d3857, #0c121b 65%);
}


.showcase-card-front::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
}


.showcase-card-front .showcase-card-inner {
    position: relative;
    flex-direction: column;
    gap: 20px;
}


.showcase-card-front img {
    width: 105px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5));
}


.showcase-card-front span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}


/* shine */

.showcase-card-shine {
    position: absolute;
    width: 80px;
    height: 500px;
    left: -140px;
    top: -80px;
    transform: rotate(25deg);
    background: rgba(255,255,255,0.07);
    z-index: 4;
}


/* showcase label */

.showcase-label {
    position: absolute;
    right: 5px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transform: rotate(-4deg);
    z-index: 5;
}


.showcase-label span {
    color: #7f8999;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 3px;
}


.showcase-label strong {
    color: #ffffff;
    font-size: 22px;
    letter-spacing: -1px;
}


/* FEATURED */

.featured-section {
    padding-top: 110px;
    padding-bottom: 110px;
}


.section-subtitle {
    margin-top: 8px;
    color: #7f8999;
    font-size: 14px;
}


/* =========================================
   NEXTPULL HOMEPAGE - LOWER SECTIONS
   ========================================= */


/* EVENTS SECTION */

.events-section {
    position: relative;
    padding: 120px 8%;
    border-top: 1px solid #202632;
    border-bottom: 1px solid #202632;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(39, 125, 224, 0.12),
            transparent 35%
        ),
        #0a0e15;
    overflow: hidden;
}

.events-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.events-header h2 {
    margin: 10px 0 20px;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.events-header h2 span {
    opacity: 0.5;
}

.events-header .section-subtitle {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.7;
}

.events-decoration {
    position: relative;
    width: 190px;
    height: 190px;
    flex-shrink: 0;
}

.event-circle {
    width: 155px;
    height: 155px;
    border: 1px solid rgba(76, 166, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.12em;
    transform: rotate(8deg);
    background:
        radial-gradient(
            circle,
            rgba(39, 125, 224, 0.12),
            transparent 65%
        );
}
.event-circle img {
    width: 95px;
    height: auto;
    display: block;
}

.event-star {
    position: absolute;
    top: -5px;
    right: 0;
    z-index: 2;
    font-size: 32px;
    opacity: 0.8;
}

.events-list {
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 35px;
    padding: 28px 0;
    border-top: 1px solid #202936;
}

.event-card:last-child {
    border-bottom: 1px solid #202936;
}

.event-date {
    width: 90px;
    height: 100px;
    border: 1px solid #28384a;
    background: #101721;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-2deg);
}

.event-date span {
    color: #4ca6ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.event-date strong {
    font-size: 34px;
    line-height: 1;
    margin: 5px 0;
}

.event-date small {
    color: #7f8999;
    font-size: 10px;
}

.event-type {
    color: #4ca6ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-info h3 {
    font-size: 24px;
    margin-bottom: 7px;
}

.event-info > p:not(.event-type) {
    color: #aeb6c5;
    margin-bottom: 7px;
}

.event-description {
    display: block;
    color: #727d8e;
    font-size: 13px;
    line-height: 1.5;
}

.event-link {
    color: #4ca6ff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.event-link:hover {
    transform: translateX(4px);
}

.events-empty {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px;
    border: 1px solid #202936;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            rgba(39, 125, 224, 0.07),
            #10151f
        );
}

.events-empty-icon {
    width: 65px;
    height: 65px;
    border: 1px solid #315274;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex-shrink: 0;
}

.events-empty h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.events-empty > div:last-child > p:last-child {
    color: #7f8999;
    line-height: 1.6;
}


/* ABOUT PULLS */

.about-pulls-section {
    position: relative;
    padding: 140px 8%;
    background: #080b12;
    overflow: hidden;
}

.about-pulls-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -300px;
    right: -200px;
    background: rgba(39, 125, 224, 0.08);
    filter: blur(100px);
}

.about-pulls-heading {
    max-width: 1200px;
    margin: 0 auto 70px;
}

.about-pulls-heading h2 {
    margin-top: 10px;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.about-pulls-heading h2 span {
    opacity: 0.5;
}

.about-pulls-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-pull-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    border: 1px solid #202936;
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            #111923,
            #0b1018
        );
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.about-pull-card:hover {
    transform: translateY(-8px);
    border-color: #315274;
}

.about-pull-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -90px;
    bottom: -90px;
    background: rgba(39, 125, 224, 0.08);
}

.featured-about-card {
    transform: translateY(-25px);
    background:
        linear-gradient(
            145deg,
            #142235,
            #0c121b
        );
    border-color: #2a4b6d;
}

.featured-about-card:hover {
    transform: translateY(-33px);
}

.about-pull-number {
    color: #4ca6ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.about-pull-icon {
    margin-top: 60px;
    margin-bottom: 25px;
    font-size: 32px;
    opacity: 0.8;
}

.about-pull-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.about-pull-card p {
    max-width: 300px;
    color: #8f98a8;
    line-height: 1.7;
}


/* MANIFESTO */

.manifesto-section {
    position: relative;
    min-height: 650px;
    padding: 140px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid #202632;
    border-bottom: 1px solid #202632;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #0b111a,
            #080b12
        );
}

.manifesto-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(39, 125, 224, 0.1);
    filter: blur(120px);
}

.manifesto-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.manifesto-content h2 {
    margin: 20px 0 35px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.manifesto-content h2 span {
    opacity: 0.5;
}

.manifesto-content > p:last-child {
    color: #4ca6ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.manifesto-symbol {
    position: absolute;
    font-size: 30px;
    opacity: 0.35;
}

.manifesto-symbol-one {
    top: 20%;
    left: 12%;
    transform: rotate(15deg);
}

.manifesto-symbol-two {
    top: 65%;
    right: 13%;
    font-size: 45px;
    transform: rotate(-15deg);
}

.manifesto-symbol-three {
    bottom: 15%;
    left: 20%;
    font-size: 24px;
}


/* FINAL CTA */

.final-cta-section {
    position: relative;
    min-height: 560px;
    padding: 120px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #06080d;
}

.final-cta-glow {
    position: absolute;
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: rgba(39, 125, 224, 0.12);
    filter: blur(100px);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.final-cta-content h2 {
    margin: 15px 0 25px;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.85;
    letter-spacing: -0.06em;
}

.final-cta-content h2 span {
    opacity: 0.55;
}

.final-cta-content > p:not(.eyebrow) {
    max-width: 500px;
    margin: 0 auto 35px;
    color: #8f98a8;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   HOMEPAGE MOBILE
   ========================================= */

@media (max-width: 900px) {

    .events-section {
        padding: 90px 6%;
    }

    .events-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 45px;
    }

    .events-decoration {
        display: none;
    }

    .event-card {
        grid-template-columns: 90px 1fr;
        gap: 20px;
    }

    .event-link {
        grid-column: 2;
    }

    .about-pulls-section {
        padding: 100px 6%;
    }

    .about-pulls-grid {
        grid-template-columns: 1fr;
    }

    .featured-about-card {
        transform: none;
    }

    .featured-about-card:hover {
        transform: translateY(-8px);
    }

    .manifesto-section {
        min-height: 550px;
        padding: 100px 6%;
    }

    .final-cta-section {
        padding: 100px 6%;
    }

}


@media (max-width: 600px) {

    .events-section {
        padding: 80px 6%;
    }

    .events-header h2 {
        font-size: 3.4rem;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 0;
    }

    .event-link {
        grid-column: auto;
    }

    .events-empty {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
    }

    .about-pulls-section {
        padding: 90px 6%;
    }

    .about-pulls-heading {
        margin-bottom: 50px;
    }

    .about-pulls-heading h2 {
        font-size: 3.8rem;
    }

    .about-pull-card {
        min-height: 280px;
    }

    .about-pull-icon {
        margin-top: 40px;
    }

    .manifesto-section {
        min-height: 500px;
    }

    .manifesto-content h2 {
        font-size: 3.2rem;
    }

    .manifesto-symbol-one {
        left: 5%;
    }

    .manifesto-symbol-two {
        right: 5%;
    }

    .final-cta-section {
        min-height: 480px;
    }

    .final-cta-content h2 {
        font-size: 4.3rem;
    }
}
    /* =========================================
   ABOUT PAGE
   ========================================= */

.about-hero {
    min-height: 650px;
    padding: 110px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(39, 125, 224, 0.14),
            transparent 30%
        ),
        #080b12;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(76, 166, 255, 0.08);
    border-radius: 50%;
    right: -250px;
    top: 40px;
}

.about-hero-content {
    max-width: 750px;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
    margin-bottom: 35px;
}

.about-hero h1 span {
    color: #4ca6ff;
}

.about-hero-content > p:last-child {
    max-width: 560px;
    color: #9da6b5;
    font-size: 18px;
    line-height: 1.7;
}

.about-hero-mark {
    position: relative;
    z-index: 2;
    width: 270px;
    text-align: center;
    flex-shrink: 0;
}

.about-mark-circle {
    width: 230px;
    height: 230px;
    margin: 0 auto 20px;
    border: 1px solid rgba(76, 166, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-7deg);
    background:
        radial-gradient(
            circle,
            rgba(39, 125, 224, 0.12),
            transparent 68%
        );
}

.about-mark-circle img {
    width: 145px;
    transform: rotate(7deg);
}

.about-hero-mark > span {
    color: #657082;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 3px;
}


/* ABOUT STORY */

.about-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 8%;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
}

.about-story-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about-story-label span {
    color: #4ca6ff;
    font-size: 12px;
    font-weight: bold;
}

.about-story-content {
    max-width: 800px;
}

.about-story-content h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    margin-bottom: 40px;
}

.about-story-content h2 span {
    color: #4ca6ff;
}

.about-story-content p {
    max-width: 680px;
    color: #8f98a8;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* ABOUT VALUES */

.about-values {
    padding: 130px 8%;
    border-top: 1px solid #202632;
    border-bottom: 1px solid #202632;
    background: #0a0e15;
}

.about-values-heading {
    max-width: 1200px;
    margin: 0 auto 65px;
}

.about-values-heading h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.about-values-heading h2 span {
    opacity: 0.5;
}

.about-values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-value-card {
    min-height: 340px;
    padding: 30px;
    border: 1px solid #202936;
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            #111923,
            #0b1018
        );
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-8px);
    border-color: #315274;
}

.about-value-featured {
    transform: translateY(-22px);
    border-color: #2a4b6d;
    background:
        linear-gradient(
            145deg,
            #142235,
            #0c121b
        );
}

.about-value-featured:hover {
    transform: translateY(-30px);
}

.about-value-number {
    color: #4ca6ff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.about-value-icon {
    margin-top: 60px;
    margin-bottom: 25px;
    font-size: 32px;
}

.about-value-card h3 {
    font-size: 27px;
    margin-bottom: 12px;
}

.about-value-card p {
    color: #8f98a8;
    line-height: 1.7;
    max-width: 310px;
}


/* ABOUT FINAL */

.about-final {
    min-height: 550px;
    padding: 120px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle,
            rgba(39, 125, 224, 0.12),
            transparent 45%
        ),
        #080b12;
}

.about-final-content {
    position: relative;
    z-index: 2;
}

.about-final h2 {
    margin: 15px 0 25px;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.85;
    letter-spacing: -0.06em;
}

.about-final h2 span {
    color: #4ca6ff;
}

.about-final-content > p:last-child {
    color: #7f8999;
    font-size: 16px;
}


/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-hero {
    padding: 120px 8% 90px;
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(39, 125, 224, 0.12),
            transparent 32%
        ),
        #080b12;
}

.contact-hero-content {
    max-width: 900px;
}

.contact-hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
    margin-bottom: 35px;
}

.contact-hero h1 span {
    color: #4ca6ff;
}

.contact-hero-content > p:last-child {
    max-width: 560px;
    color: #9da6b5;
    font-size: 18px;
    line-height: 1.7;
}


/* CONTACT OPTIONS */

.contact-options {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 8% 130px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-card {
    min-height: 330px;
    padding: 35px;
    border: 1px solid #202936;
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            #111923,
            #0b1018
        );
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: #315274;
}

.contact-card-icon {
    width: 58px;
    height: 58px;
    border: 1px solid #315274;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ca6ff;
    font-size: 24px;
    margin-bottom: 55px;
}

.contact-card-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    word-break: break-word;
}

.contact-card-content > p:last-child {
    color: #7f8999;
    line-height: 1.7;
    max-width: 400px;
}

.contact-arrow {
    margin-top: auto;
    padding-top: 25px;
    color: #4ca6ff;
    font-size: 20px;
}


/* CONTACT BOTTOM */

.contact-bottom {
    min-height: 500px;
    padding: 100px 8%;
    border-top: 1px solid #202632;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #06080d;
}

.contact-bottom-mark {
    margin-bottom: 30px;
}

.contact-bottom-mark img {
    width: 115px;
}

.contact-bottom h2 {
    margin-top: 15px;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.contact-bottom h2 span {
    opacity: 0.5;
}


/* =========================================
   ABOUT + CONTACT MOBILE
   ========================================= */

@media (max-width: 900px) {

    .about-hero {
        padding: 90px 6%;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-hero-mark {
        align-self: center;
    }

    .about-story {
        padding: 100px 6%;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-story-label {
        display: block;
    }

    .about-story-label span {
        display: none;
    }

    .about-values {
        padding: 100px 6%;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-featured {
        transform: none;
    }

    .about-value-featured:hover {
        transform: translateY(-8px);
    }

    .contact-hero {
        padding: 90px 6% 70px;
    }

    .contact-options {
        padding: 20px 6% 100px;
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .about-hero h1,
    .contact-hero h1 {
        font-size: 4rem;
    }

    .about-mark-circle {
        width: 190px;
        height: 190px;
    }

    .about-mark-circle img {
        width: 120px;
    }

    .about-story-content h2,
    .about-values-heading h2 {
        font-size: 3.5rem;
    }

    .about-final h2,
    .contact-bottom h2 {
        font-size: 4rem;
    }

    .contact-card {
        min-height: 300px;
        padding: 28px;
    }

}


