/* ==========================================================================
   CARRIBBEAN SLOT — STYLE.CSS
   Core Variables, Reset, Layout System, Utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Base Ocean Layers */
  --color-deep-ocean: #041a26;
  --color-coral-abyss: #062b3d;
  --color-lagoon-depth: #0b3b4f;

  /* Primary Accents */
  --color-tropical-teal: #1ccad8;
  --color-ocean-glow: #38e8d3;
  --color-seafoam: #7fffd4;

  /* Warm Highlights */
  --color-sunset-gold: #f6c453;
  --color-coral-flame: #ff6b6b;
  --color-palm-ember: #ff9f43;

  /* Text Colors */
  --color-text-primary: #e6f7ff;
  --color-text-secondary: #a8d8e6;
  --color-text-muted: #6aa9b8;

  /* Glassmorphism */
  --glass-bg: rgba(11, 59, 79, 0.45);
  --glass-bg-dark: rgba(4, 26, 38, 0.65);
  --glass-border: rgba(28, 202, 216, 0.18);
  --glass-border-hover: rgba(28, 202, 216, 0.38);
  --glass-blur: 16px;
  --glass-blur-light: 8px;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 100px;
  --space-3xl: 120px;

  /* Container */
  --container-max: 1320px;
  --container-pad-desktop: 32px;
  --container-pad-tablet: 24px;
  --container-pad-mobile: 16px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-teal: 0 0 30px rgba(28, 202, 216, 0.18);
  --shadow-teal-lg: 0 0 60px rgba(28, 202, 216, 0.25);
  --shadow-gold: 0 0 30px rgba(246, 196, 83, 0.15);
  --shadow-card: 0 8px 32px rgba(4, 26, 38, 0.4);
  --shadow-card-hover: 0 16px 48px rgba(4, 26, 38, 0.55);

  /* Header */
  --header-height: 80px;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-deep-ocean);
  color: var(--color-text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   3. LAYOUT SYSTEM — OCEAN FLOW GRID
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad-desktop);
}

/* --------------------------------------------------------------------------
   4. AMBIENT OCEAN BACKGROUND
   -------------------------------------------------------------------------- */
.ambient-ocean {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ocean-layer {
  position: absolute;
  inset: 0;
}

.ocean-layer--deep {
  background: var(--color-deep-ocean);
}

.ocean-layer--mid {
  background: radial-gradient(
    ellipse 120% 80% at 50% 100%,
    rgba(6, 43, 61, 0.9) 0%,
    transparent 70%
  ),
  radial-gradient(
    ellipse 80% 60% at 20% 20%,
    rgba(11, 59, 79, 0.5) 0%,
    transparent 60%
  );
}

.ocean-layer--surface {
  background: radial-gradient(
    ellipse 60% 40% at 80% 10%,
    rgba(28, 202, 216, 0.06) 0%,
    transparent 60%
  ),
  radial-gradient(
    ellipse 40% 30% at 10% 80%,
    rgba(246, 196, 83, 0.04) 0%,
    transparent 50%
  );
}

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(4, 26, 38, 0.75);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(4, 26, 38, 0.92);
  box-shadow: 0 4px 40px rgba(4, 26, 38, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: var(--space-md);
}

.header-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(28, 202, 216, 0.4),
    rgba(56, 232, 211, 0.6),
    rgba(28, 202, 216, 0.4),
    transparent
  );
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.logo-text em {
  font-style: normal;
  color: var(--color-tropical-teal);
}

/* Nav */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 6px 4px;
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-tropical-teal), var(--color-seafoam));
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. MOBILE DRAWER
   -------------------------------------------------------------------------- */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 26, 38, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: linear-gradient(160deg, var(--color-coral-abyss), var(--color-lagoon-depth));
  border-left: 1px solid var(--glass-border);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.mobile-drawer.open .mobile-drawer__panel {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  padding: 8px;
  transition: color var(--transition-fast);
}

.drawer-close:hover {
  color: var(--color-tropical-teal);
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.drawer-nav-link {
  display: block;
  padding: 14px var(--space-sm);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.drawer-nav-link:hover {
  background: rgba(28, 202, 216, 0.1);
  color: var(--color-text-primary);
}

.drawer-cta {
  margin-top: auto;
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. SECTION COMMON STYLES
   -------------------------------------------------------------------------- */
.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-tropical-teal);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 580px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header .section-desc {
  margin-inline: auto;
}

.headline-accent {
  font-style: italic;
  color: var(--color-tropical-teal);
  background: linear-gradient(135deg, var(--color-tropical-teal), var(--color-seafoam));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body-text {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: var(--space-3xl) var(--space-2xl);
  overflow: hidden;
}

.hero__parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 60% 60% 0 0;
  opacity: 0.08;
}

.hero__wave--1 {
  height: 35%;
  background: linear-gradient(180deg, var(--color-tropical-teal), transparent);
  animation: waveFloat 8s ease-in-out infinite;
}

.hero__wave--2 {
  height: 25%;
  background: linear-gradient(180deg, var(--color-ocean-glow), transparent);
  animation: waveFloat 11s ease-in-out infinite reverse;
  opacity: 0.05;
}

.hero__wave--3 {
  height: 15%;
  background: linear-gradient(180deg, var(--color-seafoam), transparent);
  animation: waveFloat 14s ease-in-out infinite;
  opacity: 0.04;
}

.hero__palm {
  position: absolute;
  font-size: 8rem;
  opacity: 0.12;
  filter: blur(2px);
  user-select: none;
}

.hero__palm--left {
  bottom: 0;
  left: -2%;
  transform: rotate(-15deg);
  font-size: 12rem;
}

.hero__palm--right {
  bottom: 0;
  right: -2%;
  transform: rotate(15deg) scaleX(-1);
  font-size: 10rem;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-tropical-teal);
  margin-bottom: var(--space-sm);
  padding: 6px 14px;
  background: rgba(28, 202, 216, 0.1);
  border: 1px solid rgba(28, 202, 216, 0.25);
  border-radius: var(--radius-pill);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero__disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   9. ISLAND SCENE (Hero Visual)
   -------------------------------------------------------------------------- */
.hero__visual {
  display: flex;
  justify-content: center;
}

.island-scene {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.island-scene__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(28, 202, 216, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: ambientPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.island-scene__slot-frame {
  position: relative;
  z-index: 2;
}

.slot-preview {
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  box-shadow: var(--shadow-teal), var(--shadow-card);
}

.slot-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--glass-border);
}

.slot-preview__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.slot-preview__badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sunset-gold);
  background: rgba(246, 196, 83, 0.12);
  border: 1px solid rgba(246, 196, 83, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.slot-preview__reels {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(4, 26, 38, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 14px;
  overflow: hidden;
  height: 120px;
  position: relative;
}

.reel-symbol {
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.reel--1 { animation: reelSpin 2.8s ease-in-out infinite; }
.reel--2 { animation: reelSpin 3.2s ease-in-out infinite 0.3s; }
.reel--3 { animation: reelSpin 3.0s ease-in-out infinite 0.6s; }

.slot-preview__win {
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--glass-border);
}

.win-label {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.win-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ocean-glow);
}

.island-scene__palms {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.scene-palm {
  font-size: 3.5rem;
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(28, 202, 216, 0.2));
}

.scene-palm--r {
  transform: scaleX(-1);
}

.island-scene__water {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}

.water-shimmer {
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(28, 202, 216, 0.12), transparent);
  animation: waterShimmer 3s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   10. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  padding-block: var(--space-md);
  border-top: 1px solid rgba(28, 202, 216, 0.1);
  border-bottom: 1px solid rgba(28, 202, 216, 0.1);
  background: rgba(6, 43, 61, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.trust-icon {
  font-size: 1.1rem;
}

.trust-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--glass-border);
}

/* --------------------------------------------------------------------------
   11. GAME SECTION
   -------------------------------------------------------------------------- */
.game-section {
  padding-block: var(--space-3xl);
  position: relative;
}

.game-world {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.game-world__aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(28, 202, 216, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: ambientPulse 5s ease-in-out infinite;
}

.game-frame-container {
  position: relative;
  width: 100%;
  max-width: 960px;
}

.game-frame-glow {
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(135deg,
    rgba(28, 202, 216, 0.3),
    rgba(246, 196, 83, 0.1),
    rgba(56, 232, 211, 0.3)
  );
  animation: borderGlow 4s ease-in-out infinite;
  z-index: 0;
}

.game-frame {
  position: relative;
  z-index: 1;
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-teal-lg), var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  aspect-ratio: 16 / 9;
}

.game-frame:hover {
  transform: scale(1.015);
  box-shadow: 0 0 80px rgba(28, 202, 216, 0.3), var(--shadow-card-hover);
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.game-frame-corner--tl { top: 8px; left: 8px; border-top: 2px solid var(--color-tropical-teal); border-left: 2px solid var(--color-tropical-teal); border-radius: 4px 0 0 0; }
.game-frame-corner--tr { top: 8px; right: 8px; border-top: 2px solid var(--color-tropical-teal); border-right: 2px solid var(--color-tropical-teal); border-radius: 0 4px 0 0; }
.game-frame-corner--bl { bottom: 8px; left: 8px; border-bottom: 2px solid var(--color-tropical-teal); border-left: 2px solid var(--color-tropical-teal); border-radius: 0 0 0 4px; }
.game-frame-corner--br { bottom: 8px; right: 8px; border-bottom: 2px solid var(--color-tropical-teal); border-right: 2px solid var(--color-tropical-teal); border-radius: 0 0 4px 0; }

.game-world__ambient {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding-inline: var(--space-xl);
  pointer-events: none;
}

.ambient-palm {
  font-size: 4rem;
  opacity: 0.35;
  filter: drop-shadow(0 0 12px rgba(28, 202, 216, 0.15));
}

.ambient-palm--r {
  transform: scaleX(-1);
}

.game-meta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.game-meta__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.meta-icon {
  font-size: 1rem;
}

.meta-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   12. FEATURES SECTION
   -------------------------------------------------------------------------- */
.features-section {
  padding-block: var(--space-3xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* --------------------------------------------------------------------------
   13. HOW IT WORKS
   -------------------------------------------------------------------------- */
.how-section {
  padding-block: var(--space-2xl);
}

.steps-flow {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.step-item {
  flex: 1;
  text-align: center;
  padding: var(--space-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28, 202, 216, 0.4);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  padding-top: 44px;
  display: flex;
  align-items: center;
}

.connector-wave {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-tropical-teal), transparent);
  opacity: 0.4;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   14. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  padding-block: var(--space-2xl);
}

.cta-banner__inner {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.cta-banner__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(28, 202, 216, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-tropical-teal);
  margin-bottom: var(--space-sm);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.cta-banner__desc {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.cta-banner__sub {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   15. PAGE HERO (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--space-3xl) + var(--header-height) * 0.5);
  padding-bottom: var(--space-2xl);
  text-align: center;
  position: relative;
}

.page-hero--compact {
  padding-top: calc(var(--space-xl) + var(--header-height) * 0.5);
  padding-bottom: var(--space-xl);
}

.page-hero__inner {
  max-width: 700px;
  margin-inline: auto;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-block: var(--space-sm);
  letter-spacing: -0.02em;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: rgba(4, 26, 38, 0.8);
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.footer-logo em {
  font-style: normal;
  color: var(--color-tropical-teal);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.footer-operated {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-nav-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-link {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-tropical-teal);
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-coral-flame);
  margin-bottom: var(--space-sm);
}

.footer-legal-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   17. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.teal-link {
  color: var(--color-tropical-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.teal-link:hover {
  color: var(--color-ocean-glow);
}

.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Particles */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-tropical-teal);
  opacity: 0;
  animation: particleFloat var(--duration, 8s) ease-in-out var(--delay, 0s) infinite;
}
/* ENDFILE */