/* ============================================================
   THE KILO CLUB — premium dark/gold giveaway landing
   Own brand identity (distinct from Breezy) with the same
   luxury spirit. Breezy is the quiet parent in the footer.
   ============================================================ */

:root {
  --bg:        #0b0d0c;
  --bg-2:      #10130f;
  --card:      #171a15;
  --card-line: #2b3026;
  --ink:       #f3efe4;   /* warm cream text */
  --ink-soft:  #b9b6a8;
  --ink-dim:   #8a897c;
  --gold:      #d6b25c;
  --gold-lt:   #f0d69a;
  --gold-deep: #b8923f;
  --green:     #4c7a4a;
  --green-lt:  #7fb47a;
  --danger:    #ff8a8a;
  --radius:    16px;
  --maxw:      1120px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,.7);
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 50% -10%, #1c2118 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 40%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--gold-lt); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { color: #fff; font-weight: 600; }

/* ---------- brand / wordmark ---------- */
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-mark { color: var(--gold); font-size: 1.05rem; transform: translateY(1px); }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 1.02rem;
  color: var(--ink);
}
.brand-by {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 5vw, 48px);
  background: rgba(11,13,12,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-links { display: flex; align-items: center; gap: clamp(14px, 3vw, 30px); }
.nav-link {
  color: var(--ink-soft); font-size: .92rem; font-weight: 500; letter-spacing: .01em;
}
.nav-link:hover { color: var(--ink); text-decoration: none; }
.nav-shop {
  color: var(--gold-lt);
  border: 1px solid var(--gold-deep);
  padding: 7px 14px; border-radius: 999px;
}
.nav-shop:hover { background: rgba(214,178,92,.12); text-decoration: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 9vw, 104px) clamp(18px, 5vw, 48px) clamp(40px, 7vw, 80px); }
.hero-glow {
  position: absolute; inset: -30% 0 auto 0; height: 620px; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 0%, rgba(214,178,92,.16) 0%, rgba(214,178,92,0) 70%);
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(214,178,92,.28);
  color: var(--gold-lt); font-size: .82rem; font-weight: 500; letter-spacing: .02em;
  margin-bottom: 26px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-lt);
  box-shadow: 0 0 0 0 rgba(127,180,122,.7); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(127,180,122,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(127,180,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,180,122,0); }
}

h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
h1 .hl {
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold-lt), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic;
}
.sub {
  font-size: clamp(1.02rem, 2.4vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 620px; margin: 0 auto 32px;
}

/* ---------- entry form ---------- */
.entry-form { max-width: 560px; margin: 0 auto; text-align: left; }
.field-row { display: flex; gap: 10px; }
.entry-form input[type="email"] {
  flex: 1; min-width: 0;
  padding: 16px 18px; font-size: 1.02rem; font-family: inherit;
  color: var(--ink); background: #0e110d;
  border: 1px solid var(--card-line); border-radius: 12px;
  transition: border-color .15s, box-shadow .15s;
}
.entry-form input[type="email"]::placeholder { color: var(--ink-dim); }
.entry-form input[type="email"]:focus {
  outline: none; border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(214,178,92,.16);
}
#submit-btn {
  flex: 0 0 auto;
  padding: 16px 24px; font-size: 1.02rem; font-weight: 700; font-family: inherit;
  color: #1a1406; cursor: pointer; white-space: nowrap;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  border: none; border-radius: 12px;
  box-shadow: 0 10px 24px -8px rgba(214,178,92,.6);
  transition: transform .12s, box-shadow .12s, filter .12s;
}
#submit-btn:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 14px 30px -8px rgba(214,178,92,.7); }
#submit-btn:active { transform: translateY(0); }
#submit-btn:disabled { opacity: .7; cursor: default; transform: none; }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* consent checkbox (FIX 1) */
.consent {
  display: flex; align-items: flex-start; gap: 11px;
  margin-top: 14px; cursor: pointer;
  font-size: .84rem; color: var(--ink-soft); line-height: 1.5;
}
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-box {
  flex: 0 0 auto; margin-top: 2px;
  width: 20px; height: 20px; border-radius: 6px;
  border: 1.5px solid var(--card-line); background: #0e110d;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .12s, background .12s;
}
.consent-box::after {
  content: "✓"; font-size: 13px; font-weight: 700; color: #1a1406;
  transform: scale(0); transition: transform .12s;
}
.consent input:checked + .consent-box { background: var(--gold); border-color: var(--gold); }
.consent input:checked + .consent-box::after { transform: scale(1); }
.consent input:focus-visible + .consent-box { box-shadow: 0 0 0 3px rgba(214,178,92,.28); }
.consent.invalid .consent-box { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(255,138,138,.16); }
.consent-text strong { color: var(--ink); }

.form-note { max-width: 560px; margin: 16px auto 0; text-align: center; font-size: .82rem; color: var(--ink-dim); }

.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  margin: 28px 0 0; padding: 0; color: var(--green-lt); font-size: .86rem; font-weight: 500;
}

/* success state */
.success {
  max-width: 560px; margin: 8px auto 0; text-align: center;
  background: linear-gradient(180deg, rgba(76,122,74,.14), rgba(76,122,74,.05));
  border: 1px solid rgba(127,180,122,.35); border-radius: var(--radius);
  padding: 30px 24px;
}
.success .check {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%;
  background: linear-gradient(180deg, var(--green-lt), var(--green));
  color: #06210a; font-size: 1.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.success h3 { font-family: var(--font-head); margin: 0 0 6px; font-size: 1.4rem; }
.success p { margin: 0; color: var(--ink-soft); }

/* ---------- sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 8vw, 84px) clamp(18px, 5vw, 48px); }
.section-title {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.5rem); text-align: center; letter-spacing: -.01em;
  margin: 0 0 clamp(28px, 5vw, 48px);
}

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .15s, border-color .15s;
}
.step:hover { transform: translateY(-3px); border-color: rgba(214,178,92,.4); }
.step-num {
  width: 40px; height: 40px; border-radius: 11px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--gold-lt);
  background: rgba(214,178,92,.1); border: 1px solid rgba(214,178,92,.3);
}
.step h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.24rem; margin: 0 0 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* prize */
.prize { padding-top: 0; }
.prize-card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(214,178,92,.12), transparent 55%),
    var(--card);
  border: 1px solid rgba(214,178,92,.3); border-radius: 22px;
  padding: clamp(30px, 5vw, 52px); box-shadow: var(--shadow);
}
.prize-tag {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  color: var(--gold-lt); background: rgba(214,178,92,.1);
  border: 1px solid rgba(214,178,92,.35); border-radius: 999px; padding: 6px 14px; margin-bottom: 18px;
}
.prize-card h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 14px; }
.prize-card p { color: var(--ink-soft); max-width: 620px; margin: 0 0 22px; }
.prize-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.prize-list li { color: var(--green-lt); font-weight: 500; }

/* trust */
.trust { text-align: center; max-width: 760px; }
.trust-lead { font-family: var(--font-head); font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--gold-lt); margin: 0 0 14px; }
.trust-body { color: var(--ink-soft); font-size: 1.04rem; }

/* faq */
.faq { max-width: 760px; }
.faq details {
  border: 1px solid var(--card-line); border-radius: 12px; background: var(--card);
  padding: 4px 20px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; padding: 16px 0; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 16px; color: var(--ink-soft); }

/* eligibility / banned states */
.eligibility { max-width: 820px; text-align: center; }
.elig-lead { color: var(--ink-soft); font-size: 1.04rem; margin: 0 auto 24px; max-width: 640px; }
.states {
  list-style: none; padding: 0; margin: 0 auto 22px; max-width: 640px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.states li {
  font-size: .9rem; font-weight: 600; color: var(--ink);
  background: rgba(255,138,138,.08); border: 1px solid rgba(255,138,138,.28);
  border-radius: 999px; padding: 8px 16px;
}
.elig-note { color: var(--ink-dim); font-size: .9rem; max-width: 680px; margin: 0 auto; }
.elig-note strong { color: var(--ink-soft); }

/* final cta */
.final-cta { text-align: center; }
.final-cta h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 4.4vw, 2.7rem); margin: 0 0 26px; }
.cta-btn {
  display: inline-block; padding: 16px 34px; font-size: 1.05rem; font-weight: 700; color: #1a1406;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  border-radius: 12px; box-shadow: 0 12px 28px -8px rgba(214,178,92,.6);
  transition: transform .12s, filter .12s;
}
.cta-btn:hover { transform: translateY(-1px); filter: brightness(1.05); text-decoration: none; }
.fb-plug { margin-top: 26px; color: var(--ink-dim); font-size: .95rem; }
.fb-plug a { font-weight: 600; }

/* footer */
.footer {
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
  padding: clamp(40px, 6vw, 64px) clamp(18px, 5vw, 48px) 48px;
  text-align: center;
}
.footer-brand { justify-content: center; margin-bottom: 24px; }
.legal-block { max-width: 780px; margin: 0 auto 20px; text-align: left; }
.legal { font-size: .8rem; color: var(--ink-dim); margin: 0 0 12px; line-height: 1.65; }
.legal strong { color: var(--ink-soft); }
.addr { text-align: center; max-width: 780px; margin: 0 auto 18px; }
.powered { font-size: .82rem; color: var(--ink-soft); margin: 0 0 6px; }
.powered a { font-weight: 600; }
.copyright { font-size: .76rem; color: var(--ink-dim); margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .brand-by { display: none; }
  .nav-link:not(.nav-shop) { display: none; }
  .steps { grid-template-columns: 1fr; }
  .field-row { flex-direction: column; }
  #submit-btn { width: 100%; }
  .prize-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
