body.home {
    font-family: 'Playfair Display', serif;
    background: radial-gradient(circle at top, #0a0a0a, #000);
    color: #fafafa;
    margin: 0;
    overflow-x: hidden;
}

.mobile-nav {
    display: flex;
    width: 364px;
    height: 56px;
    padding: var(--spacing-base, 16px);
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: var(--radius-full, 9999px);
    border-top: 1px solid var(--colours-neutral-700, #5C5C5C);
    background: var(--colours-neutral-900, #1A1A1A);
    backdrop-filter: blur(4px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #f5f5f5;
    text-decoration: none;
}

.nav-left .logo img {
    width: 130px;
    height: 30px;
}

.nav-right {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right li a {
    font-size: 14px;
    font-weight: 500;
    color: #f5f5f5;
    text-decoration: none;
}

.menu {
    display: none; /* hide hamburger by default */
    cursor: pointer;
    font-size: 24px;
    color: #f5f5f5;
}

/* COMMON ELEMENTS */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
}
.gradient-btn {
    margin-top: 20px;
    background: var(--colours-primary-600, #6B2C91);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-lg, 12px);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
    

}

.gradient-btn:hover {
    opacity: 0.9;
}

.hero {
    position: relative;
    height: 100vh;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'PP Hatton', serif;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5) contrast(1.1);
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--colours-tertiary-600, #2B7A78);
}

/* Optional: enhance overlay for more dramatic effect */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(21 20 20 / 60%), rgb(12 12 12 / 70%));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    color: #f9f9f9;
    padding: 0 1rem;
}

.hero .logo {
    width: 175px;
    height: 32px;
    }

.hero h1 {
    font-size: var(--fontSize-headline-h1, 32px);
    font-style: normal;
    line-height: 36px; 
    letter-spacing: 0.405px;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.hero h1 em {
    font-style: italic;
    color: #c084fc;
}

.hero p {
    font-size: 0.85rem;
    color: #d1d1d1;
    line-height: 1.6;
    margin-bottom: 4rem;
}
/* ============ LIVE SECTION ============ */

.live-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #facc15 0%, #b38f00 100%);
    box-shadow: 0 0 6px #facc15;
}

/* ===== Live Box ===== */
.live-box {
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    width: 340px;
    height: 150px;
    padding: 16px; 
    text-align: center;
    background: linear-gradient(180deg, #55275A 0%, #0A0A0A 100%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    overflow: hidden; 
}

/* ===== Card inside Live Box ===== */
.live-box .card {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;   
    height: 100%;         
    width: 100%;
    background: transparent;
    border: none;
    text-align: center;
    gap: 4px;
}   

/* Icon inside card */
.live-box .icon {
  font-size: 2rem;
  color: #f9d97d !important;
  margin-bottom: -1px;
}

/* Heading inside card */
/* .live-box h2 {
    color: #f9d97d;
    font-family: 'PP Hatton', serif;
    font-size: 2rem;
    font-weight: 500;
    margin: -5px;
} */

/* Subtitle/description inside card */
.live-box p {
    color: #d6c3e0;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    margin: 5px;
}


/* WHY SECTION */
.why-section {
  padding: 20px 20px;
  background: #0c0c0c;
  text-align: center;
}

.why-section h2 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #fff;
}

/* GRID LAYOUT */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px; 
  margin: 0 auto;
}

/* COLOR VARIANTS */
.purple {
    border-radius: 0 var(--radius-2xl, 24px) var(--radius-sm, 4px) var(--radius-2xl, 24px);
border: 1px solid #2B7A78;
background: linear-gradient(180deg, var(--colours-tertiary-900, #0D2524) 0%, var(--colours-neutral-900-2, #000) 100%);
}

.yellow {
    border-radius: 0 var(--radius-2xl, 24px) var(--radius-sm, 4px) var(--radius-2xl, 24px);
    border: 1px solid #C49A2E;
    background: linear-gradient(56deg, var(--colours-secondary-900, #3D2E10) -54.86%, var(--colours-tertiary-1000, #040A09) 53.63%);
    }

.pink {
    border-radius: 0 var(--radius-2xl, 24px) var(--radius-sm, 4px) var(--radius-2xl, 24px);
    border: 1px solid #6B2C91;
    background: linear-gradient(180deg, var(--colours-primary-800, #3F2145) 0%, var(--colours-primary-950, #0A0A0A) 100%);
}

.trust-badges-wrapper {
  overflow: hidden;
  background-color: #0F331E; 
  padding: 10px 0;          
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.trust-badges {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: scrollBadges 20s linear infinite;
  will-change: transform;
}

.trust-badges > .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #0a3a2e;
  color: #c2f5ce;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.6s ease, background 0.3s ease;
}

.trust-badges img {
  width: 20px;
  height: 20px;
  transition: transform 0.8s ease-in-out;
}

.trust-badges .badge:hover {
  background-color: #0c4b3c;
  transform: scale(1.05);
}

@keyframes scrollBadges {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ===== SECTION STYLING ===== */
.testimonials {
  color: #e8fdf1;
  font-family: "Inter", sans-serif;
  padding: 60px 40px;
  text-align: center;
}

.testimonials h2 {
    color: var(--colours-neutral-50, #FAFAFA);
    text-align: center;
    font-family: "PP Hatton";
    font-size: var(--fontSize-headline-h2, 24px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.446px;
}

.testimonials .highlight {
    color: var(--colours-neutral-50, #FAFAFA);
    font-family: "PP Hatton";
    font-size: var(--fontSize-headline-h2, 24px);
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.446px;
}

/* ===== GRID LAYOUT ===== */
.testimonials-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: nowrap; 
}

/* ===== CARD STYLING ===== */
.glass {
    border-radius: var(--radius-xl, 16px);
    border: 1px solid #2B7A78;
    background: linear-gradient(180deg, var(--colours-tertiary-900, #0D2524) 0%, var(--colours-neutral-900-2, #000) 100%);
    padding: 20px 24px;
    text-align: left;
    box-shadow: 0 0 15px rgba(110, 243, 165, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(110, 243, 165, 0.25);
}

/* ===== PROFILE HEADER ===== */
/* ===== PROFILE WRAPPER ===== */
.profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

/* ===== AVATAR ===== */
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #122f2a;
  color: #6ef3a5;
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1d4d3e;
  flex-shrink: 0;
}

/* ===== INFO SECTION ===== */
.info h3 {
  width: 177px;
  font-family: "PP Hatton", serif;
  margin: 0;
  font-weight: 600;
  color: #c9f7e0;
  line-height: 1.2;
}

.info p {
  margin: 0;
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 400;
  color: #96b8a6;
  font-style: normal;      /* “Regular” is not valid for font-style */
  font-size: 1rem;         /* ≈16px, typical for body/medium text */
  line-height: 1;          /* 100% line height */
  letter-spacing: 0;       /* no extra tracking */
  /* color: #ffffff; */
}

/* ===== VERIFIED BADGE ===== */
.verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 56, 45, 0.9);
  color: #6ef3a5;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 11px;
  margin-bottom: 4px;
  gap: 4px;
}

.verified img {
  width: 16px;
  height: 16px;
}

.verified span {
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem; /* ~14px */
  line-height: 1;
  letter-spacing: 0;
  color: #7DDEA8;
}

/* Remove this — no <p> inside .verified */

/* ===== MESSAGE TEXT ===== */
.message {
    color: var(--colours-neutral-50, #FAFAFA) !important;
    /* body/medium */
    font-family: "PP Neue Montreal";
    font-size: var(--fontSize-body-medium, 14px) !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* JOIN WAITLIST */
/* ===== JOIN SECTION ===== */
.join {
  justify-content: center;
  align-items: center;
  height: 600px;
  padding: var(--spacing-base, 16px);
  /* background: var(--colours-primary-900, #1A1A1A); */
  color: #fff;
  border-radius: var(--radius-md, 8px);
  text-align: center;
}

.join-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  align-self: stretch;
}

.join h2 {
    color: var(--colours-neutral-50, #FAFAFA);
    text-align: center;
    font-family: "PP Hatton";
    font-size: var(--fontSize-headline-h2, 30px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.446px;
    margin: 0px;
}

.join p {
    color: var(--colours-neutral-300, #D9D9D9);
    text-align: center;
    font-family: "PP Neue Montreal";
    font-size: var(--fontSize-body-medium, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* ===== FORM ===== */
.join form {
  max-width: 400px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--colours-primary-600, #6B2C91);
  border-radius: 16px;
  padding: 12px;
  flex-direction: column;
  gap: 20px;
}

.join input {
  background: transparent;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 10px 12px;
  color: #ddd;
  font-size: 0.9rem;
}

.join input::placeholder {
  color: #777;
}

.join select {
  color: #ccc;
  background: transparent;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 10px 12px;
  /* color: #ddd; */
  font-size: 0.9rem;
}

.join input:focus,
.join select:focus {
  border-color: #a855f7;
  outline: none;
}
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 6px;
}

/* ===== LABEL STYLING ===== */
.join label {
  font-family: "PP Neue Montreal", sans-serif;
  font-size: var(--fontSize-body-medium, 14px);
  color: var(--colours-neutral-200, #E0E0E0);
  letter-spacing: 0.2px;
}
/* ===== BUTTON ===== */
.gradient-btn {
  background: linear-gradient(90deg, #a855f7, #6b2c91);
  border: none;
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gradient-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.faq-header {
  text-align: center;
  font-size: 32px;
  font-family: "PP Hatton";
  margin-top: 40px;
  margin-bottom: -40px;
  color: #fff;
}
.faq-section {
  width: 100%;           /* Takes 90% of viewport width */
  max-width: 1200px;    
  margin: 60px auto;    /* Center the section */
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #3d3d3d;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem;        /* Padding inside the section */
}


.faq-list {
  display: grid;
  gap: 12px;
}

/* Accordion Items */
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Summary (Question) */
.faq-item summary {
  font-weight: 600;
  font-size: 14px;
  font-family: "PP Neue Montreal";
  padding: 1px 10px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3d3d3d;
  transition: background 0.3s ease;
}

.faq-item summary:hover {
  background: #b8b8b8;
}

/* Add chevron icon */
.faq-item summary::after {
  content: "⌄";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Rotate chevron when open */
.faq-item[open] summary::after {
  transform: rotate(180deg);
}

/* Answer text */
.faq-item p {
  padding: 0 18px 16px;
  font-size: 0.95rem;
  color: #fff;
  background-color: #3d3d3d;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}


/* FOOTER */

footer {
    margin-top: auto;
    background: linear-gradient(180deg, var(--colours-primary-950, #0A0A0A) 0%, var(--colours-tertiary-900, #0D2524) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px 20px; /* reduced bottom padding */
    gap: 20px;
    font-family: "Poppins", sans-serif;
    
}

.footer-logo {
  width: 175px;
  height: auto;
  opacity: 0.9;
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
}

/* Social icons / text */
.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.socials span {
  border: 1px solid #444;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.socials span:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #888;
}

/* Gradient button */
.gradient-btn.footer-btn {
  background: linear-gradient(135deg, #8a2be2, #ff007f);
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gradient-btn.footer-btn:hover {
  transform: scale(1.05);
}
/* ===========================
   MEDIA QUERIES
   =========================== */

/* ---------------------------
   Extra Small Devices (≤375px)
--------------------------- */

/* ---------------------------
   Tablet Devices (≤768px)
--------------------------- */
