:root {
  --bg: #fff8f5;
  --paper: #ffffff;
  --ink: #2c3e50;
  --muted: #6b7280;
  --brand: #e74c3c;
  --brand-dark: #c0392b;
  --ok: #e67e22;
  --accent: #f39c12;
  --border: #fde8e4;
  --light-accent: #fff0ed;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.notice {
  width: 100%;
  background: linear-gradient(135deg, var(--ink) 0%, #34495e 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.625rem 0.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.15);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 1.25rem auto 0;
  padding: 1.25rem;
}

.hero-card {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 60%);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--brand-dark);
  font-weight: 700;
  background: var(--light-accent);
  border: 2px solid var(--brand);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem);
  line-height: 1.2;
  margin: 0.8rem 0 1rem;
  color: var(--ink);
}

h2 {
  color: var(--ink);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  color: var(--ink);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

h4 {
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

p.lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.25);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(231, 76, 60, 0.35);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: none;
}

.secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.hero-media {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf8 100%);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(231, 76, 60, 0.18);
}

.hero-media .cover {
  width: 100%;
  border-radius: 16px;
  border: 3px solid var(--light-accent);
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(135deg, #ffe8e0 0%, #ffd4c4 100%);
  box-shadow: 0 8px 16px rgba(231, 76, 60, 0.12);
}

.author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: #fff;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(12, 1fr);
}

.card {
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--ok) 100%);
  border-radius: 0 0 18px 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::after {
  opacity: 1;
}

.section-title {
  font-size: 1.35rem;
  margin: 0.2rem 0 0.8rem;
}

.muted {
  color: var(--muted);
}

.icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.col-4 {
  grid-column: span 4;
}

.col-6 {
  grid-column: span 6;
}

.col-8 {
  grid-column: span 8;
}

.col-12 {
  grid-column: span 12;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.checklist li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.4rem 0;
}

.pullquote {
  font-size: 1.05rem;
  border-left: 5px solid var(--accent);
  padding: 1.25rem;
  padding-left: 1.5rem;
  margin: 1rem 0 0;
  color: #6b5504;
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 50%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(214, 137, 16, 0.08);
  position: relative;
}

.pullquote::before {
  content: '🔥';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  opacity: 0.5;
}

footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 2fr 3fr;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a {
  display: inline-block;
  margin: 0.25rem 0.75rem 0.25rem 0;
  color: var(--brand-dark);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

small, .disclosures {
  color: var(--muted);
  font-size: 0.85rem;
}

.research-list {
  padding-left: 1rem;
  margin: 0.4rem 0;
}

.research-list li {
  margin: 0.35rem 0;
}

.research-list a {
  color: var(--brand-dark);
  text-decoration: none;
}

.research-list a:hover {
  text-decoration: underline;
}

.badge {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  background: #fafafa;
}

.media-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #fffaf8 0%, #ffffff 100%);
  border: 2px solid var(--light-accent);
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.05);
}

.media-block:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.15);
  transform: translateX(4px);
}

.media-illus {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--light-accent) 0%, #ffffff 100%);
  display: grid;
  place-items: center;
  border: 2px solid var(--brand);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.12);
}

.media-illus svg {
  stroke: var(--brand);
}


.footer-legal {
  background: linear-gradient(135deg, var(--ink) 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.footer-legal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--ok) 50%, var(--accent) 100%);
}

.legal-info {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.legal-info p {
  margin: 0.25rem 0;
}

.copyright {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.page-header {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
  padding: 3rem 0;
  text-align: center;
  box-shadow: 0 4px 24px rgba(231, 76, 60, 0.1);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--ok) 50%, var(--accent) 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--ink);
  margin: 0;
}

.main-nav {
  background: linear-gradient(135deg, var(--ink) 0%, #34495e 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.15);
}

.main-nav .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(231, 76, 60, 0.15);
}

.main-nav a:hover::before {
  width: 80%;
}

.page-main {
  background: white;
  margin: 2rem auto;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(231, 76, 60, 0.12);
  max-width: 1100px;
  border: 2px solid var(--border);
  position: relative;
}

.page-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand) 0%, var(--ok) 100%);
  border-radius: 24px 0 0 24px;
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  color: var(--brand);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.section h3 {
  color: var(--ok);
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

.section ul {
  margin: 1rem 0 1rem 2rem;
}

.section li {
  margin-bottom: 0.5rem;
}

.text-link {
  color: var(--brand);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.warning-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  border: 2px solid var(--accent);
  border-left: 6px solid var(--accent);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 16px rgba(214, 137, 16, 0.1);
}

.warning-box h4 {
  color: #856404;
  margin-bottom: 0.6rem;
}

.warning-box p {
  color: #856404;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-card, .contact-form-card {
  background: linear-gradient(135deg, #fffaf8 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--border);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover, .contact-form-card:hover {
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
  transform: translateY(-2px);
}

.contact-info-card h3, .contact-form-card h3 {
  color: var(--brand);
  margin-bottom: 1.25rem;
}

.contact-info-card p {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:hover, .form-group textarea:hover {
  border-color: var(--brand);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.12);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(231, 76, 60, 0.4);
}

.info-box {
  background: linear-gradient(135deg, var(--light-accent) 0%, #e8f5e8 100%);
  padding: 1.75rem;
  border-radius: 16px;
  margin-top: 2.5rem;
  border: 2px solid var(--ok);
  border-left: 6px solid var(--ok);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.08);
}

.info-box h3 {
  color: var(--ok);
  margin-bottom: 1rem;
}

.info-box p {
  margin-bottom: 0.6rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .col-4, .col-6, .col-8 {
    grid-column: span 12;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

  .page-main {
    padding: 2rem 1.5rem;
  }
}