/* ============================================================
   FOURWEALTH — Journey to Better Life
   Premium Deep Navy Theme · European Sophistication
   ============================================================ */

/* --- TOKENS ------------------------------------------------ */
:root {
  --gold:         #D4AF37;
  --gold-light:   #F0D060;
  --gold-dim:     rgba(212,175,55,0.12);
  --gold-border:  rgba(212,175,55,0.28);

  /* Card accent colours — warm, matching logo letters */
  --coral:        #E05C4B;
  --coral-bright: #F0705E;
  --coral-dim:    rgba(224,92,75,0.28);

  --green:        #3DAA6E;
  --green-bright: #4DC882;
  --green-dim:    rgba(61,170,110,0.28);

  --blue:         #3A7BD5;
  --blue-bright:  #5294E8;
  --blue-dim:     rgba(58,123,213,0.28);

  --amber:        #C9922A;
  --amber-bright: #E8AC3A;
  --amber-dim:    rgba(201,146,42,0.28);

  /* Background — deep sophisticated navy, NOT black */
  --bg:           #131728;
  --bg2:          #101525;
  --bg3:          #181f35;
  --bg4:          #1e2444;
  --bg-warm:      #1a1e38;
  --bg-nav:       rgba(16,21,37,0.92);

  --surface:      rgba(255,255,255,0.05);
  --surface2:     rgba(255,255,255,0.08);
  --border:       rgba(255,255,255,0.09);
  --border-soft:  rgba(255,255,255,0.05);

  /* Text — warm white for elegance */
  --text:         #EDE8E0;
  --text-muted:   rgba(237,232,224,0.60);
  --text-faint:   rgba(237,232,224,0.32);

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-gold:  0 12px 48px rgba(212,175,55,0.18);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.35);
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- UTILITY ---------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.hidden { display: none !important; }

/* --- LANGUAGE TOGGLE -------------------------------------- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-sep { color: var(--text-faint); font-size: 13px; }
.lang-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--text-faint);
  padding: 5px 9px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn.active,
.lang-btn:hover {
  color: var(--gold);
  background: var(--gold-dim);
}

/* --- NAV -------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(212,175,55,0.3));
  mix-blend-mode: screen;
  border-radius: 50%;
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 4px 18px rgba(212,175,55,0.5));
  transform: scale(1.05);
}

/* --- SECTION COMMONS -------------------------------------- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

/* Thin decorative divider — use between sections where needed */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 30%, var(--gold-border) 70%, transparent 100%);
  margin: 0;
  border: none;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 32px;
  text-wrap: balance;
  position: relative;
  display: block;
  padding-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light { color: #fff; }

/* Gold underline accent under section titles */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), rgba(212,175,55,0.2));
  border-radius: 2px;
  opacity: 0.75;
}

/* Centered section titles — center the underline too */
.video-section .section-title::after,
.four-section .section-title::after,
.formula-section .section-title::after,
.cta-section .section-title::after,
.blc-section .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Gold bar before section eyebrows */
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.8;
  border-radius: 2px;
}

/* --- BUTTONS ---------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #0e1420;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  padding: 18px 38px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.45);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-large {
  font-size: 16px;
  padding: 20px 48px;
  border-radius: var(--radius-lg);
}

/* Pulse/glow animation for primary CTA */
.btn-pulse {
  font-size: 16px;
  padding: 20px 44px;
  border-radius: var(--radius-lg);
  animation: btn-pulse-glow 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(212,175,55,0.35);
}
@keyframes btn-pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(212,175,55,0.35), 0 0 0 0 rgba(212,175,55,0.25);
  }
  50% {
    box-shadow: 0 12px 48px rgba(212,175,55,0.55), 0 0 0 12px rgba(212,175,55,0);
  }
}
.btn-pulse:hover {
  animation: none;
  box-shadow: 0 16px 56px rgba(212,175,55,0.55);
}

/* Book a spot button */
.book-spot-wrap {
  margin-top: 32px;
}
.btn-book-spot {
  font-size: 15px;
  padding: 17px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber-bright) 100%);
  box-shadow: 0 8px 32px rgba(212,175,55,0.28);
}
.btn-book-spot:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 16px 52px rgba(212,175,55,0.45);
  transform: translateY(-3px);
}

.btn-arrow {
  width: 17px; height: 17px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold-border);
  transition: all 0.3s var(--ease-out);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.18);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 120px 28px 100px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(212,175,55,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(58,123,213,0.06) 0%, transparent 60%),
    linear-gradient(170deg, #1a1f38 0%, #131728 50%, #0f1520 100%);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle var(--dur, 9s) var(--delay, 0s) infinite ease-in-out;
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-logo-wrap {
  animation: fade-up 1s var(--ease-out) both;
}
.hero-logo {
  width: min(520px, 90vw);
  height: auto;
  filter:
    drop-shadow(0 4px 24px rgba(212,175,55,0.3))
    drop-shadow(0 0 80px rgba(212,175,55,0.1));
  mix-blend-mode: screen;
  transition: filter 0.4s, transform 0.4s;
}
.hero-logo:hover {
  filter:
    drop-shadow(0 6px 36px rgba(212,175,55,0.45))
    drop-shadow(0 0 100px rgba(212,175,55,0.18));
  transform: scale(1.02);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.2vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  max-width: 880px;
  animation: fade-up 1s 0.15s var(--ease-out) both;
  color: var(--text);
  text-wrap: balance;
  letter-spacing: 0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,175,55,0.2) 80%);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(237,232,224,0.75);
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  max-width: 560px;
  animation: fade-up 1s 0.28s var(--ease-out) both;
  line-height: 1.75;
}

.hero-content .btn-primary {
  animation: fade-up 1s 0.42s var(--ease-out) both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  animation: fade-up 1s 0.9s var(--ease-out) both;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-wheel 2.2s infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.mobile-only { display: none; }

/* ============================================================
   VIDEO
   ============================================================ */
.video-section {
  padding: 80px 0;
  background: var(--bg2);
  position: relative;
}
.video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.video-section .section-title,
.video-section .section-eyebrow { text-align: center; }

.video-wrapper {
  max-width: 840px;
  margin: 52px auto;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 45%, rgba(212,175,55,0.07), transparent);
}
.video-placeholder:hover {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 24px 70px rgba(212,175,55,0.12), 0 0 0 1px rgba(212,175,55,0.15);
}
.video-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.video-play-btn {
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e1420;
  box-shadow: 0 8px 36px rgba(212,175,55,0.38);
  transition: all 0.3s var(--ease-spring);
}
.video-play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 14px 52px rgba(212,175,55,0.55);
}
.video-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.video-caption {
  text-align: center;
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.92;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

/* ============================================================
   FOUR TYPES OF WEALTH — COMPASS
   ============================================================ */
.four-section {
  padding: 80px 0;
  background: var(--bg4);
  position: relative;
  overflow: hidden;
}
.four-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.four-section .section-title,
.four-section .section-eyebrow { text-align: center; }

/* Logo watermark behind compass cards */
.four-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 95vw);
  pointer-events: none;
  z-index: 0;
}
.four-watermark-img {
  width: 100%;
  height: auto;
  opacity: 0.09;
  filter: blur(0.5px) grayscale(10%);
  mix-blend-mode: screen;
}

/* ============================================================
   COMPASS LAYOUT — Desktop: proper cross pattern
   F (north, top center)
   S (west, left)   [center]   T (east, right)
   H (south, bottom center)
   ============================================================ */
.compass-layout {
  display: grid;
  grid-template-areas:
    ". north  ."
    "west center east"
    ". south  .";
  grid-template-columns: 1fr 200px 1fr;
  grid-template-rows: auto auto auto;
  gap: 32px 28px;
  align-items: center;
  justify-items: center;
  margin-top: 64px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Center logo */
.compass-center { grid-area: center; }
.compass-rose {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  box-shadow: none;
  transition: all 0.5s var(--ease-spring);
  cursor: pointer;
  flex-shrink: 0;
}
.compass-rose:hover {
  box-shadow:
    0 0 0 10px rgba(212,175,55,0.09),
    0 0 0 22px rgba(212,175,55,0.04),
    0 12px 64px rgba(212,175,55,0.45);
  transform: scale(1.07) rotate(12deg);
}
.compass-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

/* Cards */
.compass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  max-width: 260px;
  width: 100%;
  position: relative;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.compass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 0.4s;
}
.compass-card:hover {
  transform: translateY(-7px) scale(1.02);
}

/* Grid placements */
.compass-card.north  { grid-area: north; }
.compass-card.east   { grid-area: east; }
.compass-card.south  { grid-area: south; }
.compass-card.west   { grid-area: west; }

/* F — Financial: warm coral/red */
.compass-card[data-wealth="F"] {
  border-top: 3px solid var(--coral-bright);
  background: var(--surface);
}
.compass-card[data-wealth="F"]:hover {
  box-shadow: 0 20px 64px rgba(224,92,75,0.22), var(--shadow-card);
  border-color: rgba(240,112,94,0.4);
  border-top-color: var(--coral-bright);
}
.compass-card[data-wealth="F"] .card-letter { color: var(--coral-bright); text-shadow: 0 0 28px rgba(240,112,94,0.35); }
.compass-card[data-wealth="F"] .card-accent-line { background: var(--coral-bright); }

/* H — Health: green */
.compass-card[data-wealth="H"] {
  border-top: 3px solid var(--green-bright);
  background: var(--surface);
}
.compass-card[data-wealth="H"]:hover {
  box-shadow: 0 20px 64px rgba(61,170,110,0.22), var(--shadow-card);
  border-color: rgba(77,200,130,0.4);
  border-top-color: var(--green-bright);
}
.compass-card[data-wealth="H"] .card-letter { color: var(--green-bright); text-shadow: 0 0 28px rgba(77,200,130,0.35); }
.compass-card[data-wealth="H"] .card-accent-line { background: var(--green-bright); }

/* S — Social: blue */
.compass-card[data-wealth="S"] {
  border-top: 3px solid var(--blue-bright);
  background: var(--surface);
}
.compass-card[data-wealth="S"]:hover {
  box-shadow: 0 20px 64px rgba(58,123,213,0.22), var(--shadow-card);
  border-color: rgba(82,148,232,0.4);
  border-top-color: var(--blue-bright);
}
.compass-card[data-wealth="S"] .card-letter { color: var(--blue-bright); text-shadow: 0 0 28px rgba(82,148,232,0.35); }
.compass-card[data-wealth="S"] .card-accent-line { background: var(--blue-bright); }

/* T — Time: gold/amber */
.compass-card[data-wealth="T"] {
  border-top: 3px solid var(--amber-bright);
  background: var(--surface);
}
.compass-card[data-wealth="T"]:hover {
  box-shadow: 0 20px 64px rgba(201,146,42,0.22), var(--shadow-card);
  border-color: rgba(232,172,58,0.4);
  border-top-color: var(--amber-bright);
}
.compass-card[data-wealth="T"] .card-letter { color: var(--amber-bright); text-shadow: 0 0 28px rgba(232,172,58,0.35); }
.compass-card[data-wealth="T"] .card-accent-line { background: var(--amber-bright); }

.card-letter {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}
.card-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.88rem;
  color: rgba(237,232,224,0.88);
  line-height: 1.7;
  font-style: normal;
  font-family: var(--font-sans);
}
.card-tagline {
  font-size: 0.78rem;
  color: rgba(237,232,224,0.60);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-top: 10px;
}

.card-accent-line {
  height: 2px;
  width: 30px;
  border-radius: 2px;
  margin-top: 14px;
  opacity: 0.6;
}

/* ============================================================
   ABOUT BOYKO
   ============================================================ */
.about-section {
  padding: 80px 0;
  background: #181d32;
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.about-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* Real photo */
.about-photo-wrap {
  position: relative;
  max-width: 420px;
}
.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: brightness(0.96) contrast(1.04);
  display: block;
  box-shadow:
    0 0 0 2px rgba(212,175,55,0.35),
    0 0 32px rgba(212,175,55,0.20),
    0 24px 60px rgba(0,0,0,0.45);
}
.about-photo-frame {
  position: absolute;
  inset: -10px;
  border: 1.5px solid rgba(212,175,55,0.35);
  border-radius: calc(var(--radius-xl) + 10px);
  pointer-events: none;
  box-shadow: 0 0 30px rgba(212,175,55,0.08);
}
.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 50%;
  height: 50%;
  border-right: 2px solid rgba(212,175,55,0.28);
  border-bottom: 2px solid rgba(212,175,55,0.28);
  border-radius: 0 0 var(--radius-xl) 0;
  pointer-events: none;
}

.about-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.15;
}
.about-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-divider {
  width: 56px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 28px;
}
.about-bio {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(237,232,224,0.82);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: normal;
}
.about-credibility {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-faint);
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold-border);
  border-radius: var(--radius-sm);
  line-height: 1.6;
}

/* ============================================================
   3D FREEDOM FORMULA
   ============================================================ */
.formula-section {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.formula-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.formula-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(212,175,55,0.04), transparent);
}
.formula-section .container { position: relative; z-index: 1; }

.formula-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-style: normal;
  color: rgba(237,232,224,0.72);
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.formula-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 64px;
  max-width: 900px;
}

.pillar {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 44px 28px 36px;
  position: relative;
  transition: all 0.4s var(--ease-out);
  max-width: 260px;
}
.pillar:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(212,175,55,0.12), var(--shadow-card);
}
.pillar-letter {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 44px rgba(212,175,55,0.25);
}
.pillar-word {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.pillar-word-local {
  font-family: var(--font-elegant);
  font-size: 0.93rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 18px;
}
.pillar-desc {
  font-size: 0.87rem;
  color: rgba(237,232,224,0.80);
  font-style: normal;
  font-family: var(--font-sans);
  line-height: 1.65;
}

.pillar-connector {
  display: flex;
  align-items: center;
  padding: 0 10px;
  flex-shrink: 0;
}
.connector-line {
  width: 20px; height: 1px;
  background: var(--gold-border);
}
.connector-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 80px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, rgba(212,175,55,0.04), transparent);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 7px 24px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--text);
}
.cta-headline em {
  font-style: italic;
  color: var(--gold);
}
.cta-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-style: normal;
  color: rgba(237,232,224,0.72);
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ============================================================
   BETTER LIFE CLUB
   ============================================================ */
.blc-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #1f1a30 0%, #1a1f38 50%, #1e1a30 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.blc-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.45), transparent);
}
.blc-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,175,55,0.06), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(120,80,200,0.06), transparent),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(200,100,80,0.05), transparent);
  pointer-events: none;
}

.blc-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.blc-badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: 100px;
  padding: 7px 22px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.blc-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 1.1;
  text-wrap: balance;
  letter-spacing: 0.02em;
  position: relative;
  display: block;
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.blc-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(212,175,55,0.2), var(--gold), rgba(212,175,55,0.2));
  border-radius: 2px;
  opacity: 0.65;
}

.blc-text {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(237,232,224,0.80);
  line-height: 1.65;
  max-width: 480px;
  text-wrap: balance;
}

.btn-blc {
  margin-top: 8px;
  font-size: 16px;
  padding: 20px 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber-bright) 100%);
  box-shadow: 0 8px 32px rgba(212,175,55,0.35);
  font-weight: 700;
  letter-spacing: 0.2px;
  animation: btn-pulse-glow 3.5s ease-in-out infinite;
}
.btn-blc:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 16px 52px rgba(212,175,55,0.55);
  transform: translateY(-3px);
  animation: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0c1020;
  padding: 32px 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.3px;
}
.footer-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 13px;
}
.lang-btn-sm {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--text-faint);
  transition: color 0.2s;
  padding: 4px 2px;
}
.lang-btn-sm.active,
.lang-btn-sm:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-photo-wrap { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 900px) {
  /* Compass → 2×2 grid, no center */
  .compass-layout {
    grid-template-areas:
      "north east"
      "west  south";
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .compass-center { display: none; }
  .compass-card { max-width: 100%; }

  .formula-pillars {
    flex-direction: column;
    gap: 18px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .pillar { max-width: 100%; }
  .pillar-connector { transform: rotate(90deg); padding: 4px 0; }
}

@media (max-width: 640px) {
  .mobile-only { display: block; }
  .hero-headline { font-size: clamp(1.4rem, 5.2vw, 1.85rem); text-wrap: balance; }
  .hero-sub { font-size: 0.97rem; }
  .blc-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }

  .compass-layout {
    grid-template-areas:
      "north"
      "east"
      "south"
      "west";
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .formula-pillars { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .btn-primary.btn-large {
    font-size: 15px;
    padding: 18px 34px;
  }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

::selection {
  background: rgba(212,175,55,0.28);
  color: var(--text);
}
