/* ========================================
   RESET & BASE
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #080B16;
    color: #EAE6E2;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

:root {
    --bg: #080B16;
    --bg-secondary: #0D1020;
    --surface: #151827;
    --surface-light: #1B1D2D;
    --purple: #6336D6;
    --purple-light: #7545E8;
    --purple-dark: #4D27B5;
    --teal: #28B8B5;
    --teal-light: #43D1CC;
    --white: #F7F2EA;
    --text: #EAE6E2;
    --text-secondary: #C8C4CE;
    --muted: #858292;
    --border: #343047;
}

/* ========================================
   HEADER - COMPLETE FIXED
======================================== */

.navbar {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    max-width: 1300px;
    width: calc(100% - 80px);
    background: white;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(26, 200, 200, 0.3);
    border-radius: 70px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 160px;
    height: auto;
    display: block;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    background: #5B2D8E !important;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.nav-button:hover {
    transform: translateY(-2px);
    background: #1AC8C8;
    color: white;
}

.nav-button span {
    transition: transform 0.3s ease;
}

.nav-button:hover span {
    transform: translateX(4px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 100;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s ease;
    display: block;
}
.cta-text strong {
    color: #ffffff !important;
    transition: none !important;
}

.cta-text strong:hover {
    color: #ffffff !important;
}

.cta-text * {
    transition: none !important;
}
.waitlist-shortcode-button:hover{
	color:#ffffff;
	background:#1ac8c8;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
======================================== */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    padding: 60px 30px 80px;
    margin: 0 auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 16px;
    margin-top: 120px;
    font-weight: 500;
    color: #ffffff;
    max-width: 580px;
}

.hero-content h1 span {
    font-style: italic;
    color: #1AC8C8;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #d7d7df;
    max-width: 580px;
}

.hero-description strong {
    color: #1AC8C8;
}

.hero-cta {
    width: 100%;
    max-width: 480px;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 20px;
    margin: 0 0 12px 0;
    text-decoration: none;
    color: white;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-align: left;
}

.primary-hero-cta {
    background: #5B2D8E;
    box-shadow: 0 10px 30px rgba(98, 53, 214, 0.35);
}

.primary-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(98, 53, 214, 0.5);
}

.influencer-hero-cta {
    border: 1px solid #47d9cb;
    background: rgba(5, 15, 30, 0.6);
    backdrop-filter: blur(4px);
}

.influencer-hero-cta:hover {
    background: #1AC8C8;
    color: white;
    transform: translateY(-3px);
}

.cta-heart {
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.heart-icon {
    display: block !important;
    font-family: Arial, sans-serif !important;
    font-size: 48px !important;
    font-weight: 100 !important;
    line-height: 1 !important;
    color: #efedf7 !important;
    transform: scale(1.1);
}

.cta-influencer {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #79d6d3;
    font-size: 17px;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
}

.cta-text strong {
    display: block;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.cta-text strong:hover {
    color: white;
}

.cta-text span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-text span:hover {
    color: white;
}

/* ========================================
   PRIORITY LISTING SECTION
======================================== */

.priority-listing-section {
    width: 100%;
    max-width: 480px;
    margin: 20px 0 16px;
    padding: 0;
}

.cta-influencer svg {
    font-size: 48px;
}

.priority-listing-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.priority-listing-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(26, 200, 200, 0.4);
    transform: translateY(-2px);
}

.priority-badge {
    font-size: 20px;
    color: #1AC8C8;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.priority-text {
    flex: 1;
}

.priority-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.priority-text span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.priority-arrow {
    font-size: 18px;
    color: #1AC8C8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.priority-listing-item:hover .priority-arrow {
    transform: translateX(6px);
}

/* ========================================
   PRIVACY TEXT
======================================== */

.privacy-text {
    margin-top: 24px;
    color: #ffffff;
    font-size: 20px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    opacity: 0.7;
}

.lock-icon-svg {
    display: inline-block;
}

/* ========================================
   HERO SHADOW OVERLAY - DESKTOP
======================================== */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 11, 22, 0) 0%,
        rgba(8, 11, 22, 0.1) 15%,
        rgba(8, 11, 22, 0.3) 30%,
        rgba(8, 11, 22, 0.5) 45%,
        rgba(8, 11, 22, 0.7) 60%,
        rgba(8, 11, 22, 0.85) 75%,
        rgba(8, 11, 22, 0.95) 90%,
        rgba(8, 11, 22, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   WAITLIST / EARLY ACCESS SECTION
======================================== */

.prioritay-waitlist-section {
    position: relative;
    width: 100%;
    padding: 110px 30px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(104, 63, 190, 0.28) 0%,
        rgba(21, 24, 39, 0) 55%
    ),
    linear-gradient(135deg, #101321 0%, #171827 50%, #121524 100%);
}

.prioritay-waitlist-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.prioritay-waitlist-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    background: #6236b8;
    filter: blur(180px);
    opacity: 0.25;
    pointer-events: none;
}

.prioritay-waitlist-section > * {
    position: relative;
    z-index: 2;
}

.prioritay-waitlist-section .section-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #63cdd4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.prioritay-waitlist-section h2 {
    max-width: 800px;
    margin: 0 auto 22px;
    color: #f4f2f7;
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.15;
}

.prioritay-waitlist-section p {
    max-width: 600px;
    margin: 0 auto 38px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.7;
}

.waitlist-shortcode-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 38px;
    border: 1px solid rgba(139, 96, 255, 0.4);
    border-radius: 8px;
    cursor: pointer;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    background: #5B2D8E;
    box-shadow: 0 12px 35px rgba(89, 47, 166, 0.4);
    transition: all 0.3s ease;
}

.waitlist-shortcode-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(106, 65, 190, 0.6);
}

.waitlist-shortcode-button span {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.waitlist-shortcode-button:hover span {
    transform: translateX(6px);
}

.prioritay-waitlist-section small {
    display: block;
    margin-top: 22px;
    color: #fefeff;
    font-size: 13px;
}

/* ========================================
   INFLUENCER SECTION
======================================== */

.influencer-section {
    padding: 110px 30px;
    background: #080B16;
    text-align: center;
    border-top: 1px solid var(--border);
}

.influencer-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.influencer-content {
    max-width: 700px;
    margin: auto;
}

.influencer-section h2 {
    margin-top: 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.1;
    font-weight: 500;
    color: var(--white);
}

.influencer-section p {
    max-width: 570px;
    margin: 20px auto 0;
    color: var(--muted);
    line-height: 1.7;
}

.btn-light {
    background: transparent;
    color: var(--teal);
    border: 1px solid var(--teal);
    padding: 14px 20px;
    box-shadow: 0 0 20px rgba(40, 184, 181, 0.08);
    display: inline-block;
    margin-top: 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-light:hover {
    background: rgba(40, 184, 181, 0.08);
}

/* ========================================
   POPUP OVERLAY
======================================== */

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(10, 13, 25, 0.82);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    position: relative;
    width: 100%;
    max-width: 580px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 35px 65px 35px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.40);
    transform: translateY(25px) scale(0.98);
    transition: transform 0.35s ease;
}

.popup-overlay.active .popup-card {
    transform: translateY(0) scale(1);
}

.popup-card::-webkit-scrollbar {
    width: 5px;
}

.popup-card::-webkit-scrollbar-track {
    background: transparent;
}

.popup-card::-webkit-scrollbar-thumb {
    background: #cfc4e9;
    border-radius: 10px;
}

.popup-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    background: #ffffff;
    color: #222222;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: #6236b8;
    background: #f6f2ff;
    border-color: #6236b8;
    transform: rotate(90deg);
}

.popup-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.decoration-left {
    width: 230px;
    height: 230px;
    left: -130px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(107, 63, 197, 0.18) 0%, rgba(107, 63, 197, 0.02) 70%);
}

.decoration-right {
    width: 180px;
    height: 180px;
    right: -110px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(99, 205, 212, 0.20) 0%, rgba(99, 205, 212, 0.02) 70%);
}

.popup-progress,
.popup-form {
    position: relative;
    z-index: 2;
}

.popup-progress {
    margin-bottom: 25px;
    text-align: center;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.progress-step {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #d7d7d7;
    border-radius: 50%;
    background: #ffffff;
    color: #999999;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active {
    border-color: #6236b8;
    background: linear-gradient(135deg, #7041d1, #4b218e);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(107, 63, 197, 0.25);
}

.progress-step.completed {
    border-color: #6236b8;
    background: #6236b8;
    color: #ffffff;
}

.progress-line {
    width: 70px;
    height: 2px;
    background: #dedede;
    transition: background 0.3s ease;
}

.progress-line.active {
    background: #6236b8;
}

#stepLabel {
    margin: 0;
    color: #6236b8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: popupStep 0.35s ease;
}

@keyframes popupStep {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.popup-card h2 {
    margin: 0 0 10px;
    text-align: center;
    color: #202020;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.25;
}

.sparkle {
    color: #6236b8;
}

.subhead {
    max-width: 430px;
    margin: 0 auto 25px;
    text-align: center;
    color: #686b75;
    font-size: 16px;
    line-height: 1.6;
}

.field-group {
    margin-bottom: 18px;
}

.field-group label {
    display: block;
    margin-bottom: 8px;
    color: #252525;
    font-size: 15px;
    font-weight: 600;
}

.field-group input,
.field-group select {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    box-sizing: border-box;
    border: 1px solid #d9d9df;
    border-radius: 10px;
    outline: none;
    background: #ffffff;
    color: #1c1c1c;
    font-size: 16px;
    transition: all 0.25s ease;
}

.field-group input::placeholder {
    color: #9a9aa3;
}

.field-group input:focus,
.field-group select:focus {
    border-color: #6b3fc5;
    box-shadow: 0 0 0 4px rgba(107, 63, 197, 0.10);
}

.interest-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.interest-option {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    box-sizing: border-box;
    border: 1px solid #dddddf;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.interest-option:hover {
    border-color: #9b7ee2;
    background: #faf8ff;
}

.interest-option input {
    position: absolute;
    opacity: 0;
}

.custom-radio {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: 13px;
    border: 2px solid #c9c9ce;
    border-radius: 50%;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.interest-option input:checked + .custom-radio {
    border: 5px solid #6236b8;
}

.interest-option:has(input:checked) {
    border-color: #6b3fc5;
    background: #faf8ff;
}

.option-text {
    color: #292929;
    font-size: 15px;
    font-weight: 500;
}

.popup-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-primary-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    gap: 15px;
    padding: 14px 25px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    background: linear-gradient(135deg, #7041d1 0%, #4b218e 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(107, 63, 197, 0.25);
    transition: all 0.3s ease;
}

.popup-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(107, 63, 197, 0.35);
}

.form-step[data-step="1"] .popup-primary-btn {
    width: 100%;
}

.popup-back-btn {
    min-width: 130px;
    min-height: 54px;
    padding: 14px 22px;
    border: 1px solid #dedee3;
    border-radius: 9px;
    background: #ffffff;
    color: #252525;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.popup-back-btn:hover {
    border-color: #6b3fc5;
    color: #6236b8;
    background: #faf8ff;
}

.popup-security {
    margin-top: 20px;
    text-align: center;
    color: #70727b;
    font-size: 13px;
    line-height: 1.7;
}

.popup-success {
    display: none;
    text-align: center;
    padding: 45px 30px;
    min-height: 450px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup-success.active {
    display: flex;
}

.success-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d4cc6, #3d2470);
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    box-shadow: 0 12px 35px rgba(91, 58, 166, 0.25);
}

.success-label {
    margin-bottom: 14px;
    color: #5d3ba3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.popup-success h2 {
    margin: 0 0 15px;
    color: #1e1e24;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
}

.popup-success p {
    max-width: 430px;
    margin: 0 0 30px;
    color: #666675;
    font-size: 16px;
    line-height: 1.7;
}

.success-close-btn {
    width: 100%;
    max-width: 300px;
}

.popup-progress.hide-progress {
    display: none;
}

/* ========================================
   INFLUENCER POPUP OVERLAY
======================================== */

.influencer-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(20, 10, 40, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
}

.influencer-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.influencer-popup-card {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: none;
    overflow: hidden;
    padding: 28px 38px 24px;
    background: #ffffff;
    border-radius: 28px;
    box-sizing: border-box;
    box-shadow: 0 25px 80px rgba(61, 27, 134, 0.25);
    transform: translateY(25px) scale(0.97);
    transition: all 0.35s ease;
}

.influencer-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #f1edf9;
    color: #3d1b86;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.influencer-popup-close:hover {
    background: #3d1b86;
    color: #ffffff;
    transform: rotate(90deg);
}

.influencer-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.influencer-decoration-one {
    width: 150px;
    height: 150px;
    top: -80px;
    left: -65px;
    background: #eee8fa;
}

.influencer-decoration-two {
    width: 120px;
    height: 120px;
    bottom: -65px;
    right: -45px;
    background: #e5dcf7;
}

.influencer-popup-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 22px;
}

.influencer-popup-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border-radius: 15px;
    background: #3d1b86;
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 8px 20px rgba(61, 27, 134, 0.25);
}

.influencer-label {
    display: inline-block;
    margin-bottom: 9px;
    padding: 6px 13px;
    border-radius: 30px;
    background: #f1edf9;
    color: #3d1b86;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.influencer-popup-header h2 {
    margin: 0 0 7px;
    color: #171717;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.influencer-popup-header p {
    margin: 0;
    color: #6d6875;
    font-size: 14px;
    line-height: 1.5;
}

.influencer-popup-form {
    position: relative;
    z-index: 2;
}

.influencer-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.influencer-field-group {
    margin: 0;
}

.influencer-field-group label {
    display: block;
    margin-bottom: 7px;
    color: #27232e;
    font-size: 12px;
    font-weight: 600;
}

.influencer-field-group input,
.influencer-field-group select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    box-sizing: border-box;
    border: 1px solid #ded8e8;
    border-radius: 12px;
    background: #fbfaff;
    color: #222222;
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease;
}

.influencer-field-group input:focus,
.influencer-field-group select:focus {
    border-color: #3d1b86;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(61, 27, 134, 0.1);
}

.influencer-field-group input::placeholder {
    color: #aaa4b5;
}

.influencer-submit-btn {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    border: none;
    border-radius: 13px;
    background: #3d1b86;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(61, 27, 134, 0.2);
}

.influencer-submit-btn:hover {
    background: #2f1468;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(61, 27, 134, 0.3);
}

.influencer-message {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
}

.influencer-message.error {
    padding: 9px 12px;
    border-radius: 10px;
    background: #fff0f0;
    color: #c62828;
}

.influencer-privacy {
    margin-top: 12px;
    text-align: center;
    color: #7d7689;
    font-size: 11px;
}

.influencer-success {
    display: none;
    position: relative;
    z-index: 2;
    padding: 25px 10px;
    text-align: center;
}

.influencer-success.active {
    display: block;
}

.influencer-success-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #3d1b86;
    color: #ffffff;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(61, 27, 134, 0.2);
}

.influencer-success > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #3d1b86;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.influencer-success h2 {
    margin: 0 0 10px;
    color: #171717;
    font-size: 28px;
}

.influencer-success p {
    max-width: 420px;
    margin: 0 auto 20px;
    color: #6d6875;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #5B2D8E;
    color: #fff;
    padding: 70px 30px 35px;
    border-top: 1px solid rgba(99, 205, 212, 0.25);
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-brand img {
    display: block;
    max-width: 200px;
    height: auto;
}

.footer-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.footer-pages a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.footer-pages a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-info {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer-info p {
    margin: 0;
    color: white;
    font-size: 18px;
    white-space: nowrap;
}

/* ========================================
   RESPONSIVE - MOBILE (768px and below)
   IMAGE FULL SCREEN WITH CONTENT OVERLAY
======================================== */

@media (max-width: 768px) {
    .navbar {
        position: absolute !important;
        top: 20px !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        z-index: 10 !important;
        min-height: auto !important;
    }
    
    .navbar::before {
        display: none !important;
        content: none !important;
    }
    
    .navbar::after {
        display: none !important;
        content: none !important;
    }
    
    .logo {
        flex-shrink: 0 !important;
    }
    
    .logo img {
        width: 200px !important;
        height: auto !important;
        display: block !important;
        margin-left: 70px !important;
    }
    
    .nav-button {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }

    .hero {
        min-height: 100vh !important;
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .hero-bg-image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 35% !important;
        z-index: 0 !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    .hero-content {
        position: relative !important;
        padding: 0 24px 50px !important;
        text-align: center !important;
        align-items: center !important;
        margin: 0 !important;
        width: 100% !important;
        z-index: 2 !important;
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        background: transparent !important;
        max-width: 100% !important;
    }

    /* SPACER - pushes content down without affecting the image */
    .hero-spacer {
        display: block !important;
        width: 100% !important;
        height: 400px !important;
        flex-shrink: 0 !important;
    }

    .hero-content h1 {
        max-width: 100% !important;
        margin: 0 auto 16px !important;
        text-align: center !important;
        font-size: 34px !important;
        margin-top: 0 !important;
    }

    .hero-description {
        max-width: 100% !important;
        margin: 0 auto 28px !important;
        text-align: center !important;
        font-size: 16px !important;
    }

    .hero-cta {
        max-width: 100% !important;
        margin: 0 auto 12px !important;
    }

    .privacy-text {
        text-align: center !important;
        justify-content: center !important;
        margin-top: 16px !important;
    }

    .priority-listing-section {
        max-width: 100% !important;
        margin: 16px auto 12px !important;
    }

    .hero::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(
            to bottom,
            rgba(8, 11, 22, 0) 0%,
            rgba(8, 11, 22, 0) 25%,
            rgba(8, 11, 22, 0.05) 35%,
            rgba(8, 11, 22, 0.15) 42%,
            rgba(8, 11, 22, 0.3) 48%,
            rgba(8, 11, 22, 0.5) 55%,
            rgba(8, 11, 22, 0.7) 62%,
            rgba(8, 11, 22, 0.85) 70%,
            rgba(8, 11, 22, 0.95) 80%,
            rgba(8, 11, 22, 1) 90%,
            rgba(8, 11, 22, 1) 100%
        ) !important;
        pointer-events: none !important;
        z-index: 1 !important;
        display: block !important;
    }

    .hero-content::before {
        display: none !important;
        content: none !important;
    }

    .hero-content > * {
        position: relative !important;
        z-index: 2 !important;
    }

    .prioritay-waitlist-section {
        padding: 75px 16px !important;
    }
    .prioritay-waitlist-section h2 {
        font-size: 40px !important;
    }
    .influencer-section {
        padding: 75px 16px !important;
    }
    .site-footer {
        padding: 50px 16px 25px !important;
    }
    .footer-inner {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }
    .footer-brand {
        justify-content: center !important;
    }
    .footer-pages {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    .footer-info {
        justify-content: center !important;
    }
    .footer-info p {
        white-space: normal !important;
    }
}

/* ========================================
   RESPONSIVE - TABLET BREAKPOINT
======================================== */

@media (max-width: 950px) {
    .hero {
        justify-content: center;
    }
    .hero-content {
        text-align: center;
        padding: 40px 20px 60px;
        align-items: center;
    }
    .hero-content h1 {
        max-width: 100%;
        margin: 0 auto 16px;
        text-align: center;
    }
    .hero-description {
        max-width: 100%;
        margin: 0 auto 28px;
        text-align: center;
    }
    .hero-cta {
        max-width: 100%;
        margin: 0 auto 12px;
    }
    .privacy-text {
        text-align: center;
        justify-content: center;
    }
    .priority-listing-section {
        max-width: 100%;
        margin: 20px auto 16px;
    }
}

@media (max-width: 650px) {
    .logo img {
        width: 200px !important;
    }
    .hero-content h1 {
        font-size: 28px !important;
    }
    .hero-description {
        font-size: 15px !important;
        margin-bottom: 25px !important;
    }
    .hero-content {
        padding: 0 16px 40px !important;
    }
    .hero-spacer {
        height: 350px !important;
    }
}

/* ========================================
   RESPONSIVE - SMALL PHONES (480px and below)
   GIRL'S FACE CENTERED IN MIDDLE
======================================== */

@media (max-width: 480px) {
    .navbar {
        position: absolute !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        border-radius: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        top: 0px !important;
    }
    
    .navbar::before {
        display: none !important;
        content: none !important;
    }
    
    .navbar::after {
        display: none !important;
        content: none !important;
    }
       

	

    .logo img {
        width: 140px !important;
        margin-left: 0px !important;
        margin-top: 10px;
    }
    
    .nav-button {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }

    .hero {
        min-height: 100vh !important;
        align-items: flex-end !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-bg-image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 20% !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        z-index: 0 !important;
    }

    .hero-content {
        position: relative !important;
        padding: 0 16px 35px 16px !important;
        justify-content: flex-end !important;
        background: transparent !important;
        z-index: 2 !important;
        width: 100% !important;
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* SPACER - pushes content down without affecting the image */
    .hero-spacer {
        display: block !important;
        width: 100% !important;
        height: 350px !important;
        flex-shrink: 0 !important;
    }

    .hero-content h1 {
        font-size: 20px !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
		padding:0px 50px;
    }

    .hero-description {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .hero-cta {
        min-height: 55px !important;
       ;
        border-radius: 10px !important;
    }

    .cta-heart {
        font-size: 20px !important;
    }

    .cta-influencer {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }
	.cta-influencer svg{
		
	}
    .cta-text strong {
        font-size: 12px !important;
    }

    .cta-text span {
        font-size: 10px !important;
        margin-top: 2px !important;
    }

    .privacy-text {
        font-size: 11px !important;
        margin-top: 12px !important;
    }

    .priority-listing-item {
        padding: 10px 12px !important;
        gap: 10px !important;
    }

    .priority-badge {
        font-size: 15px !important;
        width: 24px !important;
    }

    .priority-text strong {
        font-size: 12px !important;
    }

    .priority-text span {
        font-size: 10px !important;
    }

    .priority-arrow {
        font-size: 14px !important;
    }

    .prioritay-waitlist-section {
        padding: 60px 14px !important;
    }

    .prioritay-waitlist-section h2 {
        font-size: 32px !important;
    }

    .influencer-section {
        padding: 60px 14px !important;
    }

    .site-footer {
        padding: 40px 14px 20px !important;
    }
       .hero-cta.primary-hero-cta, .hero-cta.influencer-hero-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between;
        text-align: center !important;
        padding: 20px 130px;
    }
    .hero::after {
        background: linear-gradient(
            to bottom,
            rgba(8, 11, 22, 0) 0%,
            rgba(8, 11, 22, 0) 20%,
            rgba(8, 11, 22, 0.05) 28%,
            rgba(8, 11, 22, 0.15) 35%,
            rgba(8, 11, 22, 0.3) 42%,
            rgba(8, 11, 22, 0.5) 48%,
            rgba(8, 11, 22, 0.7) 55%,
            rgba(8, 11, 22, 0.85) 63%,
            rgba(8, 11, 22, 0.95) 73%,
            rgba(8, 11, 22, 1) 85%,
            rgba(8, 11, 22, 1) 100%
        ) !important;
    }
}

@media (max-width: 480px) {
    .cta-text span {
        text-align: left;
    }
}

/* ========================================
   RESPONSIVE - POPUP
======================================== */

@media (max-height: 850px) {
    .popup-card {
        padding: 25px 55px 25px;
    }
    .popup-progress {
        margin-bottom: 16px;
    }
    .progress-steps {
        margin-bottom: 10px;
    }
    .progress-step {
        width: 38px;
        height: 38px;
    }
    .popup-card h2 {
        font-size: 34px;
    }
    .subhead {
        margin-bottom: 18px;
    }
    .field-group {
        margin-bottom: 14px;
    }
    .field-group input,
    .field-group select {
        height: 52px;
    }
    .interest-options {
        gap: 6px;
        margin-bottom: 15px;
    }
    .interest-option {
        min-height: 44px;
    }
    .popup-buttons {
        gap: 10px;
    }
    .popup-primary-btn,
    .popup-back-btn {
        min-height: 50px;
    }
    .popup-security {
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .popup-card {
        max-width: 540px;
        padding: 35px 40px 30px;
    }
    .popup-card h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .popup-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .popup-card {
        width: 100%;
        max-height: 94vh;
        padding: 55px 22px 30px;
        border-radius: 25px 25px 0 0;
    }
    .popup-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .popup-card h2 {
        font-size: 30px;
    }
    .subhead {
        font-size: 15px;
    }
    .progress-line {
        width: 40px;
    }
    .popup-buttons {
        flex-direction: column;
    }
    .popup-back-btn,
    .popup-primary-btn {
        width: 100%;
    }
    .popup-back-btn {
        order: 2;
    }
    .decoration-left {
        width: 180px;
        height: 180px;
    }
    .decoration-right {
        width: 140px;
        height: 140px;
    }
    .influencer-popup-overlay {
        padding: 12px;
    }
    .influencer-popup-card {
        padding: 30px 20px 24px;
        border-radius: 22px;
        max-height: 92vh;
    }
    .influencer-fields-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }
    .influencer-popup-header h2 {
        font-size: 24px;
    }
    .influencer-popup-icon {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 768px) {
    .hero-cta.primary-hero-cta,
    .hero-cta.influencer-hero-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-cta .cta-text {
        flex: 0 1 auto !important;
        text-align: center !important;
    }

    .hero-cta .cta-heart,
    .hero-cta .cta-influencer {
        flex-shrink: 0 !important;
        margin: 0 !important;
    }
}

/* ========================================
   MISC UTILITY CLASSES
======================================== */

.ast-separate-container {
    background-color: #080B16;
}

.desktop-nav-btn {
    display: flex;
}

.mobile-nav-btn {
    display: none;
}

.cta-influencer {
    font-size: 20px !important;
    margin-right: 3px !important;
}

.hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.hero-picture .hero-bg-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-picture {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        z-index: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    .hero-picture .hero-bg-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 35% !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        position: absolute !important;
    }
}

@media (max-width: 480px) {
    .hero-picture {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 0 !important;
    }

    .hero-picture .hero-bg-image {
        object-position: center 40% !important;
    }
}

/* ========================================
   HERO SPACER - Pushes content down
   This div is added inside hero-content
======================================== */

.hero-spacer {
    display: none;
}

@media (max-width: 768px) {
    .hero-spacer {
        display: block !important;
        width: 100% !important;
        height: 400px !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 650px) {
    .hero-spacer {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .hero-spacer {
        height: 420px !important;
    }
}

/* ========================================
   HERO HEART ICON STYLES
======================================== */

.hero-heart-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.hero-heart-img {
    width: 50px;
    height: auto;
    display: block;
}

.hero-content .hero-heart-icon {
    align-self: flex-end;
    text-align: right;
}

@media (max-width: 768px) {
    .hero-content .hero-heart-icon {
        align-self: center;
        text-align: center;
        margin-bottom: 12px;
    }

    .hero-heart-img {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .hero-heart-img {
        width: 35px;
    }
}



/* ============================================================
   PRIORITAY PRIVACY POLICY - FULL WIDTH (NO SIDEBAR)
   ============================================================ */

#prioritay-privacy {
  --pp-purple: #6332a5;
  --pp-purple-dark: #3d236f;
  --pp-purple-soft: #efe8fa;
  --pp-cyan: #21cbd0;
  --pp-ink: #151627;
  --pp-muted: #626274;
  --pp-paper: #ffffff;
  --pp-bg: #f7f6fb;
  --pp-line: #e8e4ef;
  --pp-radius: 22px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pp-ink);
  background: var(--pp-bg);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-width: 100% !important;
  width: 100% !important;
}

#prioritay-privacy * {
  box-sizing: border-box;
}

.entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.entry-content[data-ast-blocks-layout] {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ast-container,
.ast-container .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

/* ----- HERO ----- */
#prioritay-privacy .pp-hero {
  position: relative;
  padding: 88px 24px 76px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 75% 10%, rgba(99,50,165,.55), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(33,203,208,.10), transparent 28%),
    linear-gradient(135deg, #111322 0%, #19152b 48%, #35205c 100%);
  color: #fff;
}

#prioritay-privacy .pp-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33,203,208,.8), transparent);
}

#prioritay-privacy .pp-hero-inner {
  max-width: 1180px;
  margin: auto;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

#prioritay-privacy .pp-hero h1 {
  max-width: 900px;
  margin: 0;
  font: 500 clamp(48px, 7vw, 82px)/.98 Georgia, "Times New Roman", serif;
  letter-spacing: -3px;
}

#prioritay-privacy .pp-hero h1 span { color: var(--pp-cyan); font-style: italic; }

#prioritay-privacy .pp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

#prioritay-privacy .pp-pill {
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  padding: 9px 16px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

/* ----- LAYOUT ----- */
#prioritay-privacy .pp-wrap {
  max-width: 1180px;
  margin: 0 auto !important;
  padding: 58px 24px 90px !important;
}

#prioritay-privacy .pp-layout {
  display: block;
}

#prioritay-privacy .pp-content {
  min-width: 0;
}

/* ----- SECTIONS ----- */
#prioritay-privacy .pp-section {
  background: var(--pp-paper);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 42px 44px;
  margin: 0 0 24px;
  box-shadow: 0 12px 35px rgba(35,20,65,.045);
  scroll-margin-top: 30px;
}

#prioritay-privacy .pp-section h2 {
  color: var(--pp-purple-dark);
  font: 500 clamp(18px, 2.2vw, 26px)/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -0.3px;
  margin: 0 0 20px;
}

#prioritay-privacy .pp-section h3 {
  color: var(--pp-purple);
  font-size: 21px;
  line-height: 1.25;
  margin: 34px 0 12px;
}

#prioritay-privacy .pp-section h4 {
  color: #242336;
  font-size: 16px;
  margin: 26px 0 7px;
}

#prioritay-privacy .pp-section p {
  margin: 0 0 17px;
  color: #505060;
  font-size: 15px;
}

#prioritay-privacy .pp-section ul {
  margin: 9px 0 22px;
  padding: 0;
  list-style: none;
}

#prioritay-privacy .pp-section li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: #505060;
  font-size: 15px;
}

#prioritay-privacy .pp-section li:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pp-cyan);
  box-shadow: 0 0 0 5px rgba(33,203,208,.10);
}

#prioritay-privacy .pp-section p a,
#prioritay-privacy .pp-section a {
  color: var(--pp-purple);
  font-weight: 650;
}

/* ----- TABLES ----- */
#prioritay-privacy .pp-table-wrap {
  overflow-x: auto;
  margin: 20px 0 30px;
  border-radius: 14px;
  border: 1px solid var(--pp-line);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

#prioritay-privacy .pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}

#prioritay-privacy .pp-table th {
  background: linear-gradient(135deg, #f4f0fa, #faf8ff);
  color: var(--pp-purple-dark);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--pp-line);
}

#prioritay-privacy .pp-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--pp-line);
  color: #4a4a5a;
  vertical-align: top;
  line-height: 1.6;
}

#prioritay-privacy .pp-table tr:last-child td {
  border-bottom: none;
}

#prioritay-privacy .pp-table tr:hover td {
  background: #faf9fd;
}

/* TOC table specific */
#prioritay-privacy .pp-table-toc th:nth-child(1),
#prioritay-privacy .pp-table-toc td:nth-child(1) {
  width: 70px;
  text-align: center;
}

#prioritay-privacy .pp-table-toc th:nth-child(2) {
  width: 35%;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  #prioritay-privacy .pp-table { min-width: 400px; font-size: 13px; }
  #prioritay-privacy .pp-table th,
  #prioritay-privacy .pp-table td { padding: 10px 14px; }
}

@media (max-width: 640px) {
  #prioritay-privacy .pp-hero { padding: 55px 18px 52px !important; }
  #prioritay-privacy .pp-hero h1 { letter-spacing: -1.8px; }
  #prioritay-privacy .pp-wrap { padding: 30px 14px 55px !important; }
  #prioritay-privacy .pp-section { padding: 29px 22px; border-radius: 18px; }
  #prioritay-privacy .pp-section h2 { font-size: 31px; }
  #prioritay-privacy .pp-table { min-width: 320px; font-size: 12px; }
  #prioritay-privacy .pp-table th,
  #prioritay-privacy .pp-table td { padding: 8px 12px; }
}


/* ============================================================
   PRIORITAY TERMS OF USE - COMPLETE STYLES
   ============================================================ */

#prioritay-terms-use {
  --pt-purple: #6332a5;
  --pt-purple-dark: #3d236f;
  --pt-purple-soft: #efe8fa;
  --pt-cyan: #21cbd0;
  --pt-ink: #151627;
  --pt-muted: #626274;
  --pt-paper: #ffffff;
  --pt-bg: #f7f6fb;
  --pt-line: #e8e4ef;
  --pt-radius: 22px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pt-ink);
  background: var(--pt-bg);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-width: 100% !important;
  width: 100% !important;
}

#prioritay-terms-use * {
  box-sizing: border-box;
}

.entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.entry-content[data-ast-blocks-layout] {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ast-container,
.ast-container .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

/* ===== HERO SECTION ===== */
#prioritay-terms-use .pt-hero {
  position: relative;
  padding: 88px 24px 76px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 75% 10%, rgba(99,50,165,.55), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(33,203,208,.10), transparent 28%),
    linear-gradient(135deg, #111322 0%, #19152b 48%, #35205c 100%);
  color: #fff;
}

#prioritay-terms-use .pt-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33,203,208,.8), transparent);
}

#prioritay-terms-use .pt-hero-inner {
  max-width: 1180px;
  margin: auto;
  position: relative;
  margin-top: 70px !important;
  z-index: 1;
}

#prioritay-terms-use .pt-hero h1 {
  max-width: 900px;
  margin: 0;
  font: 500 clamp(48px, 7vw, 82px)/.98 Georgia, "Times New Roman", serif;
  letter-spacing: -3px;
}

#prioritay-terms-use .pt-hero h1 span {
  color: var(--pt-cyan);
  font-style: italic;
}

#prioritay-terms-use .pt-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

#prioritay-terms-use .pt-pill {
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  padding: 9px 16px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

/* ===== WRAPPER ===== */
#prioritay-terms-use .pt-wrap {
  max-width: 1180px;
  margin: 0 auto !important;
  padding: 58px 24px 90px !important;
}

/* ===== LAYOUT ===== */
#prioritay-terms-use .pt-layout {
  display: block;
}

/* ===== CONTENT ===== */
#prioritay-terms-use .pt-content {
  min-width: 0;
}

/* ===== INTRO CARD ===== */
#prioritay-terms-use .pt-intro-card {
  background: linear-gradient(135deg, #fff, #faf8ff);
  border: 1px solid var(--pt-line);
  border-left: 5px solid var(--pt-cyan);
  border-radius: var(--pt-radius);
  padding: 28px 30px;
  margin-bottom: 28px;
  box-shadow: 0 15px 40px rgba(35,20,65,.05);
}

#prioritay-terms-use .pt-intro-card strong {
  color: var(--pt-purple);
}

/* ===== INTRODUCTORY TEXT SECTION ===== */
#prioritay-terms-use .pt-intro-text {
  background: var(--pt-paper);
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  padding: 42px 44px;
  margin: 0 0 24px;
  box-shadow: 0 12px 35px rgba(35,20,65,.045);
}

#prioritay-terms-use .pt-intro-text p {
  margin: 0 0 17px;
  color: #505060;
  font-size: 15px;
}

#prioritay-terms-use .pt-intro-text a {
  color: var(--pt-purple);
  font-weight: 650;
  text-decoration: none;
}

#prioritay-terms-use .pt-intro-text a:hover {
  text-decoration: underline;
}

/* ===== LEGAL NOTICES ===== */
#prioritay-terms-use .pt-legal-notices {
  margin: 20px 0 18px;
}

#prioritay-terms-use .pt-notice {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

#prioritay-terms-use .pt-notice:last-child {
  margin-bottom: 0;
}

#prioritay-terms-use .pt-notice-warning {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  color: #6d4c00;
}

#prioritay-terms-use .pt-notice-warning strong {
  color: #bf6a00;
}

#prioritay-terms-use .pt-notice-info {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  color: #0d3c6e;
}

#prioritay-terms-use .pt-notice-info strong {
  color: #0a4b8a;
}

/* ===== SECTIONS ===== */
#prioritay-terms-use .pt-section {
  background: var(--pt-paper);
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  padding: 42px 44px;
  margin: 0 0 24px;
  box-shadow: 0 12px 35px rgba(35,20,65,.045);
  scroll-margin-top: 30px;
}

#prioritay-terms-use .pt-section h2 {
  color: var(--pt-purple-dark);
  font: 500 clamp(22px, 2.8vw, 32px)/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -0.5px;
  margin: 0 0 27px;
}

#prioritay-terms-use .pt-section h3 {
  color: var(--pt-purple);
  font-size: 21px;
  line-height: 1.25;
  margin: 34px 0 12px;
}

#prioritay-terms-use .pt-section h4 {
  color: #242336;
  font-size: 16px;
  margin: 26px 0 7px;
}

#prioritay-terms-use .pt-section p {
  margin: 0 0 17px;
  color: #505060;
  font-size: 15px;
}

#prioritay-terms-use .pt-section ul {
  margin: 9px 0 22px;
  padding: 0;
  list-style: none;
}

#prioritay-terms-use .pt-section li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: #505060;
  font-size: 15px;
}

#prioritay-terms-use .pt-section li:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pt-cyan);
  box-shadow: 0 0 0 5px rgba(33,203,208,.10);
}

#prioritay-terms-use .pt-section p a,
#prioritay-terms-use .pt-section a {
  color: var(--pt-purple);
  font-weight: 650;
  text-decoration: none;
}

#prioritay-terms-use .pt-section p a:hover,
#prioritay-terms-use .pt-section a:hover {
  text-decoration: underline;
}

/* ===== TABLES ===== */
#prioritay-terms-use .pt-table-wrap {
  overflow-x: auto;
  margin: 20px 0 30px;
  border-radius: 14px;
  border: 1px solid var(--pt-line);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

#prioritay-terms-use .pt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 400px;
}

#prioritay-terms-use .pt-table th {
  background: linear-gradient(135deg, #f4f0fa, #faf8ff);
  color: var(--pt-purple-dark);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--pt-line);
}

#prioritay-terms-use .pt-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--pt-line);
  color: #4a4a5a;
  vertical-align: top;
  line-height: 1.6;
}

#prioritay-terms-use .pt-table tr:last-child td {
  border-bottom: none;
}

#prioritay-terms-use .pt-table tr:hover td {
  background: #faf9fd;
}

/* TOC table specific */
#prioritay-terms-use .pt-table-toc th:nth-child(1),
#prioritay-terms-use .pt-table-toc td:nth-child(1) {
  width: 70px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #prioritay-terms-use .pt-table {
    min-width: 350px;
    font-size: 13px;
  }
  #prioritay-terms-use .pt-table th,
  #prioritay-terms-use .pt-table td {
    padding: 10px 14px;
  }
  #prioritay-terms-use .pt-intro-text {
    padding: 32px 28px;
  }
  #prioritay-terms-use .pt-notice {
    padding: 14px 16px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  #prioritay-terms-use .pt-hero {
    padding: 55px 18px 52px !important;
  }
  #prioritay-terms-use .pt-hero h1 {
    letter-spacing: -1.8px;
  }
  #prioritay-terms-use .pt-wrap {
    padding: 30px 14px 55px !important;
  }
  #prioritay-terms-use .pt-section {
    padding: 29px 22px;
    border-radius: 18px;
  }
  #prioritay-terms-use .pt-section h2 {
    font-size: 24px;
  }
  #prioritay-terms-use .pt-table {
    min-width: 300px;
    font-size: 12px;
  }
  #prioritay-terms-use .pt-table th,
  #prioritay-terms-use .pt-table td {
    padding: 8px 12px;
  }
  #prioritay-terms-use .pt-intro-text {
    padding: 24px 18px;
  }
  #prioritay-terms-use .pt-notice {
    padding: 12px 14px;
    font-size: 12px;
  }
}


/* ============================================================
   CONTACT POPUP / MODAL STYLES
   ============================================================ */

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.contact-modal.active {
    display: flex;
}

/* Overlay */
.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Content Box */
.contact-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    max-width: 480px;
    width: 92%;
    padding: 40px 36px 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: modalSlideUp 0.35s ease;
    z-index: 1;
    text-align: center;
}

/* Close Button */
.contact-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.contact-modal-close:hover {
    color: #333;
    background: #f0f0f0;
}

/* Modal Body */
.contact-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-modal-icon {
    font-size: 52px;
    margin-bottom: 4px;
    color: #6332a5;  /* Purple color - matching email */
}

.contact-modal-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #151627;
    margin: 0 0 6px;
    font-family: Georgia, "Times New Roman", serif;
}

.contact-modal-body p {
    font-size: 16px;
    color: #626274;
    margin: 6px 0 4px;
}

.contact-modal-email {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #6332a5;
    text-decoration: none;
    padding: 12px 28px;
    margin: 8px 0 6px;
    border-radius: 12px;
    background: #f4f0fa;
    transition: background 0.25s, transform 0.2s;
    font-family: 'Inter', ui-sans-serif, -apple-system, sans-serif;
}

.contact-modal-email:hover {
    background: #efe8fa;
    transform: scale(1.02);
}

.contact-modal-email:active {
    transform: scale(0.97);
}

.contact-modal-note {
    font-size: 14px;
    color: #999;
    margin: 10px 0 0;
}

/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .contact-modal-content {
        padding: 32px 22px 28px;
    }
    .contact-modal-body h2 {
        font-size: 24px;
    }
    .contact-modal-email {
        font-size: 18px;
        padding: 10px 20px;
    }
    .contact-modal-icon {
        font-size: 40px;
    }
}
