/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Lora:wght@400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f5f5;
  color: #18181b;
  line-height: 1.7;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
}

/* ===== ADVERTISEMENT BANNER ===== */
.ad-disclosure {
  background: #e4e4e7;
  border-bottom: 1px solid #d4d4d8;
  text-align: center;
  padding: 7px 16px;
  font-size: 0.75rem;
  color: #71717a;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== SITE HEADER ===== */
.site-header {
  background: #18181b;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo span {
  color: #a78bfa;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #a1a1aa;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.header-nav a:hover {
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #18181b 0%, #27272a 40%, #3f3f46 100%);
  color: #fff;
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #fff 30%, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== FEATURED IMAGE ===== */
.featured-image {
  max-width: 860px;
  margin: -36px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.featured-image img {
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
  width: 100%;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* ===== ARTICLE SECTION ===== */
.article-section {
  background: #fff;
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid #e4e4e7;
}

.article-section h2 {
  font-family: 'Lora', serif;
  font-size: 1.65rem;
  color: #18181b;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.article-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 16px;
  margin-top: 8px;
}

.article-section p {
  margin-bottom: 16px;
  color: #3f3f46;
  font-size: 1.02rem;
}

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

/* ===== AFFILIATE DISCLOSURE ===== */
.affiliate-notice {
  background: linear-gradient(135deg, #faf5ff, #f5f3ff);
  border: 1px solid #ddd6fe;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: #6d28d9;
  line-height: 1.6;
}

.affiliate-notice strong {
  color: #5b21b6;
}

/* ===== TRANSCRIPT / DIALOG ===== */
.transcript-section .dialog-block {
  margin-bottom: 18px;
}

.transcript-section .speaker {
  font-weight: 700;
  color: #7c3aed;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}

.transcript-section .statement {
  color: #3f3f46;
  font-size: 1.02rem;
  line-height: 1.75;
  padding-left: 14px;
  border-left: 3px solid #ddd6fe;
}

.transcript-section .reaction {
  font-style: italic;
  color: #7c3aed;
  font-size: 0.88rem;
  margin: 14px 0 18px;
  padding: 8px 14px;
  background: #faf5ff;
  border-radius: 8px;
  border: 1px solid #ede9fe;
}

/* ===== HIGHLIGHTS / KEY POINTS ===== */
.highlight-card {
  background: #18181b;
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 28px;
  color: #fff;
}

.highlight-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.benefits-list {
  display: grid;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: #d4d4d8;
  line-height: 1.6;
}

.benefits-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #7c3aed;
  border-radius: 6px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.step-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid #e4e4e7;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #7c3aed;
  color: #fff;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.88rem;
  color: #71717a;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-section {
  background: #fff;
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid #e4e4e7;
}

.faq-section h2 {
  font-family: 'Lora', serif;
  font-size: 1.65rem;
  color: #18181b;
  margin-bottom: 24px;
  font-weight: 700;
}

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid #f4f4f5;
}

.faq-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item:first-of-type {
  padding-top: 0;
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 6px;
}

.faq-item p {
  color: #71717a;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 44px 36px;
  background: linear-gradient(160deg, #18181b 0%, #27272a 100%);
  border-radius: 14px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  font-size: 0.95rem;
  position: relative;
}

.cta-btn {
  display: inline-block;
  background: #7c3aed;
  color: #fff;
  padding: 14px 44px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
  position: relative;
}

.cta-btn:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.45);
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: #18181b;
  color: #a1a1aa;
  padding: 48px 24px 28px;
  margin-top: 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #27272a;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
  color: #71717a;
}

.footer-links h5 {
  color: #d4d4d8;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #71717a;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #e4e4e7;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #52525b;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== POLICY PAGES ===== */
.policy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.policy-page h1 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: #18181b;
  margin-bottom: 8px;
  font-weight: 700;
}

.policy-meta {
  color: #a1a1aa;
  font-size: 0.88rem;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e7;
}

.policy-content {
  background: #fff;
  border-radius: 14px;
  padding: 44px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid #e4e4e7;
}

.policy-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #18181b;
  margin-top: 32px;
  margin-bottom: 14px;
  padding-top: 20px;
  border-top: 1px solid #f4f4f5;
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #27272a;
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-content p {
  margin-bottom: 12px;
  color: #52525b;
  font-size: 0.95rem;
  line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
  margin: 12px 0 12px 22px;
  list-style: disc;
}

.policy-content ol {
  list-style: decimal;
}

.policy-content li {
  margin-bottom: 7px;
  color: #52525b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-content a {
  color: #7c3aed;
  text-decoration: underline;
}

.policy-content a:hover {
  color: #5b21b6;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e4e4e7;
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #f5f3ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 6px;
}

.contact-card p {
  color: #71717a;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-card a {
  color: #7c3aed;
  font-weight: 500;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(160deg, #18181b 0%, #27272a 40%, #3f3f46 100%);
  color: #fff;
  padding: 52px 24px;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.about-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero {
    padding: 48px 20px;
  }

  .article-section,
  .faq-section {
    padding: 24px;
    border-radius: 12px;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .header-nav {
    display: none;
  }

  .policy-content {
    padding: 24px;
  }

  .highlight-card {
    padding: 24px;
  }

  .cta-section {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .article-section h2,
  .faq-section h2 {
    font-size: 1.3rem;
  }

  .policy-page h1 {
    font-size: 1.5rem;
  }
}


/* ===== BRAND LOGO ===== */
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brandmark img {
  width: 34px;
  height: 34px;
}

.brandmark .logo {
  display: inline-block;
}

.logo-accent {
  color: #c4b5fd;
}

/* ===== MODALS ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 980px);
  overflow: hidden;
  border-radius: 18px;
  background: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #18181b;
  color: #fff;
}

.modal-header h2 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  margin: 0;
}

.modal-close {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,0.08);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.modal-body {
  max-height: calc(88vh - 76px);
  overflow: auto;
  padding: 24px;
}

.modal-link {
  cursor: pointer;
}

.contact-grid.modal-contact {
  margin-top: 0;
}

.footer-links button,
.header-nav button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.footer-links button:hover,
.header-nav button:hover {
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .modal {
    padding: 12px;
  }

  .modal-body {
    padding: 16px;
  }

  .brandmark img {
    width: 30px;
    height: 30px;
  }
}
