:root {
  --ink: #101c2c;
  --navy: #0b1726;
  --navy-soft: #13263b;
  --teal: #176b61;
  --teal-dark: #0e4b45;
  --gold: #c49a52;
  --gold-soft: #ead9b9;
  --ivory: #f7f4ed;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --muted: #64707d;
  --line: #dfe3e2;
  --shadow: 0 24px 70px rgba(11, 23, 38, 0.11);
  --shadow-soft: 0 12px 34px rgba(11, 23, 38, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.top-note {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 20px;
  color: rgba(255,255,255,.76);
  background: #07111e;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.top-note a { color: #e9c987; font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 11px clamp(20px, 5vw, 78px);
  color: #fff;
  background: rgba(11, 23, 38, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 36px rgba(3,10,18,.16);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .01em; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), #25476d);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  box-shadow: inset 0 1px rgba(255,255,255,.18), 0 8px 20px rgba(0,0,0,.18);
  font-family: Georgia, serif;
  font-size: .86rem;
}
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); color: rgba(255,255,255,.68); font-size: .9rem; }
.nav a { transition: color .18s ease; }
.nav a:hover { color: #fff; }
.nav-cta { padding: 9px 14px; color: #fff !important; background: rgba(196,154,82,.18); border: 1px solid rgba(234,217,185,.4); border-radius: 999px; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(92vh - 104px);
  overflow: hidden;
  padding: clamp(70px, 10vw, 132px) clamp(20px, 7vw, 110px);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -2; object-fit: cover; object-position: center; transform: scale(1.01); }
.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 40%, rgba(19,72,79,.12), transparent 28%),
    linear-gradient(90deg, rgba(5,13,23,.98) 0%, rgba(7,18,31,.9) 42%, rgba(7,18,31,.38) 70%, rgba(7,18,31,.12) 100%),
    linear-gradient(0deg, rgba(5,13,23,.48), transparent 50%);
}
.hero-content { width: min(760px, 100%); }
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #d8b876; }
h1 { margin: 0; max-width: 12ch; color: #fff; font-size: clamp(3.2rem, 7vw, 6.7rem); line-height: .94; text-shadow: 0 16px 46px rgba(0,0,0,.32); }
h1 em { color: #e5c27d; font-weight: 500; }
h2 { margin: 0; font-size: clamp(2.15rem, 4.6vw, 4.1rem); line-height: 1.02; }
h3 { margin: 0; font-size: 1.36rem; line-height: 1.16; }
.hero-copy { max-width: 650px; margin: 26px 0 0; color: rgba(239,244,247,.78); font-size: clamp(1.04rem, 1.7vw, 1.23rem); }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.hero-points span { padding: 8px 12px; color: rgba(255,255,255,.86); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: .82rem; font-weight: 750; backdrop-filter: blur(8px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, max-content); gap: 26px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-trust div { display: grid; gap: 1px; }
.hero-trust strong { color: #d8b876; font-family: Georgia, serif; font-size: 1rem; }
.hero-trust span { color: rgba(255,255,255,.62); font-size: .78rem; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; text-align: center; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.primary, .buy { color: #fff; background: linear-gradient(135deg, #1c7167, #104f4a); box-shadow: 0 13px 28px rgba(11,70,64,.25); }
.primary:hover, .buy:hover { background: linear-gradient(135deg, #218177, #0e443f); box-shadow: 0 16px 34px rgba(11,70,64,.3); }
.secondary { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
.secondary:hover { background: rgba(255,255,255,.14); }

.section { padding: clamp(70px, 9vw, 124px) clamp(20px, 7vw, 110px); }
.intro { display: grid; grid-template-columns: minmax(0,.8fr) minmax(360px,1.1fr); gap: clamp(34px,7vw,90px); align-items: start; background: var(--paper); }
.path-grid { display: grid; gap: 12px; counter-reset: path; }
.path-grid div { position: relative; display: grid; gap: 5px; padding: 20px 20px 20px 72px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.path-grid div::before { position: absolute; left: 20px; top: 19px; display: grid; width: 36px; height: 36px; place-items: center; color: #fff; background: var(--navy-soft); border-radius: 50%; content: counter(path); counter-increment: path; font-family: Georgia, serif; }
.path-grid strong { color: var(--ink); }
.path-grid span, .split p { color: var(--muted); font-size: 1.01rem; }

.offer { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.78fr); gap: clamp(34px,7vw,90px); align-items: center; color: #fff; background: var(--navy); }
.offer .section-kicker { color: #d8b876; }
.offer-copy p { max-width: 660px; color: rgba(255,255,255,.65); }
.offer-panel { display: grid; gap: 14px; padding: clamp(26px,4vw,42px); background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04)); border: 1px solid rgba(234,217,185,.24); border-radius: 24px; box-shadow: 0 28px 60px rgba(0,0,0,.22); }
.offer-panel > span { color: #d8b876; font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.offer-panel > strong { font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.25; }
.offer-panel p { margin: 0; color: rgba(255,255,255,.66); }

.campaign { display: grid; grid-template-columns: minmax(280px,.66fr) minmax(0,1fr); gap: clamp(38px,8vw,100px); align-items: center; background: #fff; }
.campaign-top { background: linear-gradient(145deg,#f7f4ed,#fff); border-bottom: 1px solid var(--line); }
.campaign-visual { display: block; width: min(100%,520px); justify-self: center; overflow: hidden; border-radius: 24px; box-shadow: 0 30px 80px rgba(5,17,30,.22); transition: transform .25s ease, box-shadow .25s ease; }
.campaign-visual:hover { transform: translateY(-4px); box-shadow: 0 36px 90px rgba(5,17,30,.28); }
.campaign-visual img { width: 100%; height: auto; }
.campaign-copy { max-width: 680px; }
.campaign-copy h2 { margin-bottom: 22px; }
.campaign-copy > p:last-of-type { color: var(--muted); font-size: 1.08rem; }
.campaign-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.campaign-secondary { color: var(--navy); background: var(--ivory); border-color: var(--line); }

.products { position: relative; background: var(--ivory); }
.section-heading, .products-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.7fr); gap: clamp(28px,6vw,74px); align-items: end; margin-bottom: 42px; }
.section-heading > p, .products-heading > p { margin: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.product-card { position: relative; min-width: 0; overflow: hidden; background: #fff; border: 1px solid rgba(16,28,44,.08); border-radius: 22px; box-shadow: var(--shadow); }
.real-product-card { display: grid; grid-template-columns: minmax(180px,.42fr) minmax(0,1fr); }
.featured-product { border-color: rgba(196,154,82,.52); }
.premium-product-card { grid-column: 1 / -1; grid-template-columns: minmax(230px,.34fr) minmax(0,1fr); border-color: rgba(23,107,97,.36); }
.product-badge { position: absolute; z-index: 3; top: 16px; right: 16px; padding: 7px 11px; color: #3a2b10; background: #f1d99e; border-radius: 999px; box-shadow: 0 8px 18px rgba(38,31,18,.15); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.premium-badge { color: #fff; background: var(--teal-dark); }
.pdf-cover-frame { display: grid; align-items: stretch; min-height: 440px; margin: 0; padding: 20px; background: linear-gradient(145deg,#e7eceb,#dce4e4); border-right: 1px solid rgba(16,28,44,.08); }
.pdf-cover-frame img { width: 100%; height: 100%; max-height: 480px; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 44px rgba(16,28,44,.2); transition: transform .35s ease; }
.product-card:hover .pdf-cover-frame img { transform: translateY(-4px) scale(1.01); }
.product-body { display: grid; align-content: start; gap: 14px; padding: 28px; }
.product-level { margin: 0; color: var(--teal) !important; font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-body > p:not(.product-level) { min-height: 92px; margin: 0; color: var(--muted); }
.premium-product-card .product-body > p { min-height: 0; }
.product-points { display: grid; gap: 8px; margin: 2px 0; padding: 0; list-style: none; font-size: .92rem; font-weight: 700; }
.product-points li { position: relative; padding-left: 20px; }
.product-points li::before { position: absolute; top: .6em; left: 0; width: 8px; height: 8px; content: ""; background: var(--gold); border-radius: 50%; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 13px; border-top: 1px solid var(--line); }
.product-meta span { color: var(--muted); font-size: .85rem; }
.product-meta strong { color: var(--teal-dark); font-family: Georgia,serif; font-size: 1.3rem; }
.buy { width: 100%; }

.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.82fr); gap: clamp(36px,7vw,90px); align-items: start; background: #fff; }
.split h2 { margin-bottom: 20px; }
.trust-list { display: grid; gap: 12px; }
.trust-list div { display: grid; gap: 4px; padding: 20px; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: 0 14px 14px 0; }
.trust-list span { color: var(--muted); }

.resources { background: #eef2f0; }
.resource-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.resource-grid article { display: grid; gap: 10px; padding: 26px; background: rgba(255,255,255,.86); border: 1px solid rgba(16,28,44,.08); border-radius: 18px; box-shadow: var(--shadow-soft); }
.resource-grid span { color: var(--teal); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.resource-grid p { margin: 0; color: var(--muted); }

.blog-preview { background: #fff; }
.article-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.article-card { display: grid; align-content: start; gap: 12px; min-height: 290px; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.article-card > span { color: var(--teal); font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.article-card p { margin: 0; color: var(--muted); }
.article-card a { align-self: end; margin-top: auto; color: var(--teal-dark); font-weight: 850; }
.article-card a:hover { color: var(--gold); }
.blog-button { margin-top: 26px; color: #fff; background: var(--navy-soft); }

.blog-header { position: static; }
.blog-hero { padding: clamp(70px,9vw,120px) clamp(20px,7vw,110px); color: #fff; background: linear-gradient(135deg,var(--navy),#17384a); }
.blog-hero h1 { max-width: 14ch; font-size: clamp(3rem,6vw,5.7rem); }
.blog-hero p { max-width: 720px; color: rgba(255,255,255,.7); font-size: 1.1rem; }
.blog-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.blog-hero-actions .secondary { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.featured-article { color: #fff; border-color: rgba(199,154,76,.45); background: linear-gradient(145deg,#0a1f2f,#163b47); }
.featured-article > span, .featured-article a { color: #e2b86c; }
.featured-article p { color: rgba(255,255,255,.72); }
.aside-note { font-size: .82rem; color: var(--muted); }
.blog-list { background: var(--ivory); }
.article-page { background: var(--paper); }
.article-shell { display: grid; grid-template-columns: minmax(0,760px) minmax(220px,300px); justify-content: center; gap: clamp(34px,6vw,80px); padding: clamp(60px,8vw,110px) 20px; }
.article-content { padding: clamp(28px,5vw,58px); background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.article-content .article-meta { color: var(--teal); font-size: .76rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.article-content h1 { max-width: none; color: var(--ink); font-size: clamp(2.4rem,5vw,4.4rem); text-shadow: none; }
.article-content h2 { margin-top: 42px; font-size: clamp(1.65rem,3vw,2.35rem); }
.article-content p, .article-content li { color: #485563; font-size: 1.04rem; }
.article-content .lead { color: var(--ink); font-size: 1.2rem; }
.article-content .notice { margin: 30px 0; padding: 18px 20px; background: #f1f5f3; border-left: 4px solid var(--teal); border-radius: 0 12px 12px 0; }
.article-aside { align-self: start; position: sticky; top: 92px; display: grid; gap: 14px; padding: 24px; color: #fff; background: var(--navy); border-radius: 18px; }
.article-aside p { margin: 0; color: rgba(255,255,255,.68); }
.article-aside .button { background: var(--teal); }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
details { padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 8px 22px rgba(11,23,38,.04); }
summary { cursor: pointer; font-weight: 850; }
details p { margin: 12px 0 0; color: var(--muted); }

.site-footer { display: flex; justify-content: space-between; gap: 28px; padding: 42px clamp(20px,7vw,110px); color: rgba(255,255,255,.64); background: #07111e; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer p { max-width: 720px; margin: 6px 0 0; }
.site-footer strong { color: #fff; font-family: Georgia,serif; font-size: 1.15rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.footer-links a:hover { color: #fff; }
.social-link { padding: 8px 12px; color: #fff !important; background: linear-gradient(135deg,#7c3aed,#db2777,#f59e0b); border-radius: 999px; box-shadow: 0 8px 22px rgba(219,39,119,.2); }
.tiktok-link { background: linear-gradient(135deg,#111827,#252f3f); box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.x-link { background: #050505; box-shadow: 0 8px 22px rgba(0,0,0,.25); }

@media (max-width: 1050px) {
  .real-product-card { grid-template-columns: 1fr; }
  .pdf-cover-frame { min-height: 380px; border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .top-note { justify-content: space-between; gap: 12px; font-size: .64rem; }
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .nav-cta { display: none; }
  .hero { min-height: 780px; align-items: end; padding-block: 70px; }
  .hero-shade { background: linear-gradient(0deg,rgba(5,13,23,.98) 0%,rgba(7,18,31,.83) 57%,rgba(7,18,31,.18) 100%); }
  h1 { max-width: 9ch; }
  .hero-trust { grid-template-columns: 1fr; gap: 10px; }
  .hero-trust div { grid-template-columns: 32px 1fr; align-items: center; }
  .intro, .offer, .campaign, .split, .section-heading, .products-heading, .resource-grid, .faq-grid, .article-grid, .article-shell { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .product-grid { grid-template-columns: 1fr; }
  .premium-product-card { grid-column: auto; grid-template-columns: 1fr; }
  .product-body > p:not(.product-level) { min-height: 0; }
  .site-footer { flex-direction: column; }
}
@media (max-width: 430px) {
  .top-note span { display: none; }
  .top-note { justify-content: center; }
  .hero-actions, .button { width: 100%; }
  .section { padding-inline: 18px; }
  .path-grid div { padding-left: 64px; }
}
