/* ============================================================
   DANI THE AGENT — Design Tokens
   Palette is intentionally restricted to: navy/blue, red accent,
   white/off-white text, light blue. No other hues.
   ============================================================ */
:root {
  /* Blues (predominant) */
  --navy-950: #0a1424;
  --navy-900: #121f36;
  --navy-800: #1d2f4f;
  --navy-700: #28405f;
  --navy-600: #34527a;
  --blue-500: #6d94ff;
  --blue-400: #8fadff;

  /* Light blue (permitted secondary accent) */
  --lightblue-300: #b6eef8;
  --lightblue-200: #d6f5fa;

  /* Red (accent — CTAs, interactive highlights) */
  --red-500: #e4392e;
  --red-600: #c62e24;
  --red-400: #ef5b50;

  /* Text */
  --white: #ffffff;
  --offwhite: #eaeaea;
  --offwhite-dim: rgba(234, 234, 234, 0.68);
  --offwhite-faint: rgba(234, 234, 234, 0.4);

  /* Type */
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 140px;

  --container: 1240px;
  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--navy-900);
  color: var(--offwhite);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--white);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-5); }
}

section { position: relative; }

/* Focus visibility (accessibility, never remove) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lightblue-300);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Clickable elements always show intent */
a, button, .clickable { cursor: pointer; }

/* ============================================================
   Custom cursor (desktop / fine-pointer only)
   ============================================================ */
@media (pointer: fine) {
  html.has-custom-cursor, html.has-custom-cursor a, html.has-custom-cursor button {
    cursor: none;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  border-radius: 50%;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--red-500);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--lightblue-300);
  transform: translate(-50%, -50%);
  transition: width var(--dur-med) var(--ease-out), height var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out), background-color var(--dur-med) var(--ease-out);
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(228, 57, 46, 0.12);
  border-color: var(--red-500);
}

.cursor-ring.is-hidden,
.cursor-dot.is-hidden { opacity: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-600); }

.btn-primary .btn-arrow {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: transform var(--dur-fast) var(--ease-out);
}
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(234, 234, 234, 0.3);
}
.btn-ghost:hover { border-color: var(--lightblue-300); color: var(--lightblue-300); }

/* Platform brand colors — intentional exceptions to the site palette,
   kept for instant recognizability of these specific actions */
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  margin-top: var(--space-3);
}
.btn-whatsapp:hover { background: #1ebe5b; }

.btn-instagram {
  background: #0095f6;
  color: #ffffff;
}
.btn-instagram:hover { background: #1877c9; }

.btn-youtube {
  background: #ff0000;
  color: #ffffff;
  border-color: transparent;
}
.btn-youtube:hover { background: #e60000; }

/* ============================================================
   Eyebrow / labels
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lightblue-300);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--red-500);
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: background-color var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(10, 20, 36, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(182, 238, 248, 0.1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.brand span { color: var(--red-500); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-5);
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--offwhite-dim);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--white); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red-500);
  transition: width var(--dur-med) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.nav-actions .btn { padding: 12px 22px; font-size: 14px; white-space: nowrap; }

@media (max-width: 599px) {
  .brand { font-size: 13px; letter-spacing: 0.04em; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { padding: 7px 12px; font-size: 11.5px; }
  .nav-actions .btn-primary .btn-arrow { width: 16px; height: 16px; }
  .nav-actions .btn-primary .btn-arrow svg { width: 9px; height: 9px; }
  .nav-toggle { width: 36px; height: 36px; }
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(234, 234, 234, 0.25);
  background: transparent;
  color: var(--white);
}

@media (min-width: 940px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease-out);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { font-size: 26px; font-weight: 700; color: var(--white); }
.mobile-nav a:hover { color: var(--lightblue-300); }
.mobile-nav .btn { font-size: 16px; margin-top: var(--space-2); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 168px 0 var(--space-7);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(109, 148, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.85fr; gap: var(--space-5); }
}

.hero-heading {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  position: relative;
}

.hero-copy {
  margin-top: var(--space-3);
  max-width: 46ch;
  font-size: 17px;
  color: var(--offwhite-dim);
}

.hero-actions {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .hero-actions {
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .hero-actions .btn {
    padding: 9px 14px;
    font-size: 12px;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .hero-actions .btn-primary .btn-arrow {
    width: 18px;
    height: 18px;
  }
}

.hero-video-wrap {
  position: relative;
  margin-top: var(--space-4);
  max-width: 420px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(182, 238, 248, 0.14);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-wrap.has-fallback video.did-error { display: none; }
.hero-video-wrap.has-fallback video.did-error ~ .unmute-btn { display: none; }
.hero-video-wrap.has-fallback video.did-error ~ .img-fallback { display: flex; }

.unmute-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(234, 234, 234, 0.28);
  background: rgba(10, 20, 36, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.unmute-btn:hover { border-color: var(--red-500); transform: scale(1.06); }
.unmute-btn svg { width: 17px; height: 17px; }
.unmute-btn .icon-unmuted { display: none; }
.unmute-btn[aria-pressed="true"] .icon-muted { display: none; }
.unmute-btn[aria-pressed="true"] .icon-unmuted { display: block; }

.hero-visual { position: relative; }
.hero-photo-stack { position: relative; }
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(182, 238, 248, 0.12);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.floating-card {
  position: absolute;
  background: var(--navy-800);
  border: 1px solid rgba(182, 238, 248, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px rgba(5, 10, 20, 0.45);
}

.floating-badge {
  top: -20px;
  left: -20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-500);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  border: 4px solid var(--navy-900);
}

.floating-chart {
  bottom: -26px;
  right: -18px;
  width: 62%;
  padding: var(--space-2);
  background: rgba(29, 47, 79, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out);
  cursor: default;
}
.floating-chart:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--red-500);
  box-shadow: 0 28px 56px rgba(228, 57, 46, 0.22);
}
.floating-chart span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--offwhite-faint);
}
.floating-chart svg { width: 100%; height: 46px; margin-top: 8px; }

/* Floating value-prop badges over the hero portrait */
@keyframes badge-float {
  0%, 100% { transform: translateY(-5px) scale(1.03); }
  50% { transform: translateY(-12px) scale(1.03); }
}

.value-badge {
  position: absolute;
  z-index: 3;
  width: 168px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(29, 47, 79, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(182, 238, 248, 0.18);
  box-shadow: 0 20px 44px rgba(5, 10, 20, 0.4);
  cursor: default;
  transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.value-badge:hover {
  border-color: var(--red-500);
  box-shadow: 0 26px 52px rgba(228, 57, 46, 0.22);
  animation: badge-float 1.7s ease-in-out infinite;
}
.value-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.value-badge .vb-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(228, 57, 46, 0.16);
  color: var(--red-500);
  display: grid;
  place-items: center;
}
.value-badge .vb-icon svg { width: 16px; height: 16px; }
.value-badge .vb-text { min-width: 0; }
.value-badge b { display: block; color: var(--white); font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.value-badge small {
  display: block;
  margin-top: 2px;
  color: var(--lightblue-300);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vb-1 { top: -8%; right: -10%; }
.vb-2 { top: 30%; left: -14%; width: 152px; }
.vb-3 { top: 48%; right: -12%; width: 152px; }
.vb-4 { bottom: 2%; left: -12%; }

/* Mobile: stay layered on top of the portrait (not below it), shrunk down
   and pinned to the edges/corners so the center of the photo stays clear */
@media (max-width: 767px) {
  .value-badge {
    width: auto;
    max-width: 118px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 22px rgba(5, 10, 20, 0.45);
    gap: 6px;
  }
  .value-badge .vb-icon { width: 20px; height: 20px; }
  .value-badge .vb-icon svg { width: 10px; height: 10px; }
  .value-badge b { font-size: 9.5px; line-height: 1.2; }
  .value-badge small { display: none; }

  .vb-1 { top: 4%; right: 4%; left: auto; width: auto; }
  .vb-2 { top: 34%; left: 4%; right: auto; width: auto; }
  .vb-3 { top: auto; bottom: 34%; right: 4%; left: auto; width: auto; }
  .vb-4 { bottom: 4%; left: 4%; right: auto; width: auto; }

  .floating-chart { width: 46%; padding: 10px; }
  .floating-chart span { font-size: 9px; }
  .floating-chart svg { height: 32px; }
}

/* ============================================================
   Placeholder image blocks (until real photography is added)
   ============================================================ */
.img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: var(--space-3);
  background:
    repeating-linear-gradient(135deg, rgba(182, 238, 248, 0.05) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px dashed rgba(182, 238, 248, 0.28);
  border-radius: inherit;
}
.img-fallback svg { width: 30px; height: 30px; color: var(--lightblue-300); opacity: 0.8; }
.img-fallback b { color: var(--offwhite); font-size: 13px; }
.img-fallback small { color: var(--offwhite-faint); font-size: 11.5px; }
.has-fallback img.did-error { display: none; }
.has-fallback img.did-error + .img-fallback { display: flex; }

/* ============================================================
   Marquee-style service tabs
   ============================================================ */
.service-tabs {
  padding: var(--space-6) 0;
}
.tabs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 720px) {
  .tabs-grid { grid-template-columns: repeat(3, 1fr); }
}

.tab-card {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  border: 1px solid rgba(182, 238, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out),
    background-color var(--dur-med) var(--ease-out);
}
.tab-card:hover {
  transform: translateY(-6px);
  border-color: var(--red-500);
  background: var(--navy-700);
}
.tab-card h3 { font-size: 20px; margin-bottom: 4px; }
.tab-card small { color: var(--lightblue-300); font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.tab-card .tab-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(234, 234, 234, 0.25);
  transition: background-color var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.tab-card:hover .tab-arrow {
  background: var(--red-500);
  border-color: var(--red-500);
  transform: rotate(45deg);
}

/* ============================================================
   Section heading block
   ============================================================ */
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-5);
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section-head p { margin-top: var(--space-2); color: var(--offwhite-dim); font-size: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.section-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  background: rgba(228, 57, 46, 0.14);
  border: 1px solid rgba(228, 57, 46, 0.3);
  color: var(--red-500);
}
.section-icon svg { width: 24px; height: 24px; }

/* ============================================================
   Differentiators (numbered rows)
   ============================================================ */
.diff-section { padding: var(--space-7) 0; }
.diff-list { border-top: 1px solid rgba(182, 238, 248, 0.12); }
.diff-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(182, 238, 248, 0.12);
  align-items: start;
  position: relative;
  transition: padding-left var(--dur-med) var(--ease-out);
}
.diff-row::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red-500);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-med) var(--ease-out);
}
.diff-row:hover { padding-left: var(--space-2); }
.diff-row:hover::before { transform: scaleY(1); }

.diff-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--lightblue-300);
  padding-top: 4px;
}
@media (min-width: 720px) {
  .diff-row { grid-template-columns: 90px 1fr; }
  .diff-num { font-size: 42px; opacity: 0.5; }
}
.diff-body h3 { font-size: 21px; margin-bottom: 6px; }
.diff-body p { color: var(--offwhite-dim); max-width: 60ch; }

/* ============================================================
   My Value Proposition
   ============================================================ */
.value-prop-section { padding: var(--space-7) 0; }
.value-prop-section .section-head { max-width: 720px; }
.value-prop-section .section-head p { font-size: 16.5px; }

.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 860px) {
  .value-prop-grid { grid-template-columns: repeat(2, 1fr); }
}

.value-prop-card {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  border: 1px solid rgba(182, 238, 248, 0.1);
  display: flex;
  flex-direction: column;
}
.value-prop-card .vp-label {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(228, 57, 46, 0.14);
  color: var(--red-500);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.value-prop-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: var(--space-2);
}
.value-prop-card > p {
  color: var(--offwhite-dim);
  font-size: 15px;
  margin-bottom: var(--space-3);
}

.vp-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-4);
}
.vp-highlights li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--offwhite);
}
.vp-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(182, 238, 248, 0.14);
  box-shadow: inset 0 0 0 1.5px var(--lightblue-300);
}
.vp-highlights li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--lightblue-300);
  border-bottom: 1.5px solid var(--lightblue-300);
  transform: rotate(-45deg);
}

.value-prop-card .btn { margin-top: auto; align-self: flex-start; }

.value-prop-closing {
  margin-top: var(--space-6);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  border: 1px solid rgba(182, 238, 248, 0.12);
  text-align: center;
}
.value-prop-closing h3 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); max-width: 30ch; margin: 0 auto; }
.value-prop-closing > p { margin-top: var(--space-2); color: var(--offwhite-dim); max-width: 60ch; margin-left: auto; margin-right: auto; }
.value-prop-closing .vp-closing-line { color: var(--offwhite); margin-top: var(--space-3); max-width: 55ch; }
.value-prop-closing .vp-closing-line strong { color: var(--white); }

/* ============================================================
   Property gallery — auto-scrolling marquee
   ============================================================ */
.gallery-section {
  padding: var(--space-5) 0 var(--space-7);
  overflow: hidden;
}
.gallery-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  animation: gallery-scroll 38s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }

.gallery-item {
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(182, 238, 248, 0.12);
  background: var(--navy-800);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-fallback small { font-size: 11px; }

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; overflow-x: auto; }
}

/* ============================================================
   Impact stats
   ============================================================ */
.stats-section {
  padding: var(--space-7) 0;
  background: var(--navy-950);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(182, 238, 248, 0.12);
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
}
.stat-card b {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat-card > span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--offwhite-faint);
}

/* ============================================================
   Cinematic CTA banner
   ============================================================ */
.cta-banner {
  position: relative;
  padding: var(--space-8) 0;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-banner .bg-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-banner .bg-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.cta-banner .bg-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 20, 36, 0.92) 0%, rgba(10, 20, 36, 0.72) 40%, rgba(10, 20, 36, 0.94) 100%);
}
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 16ch;
  margin: 0 auto;
}
.cta-banner p {
  margin: var(--space-2) auto 0;
  max-width: 48ch;
  color: var(--offwhite-dim);
  font-size: 17px;
}
.cta-banner .hero-actions { justify-content: center; margin-top: var(--space-4); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { padding: var(--space-7) 0; }

.video-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  max-width: 620px;
  margin: 0 auto var(--space-5);
}
.video-slot {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(182, 238, 248, 0.32);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  overflow: hidden;
  cursor: pointer;
}
.video-placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.video-slot .play-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--red-500);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease-out);
  z-index: 2;
}
.video-slot:hover .play-badge { transform: scale(1.08); }
.video-slot .play-badge svg { width: 22px; height: 22px; margin-left: 3px; }
.video-slot b { color: var(--offwhite); font-size: 13.5px; }
.video-slot small { color: var(--offwhite-faint); font-size: 12px; padding: 0 var(--space-3); text-align: center; }
.video-slot video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }

/* Once a real video file loads, hide the label/placeholder text but keep the
   play/pause control visible as an overlay */
.video-slot.has-video video { display: block; }
.video-slot.has-video .video-placeholder-content { background: rgba(10, 20, 36, 0.15); transition: background var(--dur-med) var(--ease-out); }
.video-slot.has-video b,
.video-slot.has-video small { display: none; }
.video-slot.has-video.is-playing .play-badge { opacity: 0; }
.video-slot.has-video.is-playing:hover .play-badge { opacity: 1; }
.video-slot.has-video.is-playing .video-placeholder-content { background: transparent; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 780px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  border: 1px solid rgba(182, 238, 248, 0.1);
}
.review-card svg.quote { width: 26px; height: 26px; color: var(--lightblue-300); margin-bottom: var(--space-2); overflow: visible; }
.review-card p.quote-text { font-size: 15.5px; color: var(--offwhite); line-height: 1.6; }
.review-card .review-foot {
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(182, 238, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card .review-foot b { color: var(--white); font-size: 14px; }
.review-card .review-foot span { color: var(--red-500); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

/* ============================================================
   Follow Along (Instagram / YouTube)
   ============================================================ */
.follow-section {
  padding: var(--space-7) 0;
  background: var(--navy-950);
}

.follow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 940px) {
  .follow-grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--space-6); }
}

.video-embed-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(182, 238, 248, 0.14);
  background: var(--navy-800);
}
.video-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  margin-top: var(--space-2);
  font-size: 13.5px;
  color: var(--offwhite-faint);
  text-align: center;
}

.follow-social { display: flex; }
.social-stat-card {
  width: 100%;
  text-align: center;
}
.social-profile-img {
  width: 100%;
  height: auto;
  max-width: 420px;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-4);
}

.social-links-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2);
}
.social-links-row .btn {
  width: 100%;
  min-height: 56px;
  padding: 13px 20px;
  font-size: 14px;
  justify-content: center;
  box-sizing: border-box;
}

/* ============================================================
   Footer / contact
   ============================================================ */
.site-footer {
  background: var(--navy-950);
  padding-top: var(--space-7);
  border-top: 1px solid rgba(182, 238, 248, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 940px) {
  .footer-grid { grid-template-columns: 0.85fr 1.15fr; }
}

.footer-intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 14ch; }
.footer-meta { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.footer-meta a, .footer-meta .meta-row { color: var(--offwhite-dim); font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.footer-meta a:hover { color: var(--lightblue-300); }

.social-row { display: flex; gap: 12px; margin-top: var(--space-3); }
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(234, 234, 234, 0.25);
  display: grid;
  place-items: center;
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.social-row a svg { width: 17px; height: 17px; }
.social-row a:hover { border-color: var(--red-500); background: rgba(228, 57, 46, 0.12); }

.contact-form {
  background: var(--navy-900);
  border: 1px solid rgba(182, 238, 248, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.contact-form h3 { font-size: 20px; margin-bottom: var(--space-3); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--offwhite-dim);
  margin-bottom: 6px;
}
.field .req { color: var(--red-500); }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--navy-800);
  border: 1.5px solid rgba(182, 238, 248, 0.14);
  color: var(--white);
  font-family: var(--font);
  font-size: 14.5px;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: var(--offwhite-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--lightblue-300);
  outline: none;
}
.field textarea { min-height: 100px; resize: vertical; }

.radio-row { display: flex; gap: var(--space-3); margin-top: 4px; }
.radio-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--offwhite);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(182, 238, 248, 0.14);
  cursor: pointer;
}
.radio-pill input { accent-color: var(--red-500); }
.radio-pill:has(input:checked) { border-color: var(--red-500); background: rgba(228, 57, 46, 0.1); }

.form-submit { margin-top: var(--space-3); display: flex; align-items: center; gap: var(--space-3); }
.form-note { font-size: 12.5px; color: var(--offwhite-faint); }
.form-note.is-error { color: var(--red-400); }
.form-success,
.form-error {
  display: none;
  margin-top: var(--space-3);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.form-success {
  background: rgba(182, 238, 248, 0.1);
  border: 1px solid rgba(182, 238, 248, 0.3);
  color: var(--lightblue-300);
}
.form-error {
  background: rgba(228, 57, 46, 0.1);
  border: 1px solid rgba(228, 57, 46, 0.35);
  color: var(--red-400);
}
.form-success.is-visible,
.form-error.is-visible { display: block; }

/* Honeypot spam trap — hidden from real users, catches bots that fill every field */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer-bottom {
  margin-top: var(--space-7);
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(182, 238, 248, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--offwhite-faint);
}
.footer-bottom nav { display: flex; gap: var(--space-3); }
.footer-bottom a:hover { color: var(--lightblue-300); }

/* ============================================================
   Subpages (Buying / Selling / Investing) — minimal
   ============================================================ */
.subpage-hero {
  padding: 168px 0 var(--space-6);
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(109, 148, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.subpage-hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); max-width: 16ch; }
.subpage-hero .hero-copy { margin-top: var(--space-3); font-size: 17.5px; }

.subpage-hero-image {
  position: relative;
  margin-top: var(--space-4);
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(182, 238, 248, 0.14);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
}
.subpage-hero-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) {
  .subpage-hero-image { aspect-ratio: 4 / 3; }
}

.key-points {
  padding: var(--space-6) 0 var(--space-7);
}
.key-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 720px) {
  .key-points-grid { grid-template-columns: repeat(3, 1fr); }
}
.key-point {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  border: 1px solid rgba(182, 238, 248, 0.1);
}
.key-point .kp-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(228, 57, 46, 0.14);
  color: var(--red-500);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-2);
}
.key-point .kp-icon svg { width: 20px; height: 20px; }
.key-point h3 { font-size: 18px; margin-bottom: 6px; }
.key-point p { color: var(--offwhite-dim); font-size: 14.5px; }

/* ============================================================
   Scroll reveal base state (JS adds .is-visible)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(16px); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }

/* Scroll progress + back to top */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red-500);
  z-index: 600;
}

.scroll-hint {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--offwhite-faint);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-hint svg { width: 14px; height: 14px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
