/* Reset & base */
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,sans-serif;background:#fff;color:#1a1f36;line-height:1.5;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{margin:0;padding:0;list-style:none}
h1,h2,h3,h4,p{margin:0}
hr{border:none;border-top:1px solid #e5e7eb;margin:1rem 0}

/* Colors */
:root{
  --primary:#1e2a5a;
  --primary-fg:#ffffff;
  --gold:#e0b34d;
  --gold-dark:#c99a2f;
  --cream:#fbf7ec;
  --green:#2f9e44;
  --green-dark:#278a3a;
  --check-green:#3ab554;
  --red:#dc2626;
  --muted:#6b7280;
  --muted-bg:#f3f4f6;
  --border:#e5e7eb;
  --card:#ffffff;
}

/* Layout */
.container-sm{max-width:56rem;margin:0 auto;padding:0 1rem}
.container-md{max-width:64rem;margin:0 auto;padding:0 1rem}

/* Promo bar */
.promo-bar{background:var(--red);color:#fff;text-align:center;font-size:.75rem;font-weight:700;letter-spacing:.05em;padding:.5rem 1rem}
@media(min-width:640px){.promo-bar{font-size:.875rem}}

/* Sticky top quick pick */
.top-pick{border-bottom:1px solid var(--border);background:#fff}
.top-pick-inner{max-width:64rem;margin:0 auto;padding:.75rem 1rem;display:flex;flex-wrap:wrap;align-items:center;gap:.75rem}
.top-pick img{height:3rem;width:3rem;border-radius:.375rem;object-fit:cover}
.top-pick-info{flex:1;min-width:180px}
.top-pick-title{display:flex;align-items:center;gap:.5rem}
.top-pick-rating{display:flex;align-items:center;gap:.5rem;font-size:.75rem}
.badge-gold{background:var(--gold);color:#1a1f36;font-size:.75rem;font-weight:700;border-radius:9999px;padding:.125rem .5rem}
.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-extrabold{font-weight:800}
.muted{color:var(--muted)}
.btn{display:inline-flex;align-items:center;justify-content:center;font-weight:700;border-radius:.375rem;transition:background .2s;cursor:pointer;border:none;text-align:center}
.btn-green{background:var(--green);color:#fff;padding:.625rem 1rem;font-size:.875rem;box-shadow:0 2px 4px rgba(0,0,0,.1)}
.btn-green:hover{background:var(--green-dark)}
.btn-primary{background:var(--primary);color:#fff;padding:.75rem 1.25rem;font-size:.875rem;width:100%}
.btn-primary:hover{background:#182248}
.btn-lg{padding:1rem 1.25rem;font-size:1rem;width:100%}

/* Stars */
.stars{display:inline-flex;gap:2px}
.star{width:16px;height:16px;display:inline-block}
.star-full{color:var(--gold)}
.star-empty{color:#d1d5db}

/* Hero */
.hero{max-width:56rem;margin:0 auto;padding:2.5rem 1rem 1.5rem;text-align:center}
.pill{display:inline-flex;align-items:center;gap:.5rem;background:var(--primary);color:#fff;font-size:.75rem;font-weight:600;padding:.375rem .75rem;border-radius:9999px}
.pill .op{opacity:.7}
.h1{margin-top:1.25rem;font-size:1.875rem;font-weight:800;color:var(--primary);line-height:1.15}
@media(min-width:640px){.h1{font-size:2.25rem}}
@media(min-width:768px){.h1{font-size:3rem}}

/* Hero body */
.hero-body{max-width:64rem;margin:0 auto;padding:0 1rem 2.5rem;display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.hero-body{grid-template-columns:1fr 1fr}}
.hero-img{border-radius:.75rem;overflow:hidden}
.hero-img img{width:100%;height:100%;object-fit:cover}
.author-card{background:var(--cream);border-radius:.75rem;padding:1.5rem;display:flex;flex-direction:column;justify-content:center}
.author{display:flex;align-items:center;gap:.75rem}
.avatar{height:2.5rem;width:2.5rem;border-radius:9999px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700}
.author-card p{margin-top:.75rem;font-size:.875rem;line-height:1.6}

/* Section headings */
.section{max-width:56rem;margin:0 auto;padding:2rem 1rem}
.h2{font-size:1.5rem;font-weight:700;color:var(--primary)}
@media(min-width:640px){.h2{font-size:1.875rem}}
.section p{margin-top:1rem;font-size:1rem;line-height:1.6}

/* Products */
.products{max-width:64rem;margin:0 auto;padding:0 1rem 3rem;display:flex;flex-direction:column;gap:2rem}
.product{position:relative;border-radius:.75rem;border:1px solid var(--border);background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.05);overflow:hidden}
.product.top{border-color:var(--gold);box-shadow:0 0 0 3px rgba(224,179,77,.35),0 1px 2px rgba(0,0,0,.05)}
.product-flag{background:var(--gold);color:#1a1f36;text-align:center;font-size:.875rem;font-weight:700;letter-spacing:.05em;padding:.5rem}
.product-body{display:grid;grid-template-columns:1fr;gap:0}
@media(min-width:768px){.product-body{grid-template-columns:1fr 1.4fr}}
.product-img-wrap{position:relative;background:var(--cream);padding:1.5rem;display:flex;align-items:center;justify-content:center}
.product-img-wrap img{max-width:20rem;width:100%;height:auto;object-fit:contain}
.rank-badge{position:absolute;top:.75rem;left:.75rem;background:var(--primary);color:#fff;font-size:.75rem;font-weight:700;border-radius:9999px;padding:.25rem .75rem}
.product-content{padding:1.5rem;display:flex;flex-direction:column}
.product-name{font-size:1.5rem;font-weight:700;color:var(--primary)}
.score-row{display:flex;align-items:center;gap:.5rem;margin-top:.5rem}
.score{font-size:1.875rem;font-weight:800;color:var(--primary)}
.score-meta{display:flex;flex-direction:column}
.score-meta .rv{font-size:.75rem;color:var(--muted)}
.pros{margin-top:1rem;display:flex;flex-direction:column;gap:.375rem;font-size:.875rem}
.pros li{display:flex;gap:.5rem;align-items:flex-start}
.icon{width:16px;height:16px;flex-shrink:0;margin-top:2px}
.icon-check{color:var(--check-green)}
.icon-x{color:var(--red)}
.con{color:var(--muted)}
.product-cta{margin-top:1.25rem}
.limited{color:var(--red);font-weight:600;font-size:.75rem;text-align:center;margin-top:.5rem}

/* Why section */
.why{background:var(--cream);padding:3rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.why-head{display:flex;flex-direction:column;align-items:center;text-align:center}
.why-head img{height:6rem;width:auto}
.why-eyebrow{margin-top:.75rem;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--muted)}
.why-title{margin-top:.75rem;font-size:1.5rem;font-weight:800;color:var(--primary)}
@media(min-width:640px){.why-title{font-size:1.875rem}}
.why-title:hover{text-decoration:underline}
.why-h2{margin-top:2.5rem;font-size:1.5rem;font-weight:700;color:var(--primary);text-align:center}
@media(min-width:640px){.why-h2{font-size:1.875rem}}
.why-grid{margin-top:1.5rem;display:grid;grid-template-columns:1fr;gap:1.5rem;align-items:center}
@media(min-width:768px){.why-grid{grid-template-columns:1fr 1fr}}
.why-grid.rev .why-text{order:2}
@media(min-width:768px){.why-grid.rev .why-text{order:2}.why-grid.rev img{order:1}}
.why-text p{font-size:.875rem;line-height:1.6;margin-top:.75rem}
.why-text p:first-child{margin-top:0}
.why img.rounded{border-radius:.75rem;width:100%}
.trophy-wrap{margin-top:2.5rem;display:flex;flex-direction:column;align-items:center;text-align:center}
.trophy{width:3rem;height:3rem;color:var(--gold)}
.trophy-wrap p{margin-top:.75rem;max-width:42rem;font-size:.875rem;line-height:1.6}

/* Feature grid */
.features{max-width:64rem;margin:0 auto;padding:3rem 1rem}
.features > img{border-radius:.75rem;width:100%}
.feature-grid{margin-top:2rem;display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;text-align:center}
@media(min-width:768px){.feature-grid{grid-template-columns:repeat(5,1fr)}}
.feature{background:#fff;border:1px solid var(--border);border-radius:.5rem;padding:1rem;display:flex;flex-direction:column;align-items:center;justify-content:center}
.feature-icon{height:2.5rem;width:2.5rem;border-radius:9999px;background:rgba(30,42,90,.1);display:flex;align-items:center;justify-content:center;margin-bottom:.5rem;color:var(--primary)}
.feature p{font-size:.75rem;font-weight:600}

/* How to order */
.how{background:var(--cream);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:3rem 0}
.how-inner{max-width:56rem;margin:0 auto;padding:0 1rem;display:grid;grid-template-columns:1fr;gap:2rem;align-items:center}
@media(min-width:768px){.how-inner{grid-template-columns:1fr 1fr}}
.how img{border-radius:.75rem;width:100%}
.how h2{font-size:1.5rem;font-weight:700;color:var(--primary)}
@media(min-width:640px){.how h2{font-size:1.875rem}}
.how ol{margin-top:1.25rem;display:flex;flex-direction:column;gap:.75rem}
.how ol li{display:flex;gap:.75rem;align-items:flex-start;font-size:.875rem}
.step-num{background:var(--primary);color:#fff;font-size:.75rem;font-weight:700;border-radius:9999px;height:1.5rem;width:1.5rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}

/* Benefits */
.benefits{max-width:64rem;margin:0 auto;padding:3rem 1rem;display:grid;grid-template-columns:1fr;gap:1.5rem;text-align:center}
@media(min-width:640px){.benefits{grid-template-columns:repeat(3,1fr)}}
.benefit{display:flex;flex-direction:column;align-items:center}
.benefit-icon{height:3.5rem;width:3.5rem;border-radius:9999px;background:rgba(30,42,90,.1);display:flex;align-items:center;justify-content:center;color:var(--primary)}
.benefit h3{margin-top:.75rem;font-weight:700}
.benefit p{margin-top:.25rem;font-size:.875rem;color:var(--muted)}

/* Footer */
.site-footer{border-top:1px solid var(--border);background:#fff}
.footer-inner{max-width:56rem;margin:0 auto;padding:2rem 1rem 6rem;font-size:.75rem;color:var(--muted);display:flex;flex-direction:column;gap:.75rem}
.footer-inner nav{display:flex;flex-wrap:wrap;gap:.5rem 1rem;padding-top:.5rem}
.footer-inner a:hover{color:var(--primary);text-decoration:underline}

/* Sticky bottom */
.sticky-bottom{position:fixed;bottom:0;left:0;right:0;z-index:50;background:rgba(255,255,255,.95);backdrop-filter:blur(8px);border-top:1px solid var(--border);box-shadow:0 -4px 10px rgba(0,0,0,.08)}
.sticky-bottom-inner{max-width:64rem;margin:0 auto;padding:.625rem .75rem;display:flex;align-items:center;gap:.75rem}
.sticky-info{display:none;align-items:center;gap:.5rem;min-width:0}
@media(min-width:640px){.sticky-info{display:flex}}
.sticky-name{font-weight:600;font-size:.875rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.sticky-save{font-size:.75rem;color:var(--muted)}
.sticky-cta{margin-left:auto;flex:1;text-align:center;background:var(--green);color:#fff;font-weight:700;font-size:.875rem;padding:.75rem 1.25rem;border-radius:.375rem;white-space:nowrap;box-shadow:0 2px 4px rgba(0,0,0,.15)}
@media(min-width:640px){.sticky-cta{flex:0 0 auto}}
.sticky-cta:hover{background:var(--green-dark)}
