/* ===================== TOKENS ===================== */
:root {
  --black: #0a0908;
  --black-2: #131210;
  --warm-white: #F5F0E8;
  --dim: #D8D0C7;
  --mut: #948a7a;
  --gold: #D4AF6A;
  --gold-light: #F3DFA0;
  --gold-dark: #9C7A29;
  --gold-grad: linear-gradient(120deg, #9C7A29 0%, #F3DFA0 28%, #D4AF6A 52%, #F3DFA0 74%, #9C7A29 100%);
  --red: var(--gold);
  --red-dark: var(--gold-dark);
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  background-image:
    radial-gradient(ellipse 900px 600px at 15% -5%, rgba(212,175,106,0.14), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(212,175,106,0.10), transparent 55%),
    radial-gradient(ellipse 800px 600px at 50% 100%, rgba(212,175,106,0.08), transparent 60%);
  background-attachment: fixed;
  color: var(--warm-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@keyframes shimmer { to { background-position: -200% center; } }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.red-dot {
  background: var(--gold-grad);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
.foil {
  background: var(--gold-grad);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; }

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

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,9,8,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,106,0.18);
  box-shadow: 0 1px 0 rgba(212,175,106,0.06), 0 12px 40px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; letter-spacing: 0.02em; color: var(--warm-white); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 0.88rem; color: var(--dim); font-weight: 700; letter-spacing: 0.02em; transition: color 0.25s; position: relative; padding-bottom: 4px; }
.nav-links a::after { content:''; position:absolute; left:0; right:100%; bottom:0; height:2px; background: var(--gold-grad); transition: right 0.3s var(--ease-out); }
.nav-links a:hover { color: var(--warm-white); }
.nav-links a:hover::after { right: 0; }
.btn-nav {
  background: var(--gold-grad); background-size: 200% auto; background-position: 0% 50%;
  color: var(--black); font-weight: 700; font-size: 0.85rem;
  padding: 11px 22px; border-radius: 2px; transition: background-position 0.4s;
}
.btn-nav:hover { background-position: 100% 50%; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block; background: var(--gold-grad); background-size: 200% auto; background-position: 0% 50%;
  color: var(--black);
  font-weight: 900; font-size: 1.02rem; padding: 19px 40px; border-radius: 2px;
  transition: background-position 0.4s, transform 0.25s, box-shadow 0.3s; border: none; cursor: pointer;
  box-shadow: 0 10px 34px rgba(212,175,106,0.28), 0 0 0 1px rgba(212,175,106,0.15);
  position: relative; overflow: hidden; letter-spacing: 0.01em;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease-out);
}
.btn-primary:hover { background-position: 100% 50%; transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 44px rgba(212,175,106,0.4), 0 0 0 1px rgba(212,175,106,0.25); }
.btn-primary:hover::before { left: 130%; }
.btn-full { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block; border: 1px solid rgba(245,240,232,0.25); color: var(--warm-white);
  font-weight: 600; font-size: 0.88rem; padding: 13px 24px; border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--red); background: rgba(212,175,106,0.08); }

/* WhatsApp */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(37,211,102,0.5); color: #25D366;
  font-weight: 700; font-size: 0.92rem; padding: 15px 26px; border-radius: 2px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.btn-whatsapp:hover { border-color: #25D366; background: rgba(37,211,102,0.1); transform: translateY(-2px); }
.whatsapp-alt {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px;
  padding-top: 22px; border-top: 1px solid rgba(212,175,106,0.15);
}
.whatsapp-alt span { color: var(--mut); font-size: 0.9rem; }

.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  animation: wa-pulse 2.4s ease-in-out infinite;
  transition: transform 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.12); }
}
@media (max-width: 640px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
}

/* ===================== HERO ===================== */
.hero { padding: 56px 0 60px; overflow: hidden; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.eyebrow { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.16em; color: var(--red); margin-bottom: 22px; }
.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.4rem); line-height: 1.0; margin-bottom: 20px; letter-spacing: -0.01em;
  background: var(--gold-grad); background-size: 300% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
.hero-sub { font-size: 1.4rem; font-weight: 800; color: var(--gold-light); margin-bottom: 16px; font-family: var(--font-display); }
.hero-desc { font-size: 1.05rem; color: var(--dim); max-width: 540px; margin-bottom: 26px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-formats { font-size: 0.85rem; color: var(--mut); }
.hero-badge-row { display: flex; gap: 10px; }
.hero-badge {
  display: inline-block; border: 1px solid rgba(212,175,106,0.5); color: var(--gold-light);
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; padding: 7px 16px; border-radius: 2px;
  animation: pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(212,175,106,0); }
  50% { box-shadow: 0 0 18px rgba(212,175,106,0.35); }
}

/* Book mockup — real cover art, 3D flip */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; z-index: 1; }
.hero-visual::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 480px; height: 480px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,106,0.28) 0%, transparent 68%);
  filter: blur(10px); z-index: -1; animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.book-mock {
  width: 320px; height: 474px; position: relative;
  perspective: 1600px;
  animation: float-book 5s ease-in-out infinite;
}
@keyframes float-book {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.book-mock-inner {
  position: relative; width: 100%; height: 100%; transform-style: preserve-3d;
  transform: rotateY(-14deg); transition: transform 0.7s var(--ease-out);
  box-shadow: 40px 50px 100px rgba(0,0,0,0.65), 0 0 60px rgba(212,175,106,0.12);
}
.book-mock:hover .book-mock-inner { transform: rotateY(-180deg); }
.book-mock-face {
  position: absolute; inset: 0; backface-visibility: hidden;
  border: 1px solid rgba(212,175,106,0.35); overflow: hidden;
}
.book-mock-face img { width: 100%; height: 100%; object-fit: cover; }
.book-mock-face.back { transform: rotateY(180deg); }
.book-mock-spine-el {
  position: absolute; left: -18px; top: 0; bottom: 0; width: 18px;
  background-size: cover; background-position: center;
  transform: rotateY(90deg) translateX(-9px); transform-origin: right;
  filter: brightness(0.85);
}
.book-mock-shadow {
  width: 260px; height: 34px; margin: 14px auto 0; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
}
.book-mock-hint { font-size: 0.78rem; color: var(--gold-light); margin-top: 4px; letter-spacing: 0.04em; font-weight: 600; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; order: -1; }
  .book-mock { width: 240px; height: 355px; }
}

/* ===================== MARQUEE STRIP ===================== */
.strip {
  border-top: 1px solid rgba(212,175,106,0.18); border-bottom: 1px solid rgba(212,175,106,0.18);
  padding: 26px 0; overflow: hidden; background: rgba(212,175,106,0.03);
  white-space: nowrap; position: relative;
}
.marquee-track { display: inline-flex; animation: marquee 26s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip-item { display: inline-flex; align-items: baseline; gap: 10px; padding: 0 40px; }
.strip-num { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--gold-light); }
.strip-label { font-size: 0.85rem; color: var(--dim); letter-spacing: 0.02em; }
.strip-sep { color: rgba(212,175,106,0.35); font-size: 1.2rem; }

/* ===================== DIVIDER ===================== */
.divider { position: relative; height: 2px; background: var(--gold-grad); background-size: 300% auto; animation: shimmer 6s linear infinite; opacity: 0.5; }
.divider-diamond {
  position: relative; height: 1px; background: rgba(212,175,106,0.2); margin: 0;
}
.divider-diamond::after {
  content: '◆'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--black); color: var(--gold); font-size: 0.8rem; padding: 0 18px;
}

/* ===================== SECTION HEADERS ===================== */
.section-header { max-width: 680px; margin-bottom: 54px; }
.section-label { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.16em; color: var(--red); margin-bottom: 16px; }
.section-label.light { color: var(--red); }
.section-headline {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem); line-height: 1.05; letter-spacing: -0.01em;
  background: var(--gold-grad); background-size: 300% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
.section-headline.light { -webkit-text-fill-color: transparent; }
.section-intro { color: var(--dim); font-size: 1.08rem; margin-top: 18px; }
.section-intro.light { color: var(--dim); }

/* ===================== WHY ===================== */
.why { padding: 110px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
.why-card {
  background: rgba(212,175,106,0.04); border: 1px solid rgba(212,175,106,0.14);
  padding: 32px; font-size: 1rem; color: var(--dim); transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(212,175,106,0.4); transform: translateY(-4px); }
.why-payoff {
  font-size: 1.5rem; font-weight: 700; color: var(--warm-white); max-width: 820px;
  font-family: var(--font-display); line-height: 1.35;
  border-left: 4px solid; border-image: var(--gold-grad) 1;
  padding-left: 28px;
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* ===================== INSIDE / FRAMEWORKS ===================== */
.inside { padding: 110px 0; background: var(--black-2); position: relative; }
.framework-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.framework-card {
  background: rgba(212,175,106,0.03); border: 1px solid rgba(212,175,106,0.15);
  padding: 36px; transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.framework-card:hover { border-color: rgba(212,175,106,0.55); background: rgba(212,175,106,0.06); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,106,0.1); }
.framework-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; color: var(--black);
  background: var(--gold-grad); background-size: 200% auto; padding: 5px 12px; margin-bottom: 16px;
}
.framework-card h3 { font-size: 1.35rem; color: var(--warm-white); margin-bottom: 12px; font-weight: 800; }
.framework-card p { font-size: 0.97rem; color: var(--dim); }
@media (max-width: 860px) { .framework-grid { grid-template-columns: 1fr; } }

/* ===================== PROOF ===================== */
.proof { padding: 110px 0; position: relative; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.proof-card {
  border: 1px solid rgba(212,175,106,0.2); padding: 44px 30px; text-align: center;
  background: rgba(212,175,106,0.03); transition: transform 0.3s, border-color 0.3s;
}
.proof-card:hover { transform: translateY(-6px); border-color: rgba(212,175,106,0.5); }
.proof-figure {
  display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem, 4vw, 3.6rem);
  background: var(--gold-grad); background-size: 300% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 16px; text-shadow: 0 0 40px rgba(212,175,106,0.25);
}
.proof-card p { color: var(--dim); font-size: 0.95rem; }
.testimonial {
  max-width: 860px; margin: 0 auto; text-align: center; padding: 20px 20px; position: relative;
}
.testimonial::before {
  content: '\201C'; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  font-family: Georgia, serif; font-size: 9rem; color: rgba(212,175,106,0.15); line-height: 1;
}
.testimonial p { font-size: 1.6rem; font-weight: 600; font-style: italic; color: var(--warm-white); line-height: 1.45; margin-bottom: 22px; font-family: var(--font-display); position: relative; }
.testimonial-author { font-size: 0.85rem; color: var(--mut); letter-spacing: 0.04em; font-weight: 600; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr; } }

/* ===================== WHO ===================== */
.who { padding: 100px 0; background: var(--black-2); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.who-item {
  border: 1px solid rgba(212,175,106,0.18); padding: 26px 22px; font-weight: 700;
  color: var(--warm-white); font-size: 1rem; background: rgba(212,175,106,0.03);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  font-family: var(--font-display);
}
.who-item:hover { border-color: rgba(212,175,106,0.55); background: rgba(212,175,106,0.08); transform: translateY(-4px); }
@media (max-width: 860px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; } }

/* ===================== NOTIFY ===================== */
.notify { padding: 120px 0; position: relative; }
.notify-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.notify-points { list-style: none; margin-top: 24px; }
.notify-points li { color: var(--dim); font-size: 1rem; padding: 9px 0 9px 26px; position: relative; font-weight: 500; }
.notify-points li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 14px; }

.notify-form {
  background: rgba(212,175,106,0.05); border: 1px solid rgba(212,175,106,0.28);
  padding: 40px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,106,0.06);
}
.notify-form label { font-size: 0.83rem; color: var(--gold-light); margin-top: 15px; font-weight: 700; letter-spacing: 0.02em; }
.notify-form input, .notify-form select {
  background: rgba(245,240,232,0.06); border: 1px solid rgba(212,175,106,0.22);
  color: var(--warm-white); padding: 13px 15px; font-family: var(--font-body); font-size: 0.97rem;
  border-radius: 2px; outline: none; transition: border-color 0.25s, box-shadow 0.25s;
}
.notify-form input:focus, .notify-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,106,0.12); }
.notify-form select option { background: var(--black); }

/* Country searchable dropdown */
.country-select { position: relative; }
.country-options {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 20;
  max-height: 220px; overflow-y: auto;
  background: #141210; border: 1px solid rgba(212,175,106,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.country-select.open .country-options { display: block; }
.country-option {
  padding: 10px 14px; font-size: 0.92rem; color: var(--dim); cursor: pointer; transition: background 0.15s, color 0.15s;
}
.country-option:hover, .country-option.active { background: rgba(212,175,106,0.12); color: var(--gold-light); }
.country-option.no-match { color: var(--mut); cursor: default; }
.country-option.no-match:hover { background: none; color: var(--mut); }
.notify-form .btn-primary { margin-top: 26px; }
.notify-fine { font-size: 0.78rem; color: var(--mut); text-align: center; margin-top: 14px; }
.hidden-field { position: absolute; left: -9999px; }
@media (max-width: 860px) { .notify-inner { grid-template-columns: 1fr; } }

/* ===================== AUTHOR ===================== */
.author { padding: 90px 0; background: var(--black-2); }
.author-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.author-frame {
  aspect-ratio: 1/1; max-width: 340px; background: linear-gradient(160deg, #1b1b1b, var(--black));
  border: 1px solid rgba(212,175,106,0.2); position: relative; overflow: hidden;
}
.author-frame img { width: 100%; height: 100%; object-fit: cover; }
.author-copy p { color: var(--dim); font-size: 1rem; margin-bottom: 18px; max-width: 560px; }
.author-copy strong { color: var(--warm-white); }
.author-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
@media (max-width: 860px) { .author-inner { grid-template-columns: 1fr; } .author-frame { max-width: 260px; } }

/* ===================== FAQ ===================== */
.faq { padding: 100px 0; }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(212,175,106,0.18); transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(212,175,106,0.4); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--warm-white); text-align: left;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-icon { color: var(--gold); font-size: 1.3rem; transition: transform 0.25s; font-weight: 400; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-out); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { color: var(--dim); font-size: 0.97rem; padding-bottom: 24px; line-height: 1.6; }

/* ===================== FOOTER ===================== */
.footer { padding: 64px 0; border-top: 1px solid rgba(212,175,106,0.15); position: relative; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; color: var(--warm-white); letter-spacing: 0.02em; }
.footer-brand p { color: var(--mut); font-size: 0.85rem; margin-top: 8px; max-width: 280px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--dim); font-size: 0.9rem; font-weight: 600; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--mut); font-size: 0.8rem; width: 100%; margin-top: 14px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 70px 0 50px; }
  .why-grid, .framework-grid, .proof-grid { grid-template-columns: 1fr; }
  .testimonial p { font-size: 1.25rem; }
  .testimonial::before { font-size: 6rem; top: -40px; }
  .btn-primary { padding: 16px 28px; font-size: 0.92rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
