/* ============================================================
   Big Ticket Ace — shared stylesheet
   Rebuilt to match the live site: centered dark-navy panel,
   gold accent, Playfair serif display, Inter body.
   ============================================================ */

:root {
  --navy:      #1A2532;   /* main panel background */
  --navy-2:    #202D3C;   /* card background */
  --navy-3:    #2A3949;   /* card hover / borders */
  --gold:      #E2A64C;   /* primary accent + buttons */
  --gold-soft: #E7B565;   /* italic headline gold */
  --blue-tile: #B9CCE2;   /* business icon tile */
  --blue-ink:  #4C6E97;   /* business icon */
  --white:     #FFFFFF;
  --text:      rgba(255, 255, 255, 0.74);
  --text-dim:  rgba(255, 255, 255, 0.52);
  --line:      rgba(255, 255, 255, 0.09);

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --shell: 1080px;
}

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

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); }

/* The centered dark panel that the whole site sits inside */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  background: var(--navy);
  min-height: 100vh;
}
.inner { padding: 0 clamp(24px, 5vw, 80px); }

/* ---------- Top note bar ---------- */
.note-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 40px 0 0;
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.avatar svg { width: 22px; height: 22px; }
.note-bar .label { font-size: 14px; color: var(--text); }
.note-bar .label strong { color: var(--white); font-weight: 600; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 70px 0 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.12;
  margin: 0 auto 26px;
  max-width: 18ch;
}
.hero h1 .accent {
  display: block;
  font-style: italic;
  color: var(--gold-soft);
}
.hero .sub {
  max-width: 46ch;
  margin: 0 auto;
  font-size: 1.06rem;
  color: var(--text);
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 54px 0 40px;
}
.card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--navy-3); }
.tile {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
}
.tile svg { width: 26px; height: 26px; }
.tile-gold { background: rgba(226, 166, 76, 0.16); }
.tile-blue { background: var(--blue-tile); }

.card .eyebrow { margin-bottom: 14px; }
.card h2 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.22;
  margin: 0 0 16px;
}
.card p {
  font-size: 0.98rem;
  color: var(--text);
  margin: 0 0 28px;
  flex-grow: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  align-self: flex-start;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(226, 166, 76, 0.24);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 166, 76, 0.30);
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ---------- Closing note ---------- */
.closing {
  text-align: center;
  padding: 20px 0 64px;
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 58ch;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 46px 0 10px; }
  .inner { padding: 0 22px; }
}

/* ---------- Accessibility ---------- */
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   X39 page — alternating dark / cream bands, long-form layout
   ============================================================ */
:root {
  --cream:    #F5F0E6;
  --cream-2:  #EBE3D2;
  --ink:      #1E2A38;
  --ink-soft: #4C586A;
  --gold-dk:  #B5822E;
}

.band-inner { max-width: 860px; margin: 0 auto; padding: 76px clamp(24px, 5vw, 72px); }
.band--cream { background: var(--cream); color: var(--ink); }

.band .eyebrow { text-align: center; }
.band h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.18;
  text-align: center;
  margin: 0 0 30px;
}
.band--dark h2 { color: var(--white); }
.band--cream h2 { color: var(--ink); }
.band--cream .eyebrow { color: var(--gold-dk); }
.band--dark p { color: var(--text); }
.band--cream p { color: var(--ink-soft); }
.band p { font-size: 1.05rem; margin: 0 0 20px; }
.band p:last-child { margin-bottom: 0; }
.band-sub { text-align: center; max-width: 60ch; margin: 0 auto 8px; }
.center { text-align: center; }

/* Hero (X39) */
.hero-x39 { text-align: center; padding: 60px 0 4px; }
.hero-x39 h1 {
  font-family: var(--serif); font-weight: 700; color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.7rem); line-height: 1.14;
  margin: 0 auto 26px; max-width: 20ch;
}
.hero-x39 h1 .accent { display: block; font-style: italic; color: var(--gold-soft); }
.hero-x39 .sub { max-width: 52ch; margin: 0 auto 34px; font-size: 1.08rem; color: var(--text); }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: var(--white); transform: translateY(-2px); }
.btn-center { align-self: center; }

/* Pull quote */
.pullquote {
  font-family: var(--serif); font-style: italic; font-size: 1.28rem; line-height: 1.5;
  color: var(--ink); background: var(--cream-2);
  border-left: 4px solid var(--gold); border-radius: 4px;
  padding: 26px 30px; margin: 34px 0;
}

/* Lead-in paragraphs (bold sentence + rest) */
.lead-in strong { color: inherit; font-weight: 700; }
.band--dark .lead-in strong { color: var(--white); }
.footnote { font-size: 0.85rem; opacity: 0.7; margin-top: 26px; }

/* CTA highlight box */
.cta-box {
  text-align: center; background: var(--cream-2);
  border-radius: 14px; padding: 32px 28px; margin-top: 40px;
}
.band--dark .cta-box { background: var(--navy-2); border: 1px solid var(--line); }
.cta-box .q {
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  margin: 0 0 20px; color: inherit;
}
.band--dark .cta-box .q { color: var(--white); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 10px 0 34px; }
.step {
  background: var(--cream-2); border-radius: 12px; padding: 24px 20px;
}
.step .n {
  font-family: var(--serif); font-weight: 700; font-size: 1.6rem;
  color: var(--gold-dk); display: block; margin-bottom: 12px;
}
.step h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.step p { font-size: 0.92rem; margin: 0; }
.note-line { text-align: center; max-width: 62ch; margin: 0 auto; font-size: 1rem; }

/* Report grid */
.report { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.report-item {
  background: var(--navy-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 18px; text-align: center;
}
.report-item .ic { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.report-item .t { color: var(--white); font-weight: 600; font-size: 1.02rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 34px 0; text-align: center; }
.stat .num { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--gold-dk); line-height: 1; }
.stat .lbl { font-size: 0.92rem; color: var(--ink-soft); margin-top: 10px; }
.band--dark .stat .num { color: var(--gold); }
.band--dark .stat .lbl { color: var(--text); }

/* Pricing card */
.price-card {
  background: var(--navy-2); border: 1px solid var(--line); border-radius: 16px;
  padding: 40px 34px; max-width: 480px; margin: 6px auto 0; text-align: center;
}
.price-card .ic { font-size: 1.8rem; }
.price-card .plan { font-family: var(--serif); font-weight: 700; color: var(--white); font-size: 1.5rem; margin: 10px 0 4px; }
.price-card .kind { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }
.price-card .best { color: var(--text); font-size: 0.95rem; margin: 14px 0 22px; }
.price-card .amount { font-family: var(--serif); font-weight: 700; color: var(--white); font-size: 3rem; line-height: 1; }
.price-card .per { color: var(--text); font-size: 0.95rem; }
.price-card .terms { color: var(--text-dim); font-size: 0.82rem; margin: 4px 0 24px; }
.check { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.check li { position: relative; padding: 8px 0 8px 30px; color: var(--text); font-size: 0.96rem; border-top: 1px solid var(--line); }
.check li:first-child { border-top: 0; }
.check li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 700; }
.coffee-note { color: var(--text); font-size: 0.95rem; margin: 18px auto 0; max-width: 46ch; }

/* Guarantee box */
.guarantee {
  background: var(--cream-2); border-radius: 14px; padding: 30px 28px; margin: 30px 0;
  text-align: center;
}
.guarantee .shield { font-size: 2rem; }
.guarantee h3 { font-family: var(--serif); color: var(--ink); font-size: 1.4rem; margin: 10px 0 14px; }

/* Signature / disclaimer footer */
.sig-footer { text-align: center; padding: 54px clamp(24px,5vw,72px) 64px; }
.sig-footer .sig { color: var(--white); font-weight: 600; letter-spacing: 0.03em; }
.sig-footer .disc { color: var(--text-dim); font-size: 0.82rem; max-width: 70ch; margin: 18px auto 0; line-height: 1.6; }
.contact-line { color: var(--text); font-size: 0.98rem; margin-top: 18px; }
.contact-line a { color: var(--gold); text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .report { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; gap: 30px; }
  .band-inner { padding: 54px 22px; }
}
@media (max-width: 440px) {
  .steps, .report { grid-template-columns: 1fr; }
}

/* ============================================================
   Business page — additional components
   ============================================================ */

/* Emoji tile for "who this is for" cards */
.tile-emoji { background: rgba(226,166,76,0.16); font-size: 1.7rem; line-height: 1; }

/* PRO cards */
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.pro-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: 12px; padding: 30px 26px; text-align: center; }
.pro-badge {
  font-family: var(--serif); font-weight: 700; font-size: 2rem; color: var(--gold);
  width: 62px; height: 62px; margin: 0 auto 18px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pro-card h3 { font-family: var(--sans); color: var(--white); font-size: 1.15rem; font-weight: 600; margin: 0 0 10px; }
.pro-card p { font-size: 0.95rem; margin: 0; }

/* Income numbered grid */
.num-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 30px 0; }
.num-item { background: var(--cream-2); border-radius: 12px; padding: 26px 24px; }
.num-item .num { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--gold-dk); display: block; margin-bottom: 10px; }
.num-item h3 { font-family: var(--sans); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.num-item p { font-size: 0.95rem; margin: 0; }

/* Big centered quote */
.bigquote { text-align: center; max-width: 62ch; margin: 40px auto 0; }
.bigquote .q { font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.5; color: var(--ink); margin: 0 0 16px; }
.band--dark .bigquote .q { color: var(--white); }
.bigquote .by { font-size: 0.95rem; color: var(--gold-dk); font-weight: 600; }
.band--dark .bigquote .by { color: var(--gold); }
.miniquote { text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--white); margin: 8px auto 0; }

/* "What I will do" list */
.do-list { list-style: none; padding: 0; max-width: 64ch; margin: 22px auto 0; }
.do-list li { position: relative; padding: 12px 0 12px 34px; border-top: 1px solid var(--line); color: var(--text); }
.do-list li:first-child { border-top: 0; }
.do-list li::before { content: "\2713"; position: absolute; left: 0; top: 12px; color: var(--gold); font-weight: 700; }

/* Starter kit options */
.kits-head { text-align: center; font-family: var(--sans); font-weight: 600; color: var(--ink); font-size: 1.05rem; margin: 34px 0 16px; letter-spacing: 0.02em; }
.kits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kit { background: var(--cream-2); border: 1px solid transparent; border-radius: 12px; padding: 22px 16px; text-align: center; position: relative; }
.kit.best { border-color: var(--gold); }
.kit .k-name { font-weight: 600; color: var(--ink); }
.kit .k-sleeves { font-size: 0.85rem; color: var(--ink-soft); margin: 4px 0 12px; }
.kit .k-price { font-family: var(--serif); font-weight: 700; font-size: 1.6rem; color: var(--ink); }
.kit .k-per { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }
.kit .k-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }

/* Privacy/terms link line */
.sig-footer .terms-link { display: block; margin-top: 14px; font-size: 0.82rem; }
.sig-footer .terms-link a { color: var(--gold); text-decoration: none; }
.sig-footer .terms-link a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .pro-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr; }
  .kits { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 440px) {
  .kits { grid-template-columns: 1fr; }
}

/* ============================================================
   Legal page — Privacy Policy & Terms of Service
   ============================================================ */
.legal-header { background: var(--navy); }
.legal-header .bar {
  max-width: 1180px; margin: 0 auto;
  padding: 34px clamp(24px, 5vw, 72px);
  display: flex; align-items: center; gap: 14px;
}
.legal-header .name { color: var(--white); font-weight: 600; }
.legal-header .site { color: var(--gold); font-weight: 500; }

.legal-page { background: var(--cream); min-height: 100vh; }
.legal-body {
  max-width: 860px; margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 40px) 80px;
  color: var(--ink-soft);
}
.legal-body h1 {
  font-family: var(--serif); font-weight: 700; color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.12; margin: 0 0 14px;
}
.legal-meta { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 8px; }
.legal-meta .accent { color: var(--gold-dk); }

.legal-body hr { border: 0; border-top: 1px solid rgba(30,42,56,0.14); margin: 34px 0; }

.legal-body h2 {
  font-family: var(--serif); font-weight: 700; color: var(--ink);
  font-size: 1.7rem; margin: 8px 0 0;
}
.legal-body h3 {
  font-family: var(--sans); font-weight: 700; color: var(--ink);
  font-size: 1.15rem; margin: 34px 0 12px;
}
.legal-body p { font-size: 1.02rem; line-height: 1.7; margin: 0 0 16px; max-width: none; }
.legal-body ul { margin: 0 0 16px; padding-left: 22px; }
.legal-body li { font-size: 1.02rem; line-height: 1.7; margin-bottom: 6px; }
.legal-body a { color: var(--gold-dk); }
.legal-body .strong { font-weight: 700; color: var(--ink); }

.contact-block { margin: 4px 0 16px; line-height: 1.8; }
.contact-block .strong { display: block; margin-bottom: 4px; }

.copyright {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(30,42,56,0.14);
  font-size: 0.9rem; color: var(--ink-soft);
}
