:root {
  --green-950: #061c13;
  --green-900: #08291b;
  --green-800: #0c3a26;
  --green-700: #0f6b3f;
  --green-600: #13a060;
  --green-500: #20c77b;
  --gold-500: #f2bf51;
  --gold-600: #c9912f;
  --ink: #172032;
  --muted: #627086;
  --line: #dfe7e1;
  --paper: #ffffff;
  --soft: #f3f7f0;
  --soft-green: #eaf5ec;
  --shadow: 0 18px 45px rgba(6, 28, 19, .14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.now-page {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

.now-page a {
  color: inherit;
  text-decoration: none;
}

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

.now-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.now-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 28, 19, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

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

.now-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.now-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-500), #fff1a6 48%, #12d47d);
  box-shadow: 0 10px 24px rgba(20, 200, 123, .22);
  font-size: 15px;
  font-weight: 950;
}

.now-brand strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.now-brand span span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.now-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.now-nav a {
  padding: 10px 12px;
  border-radius: 6px;
}

.now-nav a:hover,
.now-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.now-nav .now-action {
  color: var(--green-950);
  background: var(--gold-500);
  box-shadow: 0 10px 24px rgba(242, 191, 81, .25);
}

.now-hero {
  min-height: 690px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 28, 19, .98) 0%, rgba(6, 28, 19, .92) 36%, rgba(6, 28, 19, .42) 61%, rgba(6, 28, 19, .12) 100%),
    url("/assets/888now-hero.png") center right / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.now-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(243, 247, 240, 0), var(--soft));
  pointer-events: none;
}

.now-hero-inner {
  position: relative;
  padding: 88px 0 118px;
}

.now-hero-copy {
  width: min(620px, 100%);
}

.now-hero h1,
.now-article-hero h1 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
}

.now-hero h1 {
  font-size: clamp(58px, 9vw, 116px);
  line-height: .88;
}

.now-hero h1 span {
  display: block;
  color: var(--gold-500);
}

.now-lead {
  width: min(580px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
}

.now-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 0;
}

.now-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.now-btn-primary {
  color: var(--green-950);
  background: var(--gold-500);
  box-shadow: 0 15px 34px rgba(242, 191, 81, .32);
}

.now-btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.now-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(580px, 100%);
  margin-top: 54px;
}

.now-metric {
  min-height: 98px;
  padding: 17px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
}

.now-metric strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1.1;
}

.now-metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 700;
}

.now-section {
  padding: 86px 0;
}

.now-section.now-alt {
  background: var(--paper);
}

.now-section.now-dark {
  color: #fff;
  background: var(--green-950);
}

.now-section-head {
  width: min(760px, 100%);
  margin-bottom: 36px;
}

.now-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.now-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.07;
  font-weight: 950;
  letter-spacing: 0;
}

.now-dark .now-title,
.now-card.now-featured .now-title {
  color: #fff;
}

.now-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.now-dark .now-copy,
.now-card.now-featured p {
  color: rgba(255, 255, 255, .72);
}

.now-quick-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
}

.now-card,
.now-panel,
.now-step,
.now-faq,
.now-article-link-card {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.now-card {
  min-height: 240px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.now-card.now-featured {
  color: #fff;
  background: linear-gradient(135deg, rgba(13, 109, 64, .96), rgba(6, 28, 19, .98));
  border-color: transparent;
}

.now-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 950;
}

.now-card h3,
.now-panel h3,
.now-step h3,
.now-faq h3,
.now-article-link-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.now-card.now-featured h3 {
  color: #fff;
}

.now-card p,
.now-panel p,
.now-step p,
.now-faq p,
.now-article-link-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.now-feature-grid,
.now-steps,
.now-faq-grid,
.now-article-grid {
  display: grid;
  gap: 16px;
}

.now-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.now-panel {
  min-height: 270px;
  padding: 26px;
}

.now-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--soft-green);
  display: grid;
  place-items: center;
  color: var(--green-700);
  font-size: 28px;
  font-weight: 950;
}

.now-access {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
}

.now-media {
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 28, 19, .2), rgba(6, 28, 19, .92)),
    url("/assets/888now-hero.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.now-media-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: #fff;
}

.now-media-copy h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 950;
}

.now-media-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .76);
}

.now-access-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.now-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  margin-bottom: 26px;
  border-radius: 6px;
  color: var(--green-800);
  background: var(--soft-green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.now-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: step;
}

.now-step {
  min-height: 250px;
  padding: 25px;
  counter-increment: step;
}

.now-step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 950;
}

.now-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.now-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
}

.now-point-list {
  display: grid;
  gap: 12px;
}

.now-point {
  min-height: 86px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 17px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.now-point strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--green-950);
  background: var(--gold-500);
  font-size: 18px;
}

.now-point h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
}

.now-point p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
}

.now-faq-grid,
.now-article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.now-faq {
  min-height: 196px;
  padding: 24px;
}

.now-article-link-card {
  min-height: 232px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.now-date {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--green-800);
  background: var(--soft-green);
  font-size: 12px;
  font-weight: 900;
}

.now-read {
  margin-top: 18px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.now-footer {
  color: rgba(255, 255, 255, .72);
  background: #07120e;
  padding: 52px 0 28px;
}

.now-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr .75fr;
  gap: 28px;
}

.now-footer h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 17px;
}

.now-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.now-footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  text-align: center;
}

.now-article-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 28, 19, .98), rgba(6, 28, 19, .72)),
    url("/assets/888now-hero.png") center right / cover no-repeat;
  padding: 90px 0;
}

.now-article-hero h1 {
  width: min(850px, 100%);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
}

.now-breadcrumb {
  margin: 18px auto 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.now-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.now-article-box,
.now-side-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.now-article-box {
  padding: 34px;
}

.now-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.now-article-body,
.now-article-body p,
.now-article-body li {
  color: #2c3547;
  font-size: 16px;
  line-height: 1.85;
}

.now-article-body h2,
.now-article-body h3 {
  color: var(--ink);
  font-weight: 950;
  line-height: 1.18;
}

.now-article-body img {
  height: auto;
  border-radius: 8px;
}

.now-page-tools,
.now-prenext {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.now-page-tools ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.now-page-tools a,
.now-prenext a {
  color: var(--green-700);
  font-weight: 900;
}

.now-side-box {
  overflow: hidden;
}

.now-side-visual {
  min-height: 240px;
  background: url("/assets/888now-hero.png") center / cover no-repeat;
}

.now-side-content {
  padding: 24px;
}

.now-side-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
  font-weight: 950;
}

.now-side-content p {
  color: var(--muted);
}

@media (max-width: 1020px) {
  .now-header-inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .now-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .now-nav a {
    flex: 0 0 auto;
  }

  .now-hero {
    min-height: 650px;
    background:
      linear-gradient(180deg, rgba(6, 28, 19, .84) 0%, rgba(6, 28, 19, .88) 48%, rgba(6, 28, 19, .42) 100%),
      url("/assets/888now-hero.png") center bottom / cover no-repeat;
  }

  .now-hero-inner {
    padding: 62px 0 210px;
  }

  .now-quick-grid,
  .now-access,
  .now-band,
  .now-footer-grid,
  .now-article-layout {
    grid-template-columns: 1fr;
  }

  .now-feature-grid,
  .now-steps,
  .now-faq-grid,
  .now-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .now-wrap {
    width: min(100% - 28px, var(--max));
  }

  .now-brand strong {
    font-size: 21px;
  }

  .now-nav {
    font-size: 12px;
  }

  .now-hero {
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(6, 28, 19, .9) 0%, rgba(6, 28, 19, .92) 46%, rgba(6, 28, 19, .38) 100%),
      url("/assets/888now-hero.png") 62% bottom / 132% auto no-repeat;
  }

  .now-hero-inner {
    padding: 34px 0 168px;
  }

  .now-hero h1 {
    font-size: clamp(50px, 17vw, 70px);
  }

  .now-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .now-buttons {
    margin-top: 22px;
    flex-direction: column;
  }

  .now-btn {
    width: 100%;
  }

  .now-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .now-metric {
    min-height: 74px;
    padding: 11px 10px;
  }

  .now-metric strong {
    font-size: 19px;
  }

  .now-metric span {
    font-size: 11px;
  }

  .now-feature-grid,
  .now-access-list,
  .now-steps,
  .now-faq-grid,
  .now-article-grid {
    grid-template-columns: 1fr;
  }

  .now-section {
    padding: 64px 0;
  }

  .now-card,
  .now-panel,
  .now-step,
  .now-faq,
  .now-article-link-card {
    min-height: auto;
  }

  .now-media {
    min-height: 410px;
  }

  .now-media-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .now-article-hero {
    padding: 62px 0;
  }

  .now-article-box {
    padding: 24px;
  }
}
