/* =========================================================
   SO SMOOTH FRESH — SUPREME LUXURY PRODUCTION STYLESHEET
   Full Rebuild • Consumer Ready • Retail Ready • 10/10
   Premium Neon Wellness / Lifestyle / Freshness Brand
========================================================= */

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

/* =========================================================
   1) ROOT TOKENS
========================================================= */
:root {
  --bg-1: #031018;
  --bg-2: #071c25;
  --bg-3: #0a2830;
  --surface-1: rgba(7, 24, 31, 0.78);
  --surface-2: rgba(8, 28, 35, 0.88);
  --surface-3: rgba(10, 34, 42, 0.94);
  --surface-card: rgba(8, 24, 32, 0.76);

  --line-soft: rgba(255, 255, 255, 0.08);
  --line-glow: rgba(0, 240, 255, 0.32);
  --line-strong: rgba(0, 240, 255, 0.6);

  --aqua: #00f0ff;
  --aqua-2: #78f7ff;
  --green: #56ff7d;
  --green-2: #9cffb5;
  --lime: #d9ff7a;
  --white: #f8fffd;
  --text: #e7fff7;
  --text-soft: #d0eee5;
  --text-muted: #a9cbc3;
  --text-dark: #03201d;

  --danger: #ff5a88;
  --success: #1dff9a;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.32);
  --shadow-glow: 0 0 24px rgba(0, 240, 255, 0.2);
  --shadow-glow-strong: 0 0 22px rgba(0, 240, 255, 0.32),
                        0 0 46px rgba(86, 255, 125, 0.18);

  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --container: 1200px;
  --container-wide: 1320px;
  --container-narrow: 860px;

  --nav-height: 150px;
  --section-pad: clamp(70px, 8vw, 120px);
  --section-pad-tight: clamp(50px, 6vw, 84px);

  --font-display: "Orbitron", sans-serif;
  --font-body: "Montserrat", sans-serif;

  --ease: 0.3s ease;
  --ease-slow: 0.45s ease;
}

/* =========================================================
   2) RESET / BASE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 240, 255, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(86, 255, 125, 0.08), transparent 22%),
    radial-gradient(circle at 50% 10%, rgba(0, 240, 255, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(2, 10, 15, 0.82), rgba(2, 10, 15, 0.92)),
    url("assets/background.png") center center / cover no-repeat fixed;
  line-height: 1.65;
  letter-spacing: 0.01em;
  padding-top: var(--nav-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 25%, rgba(0, 240, 255, 0.06), transparent 18%),
    radial-gradient(circle at 85% 15%, rgba(86, 255, 125, 0.05), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(120, 247, 255, 0.05), transparent 22%);
}

body.shooting-stars::after {
  content: "";
  position: fixed;
  inset: -30%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background:
    radial-gradient(circle, rgba(255,255,255,0.75) 0 1px, transparent 2px) 0 0 / 120px 120px,
    radial-gradient(circle, rgba(0,240,255,0.6) 0 1px, transparent 2px) 35px 18px / 160px 160px,
    radial-gradient(circle, rgba(86,255,125,0.45) 0 1px, transparent 2px) 60px 40px / 210px 210px;
  animation: skyDrift 70s linear infinite;
}

@keyframes skyDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-240px, -420px, 0); }
}

img,
video,
svg {
  max-width: 100%;
  display: block;
}

video {
  width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

strong {
  color: var(--white);
  font-weight: 700;
}

::selection {
  background: rgba(0, 240, 255, 0.2);
  color: var(--white);
}

/* =========================================================
   3) UTILITIES / CONTAINERS / TYPOGRAPHY
========================================================= */
.container,
.section-inner,
.hero-inner,
.nav-inner,
.footer-inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, var(--container-wide));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 32px, var(--container-narrow));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section-tight {
  padding: var(--section-pad-tight) 0;
}

.center {
  text-align: center;
}

.text-center {
  text-align: center;
}

.stack > * + * {
  margin-top: 16px;
}

.section-title,
.hero-title,
.trivia-title {
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-wrap: balance;
  color: var(--white);
}

.section-title {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-title {
  max-width: 13ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.neon-title {
  color: var(--white);
  text-shadow:
    0 0 10px rgba(120, 247, 255, 0.5),
    0 0 22px rgba(0, 240, 255, 0.35),
    0 0 44px rgba(86, 255, 125, 0.12);
}

.section-desc,
.hero-sub,
.trivia-subtitle {
  width: min(100%, 760px);
  margin: 0 auto 24px;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.8;
  color: var(--text-soft);
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.08);
  color: var(--aqua-2);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 0 16px rgba(0, 240, 255, 0.08);
}

/* =========================================================
   4) PREMIUM CARDS / PANELS / GLOW BOXES
========================================================= */
.glow-box,
.about-container,
.trivia-box,
.kenya-host,
.saxy-mint-promo-box,
.homes-collage,
.disclaimer-box,
.blog-card,
.home-tile,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-glow);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 30%),
    var(--surface-card);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glow-box,
.about-container,
.trivia-box,
.kenya-host,
.homes-collage,
.disclaimer-box,
.saxy-mint-promo-box {
  padding: clamp(24px, 3vw, 42px);
}

.glow-box::before,
.about-container::before,
.trivia-box::before,
.kenya-host::before,
.homes-collage::before,
.saxy-mint-promo-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 240, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(86, 255, 125, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 28%);
}

.glow-box:hover,
.about-container:hover,
.trivia-box:hover,
.kenya-host:hover,
.blog-card:hover,
.home-tile:hover,
.saxy-mint-promo-box:hover {
  border-color: rgba(120, 247, 255, 0.48);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(0, 240, 255, 0.26),
    0 0 56px rgba(86, 255, 125, 0.12);
  transform: translateY(-4px);
}

/* =========================================================
   5) BUTTONS / LINKS / BADGES
========================================================= */
.btn-glow,
.btn-cta,
.faq-cta-btn,
.trivia-btn,
.saxy-mint-cta,
.popup button,
.btn-small,
.btn-ghost,
.mini-btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.btn-glow,
.btn-cta,
.trivia-btn,
.saxy-mint-cta,
.popup button {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--aqua), var(--green));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(0, 240, 255, 0.22);
}

.btn-glow:hover,
.btn-cta:hover,
.trivia-btn:hover,
.saxy-mint-cta:hover,
.popup button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(0, 240, 255, 0.34),
    0 0 52px rgba(86, 255, 125, 0.16);
}

.btn-glow.active {
  background: linear-gradient(135deg, var(--aqua-2), var(--green));
  color: var(--text-dark);
}

.btn-ghost,
.mini-btn-glow,
.faq-cta-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.34);
  box-shadow: inset 0 0 18px rgba(0, 240, 255, 0.06), var(--shadow-soft);
}

.btn-ghost:hover,
.mini-btn-glow:hover,
.faq-cta-btn:hover {
  color: var(--text-dark);
  background: linear-gradient(135deg, rgba(0,240,255,0.92), rgba(86,255,125,0.9));
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.28);
}

.mega-bling {
  animation: premiumPulse 2.8s ease-in-out infinite alternate;
}

@keyframes premiumPulse {
  from { box-shadow: 0 10px 28px rgba(0,0,0,.28), 0 0 18px rgba(0,240,255,.18); }
  to { box-shadow: 0 12px 32px rgba(0,0,0,.32), 0 0 28px rgba(0,240,255,.3), 0 0 48px rgba(86,255,125,.14); }
}

.link-glow {
  color: var(--aqua-2);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--ease), text-shadow var(--ease), transform var(--ease);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.link-glow:hover,
.link-glow:focus {
  color: var(--white);
  text-shadow:
    0 0 12px rgba(0, 240, 255, 0.35),
    0 0 22px rgba(86, 255, 125, 0.16);
  transform: translateY(-1px);
}

.trust-badges,
.saxy-mint-promo-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-badges {
  margin-top: 20px;
}

.trust-badges span,
.saxy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 240, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.05);
}

/* =========================================================
   6) NAVIGATION
========================================================= */
.nav-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  z-index: 2000;

  /* Glass Background */
  background: linear-gradient(
    to bottom,
    rgba(3, 15, 22, 0.92),
    rgba(3, 15, 22, 0.78)
  );

  /* Border + Depth */
  border-bottom: 1px solid rgba(0, 240, 255, 0.18);

  /* Glow + Shadow (more premium) */
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.32),
    0 0 14px rgba(0, 240, 255, 0.08);

  /* Glass Blur */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* Layout */
  display: flex;
  justify-content: center;
  align-items: center;

  /* Smooth transitions (future-proof) */
  transition:
    height 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.nav-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 240, 255, 0.6),
    transparent
  );

  opacity: 0.6;
}

.nav-inner,
.nav-bar {
  display: flex;
  align-items: center;
}

.nav-bar {
  justify-content: center;
}

.nav-inner {
  width: min(100% - 28px, var(--container-wide));
  margin-inline: auto;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.logo-wrap {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.logo,
header img,
.nav-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(0,240,255,0.45))
    drop-shadow(0 0 30px rgba(86,255,125,0.16));
  transition: transform var(--ease-slow), filter var(--ease-slow);
}

.logo:hover,
.logo-wrap:hover .logo {
  transform: scale(1.03) rotate(2deg);
  filter:
    drop-shadow(0 0 20px rgba(0,240,255,0.55))
    drop-shadow(0 0 34px rgba(86,255,125,0.22));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links .btn-glow {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 0.82rem;
  color: var(--white);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,240,255,0.18);
  box-shadow: none;
}

.nav-links .btn-glow:hover,
.nav-links .btn-glow.active {
  color: var(--text-dark);
  background: linear-gradient(135deg, rgba(0,240,255,0.95), rgba(86,255,125,0.92));
  box-shadow: 0 0 24px rgba(0,240,255,0.18);
}

.nav-wave-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.nav-wave {
  position: absolute;
  top: 50%;
  width: 460px;
  height: 130%;
  transform: translate(115vw, -50%);
  background: url("assets/wave.png") center / contain no-repeat;
  opacity: 0.28;
  filter: drop-shadow(0 0 16px rgba(0,240,255,0.4));
  animation: waveSlide 26s linear infinite;
}

@keyframes waveSlide {
  from { transform: translate(115vw, -50%); }
  to { transform: translate(-120vw, -50%); }
}

.hamburger {
  display: none;
  position: relative;
  z-index: 4;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(0,240,255,0.2);
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 0 16px rgba(0,240,255,0.04);
}

.bar {
  width: 22px;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--aqua-2);
  transition: transform var(--ease), opacity var(--ease), width var(--ease);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: calc(var(--nav-height) + 10px);
  right: 16px;
  width: min(310px, calc(100vw - 32px));
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,240,255,0.28);
  background: rgba(4, 18, 26, 0.96);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(0,240,255,0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 2100;
}

.mobile-menu.active {
  display: flex;
  animation: menuIn 0.25s ease;
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-link {
  display: block;
  padding: 14px 14px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.mobile-link:hover,
.mobile-link:focus {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--aqua), var(--green));
  transform: translateX(2px);
}

/* =========================================================
   7) HERO
========================================================= */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 88px) 0 clamp(72px, 8vw, 110px);
  text-align: center;
}

.hero-box,
.unified-hero {
  width: min(100%, 980px);
  margin-inline: auto;
}

.hero-desc {
  width: min(100%, 760px);
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--text-soft);
  line-height: 1.85;
}

.hero .btn-glow {
  margin-top: 24px;
}

.hero-sub {
  font-weight: 600;
}

/* =========================================================
   8) FORMS / POPUPS
========================================================= */
form {
  width: 100%;
}

#signupForm,
#dphSignupForm,
#popupSignupForm,
#contactForm {
  width: min(100%, 520px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-glow,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  box-shadow: inset 0 0 0 1px transparent;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.input-glow::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(231, 255, 247, 0.58);
}

.input-glow:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(120,247,255,0.45);
  box-shadow:
    0 0 0 4px rgba(0,240,255,0.08),
    0 0 18px rgba(0,240,255,0.16);
  background: rgba(255,255,255,0.055);
}

.form-note {
  width: min(100%, 560px);
  margin: 2px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.popup,
.fresh-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
}

.popup.show,
.fresh-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup.hidden,
.fresh-popup.hidden {
  visibility: hidden;
}

.popup-content,
.fresh-popup-content {
  width: min(100%, 480px);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,240,255,0.28);
  background: rgba(6, 20, 28, 0.96);
  box-shadow:
    0 22px 48px rgba(0,0,0,.42),
    0 0 24px rgba(0,240,255,.18);
  text-align: center;
}

.popup h3,
.fresh-popup h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
}

.popup p,
.fresh-popup p {
  color: var(--text-soft);
  margin-bottom: 18px;
}

/* =========================================================
   9) FEATURED COLLAGE / BLOG / TILE SYSTEM
========================================================= */
.homes-collage {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.homes-grid,
.blog-grid {
  display: grid;
  gap: 24px;
}

.homes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.home-tile,
.blog-card {
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.home-tile {
  min-height: 250px;
}

.home-img,
.blog-img {
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 6px);
}

.home-img {
  height: 100%;
}

.blog-img {
  height: 220px;
  margin-bottom: 14px;
}

.blog-card {
  padding: 16px 16px 20px;
}

.blog-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--white);
}

.blog-card p {
  margin-bottom: 16px;
  color: var(--text-soft);
}

.blog-card .btn-glow {
  width: 100%;
}

/* =========================================================
   10) SOFIA / VIDEO HOST
========================================================= */
.kenya-host {
  width: min(100%, 1040px);
  margin-inline: auto;
  text-align: center;
}

.kenya-video-box {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,240,255,0.2);
  background: rgba(0,0,0,0.45);
  box-shadow: 0 16px 42px rgba(0,0,0,.34);
  aspect-ratio: 16 / 9;
}

#kenyaVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #02070a;
  border-radius: var(--radius-md);
}

.sofia-wrap {
  position: fixed;
  right: -36px;
  bottom: 118px;
  z-index: 1200;
  text-align: center;
  pointer-events: none;
}

.sofia-name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-2);
  text-shadow: 0 0 16px rgba(0,240,255,0.24);
}

.sofia-avatar {
  width: 300px;
  filter:
    drop-shadow(0 0 20px rgba(0,240,255,0.24))
    drop-shadow(0 0 36px rgba(86,255,125,0.14));
  animation: floatSoft 6.5s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =========================================================
   11) ABOUT / DISCLAIMER / FEATURE LIST
========================================================= */
.about-container {
  width: min(100%, 1100px);
  margin-inline: auto;
  text-align: center;
}

.about-container p,
.disclaimer-box p {
  width: min(100%, 860px);
  margin-inline: auto;
}

.feature-list {
  width: min(100%, 760px);
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.feature-list li {
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  text-align: left;
}

.glow-divider {
  width: min(100%, 180px);
  height: 2px;
  margin: 34px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,240,255,0), rgba(0,240,255,0.95), rgba(86,255,125,0.9), rgba(0,240,255,0));
  box-shadow: 0 0 18px rgba(0,240,255,0.24);
}

.disclaimer-box {
  width: min(100%, 960px);
  margin-inline: auto;
  text-align: center;
}

.disclaimer-box ul {
  width: min(100%, 720px);
  margin: 16px auto;
  padding-left: 1.1rem;
  text-align: left;
}

.disclaimer-box li {
  margin: 8px 0;
  color: var(--text-soft);
}

/* =========================================================
   12) FAQ
========================================================= */
.faq-item {
  margin: 14px 0;
  width: min(100%, 900px);
  margin-inline: auto;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.faq-toggle {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--aqua-2);
  transition: transform var(--ease);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--text-soft);
  text-align: left;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* =========================================================
   13) TRIVIA
========================================================= */
.trivia-section {
  text-align: center;
}

.trivia-box {
  width: min(100%, 920px);
  margin-inline: auto;
}

.question {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
  color: var(--white);
}

.answers {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.answer-btn,
.answers button,
.next-btn {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,240,255,0.25);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-weight: 700;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.answer-btn:hover,
.answers button:hover,
.next-btn:hover {
  transform: translateY(-1px);
  background: rgba(0,240,255,0.08);
  border-color: rgba(0,240,255,0.42);
  box-shadow: 0 0 18px rgba(0,240,255,0.16);
}

.answers button.correct {
  background: rgba(29, 255, 154, 0.14);
  border-color: rgba(29, 255, 154, 0.5);
}

.answers button.wrong {
  background: rgba(255, 90, 136, 0.14);
  border-color: rgba(255, 90, 136, 0.45);
}

.feedback,
.fact,
.score-display {
  color: var(--text-soft);
}

.score-panel {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--aqua-2);
  font-weight: 700;
}

.trivia-cta-wrap {
  text-align: center;
  margin: 70px 0;
}

.trivia-btn {
  min-height: 66px;
  padding: 18px 34px;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

/* =========================================================
   14) FLOATING PRODUCT / SIDE VISUALS
========================================================= */
.fresh-floating {
  position: fixed;
  left: 10px;
  bottom: 130px;
  z-index: 1100;
  pointer-events: none;
}

.fresh-floating img {
  width: 155px;
  filter:
    drop-shadow(0 0 18px rgba(0,240,255,0.22))
    drop-shadow(0 0 32px rgba(86,255,125,0.16));
  animation: floatSoft 6.2s ease-in-out infinite;
}

/* =========================================================
   15) FEATURE PROMO / PRODUCT PROMO — LAVENDER GROOVE 10/10
========================================================= */
.saxy-mint-promo {
  margin: 20px auto 0;
}

.saxy-mint-promo-box {
  width: min(100%, 1180px);
  margin-inline: auto;
}

/* Single featured product layout */
.saxy-mint-promo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

/* Product visual panel */
.saxy-mint-promo-media,
.product-item {
  position: relative;
}

.saxy-mint-promo-media {
  min-height: 100%;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(0, 240, 255, 0.22);
  background:
    radial-gradient(circle at 50% 20%, rgba(120, 247, 255, 0.14), transparent 34%),
    radial-gradient(circle at 50% 90%, rgba(86, 255, 125, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 24px rgba(0, 240, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(0, 240, 255, 0.14);
  overflow: hidden;
}

.product-item {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.saxy-mint-sparkle-layer {
  position: absolute;
  inset: -25%;
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(circle, rgba(255,255,255,.88) 0 1px, transparent 2px) 0 0/34px 34px,
    radial-gradient(circle, rgba(0,240,255,.72) 0 1px, transparent 2px) 14px 20px/46px 46px,
    radial-gradient(circle, rgba(86,255,125,.5) 0 1px, transparent 2px) 18px 8px/56px 56px;
  animation: sparkleShift 12s linear infinite;
}

@keyframes sparkleShift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(35px, -45px, 0) rotate(8deg);
  }
}

/* Product image sizing */
.saxy-mint-promo-img {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  max-height: 430px;
  object-fit: contain;
  margin-inline: auto;
  border-radius: 18px;
  filter:
    drop-shadow(0 0 20px rgba(0,240,255,0.2))
    drop-shadow(0 0 38px rgba(86,255,125,0.13));
}

.product-label {
  position: relative;
  z-index: 2;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--white);
  letter-spacing: 0.04em;
}

/* Badges */
.saxy-mint-promo-badges {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.saxy-badge {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 0.76rem;
}

/* Content side */
.saxy-mint-promo-content {
  text-align: left;
  max-width: 660px;
}

.saxy-mint-promo-content .section-title {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.saxy-mint-promo-tagline {
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.85;
  color: var(--text-soft);
  margin: 10px 0 18px;
}

.saxy-mint-mini-note {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.saxy-mint-promo-content .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* Tablet */
@media (max-width: 980px) {
  .saxy-mint-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .saxy-mint-promo-content {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
  }

  .saxy-mint-promo-content .section-title {
    margin-inline: auto;
  }

  .saxy-mint-promo-content .btn-row {
    justify-content: center !important;
  }

  .saxy-mint-promo-img {
    max-height: 390px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .saxy-mint-promo-box {
    width: min(100%, calc(100vw - 28px));
  }

  .saxy-mint-promo-media {
    padding: 18px;
    border-radius: 20px;
  }

  .saxy-mint-promo-img {
    width: min(100%, 300px);
    max-height: 350px;
  }

  .saxy-mint-promo-content .btn-row > * {
    width: 100%;
  }
}

/* =========================================================
   16) FOOTER
========================================================= */
.site-footer {
  position: relative;
  margin-top: 80px;
  padding: 44px 0 34px;
  background:
    linear-gradient(180deg, rgba(3,15,22,0.72), rgba(5,18,24,0.96)),
    radial-gradient(circle at top center, rgba(0,240,255,0.08), transparent 28%);
  border-top: 1px solid rgba(0,240,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.8), rgba(86,255,125,0.75), transparent);
  opacity: 0.95;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background:
    radial-gradient(circle, rgba(255,255,255,0.22) 0 1px, transparent 2px) 0 0/120px 120px,
    radial-gradient(circle, rgba(0,240,255,0.18) 0 1px, transparent 2px) 30px 20px/160px 160px;
}

.footer-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
}

.footer-link {
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--ease), transform var(--ease);
}

.footer-link:hover {
  color: var(--aqua-2);
  transform: translateY(-1px);
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
}

.social-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0,240,255,0.22);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: inset 0 0 16px rgba(0,240,255,0.04);
  transition: transform var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
}

.social-glow:hover {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--aqua), var(--green));
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 22px rgba(0,240,255,0.2);
}

.footer-credit {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

/* =========================================================
   17) CANVAS / CURSOR / EFFECTS
========================================================= */
#sparkCanvas,
.sparkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
  mix-blend-mode: screen;
}

.trail,
.cursor-trail {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,240,255,0.92), rgba(86,255,125,0.5));
  opacity: 0.8;
  filter: blur(4px);
  z-index: 9999;
  animation: trailFade 0.7s linear forwards;
}

@keyframes trailFade {
  from {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.34);
  }
}

/* =========================================================
   18) RESPONSIVE
========================================================= */
@media (max-width: 1180px) {
  .saxy-mint-promo-inner,
  .saxy-mint-promo-inner.saxy-mint-promo-inner {
    grid-template-columns: 1fr 1fr;
  }

  .saxy-mint-promo-content {
    grid-column: 1 / -1;
    text-align: center;
  }

  .saxy-mint-promo-badges {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  :root {
    --nav-height: 84px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .logo,
  header img,
  .nav-logo img {
    width: 74px;
    height: 74px;
  }

  .homes-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sofia-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: var(--nav-height);
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-sub,
  .section-desc,
  .hero-desc {
    font-size: 1rem;
  }

  .kenya-host,
  .glow-box,
  .about-container,
  .trivia-box,
  .homes-collage,
  .disclaimer-box,
  .saxy-mint-promo-box {
    padding: 22px 18px;
  }

  .faq-question {
    padding: 16px;
  }

  .social-glow {
    width: 46px;
    height: 46px;
  }

  .fresh-floating {
    display: none;
  }

  .saxy-mint-promo-inner,
  .saxy-mint-promo-inner.saxy-mint-promo-inner {
    grid-template-columns: 1fr;
  }

  .saxy-mint-promo-content {
    text-align: center;
  }

  .saxy-mint-promo-badges {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .homes-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .score-panel {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .btn-glow,
  .btn-cta,
  .faq-cta-btn,
  .trivia-btn,
  .saxy-mint-cta,
  .popup button,
  .btn-small,
  .btn-ghost,
  .mini-btn-glow {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================================================
   19) REDUCED MOTION / ACCESSIBILITY
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  body.shooting-stars::after,
  .nav-wave,
  .mega-bling,
  .fresh-floating img,
  .sofia-avatar,
  .saxy-mint-sparkle-layer {
    animation: none !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(120, 247, 255, 0.42);
  outline-offset: 3px;
}

/* =========================================================
   20) HELPER CLASSES USED ACROSS PAGES
========================================================= */
.hidden {
  display: none !important;
}

.dual-product {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.product-item img,
.fresh-floating img,
.sofia-avatar,
.logo {
  user-select: none;
  -webkit-user-drag: none;
}