/* ============================================================
   AJ Cappuccitti — personal brand site styles
   Plain CSS, no frameworks. Dark, bold, in-your-face.
   ============================================================ */

:root {
  /* Brand palette */
  --ink:        #0a0c12;   /* near-black */
  --ink-2:      #11141d;   /* dark section */
  --ink-soft:   #5a6273;   /* muted text on light */
  --paper:      #ffffff;
  --cloud:      #f5f6f9;   /* light section bg */
  --line:       #e4e7ee;

  --fire:       #ff3b2f;   /* primary red */
  --fire-deep:  #d61f15;
  --amber:      #ff9f1c;   /* accent */
  --gold:       #ffc233;   /* accent */
  --steel:      #2f72ff;   /* cool accent */
  --teal:       #15c2a8;

  --grad-hot:   linear-gradient(120deg, #ff3b2f 0%, #ff7a18 55%, #ffc233 100%);
  --grad-cool:  linear-gradient(120deg, #ff3b2f 0%, #ff9f1c 100%);

  --shadow-sm:  0 2px 8px rgba(8, 10, 18, .07);
  --shadow-md:  0 12px 30px rgba(8, 10, 18, .12);
  --shadow-lg:  0 30px 70px rgba(8, 10, 18, .28);

  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1140px;

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.05;
  margin: 0 0 .5em;
  letter-spacing: -.025em;
  font-weight: 900;
  text-transform: none;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

a { color: var(--fire-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fire);
  background: rgba(255, 59, 47, .1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }

.text-grad {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none; text-transform: uppercase; letter-spacing: .03em;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--fire); color: #fff; box-shadow: 0 10px 24px rgba(255, 59, 47, .38); }
.btn-primary:hover { background: var(--fire-deep); box-shadow: 0 14px 30px rgba(255, 59, 47, .5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--fire); color: var(--fire); }
.btn-light { background: #fff; color: var(--fire-deep); }
.btn-light:hover { background: #fff1ec; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-lg { padding: 17px 36px; font-size: 1.06rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 12, 18, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand {
  display: flex; align-items: center; gap: 11px;
  font-weight: 900; font-size: 1.1rem; color: #fff; letter-spacing: -.02em;
  text-transform: uppercase;
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--grad-hot); display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: 1rem; box-shadow: var(--shadow-sm);
}
.brand small { display: block; font-size: .62rem; font-weight: 700; color: #8b93a7; letter-spacing: .18em; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #d4d8e2; font-weight: 700; font-size: .92rem; text-transform: uppercase; letter-spacing: .04em; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.bg-cloud { background: var(--cloud); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-ink .lead { color: #aeb6c6; }

.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Hero (dark) ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  padding: 104px 0 96px;
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(255,59,47,.32), transparent 60%),
    radial-gradient(680px 460px at -5% 110%, rgba(255,159,28,.20), transparent 55%),
    var(--ink);
}
.hero h1 { margin-bottom: .35em; color: #fff; }
.hero .lead { margin-bottom: 30px; color: #c2c8d6; }
.hero .eyebrow { color: var(--gold); background: rgba(255,194,51,.12); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: #aeb6c6; font-size: .9rem; font-weight: 700; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* Hero visual card */
.hero-card {
  background: #fff; color: var(--ink);
  border-radius: 24px; box-shadow: var(--shadow-lg); padding: 26px; position: relative;
}
.hero-card::before { content: ""; position: absolute; inset: -2px; border-radius: 26px; background: var(--grad-hot); z-index: -1; opacity: .95; }
.hero-card .row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.hero-card .row:last-child { border-bottom: 0; }
.hero-card .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; }
.hero-card .ic.v { background: rgba(255,59,47,.12); }
.hero-card .ic.c { background: rgba(255,159,28,.16); }
.hero-card .ic.a { background: rgba(255,194,51,.18); }
.hero-card .ic.t { background: rgba(21,194,168,.14); }
.hero-card strong { display: block; font-size: 1rem; }
.hero-card small { color: var(--ink-soft); }
.hero-card .bar { height: 7px; border-radius: 999px; background: var(--cloud); margin-top: 7px; overflow: hidden; }
.hero-card .bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad-hot); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.stat .num { font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.stat .num.v { color: var(--fire); }
.stat .num.c { color: var(--amber); }
.stat .num.a { color: var(--gold); }
.stat .num.t { color: var(--steel); }
.stat .lbl { color: var(--ink-soft); font-weight: 600; margin-top: 8px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .badge { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px; }
.badge.v { background: rgba(255,59,47,.12); }
.badge.c { background: rgba(255,159,28,.16); }
.badge.a { background: rgba(255,194,51,.18); }
.badge.t { background: rgba(21,194,168,.14); }
.badge.s { background: rgba(47,114,255,.12); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card .top-line { height: 4px; width: 46px; border-radius: 999px; margin-bottom: 22px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { position: relative; padding: 30px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-hot); color: #fff; font-weight: 900; font-size: 1.2rem; margin-bottom: 16px; }
.step h3 { margin-bottom: .4em; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar { padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.pillar .badge { background: rgba(255,255,255,.1); width:52px;height:52px;border-radius:14px;display:grid;place-items:center;font-size:1.5rem;margin-bottom:16px; }
.pillar h3 { margin-bottom: .4em; }
.pillar p { color: #aeb6c6; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 28px; padding: 64px 56px; background: var(--grad-hot); color: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.95); font-size: 1.15rem; max-width: 56ch; margin: 0 auto 28px; }
.cta-band .btn-dark { box-shadow: 0 10px 30px rgba(0,0,0,.3); }

/* ---------- Testimonial / quote ---------- */
.quote { max-width: 800px; margin: 0 auto; text-align: center; }
.quote blockquote { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 800; line-height: 1.3; letter-spacing: -.02em; margin: 0 0 24px; }
.quote .who { color: var(--ink-soft); font-weight: 700; }
.bg-ink .quote .who { color: #aeb6c6; }

/* ---------- Pricing / offer tiers ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tier { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tier.featured { border-color: transparent; box-shadow: var(--shadow-lg); transform: scale(1.03); }
.tier.featured:hover { transform: scale(1.03) translateY(-6px); }
.tier .tier-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-hot); color: #fff; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-sm); }
.tier h3 { font-size: 1.5rem; margin-bottom: 4px; }
.tier .tier-sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 22px; }
.tier .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.tier .price .amt { font-size: 2.4rem; font-weight: 900; letter-spacing: -.03em; }
.tier .price .per { color: var(--ink-soft); font-weight: 600; }
.tier .setup { font-size: .9rem; color: var(--ink-soft); margin-bottom: 22px; }
.tier ul { list-style: none; margin: 0 0 26px; padding: 0; }
.tier li { padding: 9px 0 9px 28px; position: relative; color: var(--ink-soft); border-bottom: 1px solid var(--cloud); }
.tier li:last-child { border-bottom: 0; }
.tier li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--fire); font-weight: 900; }
.tier li b { color: var(--ink); }
.tier .btn { width: 100%; justify-content: center; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse > div:first-child { order: 2; }
.feature-list { list-style: none; margin: 18px 0 0; padding: 0; }
.feature-list li { padding: 12px 0 12px 36px; position: relative; border-top: 1px solid var(--line); }
.feature-list li:first-child { border-top: 0; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 18px; height: 18px; border-radius: 6px; background: var(--grad-cool); }
.feature-list strong { display: block; }
.feature-list small { color: var(--ink-soft); }
.bg-ink .feature-list li { border-color: rgba(255,255,255,.12); }
.bg-ink .feature-list small { color: #aeb6c6; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { padding: 12px 0 12px 36px; position: relative; color: var(--ink-soft); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; font-size: 1.2rem; }
.checklist.no li::before { content: "✕"; color: var(--fire); }

/* ---------- Book cover plate (Sum of Five) ---------- */
.book-plate { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 2 / 3; background: linear-gradient(160deg, #1a1d27, #0a0c12); display: grid; place-items: center; padding: 28px; text-align: center; color: #fff; }
.book-plate .b-num { font-size: 5rem; font-weight: 900; line-height: 1; background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.book-plate .b-title { font-size: 1.6rem; font-weight: 900; letter-spacing: -.02em; margin-top: 10px; }
.book-plate .b-by { color: #aeb6c6; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; margin-top: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 800; margin-bottom: 7px; font-size: .95rem; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--fire); box-shadow: 0 0 0 4px rgba(255,59,47,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--ink-soft); }
.form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); background: rgba(21,194,168,.12); color: #0a7d72; font-weight: 700; border: 1px solid rgba(21,194,168,.3); }
.form-msg.show { display: block; }

/* inline waitlist (book) */
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.inline-form input { flex: 1; min-width: 220px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 999px; font: inherit; }
.inline-form input:focus { outline: none; border-color: var(--fire); box-shadow: 0 0 0 4px rgba(255,59,47,.12); }

.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-card .ic { font-size: 1.5rem; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,59,47,.1); flex: none; }
.contact-card strong { display: block; }
.contact-card a { font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 800; font-size: 1.08rem; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--fire); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--ink-soft); padding-bottom: 18px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #aeb6c6; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #aeb6c6; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand small { color: #8b93a7; }
.footer-about { max-width: 36ch; color: #8b93a7; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; font-size: .88rem; color: #8b93a7; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .steps, .pillars, .pricing { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse > div:first-child { order: 0; }
}
@media (max-width: 720px) {
  section { padding: 60px 0; }
  .nav-links { position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--ink-2); border-bottom: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-md); padding: 8px 24px 20px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .steps, .pillars, .contact-grid, .pricing { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 28px; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
