@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ink: #000000;
  --on-dark: #ffffff;
  --canvas-night: #000000;
  --canvas-night-elevated: #0a0a0a;
  --canvas-light: #ffffff;
  --canvas-cream: #fbfbf5;
  --surface-elevated-dark: #1e2c31;
  --shade-30: #d4d4d8;
  --shade-40: #a1a1aa;
  --shade-50: #71717a;
  --shade-60: #52525b;
  --shade-70: #3f3f46;
  --hairline-light: #e4e4e7;
  --hairline-dark: #1e2c31;
  --aloe: #c1fbd4;
  --pistachio: #d4f9e0;
  --link-cool: #9dabad;
  --link-mint: #99b3ad;
  --radius-xs: 4px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 9999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas-light);
  font-feature-settings: "ss03";
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* TOP NAV */
.site-header {
  background: var(--canvas-night);
  height: 72px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-svg { width: 32px; height: 32px; flex-shrink: 0; }

.logo-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--on-dark);
  letter-spacing: 0.3px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.top-nav a {
  font-size: 14px;
  font-weight: 420;
  color: var(--shade-30);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: color 0.15s;
  text-decoration: none;
}

.top-nav a:hover { color: var(--on-dark); }
.top-nav a.active { color: var(--on-dark); font-weight: 550; }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-btn svg { display: block; }

@media (max-width: 1023px) {
  .top-nav { display: none; }
  .burger-btn { display: flex; }

  .top-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--canvas-night);
    padding: 24px 16px;
    gap: 4px;
    z-index: 99;
  }

  .top-nav.open a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }

  body.nav-open { overflow: hidden; }
}

/* HERO — CINEMATIC DARK */
.hero-cinematic {
  background: var(--canvas-night);
  color: var(--on-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.hero-cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(30,44,49,0.7) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: var(--shade-40);
  margin-bottom: 20px;
}

.hero-cinematic h1 {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0;
  color: var(--on-dark);
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-cinematic .hero-body {
  font-size: 18px;
  font-weight: 550;
  line-height: 1.56;
  color: var(--shade-40);
  max-width: 560px;
  margin-bottom: 36px;
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 420;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid var(--on-dark);
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  font-feature-settings: "ss03";
}

.btn-primary-pill:hover { background: var(--shade-70); text-decoration: none; }

.btn-aloe-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--aloe);
  color: var(--ink);
  font-size: 16px;
  font-weight: 420;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  font-feature-settings: "ss03";
}

.btn-aloe-pill:hover { background: #a8f5bf; text-decoration: none; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--canvas-light);
  color: var(--ink);
  font-size: 16px;
  font-weight: 420;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  font-feature-settings: "ss03";
}

.btn-outline-light:hover { background: var(--canvas-cream); text-decoration: none; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }
.section-cream { background: var(--canvas-cream); }
.section-pistachio { background: var(--pistachio); }
.section-dark { background: var(--canvas-night); color: var(--on-dark); }

.section-eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: var(--shade-50);
  margin-bottom: 12px;
}

.section-dark .section-eyebrow { color: var(--shade-40); }

.section-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 330;
  line-height: 1.14;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-dark .section-heading { color: var(--on-dark); }

.section-body {
  font-size: 18px;
  font-weight: 550;
  line-height: 1.56;
  color: var(--shade-50);
  max-width: 640px;
  margin-bottom: 40px;
}

.section-dark .section-body { color: var(--shade-40); }

/* CATEGORY PILL TAGS */
.pill-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.pill-mint { background: var(--aloe); color: var(--ink); }
.pill-shade { background: var(--shade-30); color: var(--ink); }
.pill-pistachio { background: var(--pistachio); color: var(--ink); }

/* CARD GRID */
.card-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}

/* PRICING / CATEGORY CARD */
.card {
  background: var(--canvas-light);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 8px rgba(0,0,0,0.04), 0 4px 4px rgba(0,0,0,0.04), 0 2px 2px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.04);
}

.card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.card p { font-size: 16px; font-weight: 420; color: var(--shade-60); line-height: 1.5; margin-bottom: 16px; }

.card-aloe { background: var(--aloe); border-color: transparent; }
.card-dark {
  background: var(--canvas-night-elevated);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 2px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.04);
}

.card-dark h3 { color: var(--on-dark); }
.card-dark p { color: var(--shade-40); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

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

/* FULL-BLEED PHOTO BAND */
.photo-band {
  position: relative;
  background: var(--canvas-night);
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.7;
}

.photo-band-caption {
  position: absolute;
  bottom: 24px;
  left: 32px;
  font-size: 13px;
  color: var(--shade-40);
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--shade-50);
  padding: 16px 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--shade-50); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--shade-30); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

/* PAGE HEADER */
.page-hero {
  background: var(--canvas-cream);
  border-bottom: 1px solid var(--hairline-light);
  padding: 48px 0 40px;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 330;
  line-height: 1.14;
  color: var(--ink);
  margin-bottom: 8px;
}

.page-hero .page-sub {
  font-size: 18px;
  font-weight: 550;
  color: var(--shade-50);
  line-height: 1.5;
}

/* PAGE CONTENT */
.page-content-area {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.article h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.28;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 12px;
  letter-spacing: 0.42px;
}

.article h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.article p {
  font-size: 16px;
  font-weight: 420;
  line-height: 1.7;
  color: var(--shade-60);
  margin-bottom: 18px;
}

.article ul, .article ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.article li {
  font-size: 16px;
  font-weight: 420;
  line-height: 1.6;
  color: var(--shade-60);
  margin-bottom: 6px;
}

.article img {
  border-radius: var(--radius-lg);
  margin: 28px 0;
  width: 100%;
}

.article figcaption {
  font-size: 13px;
  color: var(--shade-50);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 28px;
}

/* TOC */
.toc {
  background: var(--canvas-cream);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.toc-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: var(--shade-50);
  margin-bottom: 12px;
}

.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 6px; }
.toc a { font-size: 14px; color: var(--shade-60); }
.toc a:hover { color: var(--ink); text-decoration: underline; }

/* DISCLAIMER NOTE */
.disclaimer-note {
  background: var(--pistachio);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 420;
  color: var(--shade-60);
  margin: 24px 0;
}

/* RELATED */
.related-block {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline-light);
}

.related-block h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 767px) { .related-grid { grid-template-columns: 1fr; } }

/* COMPARISON TABLE */
.comparison-wrap {
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 24px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th {
  background: var(--ink);
  color: var(--on-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 14px 20px;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline-light);
  color: var(--shade-60);
  vertical-align: top;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--canvas-cream); }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--canvas-night);
  color: var(--on-dark);
  padding: 16px 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner p { flex: 1; min-width: 200px; line-height: 1.5; color: var(--shade-40); }
.cookie-banner p a { color: var(--link-mint); }
.cookie-banner-btns { display: flex; gap: 8px; flex-shrink: 0; }

.btn-cookie-accept {
  background: var(--aloe);
  color: var(--ink);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid var(--shade-70);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.hidden { display: none; }

/* FOOTER */
.site-footer {
  background: var(--canvas-night);
  color: var(--on-dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-dark);
}

@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-col p {
  font-size: 14px;
  color: var(--shade-40);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 300px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--link-cool);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--on-dark); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-copy {
  font-size: 13px;
  color: var(--shade-50);
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--shade-50);
  text-decoration: none;
  text-decoration: underline;
}

.footer-legal-links a:hover { color: var(--on-dark); }

/* CONTACT FORM */
.contact-form { max-width: 540px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  height: 44px;
  background: var(--canvas-light);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius-md);
  padding: 0 12px;
  font-size: 16px;
  font-weight: 420;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.15s;
  outline: none;
  font-feature-settings: "ss03";
}

.form-group input:focus { border: 2px solid var(--ink); }

.form-submit-btn {
  background: var(--ink);
  color: var(--on-dark);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 420;
  cursor: pointer;
  font-family: inherit;
  font-feature-settings: "ss03";
  transition: background 0.15s;
}

.form-submit-btn:hover { background: var(--shade-70); }
.form-submit-btn:disabled { background: var(--shade-30); color: var(--shade-50); cursor: not-allowed; }

.form-confirm {
  display: none;
  background: var(--aloe);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 16px;
}

.form-error { font-size: 12px; color: #c0392b; margin-top: 4px; display: none; }

/* CHECKLIST */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-light);
  font-size: 15px;
  font-weight: 420;
  color: var(--shade-60);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "→";
  color: var(--ink);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--hairline-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.faq-icon { font-size: 20px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  font-weight: 420;
  color: var(--shade-60);
  line-height: 1.6;
}

.faq-item.open .faq-answer { display: block; }
