:root {
  --navy: #1e3a5f;
  --navy-dark: #142a45;
  --teal: #2d8a8a;
  --coral: #d65a4a;
  --cream: #fbf8f3;
  --sand: #f7f4ec;
  --ink: #1a1a1a;
  --gray: #888888;
  --light-gray: #e8e8e8;
  --white: #ffffff;
  --green: #2d8a4a;
  --amber: #d68a1f;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(30, 58, 95, 0.10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: var(--navy); }
a:hover { color: var(--coral); }

.skip-link {
  position: absolute;
  left: -9999px;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}
.logo span { color: var(--coral); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
}
.nav-links a:hover { color: var(--coral); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-cta:hover { background: var(--navy-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: #b94a3d;
  color: var(--white);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-large { padding: 0.85rem 1.6rem; font-size: 1.05rem; }
.btn-xlarge { padding: 1rem 2rem; font-size: 1.15rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,58,95,0.92) 0%, rgba(30,58,95,0.55) 55%, rgba(30,58,95,0.15) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.hero-content .eyebrow { color: #7dd3d3; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.trust-icon {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.trust-item strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* Sections */
section { padding: 4rem 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 2rem;
  text-align: center;
}

/* Categories */
.categories { background: var(--sand); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: transform .15s;
}
.category-card:hover { transform: translateY(-3px); }

.category-icon { font-size: 2rem; }
.category-card strong { color: var(--navy); }
.category-card span { font-size: 0.82rem; color: var(--gray); }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-grid-large {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.14);
}

.card-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sand);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s;
}
.product-card:hover .card-image img { transform: scale(1.03); }

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.card-body h3 a { text-decoration: none; color: var(--navy); }
.card-body h3 a:hover { color: var(--coral); }

.card-body p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0 0 1rem;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
}
.price-large { font-size: 2rem; }

/* Bundle */
.bundle-section { background: var(--sand); }
.bundle-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
  align-items: center;
}
.bundle-text h2 {
  color: var(--navy);
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
}
.bundle-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.bundle-text ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
}
.bundle-text li { margin-bottom: 0.35rem; }

.starter-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.starter-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.starter-list a {
  font-weight: 600;
  text-decoration: none;
}
.starter-list a:hover { color: var(--coral); }

.bundle-price {
  text-align: center;
}
.bundle-strike {
  display: block;
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1.3rem;
}
.bundle-now {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
}
.bundle-note {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
}

/* FAQ */
.faq { background: var(--white); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--light-gray);
  padding: 1rem 0;
}
.faq-item summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.05rem;
}
.faq-item p {
  color: var(--gray);
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

/* Newsletter */
.newsletter { background: var(--navy); }
.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  color: var(--white);
}
.newsletter-card h2 { margin: 0 0 0.5rem; }
.newsletter-card p { opacity: 0.9; margin: 0; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: none;
  font-size: 1rem;
}
.newsletter-form button { white-space: nowrap; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li { margin-bottom: 0.35rem; }
.footer-grid a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.footer-grid a:hover { color: var(--white); }
.copyright {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* Product detail */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.page-header .eyebrow { color: var(--teal); margin-bottom: 0.5rem; }
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
}
.page-header p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.product-grid-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.product-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-category {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.product-info h1 {
  font-size: 2rem;
  color: var(--navy);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.product-tagline {
  font-size: 1.1rem;
  color: var(--gray);
  margin: 0 0 1.5rem;
}

.product-price-box {
  margin-bottom: 1.5rem;
}
.price-note {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--light-gray);
  padding-top: 1.25rem;
}
.product-meta li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.product-content { background: var(--white); }

.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 3rem;
  align-items: start;
}

.content-main h2 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.content-main h2:first-child { margin-top: 0; }

.content-main ul {
  padding-left: 1.2rem;
  margin-bottom: 1.25rem;
}
.content-main li { margin-bottom: 0.4rem; }

.covered-list { columns: 1; }
@media (min-width: 600px) { .covered-list { columns: 2; } }
.covered-list li { break-inside: avoid; }

.source-list li { font-size: 0.9rem; color: var(--gray); }

.testimonial {
  background: var(--sand);
  border-left: 4px solid var(--teal);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testimonial p { margin: 0 0 0.5rem; font-style: italic; }
.testimonial cite { font-size: 0.85rem; color: var(--gray); }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-card strong {
  display: block;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.sidebar-card .btn { width: 100%; margin: 1rem 0; }
.fine-print {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0;
}

.sticky {
  position: sticky;
  top: 6rem;
}

/* Related */
.related { background: var(--cream); }

/* Bundle detail */
.bundle-hero {
  background: var(--sand);
  padding: 4rem 0;
}
.bundle-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.bundle-hero-text h1 {
  font-size: 2.4rem;
  color: var(--navy);
  margin: 0 0 1rem;
}
.bundle-lead {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.bundle-price-box { margin-bottom: 1rem; }
.bundle-hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.bundle-hero-images img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bundle-contents { background: var(--white); }
.bundle-list {
  display: grid;
  gap: 1.5rem;
}
.bundle-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.bundle-item img { width: 100%; border-radius: var(--radius); }
.bundle-item h3 { margin: 0 0 0.4rem; color: var(--navy); }
.bundle-item p { margin: 0 0 0.5rem; color: var(--gray); font-size: 0.95rem; }
.bundle-item .price { display: block; margin: 0.5rem 0; font-size: 1.15rem; }
.bundle-item .btn { margin-top: 0.5rem; }

.bundle-policy { background: var(--cream); }
.policy-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.policy-card h2 { color: var(--navy); margin: 0 0 0.75rem; }

/* Prose pages */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.prose p { margin-bottom: 1rem; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--light-gray);
  color: var(--navy);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
}
.empty-state p { margin-bottom: 0.75rem; color: var(--gray); }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-card, .newsletter-card, .product-grid-detail, .content-grid, .bundle-hero-grid {
    grid-template-columns: 1fr;
  }
  .product-media { order: 1; }
  .product-info { order: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .bundle-hero-images { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { min-height: 420px; }
  .hero-overlay { background: rgba(30,58,95,0.82); }
  .trust-grid { grid-template-columns: 1fr; }
  .bundle-hero-images { grid-template-columns: 1fr 1fr; }
  .bundle-item { grid-template-columns: 80px 1fr; }
  .newsletter-form { flex-direction: column; }
}
