@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #071814;
  --muted: #5c6c65;
  --paper: #f6f7f1;
  --paper2: #edf2e9;
  --lime: #72f596;
  --lime2: #c9ffd7;
  --line: #d4ddd4;
  --white: #fff;
  --danger: #7a2e2e;
  --max: 1180px;
  --shadow: 0 18px 55px rgba(7, 24, 20, .09)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: auto
}

.section {
  padding: 88px 0;
  scroll-margin-top: 94px
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #297343;
  margin-bottom: 10px
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  margin: .1em 0 .35em
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0
}

.center {
  text-align: center
}

.center .section-lead {
  margin-inline: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: .2s
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 24, 20, .16)
}

.btn.alt {
  background: transparent;
  color: var(--ink)
}

.btn.lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 241, .93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(7, 24, 20, .07)
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto
}

.brand img {
  width: 225px;
  height: auto
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px
}

.nav a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600
}

.nav a:hover,
.nav a.active {
  color: #297343
}

.nav .header-download {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700
}

.hero {
  padding: 72px 0 54px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 44px;
  align-items: center
}

.hero-copy {
  border-top: 3px solid var(--ink);
  padding-top: 28px
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -.07em;
  line-height: .9;
  margin: .18em 0 .25em;
  max-width: 760px
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px
}

.hero-notes span {
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .78rem;
  background: white
}

.hero-visual {
  position: relative
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  object-fit: cover
}

.hero-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  border-top: 1px solid var(--ink);
  margin-top: 14px;
  padding-top: 13px;
  font-size: .82rem;
  color: var(--muted)
}

.hero-caption strong {
  color: var(--ink)
}

.editorial-intro {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: start
}

.big-number {
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.08em;
  color: #d7e0d5
}

.about-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.about-card img {
  border-radius: 16px;
  margin-bottom: 24px;
  aspect-ratio: 16/9;
  object-fit: cover
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
  margin-top: 42px
}

.feature {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .45)
}

.feature .num {
  font-size: .8rem;
  color: #297343;
  font-weight: 800
}

.feature h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 50px 0 10px
}

.feature p {
  color: var(--muted);
  font-size: .92rem
}

.works {
  background: var(--ink);
  color: #f8fff8
}

.works .section-lead {
  color: #b7c6bf
}

.works-list {
  margin-top: 40px;
  border-top: 1px solid #345047
}

.work-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #345047;
  align-items: start
}

.work-row .step {
  color: var(--lime);
  font-weight: 800
}

.work-row h3 {
  margin: 0;
  font-size: 1.35rem
}

.work-row p {
  margin: 0;
  color: #b7c6bf
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px
}

.story-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  padding: 30px
}

.story-card h3 {
  font-size: 1.5rem;
  margin: .15em 0 .55em
}

.story-card p,
.story-card li {
  color: var(--muted)
}

.story-card ul {
  padding-left: 20px
}

.tagline {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #297343
}

.compat-table {
  border-top: 2px solid var(--ink);
  margin-top: 38px
}

.compat-row {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1.6fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  align-items: start
}

.compat-row strong {
  font-size: .95rem
}

.status {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--lime2);
  font-size: .76rem;
  font-weight: 800
}

.status.check {
  background: #f6e8bd
}

.compat-row span:last-child {
  color: var(--muted);
  font-size: .9rem
}

.download-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #d9ffe4 0%, #f6f7f1 60%)
}

.download-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center
}

.download-card {
  background: var(--ink);
  color: white;
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow)
}

.download-card .section-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem)
}

.download-card p {
  color: #bfd0c7
}

.download-card .btn {
  margin-top: 12px
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #345047;
  margin-top: 28px;
  border: 1px solid #345047
}

.download-meta div {
  padding: 16px;
  background: #0d241e
}

.download-meta small {
  display: block;
  color: #96aea3
}

.download-visual img {
  border-radius: 24px;
  aspect-ratio: 16/9;
  object-fit: cover
}

.fineprint {
  font-size: .78rem;
  color: #67766f
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px
}

.step-card {
  counter-increment: steps;
  border: 1px solid var(--line);
  padding: 26px;
  background: white;
  border-radius: 18px
}

.step-card:before {
  content: '0' counter(steps);
  display: block;
  color: #297343;
  font-weight: 800;
  margin-bottom: 36px
}

.step-card h3 {
  margin: 0 0 8px
}

.step-card p {
  margin: 0;
  color: var(--muted)
}

.notice {
  border-left: 6px solid var(--lime);
  background: #0d241e;
  color: #eef9f1;
  padding: 34px;
  border-radius: 0 22px 22px 0
}

.notice p {
  color: #c4d5cc
}

.notice strong {
  color: var(--lime)
}

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: white
}

.proscons>div {
  padding: 34px
}

.proscons>div+div {
  border-left: 1px solid var(--line)
}

.proscons h3 {
  margin-top: 0
}

.proscons li {
  margin: 10px 0;
  color: var(--muted)
}

.release-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-top: 36px
}

.release-strip div {
  padding: 24px;
  border-right: 1px solid var(--line)
}

.release-strip div:last-child {
  border-right: 0
}

.release-strip small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px
}

.release-strip strong {
  font-size: 1rem
}

.trouble-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px
}

.trouble {
  padding: 26px;
  border-top: 3px solid var(--ink);
  background: white
}

.trouble h3 {
  font-size: 1.2rem
}

.trouble p {
  color: var(--muted);
  font-size: .9rem
}

.guides-preview {
  background: #e6eee4
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px
}

.guide-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.guide-card img {
  aspect-ratio: 16/9;
  object-fit: cover
}

.guide-card .pad {
  padding: 22px
}

.guide-card h3 {
  margin: 0 0 10px;
  line-height: 1.2
}

.guide-card p {
  color: var(--muted);
  font-size: .9rem
}

.guide-card a {
  text-decoration: none
}

.guide-card a:hover {
  text-decoration: underline
}

.faq {
  padding-bottom: 96px
}

.faq-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  margin-top: 38px
}

.faq-tabs {
  position: sticky;
  top: 110px;
  align-self: start
}

.faq-tab {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 16px 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer
}

.faq-tab.active {
  color: #297343
}

.faq-category {
  display: none
}

.faq-category.active {
  display: block
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 22px 46px 22px 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  cursor: pointer
}

.faq-q:after {
  content: '+';
  position: absolute;
  right: 3px;
  top: 18px;
  font-size: 1.7rem;
  font-weight: 400
}

.faq-item.open .faq-q:after {
  content: '−'
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease
}

.faq-a p {
  margin: 0;
  padding: 0 46px 22px 0;
  color: var(--muted)
}

.faq-item.open .faq-a {
  max-height: 420px
}

.site-footer {
  background: var(--ink);
  color: #eef8f1;
  padding: 60px 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr;
  gap: 42px
}

.site-footer .brand img {
  filter: brightness(0) invert(1);
  opacity: .95
}

.site-footer p,
.site-footer li {
  color: #a9beb4;
  font-size: .9rem
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.site-footer li {
  margin: 9px 0
}

.site-footer a {
  text-decoration: none;
  color: #d9e9df
}

.site-footer a:hover {
  color: var(--lime)
}

.footer-title {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lime);
  font-weight: 800
}

.copyright {
  border-top: 1px solid #345047;
  margin-top: 34px;
  padding-top: 22px;
  text-align: center;
  color: #93aa9f;
  font-size: .82rem
}

.copyright a {
  text-decoration: none
}

.page-hero {
  padding: 72px 0 46px;
  border-bottom: 1px solid var(--line)
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: .95;
  letter-spacing: -.055em;
  margin: .2em 0
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem
}

.breadcrumbs {
  font-size: .78rem;
  color: var(--muted)
}

.breadcrumbs a {
  text-decoration: none
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 46px;
  padding: 64px 0
}

.article {
  min-width: 0
}

.article h2 {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-top: 2.2em
}

.article h3 {
  font-size: 1.25rem;
  margin-top: 1.8em
}

.article p,
.article li {
  color: #4e5f57
}

.article img {
  border-radius: 22px;
  margin: 28px 0;
  aspect-ratio: 16/9;
  object-fit: cover
}

.article a {
  color: #256d40
}

.article-callout {
  background: #e4f7e7;
  border-left: 5px solid #72f596;
  padding: 22px;
  margin: 28px 0
}

.sidebar {
  align-self: start;
  position: sticky;
  top: 110px
}

.side-card {
  border-top: 3px solid var(--ink);
  padding: 20px 0 26px
}

.side-card h3 {
  margin-top: 0
}

.side-card a {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  font-size: .9rem
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 54px 0 80px
}

.post-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  overflow: hidden
}

.post-card img {
  aspect-ratio: 16/9;
  object-fit: cover
}

.post-card .pad {
  padding: 22px
}

.post-card h2 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: .2em 0 .6em
}

.post-card p {
  font-size: .9rem;
  color: var(--muted)
}

.post-card a {
  text-decoration: none
}

.post-card a:hover {
  text-decoration: underline
}

.legal {
  max-width: 860px;
  padding: 64px 0 90px
}

.legal h2 {
  margin-top: 2.2em
}

.legal p,
.legal li {
  color: var(--muted)
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px
}

.contact-box>div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px
}

.contact-email {
  font-weight: 800;
  font-size: 1.15rem;
  word-break: break-word
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: #fff;
  display: none;
  cursor: pointer;
  z-index: 30
}

.scroll-top.show {
  display: block
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: .55s
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:980px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch
  }

  .nav.open {
    display: flex
  }

  .menu-toggle {
    display: block
  }

  .hero-grid,
  .editorial-intro,
  .download-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 46px
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 5.8rem)
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr
  }

  .work-row {
    grid-template-columns: 70px 1fr
  }

  .work-row p {
    grid-column: 2
  }

  .faq-shell {
    grid-template-columns: 1fr
  }

  .faq-tabs {
    position: static;
    display: flex;
    gap: 8px
  }

  .faq-tab {
    border: 1px solid var(--line);
    padding: 12px;
    border-radius: 12px
  }

  .sidebar {
    position: static
  }

  .blog-grid,
  .guide-cards,
  .trouble-list {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:680px) {
  .section {
    padding: 64px 0
  }

  .container {
    width: min(100% - 24px, var(--max))
  }

  .brand img {
    width: 185px
  }

  .hero {
    padding-top: 36px
  }

  .hero-grid {
    gap: 28px
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem)
  }

  .feature-grid,
  .duo,
  .steps,
  .proscons,
  .release-strip,
  .blog-grid,
  .guide-cards,
  .trouble-list,
  .contact-box {
    grid-template-columns: 1fr
  }

  .feature {
    min-height: auto
  }

  .work-row {
    grid-template-columns: 50px 1fr
  }

  .compat-row {
    grid-template-columns: 1fr
  }

  .download-card {
    padding: 26px
  }

  .download-meta {
    grid-template-columns: 1fr
  }

  .proscons>div+div {
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .release-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .release-strip div:last-child {
    border-bottom: 0
  }

  .faq-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    gap: 24px
  }
}


/* 2026 professional visual refresh */
body {
  background: linear-gradient(180deg, #f8faf5 0, #f3f6ef 38%, #f7f8f3 100%)
}

.site-header {
  background: rgba(248, 250, 245, .88);
  border-bottom: 1px solid rgba(7, 24, 20, .06)
}

.header-inner {
  min-height: 78px
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.025em;
  white-space: nowrap
}

.brand .brand-mark {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain;
  border-radius: 11px;
  padding: 7px;
  background: #eaffee;
  border: 1px solid #bfe8c8;
  filter: none !important
}

.brand-name {
  font-size: 1.02rem;
  line-height: 1;
  color: var(--ink)
}

.site-footer .brand-name {
  color: #f3fff6
}

.site-footer .brand .brand-mark {
  background: #dfffea;
  opacity: 1
}

.nav .header-download {
  background: linear-gradient(135deg, #0b211a, #173e2e);
  box-shadow: 0 8px 20px rgba(7, 24, 20, .13)
}

.hero {
  position: relative;
  padding: 86px 0 70px;
  overflow: hidden;
  background: radial-gradient(circle at 88% 16%, rgba(114, 245, 150, .25), transparent 28%), linear-gradient(180deg, #f9fbf6, #eef4eb)
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7, 24, 20, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 24, 20, .028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px
}

.hero-copy {
  border-top: 0;
  padding: 10px 0
}

.hero-copy:before {
  content: "MINECRAFT • VISIBILITY UTILITY";
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid #b7d6be;
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .12em;
  font-weight: 800;
  color: #245e38;
  background: rgba(255, 255, 255, .75);
  margin-bottom: 18px
}

.hero h1 {
  font-size: clamp(3.05rem, 6.2vw, 6.05rem);
  line-height: .95;
  letter-spacing: -.062em;
  margin: .12em 0 .28em;
  max-width: 850px
}

.hero p {
  font-size: 1.08rem;
  max-width: 720px
}

.hero-actions .btn {
  min-height: 50px;
  padding-inline: 23px
}

.hero-notes {
  margin-top: 30px
}

.hero-notes span {
  background: rgba(255, 255, 255, .78);
  border-color: #c7d7cb;
  box-shadow: 0 5px 18px rgba(7, 24, 20, .04)
}

.hero-visual {
  background: #0b1f18;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 28px 70px rgba(7, 24, 20, .16)
}

.hero-visual img {
  width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: 22px;
  box-shadow: none;
  object-fit: cover;
  background: #10261d
}

.hero-caption {
  margin: 10px 6px 4px;
  padding: 12px 4px 2px;
  border-color: #345047;
  color: #abc3b7
}

.hero-caption strong {
  color: var(--lime)
}

.section {
  position: relative
}

.section-title {
  max-width: 950px
}

.about-card,
.story-card,
.step-card,
.guide-card,
.post-card,
.contact-box>div {
  box-shadow: 0 12px 36px rgba(7, 24, 20, .045)
}

.feature-grid {
  border: 0;
  gap: 14px
}

.feature {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  min-height: 240px;
  transition: transform .2s, box-shadow .2s
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 24, 20, .08)
}

.feature h3 {
  margin-top: 34px
}

.works {
  background: linear-gradient(135deg, #071814, #0d2b21 65%, #153d2e)
}

.download-band {
  background: radial-gradient(circle at 82% 15%, rgba(114, 245, 150, .32), transparent 26%), linear-gradient(135deg, #e6fbe9, #f7f8f3)
}

.download-card {
  background: linear-gradient(145deg, #071814, #102d22)
}

.download-visual img {
  width: 100%;
  max-height: 360px
}

.guides-preview {
  background: linear-gradient(180deg, #eaf2e7, #edf4ea)
}

.guide-card img {
  width: 100%;
  height: 180px;
  aspect-ratio: 16/9;
  object-fit: cover
}

.blog-grid {
  gap: 18px
}

.post-card {
  border-radius: 16px
}

.post-card img {
  width: 100%;
  height: 170px;
  aspect-ratio: 16/9;
  object-fit: cover
}

.post-card .pad {
  padding: 19px
}

.post-card h2 {
  font-size: 1.12rem
}

.article>img,
.article img.article-image {
  width: 100%;
  max-height: 420px;
  aspect-ratio: 16/9;
  object-fit: cover
}

.page-hero {
  background: radial-gradient(circle at 85% 20%, rgba(114, 245, 150, .18), transparent 25%)
}

.footer-disclaimer {
  text-align: center;
  color: #87a095;
  font-size: .76rem;
  margin-top: 9px;
  line-height: 1.6
}

.site-footer {
  background: linear-gradient(145deg, #061612, #0a211a)
}

@media(max-width:980px) {
  .brand-name {
    font-size: .95rem
  }

  .hero {
    padding-top: 52px
  }

  .hero-visual img {
    min-height: 0
  }

  .guide-card img,
  .post-card img {
    height: auto
  }
}

@media(max-width:680px) {
  .brand .brand-mark {
    width: 38px !important;
    height: 38px !important
  }

  .brand-name {
    font-size: .88rem
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem)
  }

  .hero-copy:before {
    font-size: .6rem
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-visual {
    padding: 7px;
    border-radius: 22px
  }

  .hero-visual img {
    border-radius: 16px
  }

  .post-card img,
  .guide-card img {
    height: auto;
    aspect-ratio: 16/9
  }

  .footer-disclaimer {
    padding-inline: 8px
  }
}


/* Header CTA + About section refinement */
.nav {
  gap: 18px
}

.nav .header-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 142px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid #0b211a;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b211a 0%, #1b4b37 100%);
  color: #fff !important;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 9px 22px rgba(7, 24, 20, .14);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav .header-download:hover,
.nav .header-download.active {
  color: #fff !important;
  background: linear-gradient(135deg, #123225 0%, #245e42 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(7, 24, 20, .2);
}

.download-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--lime);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.about-modern {
  padding: 96px 0;
  background: linear-gradient(180deg, #f8faf5 0%, #eef4eb 100%);
  overflow: hidden
}

.about-modern-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, .97fr);
  gap: 58px;
  align-items: center;
  padding: 42px;
  border: 1px solid #d6e2d6;
  border-radius: 32px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 60px rgba(7, 24, 20, .08);
  position: relative;
}

.about-modern-shell:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(114, 245, 150, .16);
  filter: blur(4px);
  left: -110px;
  bottom: -120px;
  pointer-events: none;
}

.about-modern-copy {
  position: relative;
  z-index: 1
}

.about-modern .section-title {
  font-size: clamp(2.35rem, 4.5vw, 4.7rem);
  max-width: 680px;
  margin: .08em 0 .25em
}

.about-modern .section-lead {
  font-size: 1rem;
  max-width: 680px
}

.about-points {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line)
}

.about-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line)
}

.about-point>span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e4fae9;
  color: #215f38;
  font-size: .72rem;
  font-weight: 800
}

.about-point strong {
  display: block;
  font-size: .98rem;
  line-height: 1.35;
  margin: 1px 0 3px
}

.about-point small {
  display: block;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.55
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  color: #215f38
}

.about-link span {
  font-size: 1.2rem;
  transition: transform .2s ease
}

.about-link:hover span {
  transform: translateX(4px)
}

.about-modern-visual {
  min-width: 0
}

.about-image-frame {
  position: relative;
  padding: 9px;
  border-radius: 26px;
  background: #0a1c16;
  box-shadow: 0 22px 52px rgba(7, 24, 20, .16)
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 18px;
  margin: 0;
  display: block
}

.about-image-badge {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(7, 24, 20, .84);
  backdrop-filter: blur(8px);
  color: #fff
}

.about-image-badge strong {
  font-size: .88rem;
  color: var(--lime)
}

.about-image-badge span {
  font-size: .72rem;
  color: #c5d7ce;
  text-align: right
}

@media(max-width:1100px) {
  .nav {
    gap: 13px
  }

  .nav a {
    font-size: .84rem
  }

  .nav .header-download {
    min-width: 132px;
    padding-inline: 14px
  }
}

@media(max-width:980px) {
  .nav {
    gap: 8px
  }

  .nav .header-download {
    width: 100%;
    min-width: 0;
    border-radius: 12px;
    min-height: 46px
  }

  .about-modern-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px
  }

  .about-modern-visual {
    max-width: 720px;
    width: 100%;
    margin-inline: auto
  }
}

@media(max-width:680px) {
  .about-modern {
    padding: 68px 0
  }

  .about-modern-shell {
    padding: 22px;
    border-radius: 23px;
    gap: 28px
  }

  .about-modern .section-title {
    font-size: clamp(2.1rem, 10vw, 3.25rem)
  }

  .about-point {
    grid-template-columns: 42px 1fr;
    padding: 14px 0
  }

  .about-image-frame {
    padding: 7px;
    border-radius: 20px
  }

  .about-image-frame img {
    border-radius: 14px
  }

  .about-image-badge {
    position: static;
    margin: 7px 0 0;
    display: block;
    border-radius: 12px
  }

  .about-image-badge span {
    display: block;
    text-align: left;
    margin-top: 3px
  }
}