/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─── Variables ──────────────────────────────────────────────────── */
:root {
  --bg:           #0d0d0d;
  --surface:      #141414;
  --surface2:     #1a1a1a;
  --border:       #262626;
  --border-light: #2e2e2e;

  --green:        #1A7A4A;
  --green-hover:  #1f9059;
  --green-text:   #2ecc71;
  --green-dim:    rgba(26, 122, 74, 0.15);
  --green-glow:   rgba(26, 122, 74, 0.25);

  --yellow:       #FFD700;
  --yellow-hover: #ffe033;
  --yellow-dim:   rgba(255, 215, 0, 0.08);
  --yellow-border:rgba(255, 215, 0, 0.25);

  --white:  #ffffff;
  --text:   #d4d4d4;
  --muted:  #777;
  --dim:    #444;

  --purple: #7C4DFF;
  --coral:  #FF5F5F;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow:    0 8px 32px rgba(0, 0, 0, 0.6);
}

/* ─── Base ───────────────────────────────────────────────────────── */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
p  { font-size: 1rem; line-height: 1.72; }

.accent-yellow { color: var(--yellow); }
.accent-green  { color: var(--green-text); }
.text-muted    { color: var(--muted); }

/* ─── Layout ─────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 14px;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-heading h2 { margin-bottom: 14px; }
.section-heading p  { color: var(--muted); max-width: 520px; margin: 0 auto; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-yellow {
  background: var(--yellow);
  color: #0d0d0d;
}
.btn-yellow:hover { background: var(--yellow-hover); transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-hover); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { color: var(--white); border-color: var(--border-light); }

.btn-lg {
  padding: 17px 34px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-full { width: 100%; }

/* ─── Nav ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.nav-logo {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}
.nav-logo .bang { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links .btn {
  padding: 9px 20px;
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 8px 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn {
  margin-top: 16px;
  text-align: center;
  border-radius: 12px;
}

/* ─── Hero (landing) ─────────────────────────────────────────────── */
.hero {
  padding-top: 170px;
  padding-bottom: 104px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 { margin-bottom: 22px; }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Page Hero (inner pages) ────────────────────────────────────── */
.page-hero {
  padding-top: 148px;
  padding-bottom: 56px;
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── Feature / Info Card ────────────────────────────────────────── */
.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

/* ─── Mode Cards ─────────────────────────────────────────────────── */
.mode-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.mode-card:hover { transform: translateY(-4px); }

.mode-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.mode-emoji  { font-size: 2.2rem; margin-bottom: 18px; margin-top: 6px; }
.mode-name   { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.mode-desc   { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }

.mode-tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Pricing ────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(160deg, rgba(255,215,0,0.05) 0%, var(--surface2) 55%);
}

.best-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #0d0d0d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pack-icon { font-size: 2rem; margin-bottom: 14px; }

.pack-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.pack-desc {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.pack-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}
.pack-price-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.pack-savings {
  font-size: 0.82rem;
  color: var(--green-text);
  font-weight: 600;
  margin-bottom: 20px;
}

.pack-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--text);
}
.pack-features li::before {
  content: '✓';
  color: var(--green-text);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── How It Works Steps ─────────────────────────────────────────── */
.steps {
  max-width: 620px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step-body p { font-size: 0.88rem; color: var(--muted); }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--green); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 20px;
}
.faq-a a { color: var(--green-text); text-decoration: underline; }

/* ─── About / Founder ────────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.founder-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green) 0%, #0a2e1a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--green-glow);
}

.founder-name {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.founder-bio {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.stat-row {
  display: flex;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 36px 0;
  flex-wrap: wrap;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── CTA Box ────────────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, var(--green-dim) 0%, rgba(255,215,0,0.04) 100%);
  border: 1px solid rgba(26, 122, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: var(--muted); max-width: 460px; margin: 0 auto 36px; }
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Info Banner ────────────────────────────────────────────────── */
.info-banner {
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto 48px;
}
.info-banner-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.info-banner p { color: var(--text); font-size: 0.88rem; line-height: 1.6; }
.info-banner strong { color: var(--yellow); }

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  margin-top: 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1.7rem;
}
.footer-brand p {
  color: var(--dim);
  font-size: 0.86rem;
  max-width: 260px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-size: 0.86rem;
  color: var(--dim);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--dim); }

/* ─── Modals ─────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--surface2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow);
}

.modal-close {
  float: right;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-top: -4px;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--white); }

.modal h3 { font-size: 1.4rem; margin-bottom: 8px; clear: both; }
.modal .modal-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 24px; }

.modal-pack-label {
  display: inline-block;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.modal-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 6px;
}
.modal-input:focus { border-color: var(--green); }

.field-error {
  font-size: 0.8rem;
  color: #ff5f5f;
  min-height: 18px;
  margin-bottom: 16px;
}

.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn { flex: 1; }

.success-icon { font-size: 2.8rem; margin-bottom: 14px; }

/* ─── Scroll Reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Surfaces ───────────────────────────────────────────────────── */
.bg-surface { background: var(--surface); }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-avatar { max-width: 160px; font-size: 3.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding-top: 120px; padding-bottom: 72px; }
  .page-hero { padding-top: 116px; padding-bottom: 40px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .grid-3  { grid-template-columns: 1fr; }
  .grid-2  { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .cta-box { padding: 48px 24px; }
  .stat-row { gap: 28px; }
}

@media (max-width: 520px) {
  .hero-actions  { flex-direction: column; align-items: center; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .btn-lg        { width: 100%; max-width: 340px; }
  .modal         { padding: 24px 20px; }
  .modal-actions { flex-direction: column; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
