/* ============================================================
   RIGHTLYTE — Brand Stylesheet
   Fonts: Conthrax (headings/callouts) | Montserrat 500 (body)
   Palette: Deep Navy → Brand Blue → White
   ============================================================ */

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

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --rl-dark:        #00060F;
  --rl-navy:        #000E1F;
  --rl-navy-2:      #001533;
  --rl-blue:        #0055B8;
  --rl-blue-mid:    #0070E0;
  --rl-blue-light:  #0099FF;
  --rl-blue-brand:  #017DCB;
  --rl-cyan:        #00C8FF;
  --rl-white:       #FFFFFF;
  --rl-off-white:   #F2F6FB;
  --rl-silver:      #B8C8D8;
  --rl-muted:       #6B8099;
  --rl-border:      rgba(0, 136, 255, 0.18);
  --rl-glow:        rgba(0, 136, 255, 0.25);

  --font-brand:     'Conthrax', 'Rajdhani', 'Orbitron', sans-serif;
  --font-body:      'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:         12px;
  --radius-lg:      20px;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--rl-white);
  background: var(--rl-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.font-brand { font-family: var(--font-brand) !important; }
.font-body  { font-family: var(--font-body) !important; }

h1, h2, h3, .rl-heading {
  font-family: var(--font-brand);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }

.rl-label {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rl-cyan);
}

.rl-body { font-family: var(--font-body); font-weight: 500; color: var(--rl-silver); line-height: 1.75; }

/* Callout impact text — Conthrax mandatory */
.rl-callout {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.08em;
  color: var(--rl-cyan);
}

/* ─── COLOURS ─────────────────────────────────────────────── */
.bg-dark-navy  { background-color: var(--rl-navy); }
.bg-navy-2     { background-color: var(--rl-navy-2); }
.bg-blue       { background-color: var(--rl-blue); }
.bg-white-sec  { background-color: var(--rl-off-white); color: var(--rl-navy); }
.text-cyan     { color: var(--rl-cyan) !important; }
.text-blue     { color: var(--rl-blue-light) !important; }
.text-silver   { color: var(--rl-silver) !important; }
.text-navy     { color: var(--rl-navy) !important; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
#rl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

#rl-nav.scrolled {
  background: rgba(0, 6, 15, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.rl-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
}

.rl-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.rl-logo img {
  height: 40px;
  width: auto;
  display: block;
  max-width: none;
}

.rl-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.rl-nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rl-silver);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.rl-nav-links a:hover,
.rl-nav-links a.active { color: var(--rl-white); background: var(--rl-border); }

/* Products dropdown */
.rl-dropdown { position: relative; }

.rl-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 14, 31, 0.98);
  border: 1px solid var(--rl-border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  padding-top: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  z-index: 100;
  list-style: none;
}

.rl-dropdown:hover .rl-dropdown-menu { display: block; }

.rl-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--rl-silver);
  transition: color var(--transition), background var(--transition);
  text-transform: none;
}

.rl-dropdown-menu a:hover { color: var(--rl-cyan); background: rgba(0, 136, 255, 0.08); }

.rl-btn-nav {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rl-white) !important;
  background: var(--rl-blue);
  padding: 10px 22px !important;
  border-radius: 6px !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}

.rl-btn-nav:hover {
  background: var(--rl-blue-mid) !important;
  box-shadow: 0 4px 20px var(--rl-glow) !important;
}

/* Mobile menu toggle */
.rl-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  position: relative;
  z-index: 1000;
}

.rl-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--rl-white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.rl-menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rl-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.rl-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rl-mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 6, 15, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 24px 40px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.rl-mobile-nav.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.rl-mobile-nav a {
  font-family: var(--font-brand);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--rl-silver);
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 320px;
  opacity: 0;
  transform: translateY(10px);
  transition: color var(--transition), opacity 0.3s ease, transform 0.3s ease;
}

.rl-mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

/* Home=2nd child, Products toggle handled separately, About=4th, Join=5th */
.rl-mobile-nav.open a:nth-child(2) { transition-delay: 0.05s; }
.rl-mobile-nav.open a:nth-child(4) { transition-delay: 0.15s; }
.rl-mobile-nav.open a:nth-child(5) { transition-delay: 0.20s; }

.rl-mobile-nav a:hover { color: var(--rl-cyan); }

.rl-mobile-group {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.rl-mobile-group-toggle {
  font-family: var(--font-brand);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--rl-silver);
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: color var(--transition);
  opacity: 0;
  transform: translateY(10px);
  transition: color var(--transition), opacity 0.3s ease, transform 0.3s ease;
}

.rl-mobile-nav.open .rl-mobile-group-toggle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.10s;
}

.rl-mobile-group-toggle:hover { color: var(--rl-cyan); }

.rl-mobile-arrow {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.rl-mobile-group.open .rl-mobile-arrow {
  transform: rotate(180deg);
}

.rl-mobile-group-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.rl-mobile-group.open .rl-mobile-group-list {
  max-height: 400px;
  padding: 14px 0;
}

.rl-mobile-group-list a {
  font-size: 0.85rem;
  color: var(--rl-muted);
  letter-spacing: 0.06em;
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
}

.rl-mobile-group-list a:hover { color: var(--rl-cyan); }

.rl-mobile-close {
  display: none;
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--rl-white);
  cursor: pointer;
}

/* ─── HERO ────────────────────────────────────────────────── */
.rl-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--rl-navy);
}

.rl-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0, 85, 184, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0, 200, 255, 0.10) 0%, transparent 60%),
    var(--rl-navy);
}

.rl-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230055b8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.rl-hero-content { position: relative; z-index: 2; }

.rl-hero-logo {
  font-family: var(--font-brand);
  font-size: clamp(2.8rem, 10vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, #A0C4F8 50%, var(--rl-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.rl-hero-tagline {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  letter-spacing: 0.12em;
  color: var(--rl-silver);
  margin-bottom: 6px;
}

.rl-hero-sub {
  font-family: var(--font-brand);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  letter-spacing: 0.2em;
  color: var(--rl-cyan);
  margin-bottom: 32px;
}

.rl-hero-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--rl-silver);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.rl-hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rl-glow) 0%, transparent 70%);
  filter: blur(40px);
}

.rl-hero-img-wrap img {
  position: relative;
  z-index: 1;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 136, 255, 0.3));
}

/* Liquid RTD hero packshot */
.rl-hero-img-wrap img.rl-liquid-hero-img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  transition: transform 0.4s ease;
  transform-origin: center;
}
.rl-hero-img-wrap img.rl-liquid-hero-img:hover { transform: scale(1.07); }

/* Mobile: enlarge the bottles, swipe horizontally (Liquid IV style) */
@media (max-width: 767px) {
  .rl-hero-img-wrap.rl-liquid-hero-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .rl-hero-img-wrap.rl-liquid-hero-wrap::-webkit-scrollbar { display: none; }
  .rl-hero-img-wrap.rl-liquid-hero-wrap img.rl-liquid-hero-img {
        width: 700px;
        max-width: unset;
        margin-left: -75px;
        max-height: none;
        flex: 0 0 auto;
    }
  .rl-hero-img-wrap.rl-liquid-hero-wrap img.rl-liquid-hero-img:hover { transform: none; }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.rl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.rl-btn-primary {
  background: var(--rl-blue);
  color: var(--rl-white);
  box-shadow: 0 4px 24px rgba(0, 85, 184, 0.4);
}

.rl-btn-primary:hover {
  background: var(--rl-blue-mid);
  color: var(--rl-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 136, 255, 0.5);
}

.rl-btn-outline {
  background: transparent;
  color: var(--rl-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.rl-btn-outline:hover {
  border-color: var(--rl-cyan);
  color: var(--rl-cyan);
  transform: translateY(-2px);
}

.rl-btn-cyan {
  background: var(--rl-cyan);
  color: var(--rl-navy);
  box-shadow: 0 4px 24px rgba(0, 200, 255, 0.3);
}

.rl-btn-cyan:hover {
  background: #33D4FF;
  color: var(--rl-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 200, 255, 0.5);
}

/* ─── BENEFITS STRIP ──────────────────────────────────────── */
.rl-strip {
  background: var(--rl-blue);
  padding: 18px 0;
  overflow: hidden;
}

.rl-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.rl-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-brand);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rl-white);
  white-space: nowrap;
}

.rl-strip-item:last-child { border-right: none; }

.rl-strip-item .rl-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rl-cyan);
  flex-shrink: 0;
}

/* ─── SECTION WRAPPER ─────────────────────────────────────── */
.rl-section {
  padding: 100px 0;
}

.rl-section-sm { padding: 64px 0; }
.rl-section-lg { padding: 140px 0; }

.rl-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.rl-section-label {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rl-cyan);
  margin-bottom: 16px;
  display: block;
}

.rl-section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--rl-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.rl-section-title.dark { color: var(--rl-navy); }

.rl-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--rl-blue), var(--rl-cyan));
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ─── HEXAGON GRID ────────────────────────────────────────── */
.rl-hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.rl-hex-card {
  position: relative;
  background: rgba(0, 21, 51, 0.8);
  border: 1px solid var(--rl-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}

.rl-hex-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 85, 184, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.rl-hex-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 136, 255, 0.2);
}

.rl-hex-card:hover::before { opacity: 1; }

/* ─── HEXAGON SHAPES ──────────────────────────────────────── */
.rl-hex-grid-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.rl-hex-item {
  text-align: center;
  flex: 0 0 auto;
}

.rl-hex-glow {
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(0, 136, 255, 0.4)) drop-shadow(0 8px 24px rgba(0, 200, 255, 0.18));
}

.rl-hex-glow--green {
  filter: drop-shadow(0 0 6px rgba(0, 200, 80, 0.4)) drop-shadow(0 8px 24px rgba(0, 200, 80, 0.18));
}

.rl-hex-glow--brown {
    filter: drop-shadow(0 0 6px rgba(139, 69, 19, 0.4))
            drop-shadow(0 8px 24px rgba(139, 69, 19, 0.18));
}



.rl-hex-glow--red {
  filter: drop-shadow(0 0 6px rgba(255, 50, 80, 0.4)) drop-shadow(0 8px 24px rgba(255, 50, 80, 0.18));
}

.rl-hex-glow--orange {
  filter: drop-shadow(0 0 6px rgba(247, 148, 29, 0.5)) drop-shadow(0 8px 24px rgba(247, 148, 29, 0.25));
}

.rl-hex-glow--purple {
  filter: drop-shadow(0 0 6px rgba(160, 80, 220, 0.5)) drop-shadow(0 8px 24px rgba(160, 80, 220, 0.25));
}

.rl-hex-outer {
  width: 110px;
  height: 126px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.rl-hex-outer--green  { background: rgba(0, 200, 80, 0.9); }
.rl-hex-outer--red    { background: rgba(255, 50, 80, 0.9); }
.rl-hex-outer--purple { background: rgba(160, 80, 220, 0.9); }
.rl-hex-outer--sm    { width: 72px; height: 82px; }
.rl-hex-inner--sm    { width: 70px; height: 80px; }
.rl-hex-inner--sm .rl-hex-sym { font-size: 1.1rem; }
.rl-hex-outer--brown {
    background: rgba(139, 69, 19, 0.9);
}
.rl-hex-inner {
  width: 107px;
  height: 123px;
  background: var(--rl-navy);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.rl-hex-sym {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: var(--rl-white);
  line-height: 1;
}

.rl-hex-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--rl-white);
  letter-spacing: 0.05em;
}

.rl-hex-desc {
  color: var(--rl-white);
  font-weight: 600 !important;
  font-size: 0.75rem;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  text-align: center;
}

.rl-hex-card--green { border-color: rgba(0, 200, 80, 0.5); }
.rl-hex-card--green:hover { border-color: rgba(0, 200, 80, 0.9); }
.rl-hex-symbol--green { color: #00C850; }

.rl-hex-card--red { border-color: rgba(255, 50, 80, 0.5); }
.rl-hex-card--red:hover { border-color: rgba(255, 50, 80, 0.9); }
.rl-hex-symbol--red { color: #FF3250; }

.rl-hex-icon {
  width: 72px; height: 72px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 16px rgba(0, 136, 255, 0.4));
}

.rl-hex-symbol {
  font-family: var(--font-brand);
  font-size: 2rem;
  color: var(--rl-cyan);
  margin-bottom: 8px;
  display: block;
}

.rl-hex-name {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--rl-white);
  margin-bottom: 6px;
}

.rl-hex-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--rl-muted);
  font-weight: 500;
}

/* ─── COGNITIVE / CONTENT BLOCKS ─────────────────────────── */
.rl-content-block {
  background: var(--rl-navy-2);
  border-radius: var(--radius-lg);
  padding: 60px;
  border: 1px solid var(--rl-border);
  position: relative;
  overflow: hidden;
}

.rl-content-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 85, 184, 0.2) 0%, transparent 70%);
}

.rl-content-block p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--rl-silver);
  line-height: 1.8;
  margin-bottom: 16px;
}

.rl-fuel-line {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--rl-cyan);
  margin-top: 8px;
  display: block;
}

/* ─── SUGAR COMPARISON ─────────────────────────────────────── */
.rl-sugar-block {
  background: var(--rl-navy);
  border-radius: var(--radius-lg);
  padding: 60px;
  border: 1px solid var(--rl-border);
}

.rl-sugar-stat {
  font-family: var(--font-brand);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--rl-cyan);
  line-height: 1;
  display: block;
}

.rl-sugar-unit {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  color: var(--rl-silver);
  display: block;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.rl-sugar-chart { border-radius: var(--radius); overflow: hidden; }

.rl-comparison-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.rl-comparison-bar .label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rl-silver);
  width: 100px;
  flex-shrink: 0;
}

.rl-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.rl-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s ease;
}

.rl-bar-fill.rightlyte { background: var(--rl-cyan); width: 8%; }
.rl-bar-fill.traditional { background: var(--rl-muted); width: 100%; }

.rl-comparison-bar .value {
  font-family: var(--font-brand);
  font-size: 0.8rem;
  color: var(--rl-silver);
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}

/* ─── USAGE BLOCK ─────────────────────────────────────────── */
.rl-usage-block {
  background: var(--rl-blue);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rl-usage-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

.rl-usage-step {
  position: relative;
  z-index: 1;
}

.rl-usage-num {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--rl-white);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 4px;
}

.rl-usage-text {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.15em;
  color: var(--rl-white);
}

.rl-usage-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.25);
  margin: 0 auto;
}

/* ─── WAITLIST SECTION ─────────────────────────────────────── */
.rl-waitlist {
  background: linear-gradient(135deg, var(--rl-navy-2) 0%, var(--rl-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  border: 1px solid var(--rl-border);
  position: relative;
  overflow: hidden;
}

.rl-waitlist::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 85, 184, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.rl-waitlist-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 24px;
  padding: 6px 18px;
  font-family: var(--font-brand);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rl-cyan);
  margin-bottom: 24px;
}

.rl-waitlist-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rl-cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ─── FORM ────────────────────────────────────────────────── */
.rl-form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.rl-input {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--rl-white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--rl-border);
  border-radius: 6px;
  padding: 14px 20px;
  min-width: 200px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.rl-input::placeholder { color: var(--rl-muted); }
.rl-input:focus { border-color: var(--rl-blue-light); background: rgba(0, 136, 255, 0.08); }

/* ─── PRODUCT PAGES — HERO VARIANT ───────────────────────── */
.rl-page-hero {
  padding: 90px 0 0;
  background: var(--rl-navy);
  position: relative;
  overflow: hidden;
}
/* Homepage handles its own top spacing via row padding */
#hero.rl-page-hero { padding-top: 0; }

.rl-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0, 85, 184, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(0, 200, 255, 0.08) 0%, transparent 60%);
}

.rl-page-hero-content { position: relative; z-index: 1; }

/* ─── FEATURE CARDS ───────────────────────────────────────── */
.rl-feature-card {
  background: rgba(0, 21, 51, 0.7);
  border: 1px solid var(--rl-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.rl-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rl-blue), var(--rl-cyan));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.rl-feature-card:hover {
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.rl-feature-card:hover::after { transform: scaleX(1); }

.rl-feature-icon {
  width: 56px; height: 56px;
  background: rgba(0, 85, 184, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-brand);
  font-size: 1.3rem;
  color: var(--rl-cyan);
}

.rl-feature-card h4 {
  font-family: var(--font-brand);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--rl-white);
  margin-bottom: 12px;
}

.rl-feature-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--rl-silver);
  line-height: 1.7;
  margin: 0;
}

.rl-hero-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.rl-hero-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 2px solid var(--rl-border);
  transition: border-color var(--transition), transform var(--transition);
}

.rl-hero-thumbs img:hover {
  border-color: var(--rl-cyan);
  transform: translateY(-3px);
}

@media (max-width: 575px) {
  .rl-hero-thumbs img { width: 56px; height: 56px; }
}

.rl-flavour-trio {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
}

.rl-flavour-trio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.rl-flavour-trio-item img {
  width: 100%;
  max-width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 136, 255, 0.3));
  transition: transform 0.3s ease;
}

.rl-flavour-trio-item--mid img {
  max-width: 180px;
  filter: drop-shadow(0 12px 32px rgba(0, 200, 255, 0.4));
}

.rl-flavour-trio-item:hover img { transform: translateY(-6px); }

.rl-flavour-trio-label {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rl-white);
  text-align: center;
  line-height: 1.5;
}

.rl-flavour-trio-label span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--rl-muted);
  letter-spacing: 0.04em;
  text-transform: none;
}

@media (max-width: 575px) {
  .rl-flavour-trio-item img { max-width: 90px; }
  .rl-flavour-trio-item--mid img { max-width: 115px; }
}

.rl-lifestyle-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rl-lifestyle-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.rl-flavour-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 767px) {
  .rl-flavour-img { height: 160px; }
}

.rl-bar-duo {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.rl-bar-duo-img {
  height: 280px;
  width: 48%;
  object-fit: cover;
}

.rl-bar-duo-img--offset {
  margin-top: 32px;
}

.rl-crisp-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rl-crisp-slide-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: transparent;
  padding: 20px;
}

.rl-crisp-indicators {
  bottom: -8px;
}

.rl-crisp-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--rl-muted);
  border: none;
  opacity: 1;
}

.rl-crisp-indicators .active {
  background-color: var(--rl-cyan);
}

.rl-crisp-flavour-img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.rl-home-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Override rl-hero-img-wrap img specificity for homepage hero */
.rl-hero-img-wrap .rl-home-hero-img {
  max-height: none;
  object-fit: cover;
  filter: none;
  height: 525px;
  width: 100%;
}

.rl-pb-slide-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.rl-pb-flavour-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 20px;
  background: var(--rl-off-white);
  padding: 12px;
}

/* ─── ELECTROLYTE HERO ────────────────────────────────────── */
.rl-elec-hero-bg {
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(0, 100, 220, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(0, 200, 255, 0.10) 0%, transparent 60%),
    var(--rl-navy);
}

.rl-elec-usage-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rl-elec-usage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--rl-silver);
  line-height: 1.4;
}

.rl-elec-usage-icon {
  font-size: 1.6rem;
  color: var(--rl-cyan);
  flex-shrink: 0;
}

.rl-elec-usage-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.text-rl-blue { color: var(--rl-blue-brand); }

/* ─── ICON STRIP ──────────────────────────────────────────── */
.rl-icon-strip {
  border-top: 1px solid var(--rl-border);
  border-bottom: 1px solid var(--rl-border);
  padding: 28px 0;
}

.rl-icon-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}

.rl-icon-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.rl-icon-strip-item i {
  font-size: 1.8rem;
  color: var(--rl-white);
}

.rl-icon-strip-item span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rl-white);
}

.rl-icon-strip-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin: 0 24px;
}

@media (max-width: 575px) {
  .rl-icon-strip-inner { flex-wrap: wrap; gap: 20px; }
  .rl-icon-strip-divider { display: none; }
  .rl-icon-strip-item { flex: 0 0 40%; }
}

.rl-elec-label {
  display: inline-flex;
  align-items: center;
  color: var(--rl-cyan);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .rl-bar-duo-img {
    width: 100%;
    height: 220px;
  }
  .rl-bar-duo-img--offset { margin-top: 0; }
  .rl-btn { padding: 14px 20px; }
}

/* ─── ELECTROLYTE LEVEL BARS ──────────────────────────────── */
.rl-level-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rl-level-item:last-child { border-bottom: none; }

.rl-level-name {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--rl-white);
  width: 160px;
  flex-shrink: 0;
}

.rl-level-bar-wrap { flex: 1; margin: 0 20px; }

.rl-level-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.rl-level-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--rl-blue), var(--rl-cyan));
  border-radius: 3px;
}

.rl-level-value {
  font-family: var(--font-brand);
  font-size: 0.85rem;
  color: var(--rl-cyan);
  width: 80px;
  text-align: right;
  flex-shrink: 0;
}

/* ─── PRODUCT IMAGE SECTION ───────────────────────────────── */
.rl-product-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-product-showcase::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 85, 184, 0.2) 0%, transparent 70%);
  filter: blur(30px);
}

.rl-product-showcase img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 48px rgba(0, 136, 255, 0.25));
}

/* ─── ABOUT PILLARS ──────────────────────────────────────── */
.rl-pillar {
  text-align: center;
  padding: 48px 32px;
}

.rl-pillar-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--rl-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  box-shadow: 0 8px 32px rgba(0, 85, 184, 0.4);
}

.rl-pillar h3 {
  font-family: var(--font-brand);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--rl-white);
  margin-bottom: 12px;
}

/* ─── STAT NUMBERS ────────────────────────────────────────── */
.rl-stat-block { text-align: center; }

.rl-stat-num {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--rl-cyan);
  line-height: 1;
  display: block;
}

.rl-stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--rl-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 6px;
}

/* ─── FLAVOUR PILLS ───────────────────────────────────────── */
.rl-flavours {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rl-flavour-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 21, 51, 0.8);
  border: 1px solid var(--rl-border);
  border-radius: 24px;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--rl-silver);
  transition: all var(--transition);
}

.rl-flavour-pill:hover { border-color: var(--rl-cyan); color: var(--rl-cyan); }

.rl-flavour-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── FLAVOUR CARDS ───────────────────────────────────────── */
.rl-flavour-card {
  background: var(--rl-navy);
  border: 1px solid var(--rl-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rl-flavour-card:hover {
  transform: translateY(-6px);
}

/* Flavor-specific top border */
.rl-flavour-cranberry  { border-top: 4px solid #C8102E; }
.rl-flavour-apple      { border-top: 4px solid #8DC63F; }
.rl-flavour-citrus     { border-top: 4px solid #F7941D; }

.rl-flavour-cranberry:hover { box-shadow: 0 16px 48px rgba(200, 16, 46, 0.25); }
.rl-flavour-apple:hover     { box-shadow: 0 16px 48px rgba(141, 198, 63, 0.25); }
.rl-flavour-citrus:hover    { box-shadow: 0 16px 48px rgba(247, 148, 29, 0.25); }

.rl-flavour-tag-bar {
  padding: 10px 20px;
}

.rl-flavour-tag {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
}

.rl-flavour-cranberry .rl-flavour-tag { background: #C8102E; color: #fff; }
.rl-flavour-apple     .rl-flavour-tag { background: #8DC63F; color: #001533; }
.rl-flavour-citrus    .rl-flavour-tag { background: #F7941D; color: #001533; }

.rl-flavour-img-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--rl-navy-2);
}

.rl-flavour-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.rl-flavour-card:hover .rl-flavour-img-wrap img {
  transform: scale(1.04);
}

.rl-flavour-info {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.rl-flavour-drop {
  height: 64px;
  width: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.rl-flavour-name {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rl-white);
  margin-bottom: 10px;
}

.rl-flavour-line {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.rl-flavour-cranberry .rl-flavour-line { background: #C8102E; }
.rl-flavour-apple     .rl-flavour-line { background: #8DC63F; }
.rl-flavour-citrus    .rl-flavour-line { background: #F7941D; }

.rl-flavour-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--rl-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── HERO POUCHES ────────────────────────────────────────── */
.rl-hero-row { padding: 60px 0 0; }

.rl-hero-pouches {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  padding-bottom: 32px;
}

.rl-hero-pouch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 33.333%;
  transform-origin: center bottom;
  transition: transform 0.35s ease;
}

.rl-hero-pouch-label {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.rl-hero-pouch-label span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--rl-silver);
  text-transform: none;
  font-weight: 500;
  margin-top: 2px;
}

.rl-hero-pouch-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  display: block;
  transition: filter 0.35s ease;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5));
  will-change: transform;
}

/* Magnify the pouch as the mouse comes near it */
.rl-hero-pouch:hover {
  transform: translateY(-10px) scale(1.1);
  z-index: 3;
}
.rl-hero-pouch:hover .rl-hero-pouch-img {
  filter: drop-shadow(0 22px 44px rgba(0,0,0,0.6));
}

/* Consistent, full-size packshots */
.rl-hero-pouch-img--sm,
.rl-hero-pouch-img--md,
.rl-hero-pouch-img--lg { max-height: 320px; }

@media (max-width: 991px) {
  /* Liquid IV–style: keep packshots full size, swipe horizontally */
  .rl-hero-pouches {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding: 0 16px;
    padding: 0 16px 20px;
    scrollbar-width: none;            /* Firefox */
  }
  .rl-hero-pouches::-webkit-scrollbar { display: none; }  /* WebKit */
  .rl-hero-pouch {
    flex: 0 0 auto;        /* keep full size, don't shrink — let the row scroll */
    max-width: none;
    scroll-snap-align: center;
  }
  /* Hover-grow off on touch so it doesn't fight the scroll */
  .rl-hero-pouch:hover { transform: none; }
  .rl-hero-pouch-img { width: auto; }   /* size by height in the scroll row */
  .rl-hero-pouch-img--sm,
  .rl-hero-pouch-img--md,
  .rl-hero-pouch-img--lg { max-height: 230px; }
}

@media (max-width: 575px) {
  .rl-hero-pouches { gap: 14px; }
  .rl-hero-pouch-img--sm,
  .rl-hero-pouch-img--md,
  .rl-hero-pouch-img--lg { max-height: 210px; }
  .rl-hero-pouch-label { font-size: 0.6rem; }
}

/* ─── MINI HEX GRID (Na/K/Mg left column) ─────────────────── */
.rl-mini-hex-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rl-mini-hex-row {
  display: flex;
  gap: 10px;
}

.rl-mini-hex {
  width: 58px;
  height: 66px;
  background: rgba(0, 85, 184, 0.15);
  border: 2px solid rgba(0, 136, 255, 0.5);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 0.95rem;
  color: var(--rl-white);
  filter: drop-shadow(0 0 8px rgba(0, 136, 255, 0.35));
}

/* ─── INGREDIENT TEXT STYLES ──────────────────────────────── */
.rl-ingr-title {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  letter-spacing: 0.04em;
  color: var(--rl-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.rl-ingr-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--rl-cyan);
  font-weight: 600;
  margin-bottom: 16px;
}

.rl-ingr-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.rl-ingr-list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--rl-silver);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
}

.rl-ingr-list li::before {
  font-family: "bootstrap-icons";
  content: "\f26b";
  position: absolute;
  left: 0;
  color: var(--rl-cyan);
  font-size: 0.95rem;
  top: 6px;
  line-height: 1;
}

.rl-ingr-cta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--rl-cyan);
  font-weight: 600;
  font-style: italic;
}

/* ─── LARGE INGREDIENT HEXAGONS (left of B6/B12) ─────────── */
.rl-ingr-hex {
  width: 100px;
  height: 115px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rl-ingr-hex span {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  color: var(--rl-white);
  position: relative;
  z-index: 1;
}

.rl-ingr-hex--orange {
  background: rgba(247, 148, 29, 0.15);
  border: 2px solid rgba(247, 148, 29, 0.7);
  filter: drop-shadow(0 0 12px rgba(247, 148, 29, 0.4)) drop-shadow(0 8px 32px rgba(247, 148, 29, 0.25));
}

.rl-ingr-hex--purple {
  background: rgba(150, 50, 220, 0.15);
  border: 2px solid rgba(150, 50, 220, 0.7);
  filter: drop-shadow(0 0 12px rgba(150, 50, 220, 0.4)) drop-shadow(0 8px 32px rgba(150, 50, 220, 0.25));
}

.rl-ingr-hex--lg {
  width: 80px;
  height: 92px;
}

.rl-ingr-hex--lg span { font-size: 1.3rem; }

/* ─── INGREDIENT CIRCLE VISUALS (right column) ────────────── */
.rl-ingr-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rl-ingr-circle--blue {
  background: radial-gradient(circle, rgba(0, 100, 220, 0.18) 0%, rgba(0, 136, 255, 0.05) 60%, transparent 80%);
  box-shadow: 0 0 60px rgba(0, 136, 255, 0.25), inset 0 0 40px rgba(0, 136, 255, 0.08);
  border: 1px solid rgba(0, 136, 255, 0.25);
}

.rl-ingr-circle--orange {
  background: radial-gradient(circle, rgba(247, 148, 29, 0.18) 0%, rgba(247, 148, 29, 0.05) 60%, transparent 80%);
  box-shadow: 0 0 60px rgba(247, 148, 29, 0.25), inset 0 0 40px rgba(247, 148, 29, 0.08);
  border: 1px solid rgba(247, 148, 29, 0.25);
}

.rl-ingr-circle--purple {
  background: radial-gradient(circle, rgba(150, 50, 220, 0.18) 0%, rgba(150, 50, 220, 0.05) 60%, transparent 80%);
  box-shadow: 0 0 60px rgba(150, 50, 220, 0.25), inset 0 0 40px rgba(150, 50, 220, 0.08);
  border: 1px solid rgba(150, 50, 220, 0.25);
}

.rl-ingr-circle-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.rl-ingr-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.rl-ingr-badge-row {
  display: flex;
  gap: 10px;
}

.rl-ingr-badge {
  width: 58px;
  height: 66px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(0, 85, 184, 0.3);
  border: 2px solid rgba(0, 136, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 0.95rem;
  color: var(--rl-white);
}

@media (max-width: 991px) {
  .rl-ingr-circle { width: 200px; height: 200px; }
  .rl-ingr-badge  { width: 46px; height: 53px; font-size: 0.8rem; }
}

@media (max-width: 767px) {
  .rl-ingr-circle { display: none; }
}

/* ─── ESSENTIAL LEVELS ICON GRID ──────────────────────────── */
.rl-levels-hdr {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.rl-levels-line {
  flex: 1;
  height: 1px;
  background: var(--rl-border);
}

.rl-levels-heading {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rl-white);
  white-space: nowrap;
}

.rl-levels-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 40px;
}

.rl-lv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.rl-lv-hex {
  width: 72px;
  height: 83px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-lv-hex span, .rl-lv-hex i {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  color: var(--rl-white);
  position: relative;
  z-index: 1;
}

.rl-lv-hex i { font-style: normal; font-size: 1.4rem; }

.rl-lv-hex--blue {
  background: rgba(0, 85, 184, 0.2);
  border: 2px solid rgba(0, 136, 255, 0.6);
  filter: drop-shadow(0 0 8px rgba(0, 136, 255, 0.3));
}

.rl-lv-hex--orange {
  background: rgba(247, 148, 29, 0.2);
  border: 2px solid rgba(247, 148, 29, 0.7);
  filter: drop-shadow(0 0 8px rgba(247, 148, 29, 0.35));
}

.rl-lv-hex--purple {
  background: rgba(150, 50, 220, 0.2);
  border: 2px solid rgba(150, 50, 220, 0.7);
  filter: drop-shadow(0 0 8px rgba(150, 50, 220, 0.35));
}

.rl-lv-hex--muted {
  background: rgba(107, 128, 153, 0.15);
  border: 2px solid rgba(107, 128, 153, 0.5);
}

.rl-lv-value {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  color: var(--rl-cyan);
  line-height: 1;
}

.rl-lv-value strong {
  font-size: 1.5rem;
  font-weight: 400;
}

.rl-lv-value em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--rl-silver);
}

.rl-lv-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rl-muted);
  font-weight: 600;
}

@media (max-width: 575px) {
  .rl-levels-icons { gap: 20px 24px; }
  .rl-lv-hex { width: 58px; height: 67px; }
  .rl-lv-hex span { font-size: 0.9rem; }
  .rl-lv-value strong { font-size: 1.1rem; }
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.rl-footer {
  background: var(--rl-dark);
  border-top: 1px solid var(--rl-border);
  padding: 60px 0 32px;
}

.rl-footer-logo img { height: 120px; }

.rl-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  list-style: none;
}

.rl-footer-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--rl-muted);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.rl-footer-nav a:hover { color: var(--rl-cyan); }

.rl-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.rl-footer-copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--rl-muted);
}

.rl-footer-tagline {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--rl-blue-light);
  text-transform: uppercase;
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.rl-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rl-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rl-reveal-delay-1 { transition-delay: 0.1s; }
.rl-reveal-delay-2 { transition-delay: 0.2s; }
.rl-reveal-delay-3 { transition-delay: 0.3s; }
.rl-reveal-delay-4 { transition-delay: 0.4s; }
.rl-reveal-delay-5 { transition-delay: 0.5s; }

/* ─── UTILITY ─────────────────────────────────────────────── */
.rl-sep {
  width: 100%;
  height: 1px;
  background: var(--rl-border);
  margin: 0;
}

.rl-badge {
  display: inline-block;
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 4px;
  padding: 3px 10px;
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--rl-cyan);
  text-transform: uppercase;
}

/* ─── MEDIA QUERIES ───────────────────────────────────────── */
@media (max-width: 991px) {
  .rl-hex-grid { grid-template-columns: repeat(2, 1fr); }
  .rl-content-block { padding: 40px 32px; }
  .rl-sugar-block { padding: 40px 32px; }
  .rl-waitlist { padding: 60px 32px; }
  .rl-usage-block { padding: 48px 32px; }

  /* Product hero: image first, compact text below */
  .rl-page-hero { padding-top: 72px; }
  .rl-page-hero .row { padding-bottom: 0 !important; }
  .rl-crisp-slide-img { max-height: 260px; padding: 10px; }
  /* product page hero images (not homepage) */
  .rl-hero-img-wrap img:not(.rl-home-hero-img) { max-height: 260px; }
  .rl-hero-pouches { padding-bottom: 16px; }
  .rl-page-hero-content p.rl-hero-tagline { display: none; }
}

@media (max-width: 767px) {
  .rl-nav-links { display: none; }
  .rl-menu-toggle { display: flex; }
  .rl-navbar { padding: 16px 20px; }
  #hero.rl-page-hero { padding-top: 0; }
  .rl-hero-img-wrap .rl-home-hero-img,
  .rl-lifestyle-img-wrap img { height: 325px; max-height: none; }
  .rl-hex-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rl-strip-item { padding: 6px 16px; font-size: 0.7rem; }
  .rl-content-block { padding: 32px 24px; }
  .rl-sugar-block { padding: 32px 24px; }
  .rl-usage-block { padding: 40px 24px; }
  .rl-waitlist { padding: 48px 24px; }
  .rl-section { padding: 72px 0; }
  .rl-container { padding: 0 20px; }
  .rl-form-group { flex-direction: column; align-items: stretch; }
  .rl-input { min-width: unset; width: 100%; }
  .rl-usage-divider { width: 80px; height: 1px; margin: 0; }
  .rl-level-name { width: 110px; }
}

@media (max-width: 480px) {
  .rl-hex-grid { grid-template-columns: 1fr; max-width: 280px; }
  .rl-footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Electrolyte Liquid hero: clean navy behind bottles (remove blue glow box) ── */
.rl-page-hero.rl-liquid-hero-section { background: var(--rl-navy); }
.rl-page-hero.rl-liquid-hero-section::before { display: none; }
.rl-hero-img-wrap.rl-liquid-hero-wrap::before { display: none; }
.rl-hero-img-wrap img.rl-liquid-hero-img {
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

/* Home hero: don't force full viewport height on mobile — removes the big
   gap between the stacked text and image (flex align-content stretch) */
@media (max-width: 991px) {
  #hero .row {
    min-height: auto !important;
    padding-top: 72px !important;
    padding-bottom: 48px !important;
  }
  .rl-hero-sub { margin-bottom: 0; }
}
