* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080b10;
    color: #f4f6f8;
    line-height: 1.6;
}

.container {
    width: min(1120px, 90%);
    margin: auto;
}


/* NAVIGATION */

header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.nav {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
}

.logo span {
    font-weight: 400;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #b7bec8;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: white;
}


/* HERO */

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 75% 45%, #162333 0%, #080b10 45%);
}

.hero-content {
    padding-top: 70px;
}

.eyebrow {
    color: #7f8c9d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -3px;
    max-width: 800px;
}

.hero h1 span {
    color: #8f9baa;
}

.hero-description {
    color: #9da7b3;
    max-width: 560px;
    margin: 30px 0;
    font-size: 17px;
}

.button {
    display: inline-block;
    background: white;
    color: #080b10;
    padding: 14px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.button:hover {
    background: #dce2e8;
}


/* PRODUCTS */

.products-section {
    padding: 120px 0;
    background: #0c1016;
}

.section-heading {
    max-width: 600px;
    margin-bottom: 55px;
}

.section-heading h2,
.about-section h2 {
    font-size: 46px;
    letter-spacing: -2px;
    line-height: 1.05;
}

.section-heading > p:last-child {
    color: #8e98a5;
    margin-top: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-card {
    border: 1px solid #202731;
    background: #10151c;
    transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #485463;
}

.airport-code {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -2px;
    padding: 35px;
    border-bottom: 1px solid #202731;
}

.product-content {
    padding: 30px;
}

.country {
    color: #788493;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.product-content h3 {
    font-size: 28px;
    margin: 8px 0 12px;
}

.product-content p:not(.country) {
    color: #8f99a6;
    font-size: 14px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.price {
    font-size: 20px;
    font-weight: 700;
}

.product-button {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.product-button:hover {
    color: #aeb8c4;
}

.coming-soon {
    opacity: 0.55;
}

.coming {
    font-size: 10px;
    letter-spacing: 2px;
    color: #77818d;
}


/* ABOUT */

.about-section {
    padding: 130px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-section h2 span {
    color: #7f8a98;
}

.about-grid > div:last-child {
    color: #929ca8;
    padding-top: 10px;
}

.about-grid p {
    margin-bottom: 20px;
}


/* FOOTER */

footer {
    border-top: 1px solid #1c232c;
    padding: 55px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-content p {
    color: #737e8b;
    font-size: 13px;
    margin-top: 10px;
}

.footer-note {
    max-width: 350px;
    color: #68727e;
    font-size: 11px;
}

.copyright {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #171d24;
    color: #515b66;
    font-size: 11px;
}


/* ============================= */
/* PRODUCT PAGE HERO & PREVIEW    */
/* ============================= */

.product-hero {
    padding: 160px 0 90px;
    background: radial-gradient(circle at 75% 40%, #162333 0%, #080b10 45%);
}

.product-hero-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.product-hero h1 {
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -3px;
    max-width: 700px;
}

.product-hero h1 span {
    display: block;
    color: #8f9baa;
}

.product-intro {
    color: #9da7b3;
    max-width: 600px;
    margin: 30px 0;
    font-size: 16px;
}

.purchase-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    padding: 22px;
    margin-top: 35px;
    border: 1px solid #252e38;
    background: #10151c;
}

.price-large {
    font-size: 28px;
    font-weight: 700;
    margin-right: 15px;
}

.format {
    color: #727e8b;
    font-size: 12px;
}

.buy-button {
    border: none;
    background: white;
    color: #080b10;
    padding: 14px 25px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
}

.buy-button:hover {
    background: #dce2e8;
}

.purchase-note {
    color: #626d79;
    font-size: 11px;
    margin-top: 12px;
}

/* PREVIEW GRID */

.preview-card {
    width: 100%;
}

.preview-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #626d79;
    margin-bottom: 12px;
}

.preview-pages {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.preview-container {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-title {
    font-size: 10px;
    font-weight: 700;
    color: #8f9baa;
    letter-spacing: 1.5px;
}

.preview-image {
    position: relative;
    overflow: hidden;
    background: #0e1319;
    border: 1px solid #252e38;
    width: 100%;
    height: 480px;
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
}

.blur-mask {
    position: absolute;
    left: 0;
    width: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* Very deep dark blue tint with transparency */
    background: rgba(8, 12, 20, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 2;
}

.preview-badge {
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    /* Card dark blue background (#10151c) */
    background: #10151c;
    border: 1px solid #252e38;
    padding: 6px 12px;
    text-transform: uppercase;
    text-align: center;
}
.preview-badge {
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    /* Soft dark blue container matching the hero theme */
    background: rgba(8, 11, 16, 0.85);
    border: 1px solid rgba(143, 155, 170, 0.3);
    padding: 6px 12px;
    text-transform: uppercase;
    text-align: center;
}
.preview-badge {
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: #162333;
    border: 1px solid #3a4859;
    padding: 6px 12px;
    text-transform: uppercase;
    text-align: center;
}

.mask-p1 {
    top: 26%;
    height:90%;
}

.mask-p2-top {
    top: 0;
    height: 32%;
    border-top: none;
}

.mask-p2-bottom {
    top: 50%;
    height: 55%;
    border-bottom: none;
}

.mask-p3 {
    top: 0;
    height: 79%;
    border-top: none;
}


/* ============================= */
/* WHAT'S INCLUDED SECTION       */
/* ============================= */

.details-section {
    padding: 100px 0;
    background: #0c1016;
    border-top: 1px solid #1c232c;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.details-grid h2 {
    font-size: 42px;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-top: 10px;
}

.details-grid h2 span {
    color: #7f8a98;
    display: block;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.included-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.included-item span {
    font-size: 14px;
    font-weight: 800;
    color: #515b66;
    letter-spacing: 1px;
    padding-top: 2px;
}

.included-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.included-item p {
    color: #8f99a6;
    font-size: 14px;
}


/* ============================= */
/* PRODUCT INFORMATION SECTION   */
/* ============================= */

.info-section {
    padding: 100px 0;
    border-top: 1px solid #1c232c;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-grid h2 {
    font-size: 42px;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-top: 10px;
}

.info-grid h2 span {
    color: #7f8a98;
    display: block;
}

.info-text p {
    color: #8f99a6;
    font-size: 15px;
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid #202731;
}

.product-meta div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-meta span {
    font-size: 10px;
    font-weight: 800;
    color: #626d79;
    letter-spacing: 1.5px;
}

.product-meta strong {
    font-size: 16px;
    color: #f4f6f8;
}


/* ============================= */
/* DISCLAIMER SECTION            */
/* ============================= */

.disclaimer-section {
    padding: 60px 0;
    background: #06080c;
    border-top: 1px solid #171d24;
}

.disclaimer {
    color: #68727e;
    font-size: 13px;
    max-width: 800px;
    line-height: 1.7;
}


/* MOBILE RESPONSIVENESS */

@media (max-width: 700px) {

    nav {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .details-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-heading h2,
    .about-section h2,
    .details-grid h2,
    .info-grid h2 {
        font-size: 34px;
    }

    .footer-content {
        flex-direction: column;
    }

    .preview-pages {
        flex-direction: column;
    }
}