/* ============================================
   JON HAZELTINE — Premium Dark Luxe
   ============================================ */

:root {
  --bg-deep: #030a14;
  --bg-dark: #050d18;
  --bg-card: #0a1628;
  --bg-card-hover: #0f1d33;
  --cream: #f0ebe1;
  --cream-muted: #c8c2b8;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --white: #ffffff;
  --border: rgba(240, 235, 225, 0.08);
  --border-hover: rgba(201, 169, 110, 0.25);
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(3, 10, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: var(--gold);
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid var(--border-hover);
  border-radius: 4px;
  transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s, padding-left 0.3s var(--ease);
}

.nav-mobile a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.nav-mobile.open {
  display: flex;
}

/* ============================================
   Hero — Split Layout with Photo
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(201, 169, 110, 0.03) 0%, transparent 60%),
    var(--bg-deep);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-deep) 100%);
}

.hero-split {
  position: relative;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  padding: 120px 48px 80px;
  z-index: 1;
}

/* ── Hero Photo ── */

.hero-photo-col {
  flex: 0 0 auto;
  width: 380px;
}

.hero-photo-frame {
  position: relative;
}

.hero-photo-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 169, 110, 0.1);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.05);
  transition: filter 0.8s var(--ease), transform 1.2s var(--ease);
}

.hero-photo-wrapper:hover .hero-photo {
  filter: grayscale(0%) contrast(1.02);
  transform: scale(1.03);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(3, 10, 20, 0.6) 100%),
    linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Gold accent line — top-left corner */
.hero-photo-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 2px 0 0 0;
  opacity: 0.6;
  z-index: 2;
}

/* Subtle border frame — bottom-right offset */
.hero-photo-border {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 2px 0;
  opacity: 0.3;
  z-index: 2;
}

/* ── Hero Content ── */

.hero-content-col {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 2px;
  margin-bottom: 40px;
}

.hero-name {
  font-weight: 100;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.hero-name-first {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--cream);
}

.hero-name-last {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--cream);
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
  transform-origin: left;
}

.hero-tagline {
  font-size: clamp(0.7rem, 1.3vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--cream-muted);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.85rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   Section Labels
   ============================================ */

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

/* ============================================
   About — Photo + Text Layout
   ============================================ */

.about {
  padding: 140px 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-photo-container {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  filter: grayscale(100%) contrast(1.1) brightness(0.95);
  transition: filter 1s var(--ease);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about-photo-container:hover .about-photo {
  filter: grayscale(40%) contrast(1.05) brightness(1);
}

.about-photo-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.about-text-col {
  min-width: 0;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 200;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--cream);
}

.about-heading em {
  font-style: italic;
  color: var(--gold);
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 24px;
}

.about-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-muted);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 20px;
}

.stat-card {
  flex: 1;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  transition: border-color 0.4s var(--ease);
}

.stat-card:hover {
  border-color: var(--border-hover);
}

.stat-number {
  font-size: 2rem;
  font-weight: 200;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ============================================
   Ventures
   ============================================ */

.ventures {
  padding: 140px 0;
  background: var(--bg-dark);
  position: relative;
}

.ventures::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.ventures-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 200;
  margin-bottom: 60px;
  color: var(--cream);
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.venture-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.venture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.venture-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.venture-card:hover::before {
  opacity: 1;
}

.venture-icon {
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.venture-title {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--cream);
}

.venture-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-muted);
  margin-bottom: 16px;
  flex: 1;
}

.venture-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.venture-services span {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 3px;
  color: var(--gold);
}

.venture-meta {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 16px;
  opacity: 0.6;
}

.venture-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.venture-card:hover .venture-link {
  opacity: 1;
}

/* ============================================
   Connect
   ============================================ */

.connect {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.connect::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.connect-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.connect-heading {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 200;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--cream);
}

.connect-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-muted);
  margin-bottom: 48px;
}

.connect-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

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

.connect-links a {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s;
  position: relative;
}

.connect-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.connect-links a:hover {
  color: var(--gold);
}

.connect-links a:hover::after {
  width: 100%;
}

.connect-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-nmls {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--cream-muted);
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--cream-muted);
  opacity: 0.5;
}

/* ============================================
   Animations
   ============================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="scale-x"] {
  transform: scaleX(0);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

[data-animate="scale-x"].is-visible {
  transform: scaleX(1);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-split {
    gap: 48px;
    padding: 120px 32px 80px;
  }

  .hero-photo-col {
    width: 300px;
  }

  .ventures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo-container {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-stats {
    gap: 16px;
  }

  .stat-card {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-split {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
    gap: 40px;
  }

  .hero-photo-col {
    width: 260px;
    order: -1;
  }

  .hero-photo-accent {
    top: -8px;
    left: -8px;
    width: 50px;
    height: 50px;
  }

  .hero-photo-border {
    bottom: -8px;
    right: -8px;
    width: 50px;
    height: 50px;
  }

  .hero-rule {
    margin: 24px auto;
  }

  .hero-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .hero-actions {
    justify-content: center;
  }

  .about {
    padding: 100px 0;
  }

  .about-layout {
    gap: 40px;
  }

  .about-photo-container {
    max-width: 240px;
  }

  .about-stats {
    flex-direction: column;
  }

  .ventures {
    padding: 100px 0;
  }

  .ventures-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .connect {
    padding: 100px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-name-first,
  .hero-name-last {
    font-size: 3rem;
  }

  .hero-photo-col {
    width: 220px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .connect-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .connect-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Floating Action Button (Share/Bump)
   ============================================ */

.fab-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: rgba(3, 10, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.fab:hover {
  transform: scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.2);
}

.fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: conic-gradient(from 0deg, var(--gold), transparent, var(--gold)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: fabRingRotate 3s linear infinite;
  transition: opacity 0.4s;
}

.fab:hover::before {
  opacity: 0.5;
}

@keyframes fabRingRotate {
  to { transform: rotate(360deg); }
}

.fab-icon {
  transition: all 0.3s var(--ease);
  position: absolute;
}

.fab-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.fab.active .fab-icon-share {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.fab.active .fab-icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 0.4s var(--ease);
}

.fab-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(3, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fab-option:hover {
  border-color: var(--border-hover);
  background: rgba(10, 22, 40, 0.95);
  transform: translateX(-4px);
}

.fab-option svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   QR Modal
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 340px;
  width: 90%;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--ease);
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--cream-muted);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--cream);
}

.modal-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.modal-qr canvas {
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.modal-label {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4px;
}

.modal-url {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ============================================
   Toast Notification
   ============================================ */

.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(3, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
  z-index: 3000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   Magnetic card hover (desktop)
   ============================================ */

@media (hover: hover) {
  .venture-card {
    will-change: transform;
  }
}

/* ============================================
   Save Contact button pulse
   ============================================ */

.btn-save {
  position: relative;
  overflow: hidden;
}

.btn-save::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px var(--gold);
  opacity: 0;
  animation: savePulse 3s ease-in-out infinite;
}

@keyframes savePulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.02); }
}

/* ============================================
   Ripple effect
   ============================================ */

.ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.3) 0%, transparent 70%);
  transform: scale(0);
  animation: rippleEffect 0.8s var(--ease-out) forwards;
  pointer-events: none;
}

@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* Smooth page entrance */
body {
  animation: pageEnter 1s var(--ease-out);
}

@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}
