/* Safari compatibility */
* { -webkit-box-sizing: border-box; }
img, video { -webkit-transform: translateZ(0); }

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

:root {
  --bg: #FAFAF8;
  --text: #1a1a1a;
  --text-secondary: #4a4a4a;
  --accent: #6B5CE7;
  --accent-light: #E8E4FF;
  --accent-dark: #4A3DB5;
  --border: #E5E3DF;
  --card-bg: #FFFFFF;
  --warm-gray: #F5F4F1;
  --success: #2E8B57;
  --danger: #C0392B;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero-wrapper {
  background: #0D0B1A;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-video-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(13,11,26,0.3) 0%, rgba(13,11,26,0.85) 70%, rgba(13,11,26,1) 100%);
}
.hero {
  position: relative;
  z-index: 2;
  padding: 48px 0 56px;
  text-align: center;
}
.hero-logo {
  width: 160px;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.25;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.hero .subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero .differentiator {
  display: inline-block;
  background: rgba(107,92,231,0.2);
  border: 1px solid rgba(107,92,231,0.4);
  color: #C4B5FD;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-product-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
}
.hero-product-row img {
  height: 220px;
  width: auto;
  border-radius: 12px;
  filter: drop-shadow(0 8px 32px rgba(107,92,231,0.3));
  transition: transform 0.3s;
}
.hero-product-row img:hover {
  transform: translateY(-4px);
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(107,92,231,0.4);
  margin-top: 8px;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,92,231,0.5);
}
.hero-secondary {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.hero-secondary:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 600px) {
  .hero-wrapper { min-height: auto; }
}

/* Article body */
.article-body {
  padding: 40px 0;
}
.article-body p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-secondary);
}
.article-body p strong {
  color: var(--text);
}
.article-body h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 26px;
  margin: 48px 0 20px;
  color: var(--text);
  line-height: 1.35;
}
.article-body h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  margin: 36px 0 14px;
  color: var(--text);
}

/* CTA Box */
.cta-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  margin: 36px 0;
  border-radius: 0 12px 12px 0;
}
.cta-box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 0;
}
.cta-box a {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Quick benefits */
.quick-benefits {
  background: linear-gradient(135deg, #F3F0FF 0%, #EDE9FE 100%);
  border: 1px solid #D4CFFF;
  border-radius: 16px;
  padding: 28px 32px 24px;
  margin: 36px 0;
}
.quick-benefits h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  color: var(--text);
  margin: 0 0 18px 0;
  padding: 0;
}
.quick-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.quick-benefit-item:last-child { margin-bottom: 0; }
.qb-check {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .quick-benefits { padding: 24px 20px 20px; }
  .quick-benefits h3 { font-size: 18px; }
  .quick-benefit-item { font-size: 15px; }
  .qb-check { width: 24px; height: 24px; font-size: 12px; }
}

/* Product showcase */
.product-showcase {
  display: flex;
  gap: 36px;
  align-items: center;
  margin: 48px 0;
  padding: 40px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-showcase:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(107, 92, 231, 0.1);
}
.product-showcase img {
  width: 220px;
  height: auto;
  flex-shrink: 0;
  border-radius: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}
.product-showcase .product-info h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  margin: 0 0 8px;
}
.product-showcase .product-info .strain-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-showcase .product-info p {
  font-size: 15px;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .product-showcase {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }
  .product-showcase img { width: 160px; }
}

/* Section wrappers for alternating backgrounds */
.section-light {
  background: var(--bg);
  padding: 8px 0;
}
.section-warm {
  background: var(--warm-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.section-warm .benefits-section {
  background: transparent;
  border: none;
  box-shadow: none;
}
.section-warm .stat-callout .stat-item {
  background: white;
}

/* Benefits section */
.benefits-section {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 48px 40px;
  margin: 48px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.benefits-section h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 36px;
}
.benefit-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.benefit-item:last-child { margin-bottom: 0; }
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 32px;
  height: 32px;
}
.benefit-icon.icon-shield { background: linear-gradient(135deg, #E8E4FF, #D4CFFF); }
.benefit-icon.icon-brain { background: linear-gradient(135deg, #E0F2FE, #BAE6FD); }
.benefit-icon.icon-bolt { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.benefit-icon.icon-lab { background: linear-gradient(135deg, #F0FDF4, #BBF7D0); }
.benefit-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.benefit-item p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .benefits-section { padding: 32px 24px; }
}

/* Stat callout */
.stat-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.stat-item .number {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.stat-item .label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stat-callout { grid-template-columns: 1fr; gap: 12px; }
  .stat-item { padding: 20px; display: flex; align-items: center; gap: 16px; text-align: left; }
}

@media (max-width: 600px) {
  /* Hero mobile */
  .hero { padding: 36px 0 40px; }
  .hero-logo { width: 120px; margin-bottom: 20px; }
  .hero .differentiator { font-size: 11px; padding: 5px 12px; }
  .hero .subtitle { font-size: 15px; margin-bottom: 24px; }
  .hero-product-row { gap: 16px; margin: 24px 0; }
  .hero-product-row img { height: 140px; }
  .hero-cta { padding: 14px 32px; font-size: 15px; }

  /* Article body mobile */
  .article-body h2 { font-size: 22px; margin: 36px 0 16px; }
  .article-body h3 { font-size: 18px; }
  .article-body p { font-size: 16px; }
  .drop-cap::first-letter { font-size: 44px; }

  /* Benefits mobile */
  .benefits-section { padding: 32px 24px; }
  .benefit-item { gap: 16px; }
  .benefit-icon { width: 52px; height: 52px; border-radius: 12px; }
  .benefit-icon svg { width: 26px; height: 26px; }

  /* Comparison table mobile */
  .comparison-table { font-size: 12px; }
  .comparison-table thead th { padding: 12px 6px; font-size: 11px; letter-spacing: 0; }
  .comparison-table thead th:first-child { width: 35%; }
  .comparison-table tbody td { padding: 10px 6px; font-size: 12px; }

  /* Testimonials mobile */
  .testimonials-wrapper { padding: 40px 0; }
  .testimonials-heading { font-size: 22px; margin-bottom: 24px; }
  .testimonial-card .testimonial-avatar-hero { height: 160px; }
  .testimonial-card .testimonial-body { padding: 16px 20px 20px; }
  .testimonial-card blockquote { font-size: 14px; }

  /* Final CTA mobile */
  .final-cta { padding: 36px 24px; margin: 36px 0; border-radius: 16px; }
  .final-cta h2 { font-size: 22px; }
  .final-cta .cta-btn { padding: 14px 28px; font-size: 15px; }

  /* Pull quote mobile */
  .pull-quote { padding: 16px 20px; }
  .pull-quote p { font-size: 16px; }

  /* CTA box mobile */
  .cta-box { padding: 20px; }

  /* Video blocks */
  .video-block { margin: 32px 0; }
}

/* Comparison table */
.comparison-section {
  margin: 48px 0;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.comparison-table thead th {
  padding: 18px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table thead th:first-child {
  text-align: left;
  width: 45%;
}
.comparison-table thead th.highlight {
  background: var(--accent);
  color: white;
}
.comparison-table thead th:not(.highlight) {
  background: var(--warm-gray);
  color: var(--text-secondary);
}
.comparison-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.comparison-table tbody td:first-child {
  text-align: left;
  color: var(--text-secondary);
  font-weight: 500;
}
.comparison-table tbody td.highlight {
  background: rgba(107, 92, 231, 0.03);
}
.check { color: var(--success); font-size: 18px; font-weight: 700; }
.cross { color: var(--danger); font-size: 18px; font-weight: 700; }

/* Testimonials */
.testimonials-wrapper {
  background: var(--warm-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.testimonials {
  margin: 0;
}
.testimonials-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 26px;
  text-align: center;
  margin-bottom: 36px;
  color: var(--text);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonial-card {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.testimonial-card .testimonial-avatar-hero {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.testimonial-card .testimonial-body {
  padding: 20px 24px 24px;
}
.testimonial-card .stars {
  color: #F59E0B;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 3px;
  display: block;
}
.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  font-family: 'Libre Baskerville', serif;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-card .attribution {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-footer .attribution {
  padding-left: 0;
}
.testimonial-avatar {
  display: none;
}

@media (min-width: 601px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Residents vs Tourists graphic placeholder */
.visual-placeholder {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(107, 92, 231, 0.08);
}
.visual-placeholder img {
  display: block;
  width: 100%;
  height: auto;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
  color: white;
}
.final-cta h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .cta-btn {
  display: inline-block;
  background: white;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.final-cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
.final-cta .promo-code {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}

/* Disclosure */
.disclosure {
  text-align: center;
  padding: 40px 0;
  font-size: 12px;
  color: #999;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

/* Drop cap */
.drop-cap::first-letter {
  font-family: 'Libre Baskerville', serif;
  font-size: 56px;
  float: left;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 700;
}

/* Pull quote */
/* Video */
.video-block {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(107, 92, 231, 0.12);
  border: 1px solid var(--border);
}
.video-block video {
  display: block;
  width: 100%;
  height: auto;
}

.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--warm-gray);
  border-radius: 0 12px 12px 0;
}
.pull-quote p {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
}