:root {
  --ink:#25261d;
  --muted:#686a5b;
  --line:#ddd9c8;
  --surface:#fff;
  --soft:#f7f5ea;
  --primary:#666b28;
  --secondary:#7b2f26;
  --accent:#b78a4b;
  --success:#5f712c;
  --radius:22px;
  --shadow:0 22px 60px rgba(30,56,95,.12);
  --font:"Poppins","Segoe UI",Arial,sans-serif
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:#fcfbf6;
  line-height:1.7
}
img {
  display:block;
  max-width:100%;
  height:auto
}
a {
  color:inherit
}
button {
  font:inherit
}
.container {
  width:min(1180px,calc(100% - 38px));
  margin:auto
}
.section {
  padding:88px 0;
  scroll-margin-top:88px
}
.section-soft {
  background:var(--soft)
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--primary);
  font-weight:800;
  font-size:.77rem;
  letter-spacing:.12em;
  text-transform:uppercase
}
.eyebrow:before {
  content:"";
  width:24px;
  height:3px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--primary),var(--accent))
}
h1,h2,h3 {
  line-height:1.18;
  margin:0 0 18px;
  letter-spacing:-.035em
}
h1 {
  font-size:clamp(2.15rem,4.4vw,4.15rem)
}
h2 {
  font-size:clamp(1.65rem,2.8vw,2.4rem)
}
h3 {
  font-size:1.12rem
}
p {
  margin:0 0 18px;
  color:var(--muted)
}
.lead {
  font-size:1.1rem;
  max-width:740px
}
.site-header {
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(252,251,246,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:.25s
}
.site-header.is-scrolled {
  box-shadow:0 10px 35px rgba(24,47,80,.09);
  border-color:var(--line)
}
.nav-wrap {
  display:flex;
  align-items:center;
  gap:20px;
  min-height:76px
}
.brand {
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  white-space:nowrap
}
.brand img {
  width:44px;
  height:44px
}
.nav-links {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:4px
}
.nav-links a {
  padding:10px 11px;
  text-decoration:none;
  color:#4c4c3d;
  font-size:.9rem;
  font-weight:650;
  border-radius:12px
}
.nav-links a:hover,.nav-links a.active {
  background:#f0eddd;
  color:var(--primary)
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  border:0;
  border-radius:14px;
  padding:14px 20px;
  font-weight:800;
  min-height:50px;
  cursor:pointer;
  transition:.2s
}
.btn-primary {
  color:#fff;
  background:linear-gradient(135deg,var(--secondary),#4b1c17);
  box-shadow:0 13px 28px rgba(123,47,38,.24)
}
.btn-primary:hover {
  transform:translateY(-2px)
}
.btn-ghost {
  background:#fff;
  border:1px solid var(--line);
  color:var(--ink)
}
.header-cta {
  padding:12px 16px;
  margin-left:4px
}
.menu-toggle {
  display:none;
  margin-left:auto;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  width:46px;
  height:46px
}
.menu-toggle span {
  display:block;
  width:20px;
  height:2px;
  background:var(--ink);
  margin:4px auto
}
.hero {
  padding:76px 0 64px;
  overflow:hidden
}
.hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center
}
.hero-copy {
  position:relative
}
.hero-copy:after {
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(240,162,64,.11);
  left:-80px;
  bottom:-55px;
  z-index:-1
}
.hero h1 span {
  color:var(--primary)
}
.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px
}
.hero-note {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:28px;
  color:#53637a;
  font-size:.87rem
}
.hero-note b {
  color:var(--ink)
}
.hero-stage {
  position:relative;
  min-height:570px
}
.hero-card {
  position:absolute;
  inset:18px 0 70px 38px;
  border-radius:34px;
  overflow:hidden;
  background:#eef4fd;
  box-shadow:var(--shadow);
  border:1px solid #d8e4f6
}
.hero-card img {
  width:100%;
  height:100%;
  object-fit:contain
}
.hero-stat {
  position:absolute;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 15px 35px rgba(31,51,79,.12);
  border-radius:18px;
  padding:16px 18px;
  max-width:220px
}
.hero-stat strong {
  display:block
}
.hero-stat span {
  font-size:.84rem;
  color:var(--muted)
}
.hero-stat.one {
  left:0;
  bottom:32px
}
.hero-stat.two {
  right:-8px;
  top:0
}
.about-grid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  align-items:center
}
.media-frame {
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
  padding:12px
}
.media-frame img {
  border-radius:20px;
  width:100%;
  aspect-ratio:7/5;
  object-fit:contain
}
.info-band {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:25px
}
.info-pill {
  padding:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px
}
.info-pill b {
  display:block;
  margin-bottom:4px
}
.features-head {
  display:block;
  max-width:820px;
  margin-bottom:34px
}
.features-head p {
  max-width:760px;
  margin-top:8px
}
.card-grid,.compat-grid,.use-grid,.trouble-grid,.guide-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px
}
.card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px;
  box-shadow:0 10px 25px rgba(30,56,95,.05)
}
.card .icon {
  width:44px;
  height:44px;
  border-radius:13px;
  display:grid;
  place-items:center;
  background:#f1eddc;
  color:var(--primary);
  font-weight:900;
  margin-bottom:18px
}
.process {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:start
}
.steps {
  display:grid;
  gap:14px
}
.step {
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  padding:21px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line)
}
.step-num {
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--ink);
  color:#fff;
  font-weight:800
}
.process-panel {
  position:sticky;
  top:108px;
  background:linear-gradient(145deg,#2e3024,#626728);
  color:#fff;
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow)
}
.process-panel p {
  color:#f0eddc
}
.checklist {
  padding:0;
  margin:18px 0 0;
  list-style:none
}
.checklist li {
  padding:9px 0 9px 30px;
  position:relative;
  color:var(--muted)
}
.checklist li:before {
  content:"✓";
  position:absolute;
  left:0;
  color:var(--success);
  font-weight:900
}
.download-shell {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
  background:#2a2b20;
  border-radius:34px;
  padding:42px;
  color:#fff;
  overflow:hidden
}
.download-shell p {
  color:#eee9d8
}
.download-shell .media-frame {
  background:#34362a;
  border-color:#646a43;
  box-shadow:none
}
.safety,.proscons {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}
.notice,.pc-card,.release-box {
  padding:28px;
  border-radius:22px;
  border:1px solid var(--line);
  background:#fff
}
.notice.warning {
  border-left:5px solid var(--accent)
}
.release-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:32px
}
.guide-card {
  display:block;
  text-decoration:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  transition:.2s
}
.guide-card:hover {
  transform:translateY(-3px);
  box-shadow:var(--shadow)
}
.guide-card img {
  aspect-ratio:16/10;
  object-fit:contain;
  width:100%
}
.guide-card div {
  padding:20px
}
.faq-wrap {
  display:grid;
  grid-template-columns:260px 1fr;
  gap:28px;
  align-items:start
}
.faq-tabs {
  position:sticky;
  top:108px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:10px
}
.faq-tab {
  width:100%;
  text-align:left;
  padding:14px 16px;
  border:0;
  background:transparent;
  border-radius:14px;
  font-weight:800;
  color:#54637a;
  cursor:pointer
}
.faq-tab.active {
  background:#f1eddc;
  color:var(--primary)
}
.faq-panel {
  display:none
}
.faq-panel.active {
  display:block
}
.faq-item {
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  margin-bottom:12px;
  overflow:hidden
}
.faq-question {
  width:100%;
  border:0;
  background:#fff;
  padding:19px 22px;
  text-align:left;
  font-weight:800;
  color:var(--ink);
  display:flex;
  justify-content:space-between;
  gap:15px;
  cursor:pointer
}
.faq-question span:last-child {
  font-size:1.3rem;
  color:var(--primary)
}
.faq-answer {
  display:none;
  padding:0 22px 20px
}
.faq-item.open .faq-answer {
  display:block
}
.page-hero {
  padding:72px 0 48px;
  background:linear-gradient(180deg,#f5f1e3,#fcfbf6)
}
.page-hero .container {
  max-width:900px
}
.breadcrumb {
  font-size:.86rem;
  color:#728198;
  margin-bottom:16px
}
.blog-layout {
  display:grid;
  grid-template-columns:1fr 310px;
  gap:34px;
  align-items:start
}
.blog-list {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px
}
.blog-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden
}
.blog-card img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:contain
}
.blog-card .body {
  padding:22px
}
.blog-card a {
  text-decoration:none
}
.sidebar {
  position:sticky;
  top:104px;
  display:grid;
  gap:16px
}
.side-box {
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px
}
.side-box a {
  display:block;
  text-decoration:none;
  padding:8px 0;
  color:#4c607c;
  border-bottom:1px solid #edf2f7
}
.article {
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:34px
}
.article img.feature {
  width:100%;
  border-radius:20px;
  margin:10px 0 30px;
  aspect-ratio:16/9;
  object-fit:contain
}
.article h2 {
  font-size:1.8rem;
  margin-top:36px
}
.article h3 {
  font-size:1.25rem;
  margin-top:26px
}
.article ul,.article ol {
  color:var(--muted)
}
.article a {
  color:var(--primary);
  font-weight:700
}
.legal {
  max-width:860px
}
.legal h2 {
  font-size:1.7rem;
  margin-top:32px
}
.contact-card {
  max-width:760px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:34px
}
.email-display {
  font-weight:800;
  color:var(--primary);
  padding:13px 16px;
  border-radius:14px;
  background:#f1eddc;
  display:inline-block
}
.site-footer {
  background:#13253e;
  color:#edf4ff;
  padding:54px 0 0
}
.footer-top {
  display:grid;
  grid-template-columns:1.15fr .85fr 1fr;
  gap:34px;
  padding-bottom:38px
}
.footer-brand {
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px
}
.footer-brand img {
  width:68px;
  height:68px;
  background:#fff;
  border-radius:18px;
  padding:5px
}
.footer-brand strong {
  font-size:1.2rem
}
.site-footer p {
  color:#b9c8dd
}
.footer-links a {
  display:block;
  text-decoration:none;
  color:#eee9d8;
  padding:5px 0
}
.footer-links a:hover {
  color:#fff
}
.footer-bottom {
  text-align:center;
  border-top:1px solid rgba(255,255,255,.12);
  padding:22px 0 28px
}
.footer-bottom p {
  margin:4px 0;
  color:#c7d3e3;
  font-size:.9rem
}
.footer-bottom a {
  text-decoration:none;
  color:#fff
}
.scroll-top {
  position:fixed;
  right:20px;
  bottom:20px;
  width:46px;
  height:46px;
  border:0;
  border-radius:14px;
  background:var(--ink);
  color:#fff;
  display:none;
  cursor:pointer;
  z-index:40
}
.scroll-top.show {
  display:block
}
.reveal {
  opacity:0;
  transform:translateY(18px);
  transition:.55s
}
.reveal.visible {
  opacity:1;
  transform:none
}
@media(max-width:980px) {
  .menu-toggle {
    display:block
  }
  .nav-links {
    position:absolute;
    left:19px;
    right:19px;
    top:72px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow)
  }
  .nav-links.open {
    display:flex
  }
  .header-cta {
    margin:3px 0 0
  }
  .hero-grid,.about-grid,.process,.download-shell,.release-grid,.blog-layout,.faq-wrap {
    grid-template-columns:1fr
  }
  .hero-stage {
    min-height:480px
  }
  .hero-card {
    inset:22px 15px 64px
  }
  .features-head {
    grid-template-columns:1fr
  }
  .card-grid,.compat-grid,.use-grid,.trouble-grid,.guide-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .faq-tabs {
    position:static;
    display:grid;
    grid-template-columns:1fr 1fr
  }
  .sidebar,.process-panel {
    position:static
  }
  .footer-top {
    grid-template-columns:1fr 1fr
  }
}
@media(max-width:680px) {
  .section {
    padding:64px 0
  }
  .container {
    width:min(100% - 26px,1180px)
  }
  h1 {
    font-size:clamp(2.35rem,12vw,3.5rem)
  }
  .hero {
    padding-top:46px
  }
  .hero-stage {
    min-height:390px
  }
  .hero-card {
    inset:20px 4px 60px
  }
  .hero-stat.two {
    right:0
  }
  .hero-stat {
    max-width:180px;
    padding:12px
  }
  .card-grid,.compat-grid,.use-grid,.trouble-grid,.guide-grid,.blog-list,.proscons,.safety,.info-band {
    grid-template-columns:1fr
  }
  .download-shell {
    padding:28px 20px
  }
  .footer-top {
    grid-template-columns:1fr
  }
  .article {
    padding:22px 18px
  }
  .page-hero {
    padding-top:52px
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  .reveal {
    opacity:1;
    transform:none;
    transition:none
  }
  .btn {
    transition:none
  }
}


/* 2026 logo-led theme refresh */
:root{
  --ink:#25261d;--muted:#686a5b;--line:#ddd9c8;--surface:#fffefa;--soft:#f7f5ea;
  --primary:#666b28;--primary-dark:#484b1e;--secondary:#7b2f26;--secondary-dark:#552018;
  --accent:#b78a4b;--cream:#ebe6a1;--shadow:0 18px 48px rgba(64,56,34,.12);
  --font:"Poppins","Trebuchet MS","Segoe UI",Arial,sans-serif
}
body{background:#fcfbf6;color:var(--ink);font-family:var(--font)}
h1{font-size:clamp(2.25rem,4.4vw,3.75rem);letter-spacing:-.032em}
h2{font-size:clamp(1.65rem,3vw,2.45rem);letter-spacing:-.026em}
h3{font-size:1.08rem;letter-spacing:-.015em}
.page-hero h1{font-size:clamp(2.15rem,4vw,3.25rem)}
.section{padding:78px 0}.lead{font-size:1.04rem;line-height:1.78}
.eyebrow{color:var(--secondary)}
.eyebrow:before{background:linear-gradient(90deg,var(--primary),var(--accent))}
.site-header{background:rgba(252,251,246,.96)}
.brand img{width:48px;height:48px;object-fit:contain}
.nav-links a:hover,.nav-links a.active{background:#efedd9;color:var(--secondary)}
.btn-primary{background:linear-gradient(135deg,var(--secondary),var(--secondary-dark));box-shadow:0 12px 25px rgba(123,47,38,.2)}
.btn-ghost{background:#fffefa;border-color:#d9d4bd}
.hero{position:relative;padding:94px 0 88px;min-height:650px;background:
  linear-gradient(90deg,rgba(23,24,17,.94) 0%,rgba(28,29,19,.90) 34%,rgba(28,29,19,.52) 62%,rgba(28,29,19,.16) 100%),
  url('../images/hero-bg.webp') center center/cover no-repeat;color:#fff;overflow:hidden}
.hero:after{content:"";position:absolute;inset:auto 0 0;height:90px;background:linear-gradient(180deg,transparent,rgba(0,0,0,.12));pointer-events:none}
.hero .container{position:relative;z-index:1}
.hero-grid{display:grid;grid-template-columns:minmax(0,760px);justify-content:start;gap:0;align-items:center}
.hero-copy{padding:18px 0}.hero-copy:after{display:none}.hero-stage{display:none}
.hero h1{color:#fff;text-shadow:0 2px 22px rgba(0,0,0,.22)}.hero h1 span{color:var(--cream)}
.hero p,.hero .lead{color:#eeeee4}.hero .eyebrow{color:#f3d994}.hero .eyebrow:before{background:linear-gradient(90deg,#d9d46f,var(--accent))}
.hero .btn-primary{background:linear-gradient(135deg,#7a812f,#51551f);box-shadow:0 13px 32px rgba(0,0,0,.25)}
.hero .btn-ghost{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.32);color:#fff;backdrop-filter:blur(5px)}
.hero-note{color:#eee9cc}.hero-note b{color:#fff}.hero-note span{padding-right:16px;border-right:1px solid rgba(255,255,255,.2)}.hero-note span:last-child{border:0}
.section-soft{background:#f7f5ea}
.card,.release-box,.notice,.pc-card,.step,.info-pill,.article,.blog-card,.contact-card,.side-box{background:#fffefa;border-color:var(--line)}
.card-grid{grid-template-columns:repeat(3,minmax(0,1fr));align-items:stretch}.card-grid .card{height:100%;min-width:0}
.card .icon{background:#efedd9;color:var(--secondary)}
.process-panel{background:linear-gradient(145deg,#35351d,#676b29);color:#fff}.process-panel p{color:#e9e6d2}.step-num{background:var(--secondary)}
.download-shell{background:linear-gradient(135deg,#25261d,#3f431f);border:1px solid #55572e}.download-shell .media-frame{background:#2e301f;border-color:#68643d}
.faq-tab.active{background:#efedd9;color:var(--secondary)}.faq-question span:last-child{color:var(--secondary)}
.guide-card:hover{box-shadow:0 15px 38px rgba(75,57,34,.15)}
.site-footer{background:linear-gradient(180deg,#232519,#161710)}
.footer-brand img{width:82px;height:82px;object-fit:contain;background:transparent;padding:0;border-radius:0}
.footer-bottom{border-top-color:rgba(235,230,161,.2)}
.footer-bottom a{color:#ebe6a1}.footer-links a:hover{color:#ebe6a1}
.media-frame{background:#fffefa;border-color:var(--line)}
.media-frame img,.guide-card img,.blog-card img,.article img.feature{object-fit:cover}
@media (max-width:980px){.hero{min-height:590px;background-position:62% center}.card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:680px){h1{font-size:clamp(2rem,11vw,3rem)}h2{font-size:clamp(1.5rem,8vw,2.05rem)}.section{padding:62px 0}.hero{min-height:620px;padding:78px 0 70px;background-position:70% center}.hero:before{content:"";position:absolute;inset:0;background:rgba(14,15,10,.18)}.card-grid{grid-template-columns:1fr}.hero-note span{border:0;padding-right:0}}


/* Requested typography, heading flow and CTA visibility refinements */
body, button, input, textarea, select { font-family:"Poppins","Segoe UI",Arial,sans-serif; }
.nav-links .header-cta,
.nav-links .header-cta:visited,
.nav-links .header-cta:hover,
.nav-links .header-cta:focus,
.nav-links .header-cta.active{
  color:#fff !important;
  background:linear-gradient(135deg,var(--secondary),#4b1c17);
  border:1px solid rgba(255,255,255,.08);
  text-shadow:0 1px 1px rgba(0,0,0,.18);
}
.nav-links .header-cta:hover,
.nav-links .header-cta:focus{
  background:linear-gradient(135deg,#8b382e,#5a211b);
}
.card-grid .card,.compat-grid .card,.use-grid .card,.trouble-grid .card{height:100%}
.hero h1{max-width:760px}
.visual-triptych{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin:26px 0 34px;
}
.visual-triptych figure{
  margin:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
}
.visual-triptych img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
@media (max-width:760px){
  .visual-triptych{grid-template-columns:1fr}
}
