/* ============================================================
   BOLTZ CREATIONS LLC — boltzcreations.com
   Stylesheet v1.0
   Fonts: Playfair Display, Lato, Cinzel (Google Fonts)
   ============================================================ */

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

:root {
  --navy:        #0D1B2A;
  --navy-light:  #16263A;
  --navy-mid:    #1E3550;
  --cyan:        #00B4CC;
  --cyan-light:  #A0E8F0;
  --amber:       #E07C3A;
  --gold:        #C9A84C;   /* FSTA bridge color — used sparingly */
  --white:       #FFFFFF;
  --gray-light:  #D0D8E0;
  --gray-mid:    #96A3AF;
  --gray-dark:   #50606E;
  --divider:     #223350;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Lato', sans-serif;
  --font-display: 'Cinzel', serif;

  --max-w: 1100px;
  --radius: 8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  background: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan-light); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.nav__logo span { color: var(--cyan); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--gray-light);
  text-transform: uppercase;
}

.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--cyan);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}

.nav__cta:hover { background: var(--cyan-light) !important; color: var(--navy) !important; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(0, 180, 204, 0.07) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(224, 124, 58, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--cyan);
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--cyan);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--cyan-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 204, 0.25);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--divider);
}

.btn--secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
}

.btn--amber:hover {
  background: #f08d50;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 124, 58, 0.25);
}

/* Hero freebie card */
.hero__freebie {
  background: var(--navy-light);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 36px;
  position: relative;
}

.hero__freebie::before {
  content: 'FREE';
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 4px;
}

.freebie__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.freebie__desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

.freebie__list {
  list-style: none;
  margin-bottom: 28px;
}

.freebie__list li {
  font-size: 0.88rem;
  color: var(--gray-light);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.freebie__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.freebie__note {
  font-size: 0.76rem;
  color: var(--gray-dark);
  margin-top: 12px;
  text-align: center;
}

/* ── Section Base ─────────────────────────────────────────── */
section { padding: 88px 0; }

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  text-align: center;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--gray-mid);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--cyan);
  margin: 0 auto 16px;
  border-radius: 2px;
}

/* ── Products ─────────────────────────────────────────────── */
.products { background: var(--navy); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.product-card {
  background: var(--navy-light);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.product-card--chatgpt::before { background: var(--cyan); }
.product-card--claude::before  { background: var(--amber); }
.product-card--bundle::before  { background: var(--gold); }

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-mid);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.product-card__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  width: fit-content;
}

.badge--cyan   { background: rgba(0,180,204,0.15); color: var(--cyan); }
.badge--amber  { background: rgba(224,124,58,0.15); color: var(--amber); }
.badge--gold   { background: rgba(201,168,76,0.15); color: var(--gold); }

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.product-card__price span {
  font-size: 0.85rem;
  color: var(--gray-mid);
  font-family: var(--font-sans);
  font-weight: 400;
  margin-left: 4px;
}

.product-card__features {
  list-style: none;
  margin-bottom: 24px;
}

.product-card__features li {
  font-size: 0.84rem;
  color: var(--gray-light);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.product-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.8rem;
}

.product-card--bundle .product-card__features li::before { color: var(--gold); }
.product-card--claude .product-card__features li::before { color: var(--amber); }

/* ── Social Proof Strip ───────────────────────────────────── */
.proof-strip {
  background: var(--navy-light);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 28px 0;
}

.proof-strip__inner {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-item__number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.proof-item__label {
  font-size: 0.8rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ── About ────────────────────────────────────────────────── */
.about { background: var(--navy-light); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
}

.about__body p {
  font-size: 0.97rem;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about__body p:last-child { margin-bottom: 0; }

.about__body strong { color: var(--white); font-weight: 700; }

.about__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.aside-card {
  background: var(--navy);
  border: 1px solid var(--divider);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 24px;
}

.aside-card--amber { border-left-color: var(--amber); }

.aside-card__title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}

.aside-card--amber .aside-card__title { color: var(--amber); }

.aside-card__body {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ── Contact / Footer CTA ────────────────────────────────── */
.contact-cta {
  background: var(--navy);
  text-align: center;
  padding: 80px 0;
}

.contact-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-cta__sub {
  font-size: 1rem;
  color: var(--gray-mid);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--cyan);
  font-weight: 400;
  margin-top: 20px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-light);
  border-top: 1px solid var(--divider);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.footer__brand span { color: var(--cyan); }

.footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer__links a {
  font-size: 0.82rem;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__links a:hover { color: var(--white); }

.footer__copy {
  font-size: 0.78rem;
  color: var(--gray-dark);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner        { grid-template-columns: 1fr; gap: 40px; }
  .hero__subtitle     { max-width: 100%; }
  .products__grid     { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about__inner       { grid-template-columns: 1fr; gap: 40px; }
  .proof-strip__inner { gap: 32px; }
}

@media (max-width: 640px) {
  .nav__links         { display: none; }
  .nav__toggle        { display: block; }
  .nav__links.open    { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid var(--divider); padding: 20px 24px; gap: 20px; }
  .hero__actions      { flex-direction: column; }
  .btn                { justify-content: center; }
  .footer__inner      { flex-direction: column; text-align: center; }
  .footer__links      { flex-wrap: wrap; justify-content: center; }
}
