/* === STARTER PAGE — Solopreneur/coach business setup === */

/* HERO — dark with warm accent glow, not flat beige */
.hero-light {
  background: var(--bg-dark);
  color: var(--white);
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero-light::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168, 67, 42, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-light::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 67, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-light *:focus-visible { outline-color: #ffffff; }
.hero-light h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.8rem;
  max-width: 620px;
  position: relative;
}
.hero-light .subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  position: relative;
}
.hero-light .hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; font-weight: 600;
  color: var(--white); background: var(--accent);
  text-decoration: none; padding: 0.95rem 2.2rem;
  border-radius: var(--radius); transition: background 0.15s, transform 0.1s;
  position: relative;
}
.hero-light .hero-cta:hover { background: var(--accent-hover); }
.hero-light .hero-cta:active { transform: scale(0.98); }
.hero-light .hero-cta svg { width: 16px; height: 16px; }
.hero-light .hero-sub {
  margin-top: 1rem; font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  position: relative;
}

/* PROOF — accent left border on cards */
.proof-section {
  padding: 5.5rem 0;
  background: var(--bg);
}
.proof-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 0.6rem; line-height: 1.2;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}
.proof-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.proof-body { padding: 1.6rem 1.5rem; }
.proof-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; font-weight: 400;
  margin-bottom: 0.6rem; line-height: 1.3;
  color: var(--text);
}
.proof-story {
  font-size: 0.82rem; color: var(--text-mid);
  line-height: 1.65; margin: 0;
}

/* WHAT I DO — accent stripe top */
.whatido-section {
  background: var(--bg-warm);
  padding: 5.5rem 0;
  position: relative;
}
.whatido-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(168, 67, 42, 0.15) 100%);
}
.whatido-section .statement {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem; font-weight: 400;
  line-height: 1.35; color: var(--text);
  margin-bottom: 1.5rem;
}
.whatido-section p {
  color: var(--text-mid);
  font-size: 0.95rem; line-height: 1.75;
  margin-bottom: 1rem;
}
.whatido-section p:last-child { margin-bottom: 0; }

/* PRICING — dark background, light cards pop */
.pricing-section {
  padding: 5.5rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(168, 67, 42, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 0.6rem; line-height: 1.2;
  color: var(--white);
  position: relative;
}
.pricing-section .section-intro {
  color: rgba(255,255,255,0.55);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 700px;
  gap: 1.5rem;
  margin: 2rem auto 0;
  position: relative;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.pricing-card.primary {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 0 0 4px var(--accent-glow), 0 4px 24px rgba(0,0,0,0.12);
}
.pricing-tagline {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.5rem;
}
.pricing-card.primary .pricing-tagline { color: var(--accent); }
.pricing-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; font-weight: 400;
  margin-bottom: 0.3rem;
}
.pricing-amount {
  font-size: 1.3rem; font-weight: 700;
  color: var(--accent); margin-bottom: 1.2rem;
}
.pricing-card p {
  font-size: 0.85rem; color: var(--text-mid);
  line-height: 1.65; margin: 0;
  flex: 1;
}
.pricing-cta { margin-top: auto; padding-top: 1.4rem; }
.pricing-cta stripe-buy-button { display: block; width: 100%; }
.pricing-cta a {
  display: block; width: 100%; text-align: center;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  padding: 0.75rem 1.2rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
}
.pricing-cta a:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.pricing-card.primary .pricing-cta a {
  color: var(--white); background: var(--accent);
  border-color: var(--accent);
}
.pricing-card.primary .pricing-cta a:hover {
  background: var(--accent-hover);
}

/* PRICING BULLETS */
.pricing-bullets {
  list-style: none;
  margin: 0;
  flex: 1;
}
.pricing-bullets li {
  font-size: 0.85rem; color: var(--text-mid);
  line-height: 1.55;
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
}
.pricing-bullets li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0.45rem;
  color: var(--border);
  font-size: 0.8rem; font-weight: 700;
}
.pricing-card.primary .pricing-bullets li::before {
  color: var(--accent);
}

/* FIT — accent check marks */
.fit-section { background: var(--bg); padding: 5.5rem 0; }
.fit-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 0.6rem; line-height: 1.2;
}
.fit-list {
  list-style: none;
  max-width: 600px;
  margin-bottom: 2rem;
}
.fit-list li {
  font-size: 0.95rem; color: var(--text-mid);
  padding: 0.75rem 0 0.75rem 2rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.fit-list li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0.75rem;
  color: var(--accent);
  font-size: 0.9rem; font-weight: 700;
}
.fit-list li:last-child { border-bottom: none; }

/* BRIDGE BANNER */
.bridge-banner {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg-dark);
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bridge-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(168, 67, 42, 0.3));
}
.bridge-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.bridge-banner a {
  display: inline-block;
  font-size: 0.88rem; font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.bridge-banner a:hover { background: rgba(255,255,255,0.18); }

/* RESPONSIVE — STARTER */
@media (max-width: 700px) {
  .hero-light { padding: 3.5rem 0; }
  .hero-light h1 { font-size: 2.2rem; }
  .hero-light .subtitle { font-size: 0.95rem; }
  .hero-light .hero-cta { padding: 0.85rem 1.6rem; font-size: 0.9rem; }
  .proof-section h2, .pricing-section h2, .fit-section h2 { font-size: 1.6rem; }
  .whatido-section .statement { font-size: 1.3rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: none; }
  .pricing-card.primary { order: -1; }
  .proof-section, .whatido-section, .pricing-section, .fit-section { padding: 3.5rem 0; }
  .proof-body { padding: 1.2rem 1.3rem; }
  .pricing-card { padding: 1.8rem 1.5rem; }
  .bridge-banner { padding: 1.5rem; }
}
