/* LTTW Media — Live the Trinbago Way
   Main stylesheet
   Version 1.0 — Production
*/

:root {
  --red: #cc0000;
  --red-dark: #990000;
  --gold: #c8a84b;
  --gold-light: #e0c06a;
  --black: #080808;
  --white: #ffffff;
  --bg: #ffffff;
  --text: #0a0a0a;
  --text2: #444;
  --text3: #888;
  --border: rgba(0, 0, 0, 0.09);
  --card-bg: #ffffff;
  --nav-bg: rgba(8, 8, 8, 0.97);
}
[data-theme="dark"] {
  --bg: #080808;
  --text: #f0ece4;
  --text2: #a09888;
  --text3: #555;
  --border: rgba(255, 255, 255, 0.07);
  --card-bg: #101010;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition:
    background 0.3s,
    color 0.3s;
  cursor: pointer;
}

/* ── CURSOR ── */
#cursor {
  display: none;
}
.cursor-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    background 0.2s;
}
.cursor-ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(204, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    border-color 0.25s;
}
body.ch .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--gold);
}
body.ch .cursor-dot {
  background: var(--gold);
}

/* ── NAV — always black ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #080808;
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.theme-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.5);
}
.theme-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.theme-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.nav-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-drawer {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #080808;
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(200, 168, 75, 0.15);
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer a {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 18px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
}
.mobile-drawer a:hover {
  color: var(--gold);
}
.mobile-cta {
  margin-top: 28px;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: 6px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

/* ── HERO SPLASH — full black with logo ── */
/* ════════════════════════════════════════════════
   HERO SPLASH — Full-screen image section
   ════════════════════════════════════════════════
   HOW TO SET YOUR IMAGE:
   Replace the URL below with your image link.
   Works with:
     - A direct image URL:  https://yoursite.com/images/hero.jpg
     - A local file:        images/hero.jpg
   ──────────────────────────────────────────────── */

.hero-splash {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 82px; /* nav height */
  background: #080808;
}


.hero-splash-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/logo.jpg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-splash:hover .hero-splash-bg {
  transform: scale(1);
}

/* Subtle dark vignette at edges — keeps logo readable */
.hero-splash-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 35%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

/* Gold floating particles */
.splash-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh);
  }
}

/* Scroll indicator */
.splash-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}
.splash-scroll span {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line-wrap {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.scroll-line-fill {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0% {
    top: -100%;
    height: 40%;
    opacity: 1;
  }
  60% {
    top: 100%;
    height: 40%;
    opacity: 0.5;
  }
  100% {
    top: 100%;
    height: 40%;
    opacity: 0;
  }
}
.scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.scroll-chevrons span {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(200, 168, 75, 0.7);
  border-bottom: 2px solid rgba(200, 168, 75, 0.7);
  transform: rotate(45deg);
  animation: chevFade 1.8s ease infinite;
}
.scroll-chevrons span:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-chevrons span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes chevFade {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 1;
  }
}

/* Old class aliases (unused but harmless) */
.splash-ibis,
.splash-hummingbird,
.splash-content,
.splash-logo,
.splash-tagline,
.splash-actions,
.splash-waves {
  display: none;
}

/* ── WELCOME SECTION ── */
.welcome-section {
  background: var(--bg);
  padding: 96px 60px;
  position: relative;
  overflow: hidden;
}
/* Caribbean wave divider top */
.wave-divider-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider-top svg {
  display: block;
  width: 100%;
}
.welcome-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-text .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.welcome-text .eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--red);
}
.welcome-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.welcome-text h2 span {
  color: var(--red);
}
.welcome-text p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 400;
}
.btn-red {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.welcome-text .btn-red {
  margin-top: 12px;
}
.welcome-visual {
  position: relative;
}
.welcome-img-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}
.welcome-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
/* Caribbean element accent */
.welcome-ibis-accent {
  position: absolute;
  bottom: -20px;
  left: -24px;
  width: 80px;
  opacity: 0.18;
  pointer-events: none;
}

/* ── WHO WE ARE ── */
.who-section {
  background: var(--bg);
  padding: 0 60px 96px;
}
.who-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0, 0.2, 1),
    border-color 0.3s,
    box-shadow 0.3s;
}
.who-card:hover {
  transform: translateY(-8px);
  border-color: rgba(204, 0, 0, 0.25);
}
[data-theme="light"] .who-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .who-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.who-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.who-card:hover .who-top-bar {
  transform: scaleX(1);
}
/* Big pronounced icon */
.who-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(204, 0, 0, 0.07);
  border: 1.5px solid rgba(204, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.who-card:hover .who-icon {
  background: var(--red);
  transform: scale(1.08);
}
.who-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.who-card:hover .who-icon svg {
  stroke: #fff;
}
.who-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.who-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.78;
  font-weight: 400;
}

/* ── VALUES ── */
/* Divider line above values */
.values-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,0,0,0.3), rgba(200,168,75,0.3), transparent);
  margin: 0;
}

.values-section {
  background: #ffffff;
  padding: 96px 60px;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .values-section {
  background: #0c0c0c;
}
/* Strong red glow blob — left centre */
.values-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle,
    rgba(204,0,0,0.22) 0%,
    rgba(204,0,0,0.10) 35%,
    rgba(204,0,0,0.02) 60%,
    transparent 75%
  );
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
/* Gold accent glow — bottom right */
.values-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
    rgba(200,168,75,0.16) 0%,
    rgba(200,168,75,0.06) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(52px);
  pointer-events: none;
  z-index: 0;
}
.values-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.values-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.values-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--red);
}
.values-inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 48px;
}
[data-theme="dark"] .values-inner h2 { color: #fff; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.val-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
[data-theme="dark"] .val-card {
  background: #111;
  border-color: rgba(255,255,255,0.07);
}
.val-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.val-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204,0,0,0.18);
  box-shadow: 0 20px 52px rgba(204,0,0,0.09);
}
.val-card:hover::before {
  transform: scaleX(1);
}
.val-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  letter-spacing: -1px;
}
.val-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
}
[data-theme="dark"] .val-card h3 { color: #fff; }
.val-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  font-weight: 400;
}
[data-theme="dark"] .val-card p { color: rgba(255,255,255,0.45); }

/* ── PARALLAX STRIP ── */
.parallax-section {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-bg {
  position: absolute;
  top: -100px;
  bottom: -100px;
  left: 0;
  right: 0;
  background: url("https://images.unsplash.com/photo-1611892440504-42a792e24d32?w=1800&q=90")
    center/cover no-repeat;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
}
.parallax-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  z-index: 2;
}
.parallax-red-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  z-index: 2;
}
.parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 48px;
  max-width: 900px;
}
.p-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.p-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
}
.parallax-content h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.parallax-content h2 span {
  color: var(--gold);
}
.parallax-content p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.parallax-stats {
  display: flex;
  gap: 0;
  justify-content: center;
}
.p-stat {
  padding: 0 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.p-stat:last-child {
  border-right: none;
}
.p-stat strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.p-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  display: block;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ── SECTION BASE ── */
.section {
  padding: 96px 60px;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--red);
}
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  max-width: 580px;
  font-weight: 400;
}

/* ── WHY ADVERTISE ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0, 0.2, 1),
    border-color 0.3s,
    box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(204, 0, 0, 0.2);
}
[data-theme="light"] .why-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.09);
}
[data-theme="dark"] .why-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.why-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.why-card:hover .why-card-bar {
  transform: scaleX(1);
}
/* Large thematic icon */
.why-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: rgba(204, 0, 0, 0.07);
  border: 1.5px solid rgba(204, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.why-card:hover .why-icon-wrap {
  background: var(--red);
  transform: scale(1.08) rotate(-3deg);
}
.why-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.why-card:hover .why-icon-wrap svg {
  stroke: #fff;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.78;
  font-weight: 400;
}

/* ── STATS BAR ── */
.stats-bar {
  background: #080808;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200, 168, 75, 0.2);
}
[data-theme="dark"] .stats-bar {
  background: #040404;
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 6px;
  font-weight: 400;
}

/* ── SOLUTION ── */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution-img-frame {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.solution-img-frame img {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
}
.solution-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}
.solution-live-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.live-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.live-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.sol-float {
  background: var(--red);
  border-radius: 12px;
  padding: 20px 24px;
  display: inline-block;
  margin-top: 16px;
  text-align: center;
}
.sol-float-num {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.sol-float-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  font-weight: 400;
}
.sol-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sol-feature {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: border-color 0.25s;
}
.sol-feature:hover {
  border-color: rgba(204, 0, 0, 0.2);
}
.sol-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.sol-feature h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.sol-feature p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 400;
}

/* ── LOOP SECTION ── */
/* ── LOOP SECTION — redesigned ── */
.loop-section {
  background: #080808;
  padding: 96px 60px;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .loop-section { background: #040404; }
.loop-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 20%;
  transform: translate(-50%, -50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(204,0,0,0.14) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.loop-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.loop-left {}
.l-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.loop-left h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.loop-left h2 em {
  color: var(--red);
  font-style: normal;
}
.loop-lead {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-bottom: 22px;
}
.loop-lead strong { color: #fff; font-weight: 600; }
.loop-analogy {
  background: #0f0f0f;
  border: 1px solid rgba(204,0,0,0.2);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-bottom: 28px;
}
[data-theme="dark"] .loop-analogy { background: #0a0a0a; }
.loop-analogy p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.78;
  font-weight: 400;
}
.loop-analogy em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.loop-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lm-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
[data-theme="dark"] .lm-card { background: #0a0a0a; }
.lm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.lm-card:hover { border-color: rgba(204,0,0,0.3); transform: translateY(-3px); }
.lm-card:hover::before { transform: scaleX(1); }
.lm-gold::before { background: var(--gold); }
.lm-gold:hover { border-color: rgba(200,168,75,0.3); }
.lm-num {
  display: block;
  font-size: clamp(22px, 2.5vw,30px);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.lm-gold .lm-num { color: var(--gold); }
.lm-static {
  display: block;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.lm-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}
.loop-right {}
.loop-journey-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.loop-journey {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lj-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
[data-theme="dark"] .lj-card { background: #0a0a0a; }
.lj-card:hover { transform: translateX(6px); }
.lj-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
}
.lj-red::before  { background: var(--red); }
.lj-gold::before { background: var(--gold); }
.lj-green::before { background: #22c55e; }
.lj-red:hover   { border-color: rgba(204,0,0,0.25); }
.lj-gold:hover  { border-color: rgba(200,168,75,0.25); }
.lj-green:hover { border-color: rgba(34,197,94,0.25); }
.lj-day {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lj-red .lj-day   { color: var(--red); }
.lj-gold .lj-day  { color: var(--gold); }
.lj-green .lj-day { color: #22c55e; }
.lj-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.lj-red .lj-icon   { background: rgba(204,0,0,0.12); color: var(--red); }
.lj-gold .lj-icon  { background: rgba(200,168,75,0.1); color: var(--gold); }
.lj-green .lj-icon { background: rgba(34,197,94,0.1); color: #22c55e; }
.lj-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lj-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.lj-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  font-weight: 400;
}

/* ── HOW IT WORKS — animated ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-line {
  position: absolute;
  top: 54px;
  left: calc(12.5% + 27px);
  right: calc(12.5% + 27px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.how-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
/* Animated red circles */
.step-circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 5px solid var(--bg);
  box-shadow:
    0 0 0 1.5px var(--red),
    0 8px 32px rgba(204, 0, 0, 0.3);
}
.step-circle svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(200, 168, 75, 0.4);
}
/* Per-step animations */
.step-circle.anim-pulse {
  animation: stepPulse 2.4s ease infinite;
}
@keyframes stepPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1.5px var(--red),
      0 8px 32px rgba(204, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 1.5px var(--red),
      0 8px 32px rgba(204, 0, 0, 0.3),
      0 0 0 12px rgba(204, 0, 0, 0.1);
  }
}
.step-circle.anim-spin svg {
  animation: svgSpin 3s linear infinite;
}
@keyframes svgSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.step-circle.anim-bounce {
  animation: stepBounce 1.8s ease infinite;
}
@keyframes stepBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.step-circle.anim-ping {
  animation: stepPing 2s ease infinite;
}
@keyframes stepPing {
  0% {
    box-shadow:
      0 0 0 1.5px var(--red),
      0 8px 32px rgba(204, 0, 0, 0.3);
  }
  70% {
    box-shadow:
      0 0 0 1.5px var(--red),
      0 8px 32px rgba(204, 0, 0, 0.3),
      0 0 0 18px rgba(204, 0, 0, 0.06);
  }
  100% {
    box-shadow:
      0 0 0 1.5px var(--red),
      0 8px 32px rgba(204, 0, 0, 0.3),
      0 0 0 18px rgba(204, 0, 0, 0);
  }
}
.how-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
  font-weight: 400;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204, 0, 0, 0.2);
}
[data-theme="light"] .price-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .price-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.price-card.featured {
  background: #080808;
  border: 1.5px solid var(--gold);
}
[data-theme="dark"] .price-card.featured {
  background: #050505;
}
.featured-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 0 14px 0 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.price-tier {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.price-card.featured .price-tier {
  color: rgba(255, 255, 255, 0.4);
}
.price-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.price-card.featured .price-name {
  color: #fff;
}
.price-dur {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 14px;
}
.price-card.featured .price-dur {
  color: rgba(255, 255, 255, 0.35);
}
.price-ideal {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 14px;
  font-style: italic;
}
.price-card.featured .price-ideal {
  color: rgba(255, 255, 255, 0.3);
}
.price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.price-card.featured .price-amount {
  color: var(--gold);
}
.price-period {
  font-size: 11px;
  color: var(--text3);
  margin: 3px 0 16px;
}
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.35);
}
.price-div {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
}
.price-card.featured .price-div {
  background: rgba(255, 255, 255, 0.08);
}
.price-feat {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  font-weight: 400;
  line-height: 1.5;
}
.price-feat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.price-card.featured .price-feat {
  color: rgba(255, 255, 255, 0.6);
}
.price-card.featured .price-feat::before {
  background: var(--gold);
}
.price-annual {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
}
[data-theme="dark"] .price-annual {
  background: rgba(255, 255, 255, 0.03);
}
.price-card.featured .price-annual {
  background: rgba(200, 168, 75, 0.08);
  border-color: rgba(200, 168, 75, 0.2);
}
.annual-lbl {
  font-size: 9px;
  color: var(--text3);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.price-card.featured .annual-lbl {
  color: rgba(255, 255, 255, 0.35);
}
.annual-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 2px 0;
}
.price-card.featured .annual-val {
  color: #fff;
}
.annual-save {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
}
.price-card.featured .annual-save {
  color: var(--gold);
}

/* ── FOUNDER BENEFITS ── */
.founding-section {
  background: #080808;
  padding: 96px 60px;
}
[data-theme="dark"] .founding-section {
  background: #040404;
}
.founding-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founding-text .f-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.founding-text .f-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
}
.founding-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.founding-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 32px;
}
.founding-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.founding-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0f0f0f;
}
[data-theme="dark"] .founding-item {
  background: #0a0a0a;
}
.founding-check {
  width: 32px;
  height: 32px;
  background: rgba(200, 168, 75, 0.1);
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founding-check svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.founding-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* ── ADD-ONS ── */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.addon-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.addon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 0, 0, 0.2);
}
.addon-left-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}
.addon-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  border: 1px solid rgba(200, 168, 75, 0.3);
  padding: 4px 12px;
  border-radius: 3px;
}
.addon-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.addon-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  font-weight: 400;
}
.addon-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.addon-list li {
  font-size: 13px;
  color: var(--text2);
  padding-left: 14px;
  position: relative;
  font-weight: 400;
  list-style: none;
}
.addon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* ── COMPARE ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.compare-col {
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--card-bg);
}
.compare-col.adv {
  background: #080808;
  border-color: rgba(204, 0, 0, 0.2);
}
[data-theme="dark"] .compare-col.adv {
  background: #050505;
}
.compare-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
}
.compare-col.adv h3 {
  color: #fff;
}
.compare-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.compare-col.adv .compare-row {
  border-color: rgba(255, 255, 255, 0.05);
}
.compare-row:last-child {
  border-bottom: none;
}
.ci svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}
.ci.bad svg {
  stroke: #555;
}
.ci.good svg {
  stroke: var(--gold);
}
.ct strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.ct span {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 400;
}
.compare-col.adv .ct strong {
  color: #fff;
}
.compare-col.adv .ct span {
  color: rgba(255, 255, 255, 0.5);
}

/* ── CARIBBEAN WAVE SECTION DIVIDER ── */
.wave-sep {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.wave-sep svg {
  display: block;
  width: 100%;
}

/* ── CONTACT ── */
.contact-section {
  background: #080808;
  padding: 96px 60px;
}
[data-theme="dark"] .contact-section {
  background: #040404;
}
.contact-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.c-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
}
.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 36px;
}
.contact-pt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-pt svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-pt span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.6;
}
.contact-pt strong {
  color: #fff;
  font-weight: 600;
}
.contact-pt a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-pt a:hover {
  color: var(--gold);
}
.urgency {
  margin-top: 32px;
  padding: 18px 22px;
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  background: rgba(204, 0, 0, 0.04);
}
.urgency p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0;
}
.urgency strong {
  color: #fff;
}
/* Form */
.form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 44px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
[data-theme="dark"] .form-wrap {
  background: #101010;
  border-color: rgba(255, 255, 255, 0.07);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 4px;
}
[data-theme="dark"] .form-title {
  color: #fff;
}
.form-sub {
  font-size: 13px;
  color: #777;
  margin-bottom: 28px;
  font-weight: 400;
}
[data-theme="dark"] .form-sub {
  color: rgba(255, 255, 255, 0.4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
[data-theme="dark"] .form-group label {
  color: rgba(255, 255, 255, 0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #0a0a0a;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: #fff;
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  background: #222;
}
.form-group textarea {
  height: 100px;
  resize: vertical;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  letter-spacing: 0.3px;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.form-note {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-top: 12px;
  font-weight: 400;
}
[data-theme="dark"] .form-note {
  color: rgba(255, 255, 255, 0.25);
}
.form-success {
  display: none;
  text-align: center;
  padding: 36px 24px;
}
.form-success.show {
  display: block;
}
.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 8px;
}
[data-theme="dark"] .form-success h3 {
  color: #86efac;
}
.form-success p {
  font-size: 14px;
  color: #15803d;
  font-weight: 400;
}
[data-theme="dark"] .form-success p {
  color: rgba(134, 239, 172, 0.7);
}

/* ── FOOTER ── */
footer {
  background: #040404;
  padding: 48px 60px 32px;
}
.footer-top {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo-wrap img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 240px;
  font-weight: 400;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-col span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  font-weight: 400;
}
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.footer-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav {
    padding: 0 32px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .section,
  .welcome-section,
  .who-section,
  .values-section,
  .loop-section,
  .founding-section,
  .contact-section,
  .addons-section-p {
    padding-left: 32px;
    padding-right: 32px;
  }
  .pricing-grid,
  .who-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-layout,
  .loop-inner,
  .contact-layout,
  .founding-inner,
  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 62px;
  }
  .mobile-drawer {
    top: 62px;
  }
  .section,
  .welcome-section,
  .who-section,
  .values-section,
  .loop-section,
  .founding-section,
  .contact-section {
    padding: 64px 20px;
  }
  .why-grid,
  .addons-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .how-line {
    display: none;
  }
  .parallax-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .p-stat {
    border-right: none;
    padding: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 40px 20px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .form-wrap {
    padding: 28px 20px;
  }
  body {
    }
  #cursor {
    display: none;
  }
}
@media (max-width: 480px) {
  .splash-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-red,
  .btn-gold-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid,
  .who-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .parallax-section {
    height: auto;
    padding: 72px 24px;
  }
  .parallax-bg {
    top: 0;
    bottom: 0;
  }
}

/* ── EXTRA GLOBAL ANIMATIONS ── */
/* Floating entrance for cards */
.who-card,
.why-card,
.val-card,
.price-card {
  transition:
    transform 0.35s cubic-bezier(0.2, 0, 0.2, 1),
    border-color 0.3s,
    box-shadow 0.3s;
}
/* Section headers slide in with a left-border flash */
.section-header h2 {
  position: relative;
}
/* Staggered fade for stat numbers */
.stat-num {
  animation: countIn 0.6s ease both;
}
@keyframes countIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Pulsing live dot */
.live-dot {
  animation: livePulse 1.5s ease infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
/* Subtle float on the floating stat card */
.sol-float {
  animation: floatCard 3s ease infinite;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* Orbit dots in loop section spin with the ring */
.orbit-dot.d1,
.orbit-dot.d2,
.orbit-dot.d3 {
  animation: none; /* Inherits parent rotation from spin */
}
/* Wave separator gentle sway */
@keyframes waveSway {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.01);
  }
}
.wave-sep svg {
  animation: waveSway 6s ease infinite;
}