
:root{
  --bg:#ffffff;
  --ink:#0f172a;
  --muted:#64748b;
  --line:#e7e7ea;
  --soft:#faf7f0;
  --gold:#d4af37;
  --shadow: 0 10px 30px rgba(15,23,42,0.10);
  --shadow2: 0 6px 16px rgba(15,23,42,0.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a{color:inherit; text-decoration:none}
.wrap{max-width:1120px; margin:0 auto; padding:0 18px}

.topbar{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(231,231,234,0.8);
}
.topbar-inner{
  max-width:1120px;
  margin:0 auto;
  padding:10px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand img{height:34px}
.nav{display:flex; align-items:center; gap:16px; font-size:14px; color:var(--muted)}
.nav a{padding:10px 10px; border-radius:999px}
.nav a:hover{background: rgba(212,175,55,0.12); color: var(--ink)}
.nav-cta{
  background: rgba(15,23,42,0.06);
  color: var(--ink) !important;
  border: 1px solid rgba(212,175,55,0.35);
}

.hero{
  min-height: 78vh;
  position: relative;
  display:grid;
  place-items:center;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(212,175,55,0.18), transparent 60%),
    radial-gradient(1200px 600px at 80% 80%, rgba(15,23,42,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,1)),
    var(--hero) center/cover no-repeat;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.70) 0%, rgba(255,255,255,0.92) 35%, rgba(255,255,255,1) 100%);
}
.hero-inner{
  position:relative;
  width:100%;
  max-width:1120px;
  padding:48px 18px 36px;
}
.profile{
  max-width: 720px;
  margin: 0 auto;
  text-align:center;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(231,231,234,0.9);
  border-radius: 22px;
  padding: 26px 18px 22px;
  box-shadow: var(--shadow);
}
.avatar{
  width:112px;
  height:112px;
  border-radius:999px;
  object-fit:cover;
  border: 3px solid rgba(212,175,55,0.65);
  box-shadow: 0 12px 26px rgba(15,23,42,0.16);
  margin-top:-62px;
  background:#fff;
}
.name-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:10px;
}
h1{
  font-family: Georgia, "Times New Roman", serif;
  font-weight:700;
  letter-spacing:0.5px;
  margin:0;
  font-size: 44px;
}
.badge{
  width:22px; height:22px;
  border-radius:999px;
  background: var(--ink);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  border: 2px solid rgba(212,175,55,0.9);
}
.sub{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.stats{
  margin: 18px auto 0;
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
}
.stat{
  min-width: 110px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(250,247,240,0.85);
  border: 1px solid rgba(231,231,234,0.9);
}
.stat strong{display:block; font-size:16px}
.stat span{display:block; font-size:12px; color:var(--muted); margin-top:2px}

.hero-actions{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(231,231,234,1);
  background:#fff;
  box-shadow: var(--shadow2);
  font-weight: 600;
  font-size: 14px;
}
.btn.primary{
  background: linear-gradient(180deg, rgba(212,175,55,0.98), rgba(180,140,35,0.98));
  color: #111;
  border-color: rgba(150,110,20,0.5);
}
.btn.ghost{
  background: rgba(255,255,255,0.9);
}
.btn.small{padding:10px 14px; font-size:13px}

.trust{
  margin-top: 14px;
  color: var(--muted);
  font-size: 12.5px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.trust i{
  width:4px; height:4px; border-radius:999px;
  background: rgba(212,175,55,0.9);
  display:inline-block;
}

.section{padding: 54px 0}
.section.soft{background: var(--soft); border-top: 1px solid rgba(231,231,234,0.9); border-bottom: 1px solid rgba(231,231,234,0.9)}
.section-head{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 26px;
}
.section-head h2{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}
.section-head p{margin:8px 0 0; color: var(--muted)}

.pricing{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.card{
  background:#fff;
  border: 1px solid rgba(231,231,234,1);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.card h3{margin:6px 0 4px; font-size:16px; letter-spacing:0.2px}
.price{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  margin: 8px 0 12px;
}
.price span{font-size:18px; color: var(--muted); margin-right:2px}
.card ul{margin:0; padding-left:18px; color: var(--muted); font-size:14px}
.card li{margin:8px 0}
.buy{
  width:100%;
  margin-top: 14px;
  border: none;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 700;
  cursor:pointer;
  background: rgba(15,23,42,0.06);
}
.card.featured{
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 14px 44px rgba(212,175,55,0.16);
}
.card.featured .buy{
  background: linear-gradient(180deg, rgba(212,175,55,0.98), rgba(180,140,35,0.98));
}
.ribbon{
  position:absolute;
  top:14px; right:-38px;
  transform: rotate(20deg);
  background: rgba(15,23,42,0.92);
  color:#fff;
  padding: 8px 54px;
  font-size: 12px;
  border: 1px solid rgba(212,175,55,0.75);
}

.note{
  text-align:center;
  margin-top: 18px;
}
.note .small{font-size:12px; color: var(--muted)}

.slider{
  overflow:hidden;
  border-radius: 22px;
  border: 1px solid rgba(231,231,234,1);
  background:#fff;
  box-shadow: var(--shadow2);
  max-width: 1120px;
  margin: 0 auto 22px;
}
.slides{
  display:flex;
  gap: 14px;
  padding: 16px;
  width: max-content;
  animation: scroll 36s linear infinite;
}
.slides img{
  height: 320px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,0.10);
}

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

.masonry{
  columns: 3 260px;
  column-gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}
.shot{
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(231,231,234,1);
  background:#fff;
  box-shadow: var(--shadow2);
}
.shot img{
  width:100%;
  display:block;
}

.video-shell{
  max-width: 920px;
  margin: 0 auto;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(231,231,234,1);
  box-shadow: var(--shadow2);
  background:#fff;
}
video{width:100%; display:block; background:#000}

.faq{
  max-width: 860px;
  margin: 0 auto;
  display:grid;
  gap: 10px;
}
details{
  background:#fff;
  border: 1px solid rgba(231,231,234,1);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: var(--shadow2);
}
summary{
  cursor:pointer;
  font-weight: 700;
}
details p{color: var(--muted); margin: 10px 0 0; font-size:14px; line-height:1.55}

.sticky{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  display:flex;
  justify-content:center;
  pointer-events:none;
  z-index:60;
}
.sticky-inner{
  pointer-events:auto;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(231,231,234,0.9);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.sticky-title{font-weight:800}
.sticky-sub{color: var(--muted); font-size:12px}

.footer{
  border-top: 1px solid rgba(231,231,234,1);
  padding: 24px 0;
}
.footer-inner{
  max-width:1120px;
  margin:0 auto;
  padding: 0 18px;
  display:flex;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
  align-items:center;
}
.footer-brand{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 18px;
}
.footer-small{color: var(--muted); font-size: 12px; margin-top:4px}
.footer-links{display:flex; gap: 14px; flex-wrap:wrap; color: var(--muted); font-size: 13px}
.footer-links a:hover{color: var(--ink)}

@media (max-width: 560px){
  h1{font-size: 36px}
  .slides img{height: 250px}
  .masonry{columns: 2 180px}
}

.activity{
  max-width:760px;
  margin:0 auto;
  display:grid;
  gap:12px;
  text-align:center;
  font-size:15px;
}
.activity span{color:#888}

.benefits{
  max-width:600px;
  margin:0 auto;
  list-style:none;
  padding:0;
  display:grid;
  gap:10px;
  text-align:center;
  font-size:16px;
}
.benefits li{
  background:#fff;
  border:1px solid #eee;
  padding:12px;
  border-radius:12px;
}


.aboutline{margin:10px auto 0; color:#555; text-align:center; max-width:900px}
.lastupdate{margin:6px auto 0; color:#888; text-align:center; font-size:13px}
.micro{margin:10px auto 0; color:#666; font-size:14px}
.trustrow{margin:14px auto 0; color:#666; font-size:13px; display:flex; justify-content:center; gap:10px; flex-wrap:wrap}
.trustrow .dot{color:#c9a24d}
.legal{margin:16px auto 0; color:#777; font-size:13px}
.legal-footer{max-width:900px; text-align:center}
.videocopy{margin:-8px auto 18px; color:#777; text-align:center}
.email{margin-top:10px}
.footnav{margin-top:10px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap}
.footnav a{color:#777; text-decoration:none}
.footnav a:hover{color:#111}
.legalpage{max-width:860px; margin:0 auto; padding:60px 18px}
.legalpage h1{margin:0 0 12px; font-size:34px}
.legalpage p{color:#444; line-height:1.7}
.legalpage .small{color:#777; font-size:13px}
