:root {
  --green-950: #061914;
  --green-900: #09241d;
  --green-800: #0d3a2c;
  --green-500: #19b96e;
  --red-700: #d92323;
  --red-600: #ef322e;
  --gold-500: #ffc94c;
  --gold-600: #f1ad24;
  --ink: #17201c;
  --muted: #65746d;
  --line: #e7e0d7;
  --paper: #fffaf2;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(8, 24, 18, .18);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.van-page {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.van-wrap {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.van-top-strip {
  background: #17ad6a;
  color: #061914;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.van-brand-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.van-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.van-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #071b15;
  background: linear-gradient(135deg, #ffe36b 0%, #ffc642 32%, #f1312f 72%, #078e54 100%);
  box-shadow: 0 16px 34px rgba(12, 66, 43, .34);
  font-weight: 950;
  line-height: 1;
}

.van-brand-title {
  display: grid;
  gap: 2px;
}

.van-brand-title strong {
  font-size: 34px;
  line-height: .9;
  font-style: italic;
}

.van-brand-title span {
  font-size: 11px;
  font-weight: 850;
  color: rgba(6, 25, 20, .72);
}

.van-quick-actions,
.van-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.van-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  border: 0;
}

.van-btn-dark {
  color: #fff !important;
  background: var(--green-900);
  box-shadow: 0 12px 24px rgba(9, 36, 29, .24);
}

.van-btn-gold {
  color: #11180f !important;
  background: linear-gradient(180deg, #ffe071, var(--gold-500));
  box-shadow: 0 16px 32px rgba(242, 179, 44, .3);
}

.van-btn-outline {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}

.van-nav-bar {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 12px 24px rgba(126, 6, 8, .16);
}

.van-nav-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.van-nav-row a {
  opacity: .88;
  padding: 24px 0 20px;
  border-bottom: 4px solid transparent;
}

.van-nav-row a:first-child {
  opacity: 1;
  border-color: #071b15;
}

.van-hero,
.van-article-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 25, 20, .98) 0%, rgba(6, 25, 20, .88) 39%, rgba(6, 25, 20, .48) 68%, rgba(6, 25, 20, .1) 100%),
    url("/assets/van88-hero.png") center right / cover no-repeat,
    var(--green-950);
}

.van-hero {
  min-height: 690px;
}

.van-hero::after,
.van-article-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0), var(--paper));
  pointer-events: none;
}

.van-hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 110px 0 118px;
}

.van-page h1,
.van-page h2,
.van-page h3,
.van-page p {
  margin: 0;
}

.van-hero h1 {
  font-size: clamp(54px, 7vw, 100px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.van-hero-copy {
  max-width: 540px;
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .9);
}

.van-hero-actions {
  margin-top: 34px;
}

.van-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.van-proof-cell {
  min-height: 96px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.van-proof-cell strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #fff;
}

.van-proof-cell span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
}

.van-main {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding-bottom: 70px;
}

.van-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.van-editorial-panel,
.van-feature-panel,
.van-article-panel,
.van-article-card,
.van-sidebar-card,
.van-breadcrumb {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.van-editorial-panel {
  min-height: 390px;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(255, 250, 242, .94) 100%),
    radial-gradient(circle at 0% 0%, rgba(239, 50, 46, .14), transparent 42%);
}

.van-section-title {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.van-section-copy {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.van-editorial-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.van-editorial-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.55;
  color: #26342f;
}

.van-editorial-list b,
.van-feature-panel .van-num {
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #12160e;
  background: var(--gold-500);
  font-weight: 950;
}

.van-editorial-list b {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.van-media-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6, 25, 20, .1), rgba(6, 25, 20, .78)),
    url("/assets/van88-hero.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.van-media-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px 24px;
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 25, 20, .76);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.van-media-caption h3 {
  font-size: 26px;
  line-height: 1.08;
  font-weight: 950;
}

.van-media-caption p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
}

.van-band {
  margin-top: 28px;
  padding: 64px 0;
  background: var(--green-950);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.van-feature-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.van-feature-head p {
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.7;
}

.van-feature-grid,
.van-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.van-feature-panel {
  min-height: 250px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
  color: #fff;
}

.van-feature-panel .van-num {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.van-feature-panel h3 {
  margin-top: 46px;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 950;
}

.van-feature-panel p {
  margin-top: 16px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.van-news {
  padding-top: 70px;
}

.van-news-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.van-news-head p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.7;
}

.van-article-panel {
  min-height: 242px;
  padding: 26px;
  box-shadow: none;
}

.van-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.van-meta::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--gold-500);
}

.van-article-panel h3 {
  margin-top: 22px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 950;
}

.van-article-panel p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.van-article-cta {
  margin-top: 22px;
  min-height: 38px;
  padding: 0 16px;
  color: #11180f !important;
  background: var(--gold-500);
}

.van-closing {
  margin-top: 60px;
  min-height: 270px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  padding: 44px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 25, 20, .96), rgba(6, 25, 20, .82)),
    url("/assets/van88-hero.png") center right / cover no-repeat;
  box-shadow: var(--shadow);
}

.van-closing h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 950;
}

.van-closing p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  font-size: 17px;
}

.van-article-hero {
  min-height: 445px;
}

.van-article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 82px 0 118px;
}

.van-article-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: .98;
  font-weight: 950;
}

.van-article-hero p {
  margin-top: 24px;
  max-width: 660px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.65;
}

.van-breadcrumb {
  margin-top: 22px;
  padding: 14px 18px;
  color: var(--muted);
  box-shadow: none;
  font-size: 14px;
}

.van-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
  padding: 54px 0 70px;
}

.van-article-card {
  padding: 36px;
  box-shadow: none;
}

.van-article-card .van-article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}

.van-article-card .van-body {
  color: #24332d;
  font-size: 17px;
  line-height: 1.9;
}

.van-article-card .van-body h2,
.van-article-card .van-body h3 {
  color: #101a16;
  margin: 30px 0 14px;
  font-weight: 950;
  line-height: 1.16;
}

.van-article-card .van-body p {
  margin: 0 0 18px;
}

.van-article-card .van-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.van-sidebar-card {
  overflow: hidden;
  box-shadow: none;
}

.van-sidebar-visual {
  height: 240px;
  background:
    linear-gradient(180deg, rgba(6, 25, 20, .08), rgba(6, 25, 20, .74)),
    url("/assets/van88-hero.png") center / cover no-repeat;
}

.van-sidebar-body {
  padding: 24px;
}

.van-sidebar-body h3 {
  font-size: 25px;
  line-height: 1.12;
  font-weight: 950;
}

.van-sidebar-body p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.van-prenext {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.van-prenext ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.van-footer {
  padding: 34px 0 46px;
  background: #061914;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.van-footer .van-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

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

  .van-brand-row {
    min-height: 70px;
    justify-content: center;
  }

  .van-quick-actions {
    display: none;
  }

  .van-nav-row {
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    min-height: 58px;
    padding: 0 14px;
  }

  .van-nav-row a {
    flex: 0 0 auto;
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .van-hero {
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(6, 25, 20, .98) 0%, rgba(6, 25, 20, .94) 46%, rgba(6, 25, 20, .5) 72%, rgba(6, 25, 20, .08) 100%),
      url("/assets/van88-hero.png") 68% bottom / 780px auto no-repeat,
      var(--green-950);
  }

  .van-hero-content {
    padding: 52px 0 220px;
  }

  .van-hero-copy {
    font-size: 18px;
  }

  .van-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .van-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
  }

  .van-proof-cell {
    min-height: 82px;
    padding: 14px 10px;
  }

  .van-proof-cell strong {
    font-size: 26px;
  }

  .van-proof-cell span {
    margin-top: 8px;
    font-size: 11px;
  }

  .van-intro-grid,
  .van-feature-head,
  .van-feature-grid,
  .van-article-grid,
  .van-closing,
  .van-article-layout {
    grid-template-columns: 1fr;
  }

  .van-main {
    margin-top: -36px;
  }

  .van-editorial-panel,
  .van-closing,
  .van-article-card {
    padding: 28px;
  }

  .van-section-title {
    font-size: 38px;
  }

  .van-feature-head {
    gap: 16px;
  }

  .van-news-head {
    display: grid;
    gap: 12px;
  }

  .van-article-hero {
    min-height: 420px;
    background:
      linear-gradient(180deg, rgba(6, 25, 20, .96), rgba(6, 25, 20, .58)),
      url("/assets/van88-hero.png") 65% center / 760px auto no-repeat,
      var(--green-950);
  }

  .van-article-hero-content {
    padding: 64px 0 104px;
  }

  .van-article-hero h1 {
    font-size: 44px;
  }

  .van-footer .van-wrap {
    display: grid;
  }
}

@media (max-width: 520px) {
  .van-brand-title strong {
    font-size: 28px;
  }

  .van-mark {
    width: 44px;
    height: 44px;
  }

  .van-hero h1 {
    font-size: 64px;
  }

  .van-hero {
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(6, 25, 20, .98) 0%, rgba(6, 25, 20, .94) 46%, rgba(6, 25, 20, .5) 73%, rgba(6, 25, 20, .08) 100%),
      url("/assets/van88-hero.png") 69% bottom / 690px auto no-repeat,
      var(--green-950);
  }

  .van-hero-content {
    padding-bottom: 210px;
  }

  .van-proof-cell {
    min-height: 82px;
  }

  .van-media-panel {
    min-height: 320px;
  }

  .van-article-panel {
    min-height: auto;
  }
}
