/* bpm-clock-v2 — distinct from Bantay light/navy */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650;9..144,700&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --void: #070707;
  --ink: #f3ebe0;
  --ink-dim: #b7a994;
  --panel: #12100e;
  --panel-2: #1a1714;
  --gold: #e8c547;
  --gold-deep: #c9a227;
  --gold-hot: #ffe566;
  --cream: #f5f0e6;
  --line: rgba(232, 197, 71, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --max: 1080px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5.25rem; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--void);
  line-height: 1.55;
  font-size: 1.05rem;
}

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

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.7rem 0;
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 197, 71, 0.12);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(232, 197, 71, 0.25), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav-cta,
.nav-yt {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-cta {
  color: #111;
  background: linear-gradient(135deg, var(--gold-hot), var(--gold-deep));
}

.nav-cta:hover { filter: brightness(1.06); }

.nav-yt {
  color: #fff;
  background: #b91c1c;
  gap: 0.45rem;
}

.nav-yt-icon { flex-shrink: 0; display: block; }
.nav-yt:hover { background: #991b1b; color: #fff; }

@media (max-width: 520px) {
  .nav-yt,
  .nav-cta { padding: 0.65rem 0.85rem; font-size: 0.86rem; }
  .brand-logo { height: 44px; }
}

/* Hero — dark clock aura (no Bantay terminal photo) */
.hero {
  min-height: calc(100vh - 4.5rem);
  min-height: calc(100dvh - 4.5rem);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(ellipse 70% 55% at 78% 28%, rgba(232, 197, 71, 0.18), transparent 58%),
    radial-gradient(ellipse 50% 40% at 12% 80%, rgba(201, 162, 39, 0.1), transparent 55%),
    linear-gradient(165deg, #0c0b0a 0%, #070707 45%, #11100e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  right: -8%;
  top: 8%;
  border-radius: 50%;
  border: 1px solid rgba(232, 197, 71, 0.18);
  box-shadow:
    0 0 0 28px rgba(232, 197, 71, 0.04),
    0 0 0 64px rgba(232, 197, 71, 0.025);
  pointer-events: none;
  animation: pulse-ring 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--void));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.2rem 0 3rem;
}

.hero-logo {
  width: min(128px, 28vw);
  height: auto;
  margin-bottom: 1.15rem;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 197, 71, 0.3);
  animation: rise-in 0.85s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
  color: var(--cream);
  animation: rise-in 0.9s ease both;
}

.hero-brand em {
  font-style: normal;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 500;
  max-width: 24ch;
  margin: 0 0 0.95rem;
  line-height: 1.28;
  color: rgba(243, 235, 224, 0.92);
  animation: rise-in 1s ease both;
}

.hero-lead {
  max-width: 38ch;
  font-size: 1.08rem;
  color: var(--ink-dim);
  margin: 0 0 1.6rem;
  animation: rise-in 1.05s ease both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  animation: rise-in 1.1s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--panel-2);
  color: var(--cream);
  border: 1px solid var(--line);
}

.btn-primary:hover { border-color: var(--gold); color: var(--gold); }

.btn-yellow {
  background: linear-gradient(135deg, var(--gold-hot), var(--gold-deep));
  color: #111;
}

.btn-yellow:hover { filter: brightness(1.06); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(243, 235, 224, 0.28);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.price-chip {
  font-size: 0.95rem;
  color: var(--ink-dim);
  margin-top: 1rem;
}

.section { padding: 4.4rem 0; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(26, 23, 20, 0.55), rgba(18, 16, 14, 0.9));
  border-block: 1px solid rgba(232, 197, 71, 0.08);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 0.55rem;
  line-height: 1.15;
  color: var(--cream);
}

.section-intro {
  max-width: 42ch;
  margin: 0 0 1.8rem;
  color: var(--ink-dim);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin: 1.75rem 0 0;
}

.lead-upsell {
  margin: 1.25rem 0 0;
  color: var(--ink-dim);
  font-size: 1rem;
}

.lead-upsell a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.lead-upsell a:hover { color: var(--gold-hot); }

.buy-reassure {
  margin: 1.25rem 0 0;
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 52ch;
}

.audience-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.audience h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  color: var(--cream);
}

.audience p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.98rem;
}

.kit-list { display: grid; gap: 0; }

@media (min-width: 800px) {
  .kit-list { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
}

.kit-item {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(232, 197, 71, 0.12);
}

.kit-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--gold);
}

.kit-item p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.98rem;
}

.benefit-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.benefit {
  background: var(--panel);
  border: 1px solid rgba(232, 197, 71, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.benefit-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.45rem;
  color: var(--cream);
  line-height: 1.25;
}

.benefit p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.98rem;
}

.buy-band {
  background:
    radial-gradient(ellipse at top, rgba(232, 197, 71, 0.12), transparent 50%),
    #0d0c0a;
  color: var(--cream);
  padding: 3.6rem 0;
  border-block: 1px solid rgba(232, 197, 71, 0.14);
}

.buy-band .wrap,
.buy-band .buy-intro.wrap { display: block; }

.buy-intro { margin-bottom: 1.75rem; }

.buy-intro h2,
.buy-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.55rem;
  color: #fff;
}

.buy-intro p {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-dim);
}

.pack-builder {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
}

.builder-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 197, 71, 0.14);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.2rem;
  color: rgba(243, 235, 224, 0.92);
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.builder-step.is-on {
  border-color: rgba(232, 197, 71, 0.55);
  background: rgba(232, 197, 71, 0.08);
}

.builder-step.is-locked { opacity: 0.55; }

.builder-toggle { cursor: pointer; display: block; }
.builder-toggle.is-locked { cursor: not-allowed; }

.builder-step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.builder-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.builder-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}

.builder-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold);
  white-space: nowrap;
}

.builder-price.add {
  color: #111;
  background: linear-gradient(135deg, var(--gold-hot), var(--gold-deep));
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 1.05rem;
}

.builder-details {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.builder-details li { margin-bottom: 0.35rem; }

.builder-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.builder-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.builder-check-ui {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid rgba(243, 235, 224, 0.4);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  position: relative;
  background: transparent;
}

.builder-check input:checked + .builder-check-ui {
  background: var(--gold);
  border-color: var(--gold);
}

.builder-check input:checked + .builder-check-ui::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.05rem;
  width: 0.35rem;
  height: 0.7rem;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.builder-check input:disabled + .builder-check-ui { opacity: 0.45; }

.builder-checkout {
  margin-top: 0.5rem;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(232, 197, 71, 0.18);
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .builder-checkout { grid-template-columns: 1fr auto; }
}

.builder-total-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.builder-total {
  margin: 0.15rem 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.builder-summary {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
}

.builder-checkout .btn { white-space: nowrap; }

@media (max-width: 639px) {
  .builder-checkout .btn { width: 100%; }
  .builder-step-top { flex-wrap: wrap; }
}

.builder-lock-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-dim);
}

.builder-step:not(.is-locked) .builder-lock-hint { display: none; }

.lead-box {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: var(--panel);
  border: 1px solid rgba(232, 197, 71, 0.16);
  padding: 1.4rem;
  border-radius: var(--radius);
}

@media (min-width: 700px) {
  .lead-box { grid-template-columns: 1.5fr auto; }
}

.faq details {
  border-bottom: 1px solid rgba(232, 197, 71, 0.12);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--cream);
}

.faq summary::-webkit-details-marker { display: none; }

.faq p {
  margin: 0.7rem 0 0;
  color: var(--ink-dim);
}

.disclaimer {
  font-size: 0.92rem;
  color: var(--ink-dim);
  border-left: 3px solid var(--gold-deep);
  padding-left: 1rem;
  margin: 0;
}

.site-footer {
  background: #050505;
  color: var(--ink-dim);
  padding: 2.4rem 0;
  font-size: 0.95rem;
  border-top: 1px solid rgba(232, 197, 71, 0.12);
}

.site-footer a { color: var(--gold); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

.footer-tagline {
  display: inline-block;
  margin: 0.25rem 0 0.45rem;
  color: var(--ink-dim);
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover { text-decoration: underline; }

.footer-meta { display: grid; gap: 0.45rem; }

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  background:
    radial-gradient(ellipse at top, rgba(232, 197, 71, 0.16), transparent 50%),
    var(--void);
}

.thanks-card {
  width: min(100%, 560px);
  background: var(--panel);
  border: 1px solid rgba(232, 197, 71, 0.18);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-family: var(--font-display);
  margin: 0.8rem 0 0.6rem;
  color: var(--cream);
}

.thanks-logo {
  width: 72px;
  height: auto;
  border-radius: 14px;
}

.thanks-contents {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.thanks-contents li { margin-bottom: 0.35rem; }

.muted { color: var(--ink-dim); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 300;
  font-weight: 700;
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-logo,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .cta-row { animation: none; }
}
