:root{
  --ink:#0B0E1A;
  --ink-2:#10142A;
  --indigo:#1B2340;
  --indigo-soft:#232C4E;
  --amber:#D98B2B;
  --amber-soft:#F0B25E;
  --starlight:#F3F1E7;
  --starlight-dim:#B9B7AE;
  --haline:#C8493B;
  --oiii:#4FB8AC;
  --line: rgba(243,241,231,0.12);
  --line-strong: rgba(243,241,231,0.22);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink);
  color:var(--starlight);
  font-family:'Source Serif 4', Georgia, serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  position:relative;
  overflow-x:hidden;
}

/* AMBIENT STARFIELD */
.starfield{ position:fixed; inset:0; z-index:-1; overflow:hidden; pointer-events:none; }
.starfield::after{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 8%, rgba(217,139,43,0.06), transparent 60%),
    radial-gradient(ellipse 50% 35% at 88% 82%, rgba(79,184,172,0.05), transparent 60%);
}
.star-layer{ position:absolute; top:0; left:0; width:1px; height:1px; border-radius:50%; background:transparent; }
.star-layer.small{ animation:driftStars 160s linear infinite, twinkle 5s ease-in-out infinite; }
.star-layer.medium{ animation:driftStars 100s linear infinite, twinkle 4s ease-in-out infinite; animation-delay:0s, 1.3s; }
.star-layer.large{ animation:driftStars 60s linear infinite, twinkle 3.5s ease-in-out infinite; animation-delay:0s, 0.6s; }
@keyframes driftStars{ from{ transform:translateY(0); } to{ transform:translateY(-50%); } }
@keyframes twinkle{ 0%,100%{ opacity:0.55; } 50%{ opacity:1; } }
@media (prefers-reduced-motion: reduce){
  .star-layer{ animation:none !important; }
}
h1,h2,h3,h4, .display{
  font-family:'Space Grotesk', sans-serif;
  letter-spacing:-0.01em;
  font-weight:600;
}
.mono{ font-family:'IBM Plex Mono', monospace; letter-spacing:0.02em; }
a{color:inherit;}
img{max-width:100%; display:block;}
.wrap{max-width:1120px; margin:0 auto; padding:0 28px;}

/* NAV */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(11,14,26,0.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease, border-color .3s ease;
}
header.site.scrolled{
  box-shadow:0 12px 32px -16px rgba(0,0,0,0.6);
  border-bottom-color:var(--line-strong);
}
.navlinks a{ position:relative; }
.navlinks a::after{
  content:''; position:absolute; left:0; right:100%; bottom:-4px; height:1px;
  background:var(--amber-soft); transition:right .25s ease;
}
.navlinks a:hover::after{ right:0; }
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 28px; max-width:1120px; margin:0 auto;
}
.logo{
  font-family:'Space Grotesk', sans-serif;
  font-weight:700; font-size:18px; letter-spacing:-0.01em;
  display:flex; align-items:center; gap:8px;
  text-decoration:none; color:var(--starlight);
}
.logo .dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--amber);
  box-shadow:0 0 8px 2px rgba(217,139,43,0.6);
}
.navlinks{display:flex; gap:32px; font-size:14px; font-family:'Space Grotesk',sans-serif; font-weight:500;}
.navlinks a{color:var(--starlight-dim); text-decoration:none; transition:color .2s;}
.navlinks a:hover{color:var(--starlight);}
.navcta{
  font-family:'Space Grotesk',sans-serif; font-size:13px; font-weight:600;
  border:1px solid var(--line-strong); padding:8px 16px; border-radius:2px;
  text-decoration:none; color:var(--starlight); white-space:nowrap;
}
@media (max-width:820px){ .navlinks{display:none;} }

/* HERO */
.hero{ position:relative; padding:64px 28px 0; max-width:1120px; margin:0 auto; isolation:isolate; }
.hero::before{
  content:''; position:absolute; top:-140px; left:50%; z-index:-1;
  width:min(900px,140vw); height:520px;
  background:radial-gradient(circle, rgba(217,139,43,0.20) 0%, rgba(79,184,172,0.12) 45%, transparent 72%);
  filter:blur(50px); pointer-events:none;
  animation:auroraDrift 16s ease-in-out infinite alternate;
}
@keyframes auroraDrift{
  from{ transform:translateX(-56%) translateY(0); }
  to{ transform:translateX(-44%) translateY(24px); }
}
.eyebrow{
  font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--amber-soft); display:flex; align-items:center; gap:10px; margin-bottom:22px;
}
.eyebrow::before{content:''; width:24px; height:1px; background:var(--amber-soft);}
.hero h1{ font-size:clamp(34px, 5vw, 58px); line-height:1.06; max-width:760px; margin-bottom:20px; }
.hero h1 em{ font-style:normal; color:var(--amber-soft); }
.hero p.sub{ font-size:17px; color:var(--starlight-dim); max-width:520px; margin-bottom:32px; }
.hero-ctas{display:flex; gap:14px; margin-bottom:48px; flex-wrap:wrap;}
.btn-primary{
  background:var(--amber); color:var(--ink); font-family:'Space Grotesk',sans-serif;
  font-weight:600; font-size:14px; padding:13px 22px; border-radius:2px; text-decoration:none; border:none; cursor:pointer;
  display:inline-block; transition:transform .2s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary:hover{
  background:var(--amber-soft); transform:translateY(-2px);
  box-shadow:0 10px 28px -10px rgba(217,139,43,0.65);
}
.btn-secondary{
  border:1px solid var(--line-strong); color:var(--starlight); font-family:'Space Grotesk',sans-serif;
  font-weight:600; font-size:14px; padding:13px 22px; border-radius:2px; text-decoration:none;
  display:inline-block; transition:transform .2s ease, border-color .25s ease, color .25s ease;
}
.btn-secondary:hover{ border-color:var(--amber-soft); color:var(--amber-soft); transform:translateY(-2px); }

/* HERO SLIDER */
.slider-frame{
  position:relative; border:1px solid var(--line-strong); border-radius:4px; overflow:hidden; margin-bottom:6px;
  box-shadow:0 20px 50px -24px rgba(0,0,0,0.65), 0 0 0 1px rgba(243,241,231,0.03);
  transition:box-shadow .3s ease;
}
.slider-frame:hover{ box-shadow:0 24px 60px -20px rgba(217,139,43,0.25), 0 0 0 1px rgba(217,139,43,0.15); }
canvas#sky{ display:block; width:100%; height:220px; cursor:ew-resize; }
.slider-readout{
  position:absolute; top:16px; left:16px; font-family:'IBM Plex Mono', monospace; font-size:11px;
  background:rgba(11,14,26,0.7); border:1px solid var(--line-strong); padding:6px 10px; border-radius:2px; backdrop-filter:blur(4px);
}
.slider-readout .b{ color:var(--amber-soft); font-size:15px; font-weight:500; }
.slider-labels{ display:flex; justify-content:space-between; font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--starlight-dim); padding:12px 4px 40px; }
input#bortleRange{ width:100%; margin-top:2px; -webkit-appearance:none; appearance:none; height:2px; background:var(--line-strong); outline:none; position:relative; top:-28px; }
input#bortleRange::-webkit-slider-thumb{
  -webkit-appearance:none; width:14px; height:14px; border-radius:50%; background:var(--amber-soft); border:3px solid var(--ink); cursor:pointer; box-shadow:0 0 0 1px var(--amber-soft);
}

.section-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:32px; gap:20px; flex-wrap:wrap; }
.section-head h2{ font-size:26px; position:relative; padding-left:16px; }
.section-head h2::before{
  content:''; position:absolute; left:0; top:6px; bottom:6px; width:3px; border-radius:2px;
  background:linear-gradient(180deg, var(--amber-soft), var(--oiii));
}
.section-head p{ color:var(--starlight-dim); font-size:14.5px; max-width:340px; }
.section-head a.viewall{
  font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--oiii); text-decoration:none; white-space:nowrap;
  border-bottom:1px solid transparent; transition:border-color .2s ease, color .2s ease;
}
.section-head a.viewall:hover{ color:var(--amber-soft); border-color:var(--amber-soft); }

/* SCROLL REVEAL */
.reveal{
  opacity:0; transform:translateY(26px);
  transition:opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay:calc(var(--i, 0) * 90ms);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* LATEST POSTS */
.posts{ padding:88px 28px 100px; max-width:1120px; margin:0 auto; border-top:1px solid var(--line); }
.posts-layout{ display:grid; grid-template-columns:1.3fr 1fr; gap:26px; }
@media (max-width:860px){ .posts-layout{ grid-template-columns:1fr; } }

.post-featured{
  border:1px solid var(--line); border-radius:4px; overflow:hidden; background:var(--ink-2);
  display:flex; flex-direction:column;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.post-featured:hover{
  transform:translateY(-5px); border-color:var(--line-strong);
  box-shadow:0 20px 44px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(217,139,43,0.12);
}
.post-featured .thumb{
  aspect-ratio:16/10; position:relative; overflow:hidden;
  background:
    radial-gradient(1.6px 1.6px at 12% 22%, rgba(243,241,231,0.9), transparent),
    radial-gradient(1.2px 1.2px at 28% 68%, rgba(243,241,231,0.7), transparent),
    radial-gradient(1.4px 1.4px at 52% 18%, rgba(243,241,231,0.8), transparent),
    radial-gradient(1px 1px at 68% 52%, rgba(243,241,231,0.6), transparent),
    radial-gradient(1.6px 1.6px at 82% 30%, rgba(243,241,231,0.85), transparent),
    radial-gradient(1px 1px at 90% 76%, rgba(243,241,231,0.55), transparent),
    radial-gradient(1.2px 1.2px at 38% 88%, rgba(243,241,231,0.65), transparent),
    radial-gradient(circle at 30% 30%, #343a6e 0%, #171c3d 45%, #060812 100%);
  transition:filter .35s ease;
}
.post-featured .thumb::after{
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 60% at 70% 75%, rgba(217,139,43,0.16), transparent 65%);
}
.post-featured:hover .thumb{ filter:saturate(1.15) brightness(1.05); }
.post-featured .thumb .tag{
  position:absolute; z-index:1; bottom:12px; left:12px; font-family:'IBM Plex Mono',monospace; font-size:10px;
  text-transform:uppercase; letter-spacing:0.08em; background:rgba(11,14,26,0.75); padding:4px 8px; border-radius:2px;
}
.post-featured .body{ padding:22px 24px 26px; display:flex; flex-direction:column; gap:10px; flex:1; }
.post-featured .date{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--oiii); }
.post-featured h3{ font-size:23px; line-height:1.28; }
.post-featured p{ font-size:14.5px; color:var(--starlight-dim); }
.post-featured a.readmore{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--oiii); text-decoration:none; margin-top:auto; }

.post-list{ display:flex; flex-direction:column; }
.post-row{
  display:flex; gap:16px; padding:18px 10px; margin:0 -10px; border-bottom:1px solid var(--line); border-radius:4px;
  text-decoration:none; color:inherit;
  transition:background .25s ease, transform .25s ease;
}
.post-row:hover{ background:rgba(243,241,231,0.035); transform:translateX(4px); }
.post-row .thumb-sm{
  width:96px; min-width:96px; aspect-ratio:1/1; border-radius:3px; position:relative; overflow:hidden;
  background:
    radial-gradient(1.3px 1.3px at 20% 30%, rgba(243,241,231,0.85), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(243,241,231,0.6), transparent),
    radial-gradient(1.2px 1.2px at 80% 20%, rgba(243,241,231,0.75), transparent),
    radial-gradient(circle at 40% 35%, #4a3016 0%, #1b1710 55%, #0d0d12 100%);
  transition:transform .3s ease;
}
.post-row:hover .thumb-sm{ transform:scale(1.06); }
.post-row:nth-child(3n+2) .thumb-sm{
  background:
    radial-gradient(1.3px 1.3px at 20% 30%, rgba(243,241,231,0.85), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(243,241,231,0.6), transparent),
    radial-gradient(1.2px 1.2px at 80% 20%, rgba(243,241,231,0.75), transparent),
    radial-gradient(circle at 40% 35%, #343a6e 0%, #141935 45%, #060812 100%);
}
.post-row:nth-child(3n) .thumb-sm{
  background:
    radial-gradient(1.3px 1.3px at 20% 30%, rgba(243,241,231,0.85), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(243,241,231,0.6), transparent),
    radial-gradient(1.2px 1.2px at 80% 20%, rgba(243,241,231,0.75), transparent),
    radial-gradient(circle at 40% 35%, #4f2521 0%, #1e1113 55%, #0d0a0d 100%);
}
.post-row .content{ display:flex; flex-direction:column; gap:5px; }
.post-row .date{ font-family:'IBM Plex Mono',monospace; font-size:10.5px; color:var(--oiii); }
.post-row h4{ font-size:15px; line-height:1.3; font-weight:600; transition:color .2s ease; }
.post-row:hover h4{ color:var(--amber-soft); }
.post-row p{ font-size:12.5px; color:var(--starlight-dim); }

/* GEAR I'M USING */
.gear-compact{ padding:0 28px 90px; max-width:1120px; margin:0 auto; }
.gear-strip{ display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
@media (max-width:760px){ .gear-strip{ grid-template-columns:repeat(2,1fr); } }
.gear-slot{ padding:18px 18px 20px; border-right:1px solid var(--line); transition:background .25s ease; }
.gear-slot:hover{ background:rgba(243,241,231,0.03); }
.gear-slot:last-child{ border-right:none; }
@media (max-width:760px){ .gear-slot:nth-child(2n){ border-right:none; } }
.gear-slot .badge{ font-family:'IBM Plex Mono',monospace; font-size:9.5px; color:var(--haline); text-transform:uppercase; letter-spacing:0.08em; display:block; margin-bottom:6px; }
.gear-slot h4{ font-size:13.5px; font-weight:600; margin-bottom:3px; }
.gear-slot p{ font-size:12px; color:var(--starlight-dim); }

/* PRODUCT REVIEWS */
.reviews{ padding:0 28px 100px; max-width:1120px; margin:0 auto; }
.reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:860px){ .reviews-grid{ grid-template-columns:1fr; } }
.review-card{
  border:1px solid var(--line); border-radius:4px; padding:22px; background:var(--ink-2);
  display:flex; flex-direction:column; gap:12px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.review-card:hover{
  transform:translateY(-5px); border-color:var(--line-strong);
  box-shadow:0 20px 44px -22px rgba(0,0,0,0.6), 0 0 0 1px rgba(79,184,172,0.14);
}
.score-ring{
  width:72px; height:72px; border-radius:50%; padding:4px;
  background:conic-gradient(var(--amber-soft) var(--pct,80%), rgba(243,241,231,0.08) 0);
  transition:transform .3s ease;
}
.review-card:hover .score-ring{ transform:scale(1.06); }
.score-ring .score-inner{
  width:100%; height:100%; border-radius:50%; background:var(--ink-2);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1px;
}
.score-ring .num{ font-family:'Space Grotesk',sans-serif; font-size:18px; font-weight:700; color:var(--amber-soft); line-height:1; }
.score-ring .of{ font-family:'IBM Plex Mono',monospace; font-size:9px; color:var(--starlight-dim); letter-spacing:0.04em; }
.review-card h4{ font-size:16px; }
.review-card p.verdict{ font-size:13.5px; color:var(--starlight-dim); }
.review-card a{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--oiii); text-decoration:none; margin-top:auto; border-bottom:1px solid transparent; transition:border-color .2s ease, color .2s ease; align-self:flex-start; }
.review-card a:hover{ color:var(--amber-soft); border-color:var(--amber-soft); }

/* TAGS */
.tags{ padding:0 28px 90px; max-width:1120px; margin:0 auto; }
.tag-cloud{ display:flex; flex-wrap:wrap; gap:10px; }
.tag-chip{
  font-family:'IBM Plex Mono',monospace; font-size:12px; padding:8px 14px; border:1px solid var(--line-strong);
  border-radius:20px; color:var(--starlight-dim); text-decoration:none;
  transition:color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.tag-chip:hover{
  color:var(--ink); background:var(--amber-soft); border-color:var(--amber-soft);
  box-shadow:0 6px 20px -6px rgba(217,139,43,0.55); transform:translateY(-2px);
}

/* SOCIAL + SIGNUP */
.connect{ position:relative; background:var(--indigo); border-top:1px solid var(--line-strong); padding:70px 28px; overflow:hidden; }
.connect::before{
  content:''; position:absolute; top:-40%; right:-10%; width:520px; height:520px;
  background:radial-gradient(circle, rgba(217,139,43,0.14), transparent 70%);
  filter:blur(10px); pointer-events:none;
}
.connect-inner{ position:relative; max-width:1120px; margin:0 auto; display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; align-items:flex-start; }
.connect h2{ font-size:24px; max-width:340px; margin-bottom:8px; }
.connect p{ color:var(--starlight-dim); font-size:14px; max-width:340px; }
.social-row{ display:flex; gap:22px; margin-top:18px; flex-wrap:wrap; }
.social-row a{ font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--starlight); text-decoration:none; border-bottom:1px solid var(--line-strong); padding-bottom:2px; transition:color .2s ease, border-color .2s ease; }
.social-row a:hover{ color:var(--amber-soft); border-color:var(--amber-soft); }
.signup-form{ display:flex; gap:10px; min-width:280px; max-width:400px; }
.signup-form input{
  flex:1; background:transparent; border:1px solid var(--line-strong); color:var(--starlight);
  padding:13px 14px; border-radius:2px; font-family:'Source Serif 4',serif; font-size:14px;
  transition:border-color .2s ease;
}
.signup-form input:focus{ outline:none; border-color:var(--amber-soft); }
.signup-form input::placeholder{ color:var(--starlight-dim); }

/* SHOP / AFFILIATE PICKS */
.shop{ padding:0 28px 100px; max-width:1120px; margin:0 auto; }
.shop-disclosure{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--starlight-dim); margin-bottom:28px; padding-top:2px; }
.shop-disclosure a{ color:var(--oiii); text-decoration:underline; }
.shop-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:900px){ .shop-grid{ grid-template-columns:repeat(2,1fr); } }
.shop-card{
  border:1px solid var(--line); border-radius:4px; overflow:hidden; background:var(--ink-2); display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.shop-card:hover{
  transform:translateY(-5px); border-color:var(--line-strong);
  box-shadow:0 18px 40px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(217,139,43,0.12);
}
.shop-card .thumb{
  aspect-ratio:1/1; position:relative; overflow:hidden; transition:transform .4s ease;
  background:
    radial-gradient(1.4px 1.4px at 22% 25%, rgba(243,241,231,0.85), transparent),
    radial-gradient(1px 1px at 60% 65%, rgba(243,241,231,0.6), transparent),
    radial-gradient(1.3px 1.3px at 78% 22%, rgba(243,241,231,0.75), transparent),
    radial-gradient(circle at 35% 30%, #343a6e 0%, #141935 45%, #060812 100%);
}
.shop-card:hover .thumb{ transform:scale(1.05); }
.shop-card .body{ padding:16px; display:flex; flex-direction:column; gap:8px; flex:1; }
.shop-card h4{ font-size:14px; line-height:1.3; }
.shop-card .price{ font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--amber-soft); }
.shop-card .buy{
  margin-top:auto; font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:12.5px;
  text-align:center; border:1px solid var(--line-strong); padding:9px; border-radius:2px; text-decoration:none; color:var(--starlight);
  transition:border-color .2s ease, color .2s ease, background .2s ease;
}
.shop-card .buy:hover{ border-color:var(--amber-soft); color:var(--ink); background:var(--amber-soft); }
.shop-card .adtag{ font-family:'IBM Plex Mono',monospace; font-size:9.5px; color:var(--starlight-dim); text-align:center; }

/* WORTH FOLLOWING */
.following{ padding:0 28px 100px; max-width:1120px; margin:0 auto; }
.follow-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:860px){ .follow-grid{ grid-template-columns:1fr; } }
.follow-card{
  border:1px solid var(--line); border-radius:4px; padding:18px; display:flex; gap:14px; background:var(--ink-2);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.follow-card:hover{
  transform:translateY(-4px); border-color:var(--line-strong);
  box-shadow:0 16px 36px -20px rgba(0,0,0,0.6);
}
.follow-card .avatar{
  width:52px; height:52px; min-width:52px; border-radius:50%; position:relative; overflow:hidden;
  background:
    radial-gradient(1.2px 1.2px at 30% 30%, rgba(243,241,231,0.8), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(243,241,231,0.6), transparent),
    radial-gradient(circle at 35% 30%, #4a3016 0%, #1b1710 60%, #0d0d12 100%);
  box-shadow:0 0 0 1px var(--line-strong);
}
.follow-card .info{ display:flex; flex-direction:column; gap:4px; }
.follow-card .platform{ font-family:'IBM Plex Mono',monospace; font-size:10px; color:var(--haline); text-transform:uppercase; letter-spacing:0.08em; }
.follow-card h4{ font-size:14.5px; }
.follow-card p{ font-size:12.5px; color:var(--starlight-dim); }
.follow-card a{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--oiii); text-decoration:none; margin-top:4px; display:inline-block; border-bottom:1px solid transparent; transition:border-color .2s ease, color .2s ease; }
.follow-card a:hover{ color:var(--amber-soft); border-color:var(--amber-soft); }

footer{ position:relative; padding:36px 28px; max-width:1120px; margin:0 auto; display:flex; justify-content:space-between; color:var(--starlight-dim); font-size:12px; font-family:'IBM Plex Mono',monospace; flex-wrap:wrap; gap:12px;}
footer::before{ content:''; position:absolute; top:0; left:28px; right:28px; height:1px; background:linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent); }
footer a{ text-decoration:none; transition:color .2s ease; }
footer a:hover{ color:var(--amber-soft); }

/* ===== ARTICLE / SINGLE POST & REVIEW PAGES ===== */
.article-hero{ padding:56px 28px 0; max-width:820px; margin:0 auto; }
.breadcrumb{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--starlight-dim); margin-bottom:22px; }
.breadcrumb a{ color:var(--oiii); text-decoration:none; }
.article-hero .date{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--oiii); display:block; margin-bottom:14px; }
.article-hero h1{ font-size:clamp(28px,4vw,42px); line-height:1.15; margin-bottom:16px; }
.article-hero .dek{ font-size:16.5px; color:var(--starlight-dim); margin-bottom:8px; }
.article-meta{ display:flex; gap:14px; flex-wrap:wrap; font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--starlight-dim); margin:20px 0 36px; padding-bottom:28px; border-bottom:1px solid var(--line); }
.article-media{ max-width:820px; margin:0 auto 8px; aspect-ratio:16/9; border-radius:4px; border:1px solid var(--line-strong); background:radial-gradient(circle at 30% 30%, #2a2f55 0%, #141935 45%, #060812 100%); }
.article-body{ max-width:820px; margin:0 auto; padding:44px 28px 90px; }
.article-body h2{ font-size:21px; margin:36px 0 14px; }
.article-body h3{ font-size:17px; margin:28px 0 10px; }
.article-body p{ font-size:16px; margin-bottom:18px; color:var(--starlight); }
.article-body p.lede{ font-size:18px; color:var(--starlight-dim); }
.article-body ul, .article-body ol{ margin:0 0 18px 22px; font-size:16px; }
.article-body li{ margin-bottom:8px; }
.article-body .pullquote{ border-left:2px solid var(--amber-soft); padding-left:18px; font-size:18px; color:var(--amber-soft); margin:32px 0; font-family:'Space Grotesk',sans-serif; }
.article-body .inline-disclosure{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--starlight-dim); border:1px solid var(--line); border-radius:4px; padding:14px 16px; margin:28px 0; }
.article-body .inline-disclosure a{ color:var(--oiii); }
.article-cta{ background:var(--ink-2); border:1px solid var(--line-strong); border-radius:4px; padding:24px; display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; margin:36px 0; }
.article-cta .price{ font-family:'IBM Plex Mono',monospace; color:var(--amber-soft); font-size:13px; }
.article-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:30px; }

/* REVIEW SINGLE PAGE */
.review-hero{ padding:56px 28px 0; max-width:820px; margin:0 auto; }
.review-scorebox{ display:flex; align-items:center; gap:24px; border:1px solid var(--line-strong); border-radius:4px; padding:22px 26px; background:var(--ink-2); margin:24px 0 8px; flex-wrap:wrap; }
.review-scorebox .bignum{ font-family:'Space Grotesk',sans-serif; font-size:52px; font-weight:700; color:var(--amber-soft); line-height:1; }
.review-scorebox .of{ font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--starlight-dim); }
.review-scorebox .verdict-short{ font-size:14.5px; color:var(--starlight-dim); max-width:420px; }
.spec-table{ width:100%; border-collapse:collapse; margin:24px 0; font-size:14.5px; }
.spec-table tr{ border-bottom:1px solid var(--line); }
.spec-table td{ padding:10px 6px; }
.spec-table td:first-child{ color:var(--starlight-dim); font-family:'IBM Plex Mono',monospace; font-size:12.5px; width:40%; }
.pros-cons{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin:28px 0; }
@media (max-width:600px){ .pros-cons{ grid-template-columns:1fr; } }
.pros-cons .col{ border:1px solid var(--line); border-radius:4px; padding:18px; }
.pros-cons .col h4{ font-size:13px; text-transform:uppercase; letter-spacing:0.06em; font-family:'IBM Plex Mono',monospace; margin-bottom:10px; }
.pros-cons .col.pros h4{ color:var(--oiii); }
.pros-cons .col.cons h4{ color:var(--haline); }
.pros-cons ul{ margin:0 0 0 18px; font-size:14px; }
.pros-cons li{ margin-bottom:6px; }

/* COMPARISON TABLE (multi-product roundup posts) */
.compare-table-wrap{ overflow-x:auto; margin:24px 0; border:1px solid var(--line); border-radius:4px; }
.compare-table{ width:100%; border-collapse:collapse; font-size:13.5px; min-width:640px; }
.compare-table th{
  font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.05em;
  color:var(--oiii); text-align:left; padding:12px 14px; border-bottom:1px solid var(--line-strong); white-space:nowrap;
}
.compare-table td{ padding:12px 14px; border-bottom:1px solid var(--line); color:var(--starlight-dim); vertical-align:top; }
.compare-table tr:last-child td{ border-bottom:none; }
.compare-table td:first-child, .compare-table th:first-child{ color:var(--starlight); font-weight:600; }

/* FINAL RECOMMENDATION CARDS */
.reco-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:28px 0; }
@media (max-width:700px){ .reco-grid{ grid-template-columns:1fr; } }
.reco-card{ border:1px solid var(--line); border-radius:4px; padding:18px; }
.reco-card .label{ font-family:'IBM Plex Mono',monospace; font-size:10.5px; text-transform:uppercase; letter-spacing:0.06em; color:var(--haline); display:block; margin-bottom:8px; }
.reco-card h4{ font-size:15px; margin-bottom:6px; }
.reco-card p{ font-size:13.5px; color:var(--starlight-dim); margin:0; }

/* SIMPLE LEGAL / POLICY PAGES */
.legal{ max-width:760px; margin:0 auto; padding:64px 28px 100px; }
.legal h1{ font-size:32px; margin-bottom:8px; }
.legal .updated{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--starlight-dim); margin-bottom:36px; }
.legal h2{ font-size:19px; margin:32px 0 12px; }
.legal p{ font-size:15px; margin-bottom:14px; color:var(--starlight-dim); }
.legal ul{ margin:0 0 14px 20px; font-size:15px; color:var(--starlight-dim); }
.legal li{ margin-bottom:8px; }
.legal a{ color:var(--oiii); }
