/* =========================================================
   MEETPREP — LANDING PAGE STYLES
   ========================================================= */

:root {
  --bg: #0b0b0b;
  --surface: #151515;

  --gold: #d4a84f;
  --gold-light: #e5c477;
  --gold-dark: #9f7830;

  --text: #f4f1eb;
  --text-soft: #b7b3ab;
  --text-muted: #77736c;

  --border: rgba(255, 255, 255, 0.10);
  --border-gold: rgba(212, 168, 79, 0.35);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(212, 168, 79, 0.07),
      transparent 40%
    ),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.italic {
  color: var(--gold-light);
  font-style: italic;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--gold);
  border-radius: 4px;
  color: #0b0b0b;
  display: flex;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.brand-name {
  font-size: 16px;
  font-weight: 500;
}

.header-cta {
  background: linear-gradient(135deg, #e0b965, #b98b3c);
  border-radius: 4px;
  color: #0b0b0b;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  box-shadow: 0 0 24px rgba(212, 168, 79, 0.25);
  transform: translateY(-1px);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 110px 0 90px;
  text-align: center;
}

.badge {
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  color: var(--gold-light);
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 30px;
  padding: 8px 16px;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 780px;
}

.hero-description {
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin: 32px auto 0;
  max-width: 560px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-top: 38px;
}

.primary-button {
  align-items: center;
  background: linear-gradient(135deg, #e0b965, #b98b3c);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  color: #0b0b0b;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  padding: 15px 26px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.primary-button:hover {
  box-shadow: 0 10px 34px rgba(212, 168, 79, 0.2);
  transform: translateY(-1px);
}

.secondary-link {
  align-items: center;
  color: var(--text-soft);
  display: inline-flex;
  font-size: 14px;
  gap: 6px;
  transition: color 180ms ease;
}

.secondary-link:hover {
  color: var(--gold-light);
}


/* =========================================================
   CONVERSATIONS GRID (4 CARDS)
   ========================================================= */

.how-many-section {
  border-top: 1px solid var(--border);
  padding: 80px 0;
}

.value-header {
  margin-bottom: 44px;
  text-align: center;
}

.conversation-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.conversation-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.conversation-card:hover {
  background: linear-gradient(
    145deg,
    rgba(212, 168, 79, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.conversation-icon {
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 18px;
}

.conversation-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}

.conversation-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {
  border-top: 1px solid var(--border);
  padding: 90px 0;
}

.how-header {
  text-align: center;
}

.how-header h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-top: 14px;
}

.steps {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  position: relative;
}

.steps::before {
  background: var(--border-gold);
  content: "";
  height: 1px;
  left: 16.66%;
  position: absolute;
  right: 16.66%;
  top: 19px;
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-light);
  display: flex;
  font-family: var(--serif);
  font-size: 13px;
  height: 40px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 40px;
  z-index: 1;
}

.step h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-top: 22px;
}

.step p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 8px auto 0;
  max-width: 260px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.cta-section {
  padding: 40px 0 110px;
}

.cta-box {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 168, 79, 0.10), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 70px 30px;
  text-align: center;
}

.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 20px auto 26px;
  max-width: 420px;
}

.cta-button {
  background: linear-gradient(135deg, #e0b965, #b98b3c);
  border-radius: 4px;
  color: #0b0b0b;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 24px;
}





/* =========================================================
   FOOTER
   ========================================================= */

footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .conversation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .conversation-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}





   /* =========================================================
   SAMPLE BRIEFING PAGE
   ========================================================= */

.back-link {
  color: var(--text-soft);
  font-size: 13px;
  transition: color 180ms ease;
}

.back-link:hover {
  color: var(--gold-light);
}

.briefing-page {
  padding: 60px 0 100px;
}

.briefing-container {
  max-width: 760px;
}

.briefing-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.briefing-topline-label {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.briefing-topline-status {
  align-items: center;
  color: var(--text-muted);
  display: flex;
  font-size: 11px;
  gap: 6px;
}

.briefing-topline-status::before {
  background: #8caa69;
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}

.briefing-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 400;
  margin-top: 22px;
}

.briefing-meta {
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 22px;
  margin-top: 14px;
}

.briefing-meta strong {
  color: var(--text-soft);
  font-weight: 500;
}

.briefing-section {
  border-top: 1px solid var(--border);
  margin-top: 34px;
  padding-top: 24px;
}

.briefing-section-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}

.briefing-section p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 10px;
}

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

.briefing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.briefing-list li {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.briefing-list li::before {
  color: var(--gold);
  content: "•";
  left: 0;
  position: absolute;
}

.briefing-list-annotated li strong {
  color: var(--text);
  font-weight: 500;
}

.briefing-steps {
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.briefing-steps li {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  padding-left: 30px;
  position: relative;
}

.briefing-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  left: 0;
  position: absolute;
  top: 0;
}

.briefing-confidence {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.confidence-badge {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 6px 14px;
}

.confidence-moderate {
  background: rgba(212, 168, 79, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
}

.briefing-footer {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 40px;
  padding-top: 20px;
}


/* =========================================================
   RESPONSIVE — SAMPLE BRIEFING PAGE
   ========================================================= */

@media (max-width: 600px) {
  .briefing-page {
    padding: 44px 0 70px;
  }

  .briefing-meta {
    gap: 14px 20px;
  }
}
