/* ============================================================
   BreakN — Main Stylesheet
   Colors: #0D0D0D (dark) | #9B6FD4 (purple) | #F5F0E8 (off-white) | #C8A96E (gold)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Space+Grotesk:wght@400;500;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0D0D0D;
  color: #F5F0E8;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: #9B6FD4; text-decoration: none; transition: color .2s; }
a:hover { color: #C8A96E; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin-bottom: 1rem; color: #C8C2B4; }
.lead { font-size: 1.15rem; line-height: 1.7; color: #E0DAD0; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: #0D0D0D; }
.section--charcoal { background: #141414; }
.section--purple { background: #1a0d2e; }

/* ── Accent line ── */
.accent-line {
  width: 48px; height: 3px;
  background: #9B6FD4;
  margin-bottom: 1.5rem;
}
.accent-line--center { margin: 0 auto 1.5rem; }
.accent-line--gold { background: #C8A96E; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #9B6FD4; margin-bottom: .75rem;
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .04em;
  padding: .75rem 2rem;
  border-radius: 4px;
  border: none; cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn--primary { background: #9B6FD4; color: #F5F0E8; }
.btn--primary:hover { background: #7F54B8; color: #F5F0E8; }
.btn--ghost { border: 1.5px solid #9B6FD4; color: #9B6FD4; background: transparent; }
.btn--ghost:hover { background: #9B6FD4; color: #F5F0E8; }
.btn--gold { background: #C8A96E; color: #0D0D0D; }
.btn--gold:hover { background: #B89458; color: #0D0D0D; }
.btn--sm { padding: .5rem 1.25rem; font-size: .8rem; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1e1e1e;
  padding: 0 1.5rem;
}
.nav__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: .08em;
  color: #F5F0E8; text-decoration: none;
}
.nav__logo span { color: #9B6FD4; }
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__links a {
  font-size: .85rem; font-weight: 500;
  color: #9a9690; letter-spacing: .04em;
  text-decoration: none; transition: color .2s;
}
.nav__links a:hover, .nav__links a.active { color: #F5F0E8; }
.nav__cta { margin-left: 1rem; }
.nav__hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: #F5F0E8; transition: all .3s;
}
.nav__mobile {
  display: none; flex-direction: column;
  background: #0D0D0D; padding: 1rem 1.5rem 2rem;
  border-top: 1px solid #1e1e1e;
  position: fixed; top: 64px; left: 0; right: 0;
  z-index: 99;
}
.nav__mobile a {
  color: #9a9690; font-size: 1rem; font-weight: 500;
  padding: .75rem 0; border-bottom: 1px solid #1e1e1e;
  text-decoration: none;
}
.nav__mobile a:hover { color: #F5F0E8; }
.nav__mobile.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(155,111,212,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content { max-width: 700px; }
.hero__title { color: #F5F0E8; margin-bottom: 1rem; }
.hero__title em { color: #9B6FD4; font-style: italic; }
.hero__sub { font-size: 1.2rem; color: #9a9690; line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: #555; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; display: flex;
  flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(#9B6FD4, transparent);
}

/* ── Pull quote ── */
.pull-quote {
  border-left: 4px solid #9B6FD4;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: rgba(155,111,212,.06);
  border-radius: 0 8px 8px 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic; color: #F5F0E8;
  margin: 0;
}

/* ── Coming soon block ── */
.coming-soon {
  border: 1.5px solid #2a1a4e;
  background: rgba(155,111,212,.05);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.coming-soon__badge {
  display: inline-block;
  background: #9B6FD4;
  color: #F5F0E8;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 20px;
  margin-bottom: 1rem;
}
.coming-soon h3 { color: #F5F0E8; margin-bottom: .5rem; }
.coming-soon p { color: #9a9690; margin: 0; font-size: .95rem; }

/* ── Cards ── */
.card {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color .2s;
}
.card:hover { border-color: #9B6FD4; }
.card__eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #9B6FD4; margin-bottom: .5rem; display: block; }
.card__title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #F5F0E8; margin-bottom: .5rem; }
.card__body { font-size: .9rem; color: #9a9690; line-height: 1.6; }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }

/* ── Section header ── */
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .accent-line { margin: 0 auto 1.5rem; }
.section-header h2 { color: #F5F0E8; margin-bottom: 1rem; }
.section-header p { max-width: 560px; }
.section-header--center p { margin: 0 auto; }

/* ── Bio card ── */
.bio { display: flex; gap: 2.5rem; align-items: flex-start; }
.bio__image {
  width: 180px; height: 180px; flex-shrink: 0;
  border-radius: 12px; background: #1e1e1e;
  border: 2px solid #9B6FD4;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: #555; font-size: .8rem; text-align: center;
}
.bio__name { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: #F5F0E8; margin-bottom: .25rem; }
.bio__title { font-size: .85rem; font-weight: 700; letter-spacing: .08em; color: #9B6FD4; text-transform: uppercase; margin-bottom: 1rem; }
.bio__body p { font-size: .95rem; color: #9a9690; }

/* ── Stat row ── */
.stat { text-align: center; padding: 1.5rem; }
.stat__num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: #9B6FD4; line-height: 1; margin-bottom: .25rem; }
.stat__label { font-size: .85rem; color: #9a9690; line-height: 1.4; }

/* ── Tier cards ── */
.tier { background: #141414; border: 1px solid #1e1e1e; border-radius: 12px; padding: 1.5rem; }
.tier.featured { border-color: #9B6FD4; }
.tier__name { font-family: 'Space Grotesk', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9B6FD4; margin-bottom: .5rem; }
.tier__title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #F5F0E8; margin-bottom: .75rem; }
.tier__body { font-size: .85rem; color: #9a9690; margin-bottom: 1rem; line-height: 1.6; }
.tier__price { font-size: .8rem; font-weight: 700; color: #C8A96E; }

/* ── Form ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: #9a9690; margin-bottom: .4rem; letter-spacing: .04em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: .75rem 1rem;
  color: #F5F0E8;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #9B6FD4;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #141414; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Email signup ── */
.signup-form { display: flex; gap: .75rem; max-width: 480px; }
.signup-form input {
  flex: 1;
  background: #141414; border: 1px solid #2a2a2a;
  border-radius: 4px; padding: .75rem 1rem;
  color: #F5F0E8; font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
}
.signup-form input:focus { outline: none; border-color: #9B6FD4; }
.signup-form--center { margin: 0 auto; }

/* ── Social links ── */
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-links a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: #9a9690; text-decoration: none;
  padding: .4rem .9rem;
  border: 1px solid #2a2a2a;
  border-radius: 4px; transition: all .2s;
}
.social-links a:hover { border-color: #9B6FD4; color: #9B6FD4; }

/* ── Mission stat box ── */
.mission-box {
  background: #1a0d2e;
  border: 1px solid #2a1a4e;
  border-radius: 12px;
  padding: 2rem;
}
.mission-box h3 { color: #9B6FD4; margin-bottom: .75rem; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 8rem 0 4rem;
  border-bottom: 1px solid #1e1e1e;
}
.page-hero h1 { color: #F5F0E8; margin-bottom: 1rem; }
.page-hero .lead { max-width: 600px; }

/* ── Checklist ── */
.checklist { list-style: none; }
.checklist li {
  display: flex; gap: .75rem;
  align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px solid #1e1e1e;
  font-size: .95rem; color: #C8C2B4;
}
.checklist li:last-child { border: none; }
.checklist li::before {
  content: '✓';
  color: #9B6FD4; font-weight: 700;
  flex-shrink: 0; margin-top: .1rem;
}

/* ── Footer ── */
.footer {
  background: #080808;
  border-top: 1px solid #1e1e1e;
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: .08em;
  color: #F5F0E8; margin-bottom: .75rem;
  display: block;
}
.footer__logo span { color: #9B6FD4; }
.footer__tagline { font-size: .85rem; color: #555; margin-bottom: 1rem; }
.footer__col h4 { color: #F5F0E8; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col a { display: block; font-size: .85rem; color: #9a9690; margin-bottom: .5rem; text-decoration: none; transition: color .2s; }
.footer__col a:hover { color: #9B6FD4; }
.footer__bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: #555;
  flex-wrap: wrap; gap: .5rem;
}
.footer__bottom a { color: #555; }
.footer__bottom a:hover { color: #9B6FD4; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .bio { flex-direction: column; }
  .bio__image { width: 140px; height: 140px; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
}
