/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── CSS VARIABLES (Brand Colors) ── */
:root {
  --black:      #0A0A0A;
  --gold:       #D4AF37;
  --gold-light: #F0D060;
  --gold-dim:   #A08020;
  --white:      #F5F5F0;
  --gray:       #888;
  --dark:       #141414;
  --card:       #1A1A1A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY (yung subtle texture sa bg) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--gold);
  text-align: center;
  padding: 8px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--black);
  font-weight: 700;
  position: relative;
  z-index: 10;
}

/* ── BADGE (yung small label tag) ── */
.badge {
  display: inline-block;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #1f1f1f;
  padding: 20px 24px;
  text-align: center;
}

footer .brand {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 3px;
}

footer .copy {
  font-size: 11px;
  color: #333;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .why {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .why-card { padding: 16px 14px; }
  .hero { padding: 28px 20px 16px; }
  .hero h1 { font-size: 52px; }
  .hero .sub { font-size: 14px; margin-top: 12px; }
  .preview { margin: 16px auto; padding: 0 16px; }
  .form-section { padding: 0 16px 40px; }
}


/* ============================
   INDEX.HTML STYLES
   ============================ */

.hero {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
}

.hero h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero .sub {
  margin-top: 20px;
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero .sub strong {
  color: var(--white);
  font-weight: 600;
}

/* ── PREVIEW CARD ── */
.preview {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 36px auto;
  animation: fadeUp 0.6s 0.3s ease both;
}

.preview-inner {
  background: var(--card);
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
  position: relative;
}

.preview-inner::before {
  content: 'PREVIEW';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 2px;
}

.formula-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

.formula-row:last-child { border-bottom: none; }

.formula-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gold-dim);
  min-width: 24px;
  margin-top: 2px;
}

.formula-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.formula-eq {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--white);
}

.formula-note {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

/* ── FORM ── */
.form-section {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px 60px;
  animation: fadeUp 0.6s 0.4s ease both;
}

.form-label {
  text-align: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.form-label span { color: var(--gold); }

.field { margin-bottom: 14px; }

.field input {
  width: 100%;
  background: var(--card);
  border: 1px solid #2a2a2a;
  border-left: 3px solid var(--gold-dim);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.field input:focus {
  border-color: var(--gold);
  border-left-color: var(--gold);
}

.field input::placeholder { color: #444; }

.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 18px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.1s;
}

.submit-btn:hover  { background: var(--gold-light); transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.submit-btn.loading { opacity: 0.7; pointer-events: none; }

.privacy {
  text-align: center;
  font-size: 11px;
  color: #444;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.error-msg {
  color: #ff6b6b;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  margin-top: 8px;
  text-align: center;
  display: none;
}

/* ── WHY SECTION ── */
.why {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--card);
  border-top: 2px solid var(--gold-dim);
  padding: 20px 16px;
  animation: fadeUp 0.6s 0.5s ease both;
}

.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.why-text {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}


/* ============================
   THANK-YOU.HTML STYLES
   ============================ */

.ty-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

/* make body flex so footer sticks to bottom */
body.ty-page {
  display: flex;
  flex-direction: column;
}

.ty-card {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.check-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.check-circle {
  width: 80px;
  height: 80px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  font-size: 36px;
  animation: fadeIn 0.3s 0.3s ease both;
}

.ty-card h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(42px, 10vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  animation: fadeUp 0.5s 0.3s ease both;
}

.ty-card h1 span {
  color: var(--gold);
  display: block;
}

.ty-desc {
  margin-top: 20px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.5s 0.4s ease both;
}

.ty-desc strong { color: var(--white); font-weight: 600; }

.steps {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  animation: fadeUp 0.5s 0.5s ease both;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border-left: 3px solid var(--gold-dim);
  padding: 14px 16px;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  min-width: 20px;
}

.step-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.4;
}

.step-text strong { color: var(--white); }

.cta-wrap { animation: fadeUp 0.5s 0.6s ease both; }

.cta-label {
  font-size: 12px;
  color: #444;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 12px;
}

.cta-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.grrrt {
  margin-top: 48px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: #2a2a2a;
  animation: fadeUp 0.5s 0.7s ease both;
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .why {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .why-card { padding: 16px 14px; }
  .hero { padding: 28px 20px 16px; }
  .hero h1 { font-size: 52px; }
  .hero .sub { font-size: 14px; margin-top: 12px; }
  .preview { margin: 16px auto; padding: 0 16px; }
  .form-section { padding: 0 16px 40px; }
}