:root {
  --bg: #050811;
  --panel: #0b1426;
  --panel-2: #101c31;
  --gold: #f5c451;
  --gold-strong: #ffdc72;
  --emerald: #31d6a6;
  --text: #f7f3e8;
  --muted: #aeb8c8;
  --line: rgba(245, 196, 81, 0.38);
  --line-soft: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 34px rgba(245, 196, 81, 0.18);
  --radius: 20px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(34, 61, 102, 0.34), transparent 38rem),
    linear-gradient(180deg, #040710 0%, var(--bg) 40%, #03060c 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  padding-bottom: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

.icon-svg {
  width: 1em;
  height: 1em;
  overflow: visible;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gold);
  color: #101010;
  font-weight: 900;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
  border-inline: 1px solid rgba(255, 255, 255, 0.025);
  background: rgba(3, 7, 15, 0.48);
  box-shadow: 0 0 120px rgba(0, 0, 0, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 8, 17, 0.94);
  padding: 12px clamp(16px, 4vw, 36px);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: grid;
  min-width: 150px;
  line-height: 1;
}

.brand-crown {
  position: absolute;
  top: -10px;
  left: 61px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--gold-strong);
  font-size: 20px;
  text-shadow: 0 0 18px rgba(245, 196, 81, 0.52);
}

.brand-wordmark {
  background: linear-gradient(180deg, #fff0ac, #d99f26 60%, #fff0a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 7vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 22px rgba(245, 196, 81, 0.13);
}

.brand small {
  margin-top: 3px;
  color: #ded7c5;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-login {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 11px;
  padding: 0 18px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.drawer {
  position: absolute;
  top: calc(100% + 1px);
  right: 18px;
  display: grid;
  width: min(330px, calc(100vw - 36px));
  visibility: hidden;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(7, 13, 25, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms;
}

.drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.drawer a {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-soft);
  padding: 0 18px;
  color: #eee7d8;
  font-weight: 800;
}

.drawer a:hover,
.drawer a:focus-visible {
  background: rgba(245, 196, 81, 0.09);
  color: var(--gold-strong);
}

.drawer a span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(245, 196, 81, 0.1);
  color: var(--gold);
}

.drawer .icon-svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #030710 5%, rgba(3, 7, 16, 0.91) 34%, rgba(3, 7, 16, 0.12)),
    url("/static/vip79/vip79-trust-hero.webp") 76% center / cover no-repeat;
  padding: clamp(52px, 9vw, 100px) clamp(22px, 7vw, 80px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(transparent, rgba(2, 5, 11, 0.9));
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 60%, transparent 0 18%, rgba(4, 8, 17, 0.08) 50%),
    linear-gradient(180deg, transparent 70%, #050811);
}

.hero-content {
  width: min(540px, 100%);
}

.eyebrow,
.section-heading > span {
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  margin: 16px 0;
  font-size: clamp(40px, 8vw, 68px);
  letter-spacing: -0.045em;
  line-height: 0.99;
  text-transform: uppercase;
}

.hero h1 {
  background: linear-gradient(180deg, #fff, #fff1b7 58%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.page-hero p,
.article-hero p {
  max-width: 560px;
  margin: 0 0 24px;
  color: #d2d9e4;
  font-size: clamp(16px, 3vw, 19px);
}

.hero small {
  display: block;
  margin-top: 18px;
  color: #c6bc9f;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  border-color: #ffe18d;
  background: linear-gradient(180deg, #ffe584, #e6a724);
  box-shadow:
    0 10px 28px rgba(224, 161, 30, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #151108;
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow:
    0 14px 34px rgba(224, 161, 30, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.button-outline {
  border-color: var(--gold);
  background: rgba(5, 9, 18, 0.8);
  color: var(--gold-strong);
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(calc(100% - 28px), 960px);
  margin: -24px auto 28px;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 24, 44, 0.98), rgba(5, 11, 22, 0.98));
  box-shadow: var(--shadow);
}

.trust-strip > div {
  display: grid;
  min-height: 98px;
  place-items: center;
  align-content: center;
  border-right: 1px solid var(--line);
  padding: 12px 6px;
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 7px;
  place-items: center;
  border: 1px solid rgba(49, 214, 166, 0.5);
  border-radius: 50%;
  background: rgba(49, 214, 166, 0.09);
  color: var(--emerald);
  font-size: 21px;
  font-weight: 950;
}

.trust-icon .icon-svg {
  width: 21px;
  height: 21px;
  stroke-width: 3.5;
}

.trust-strip strong {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  width: min(calc(100% - 28px), 940px);
  margin: 0 auto 42px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.category-grid a {
  display: grid;
  min-height: 118px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 0, rgba(245, 196, 81, 0.12), transparent 52%),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  padding: 12px 6px;
  text-align: center;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.category-grid a:hover,
.category-grid a:focus-visible {
  border-color: var(--gold-strong);
  background-color: #111c2e;
  transform: translateY(-3px);
}

.category-icon {
  display: grid;
  min-width: 46px;
  height: 46px;
  margin-bottom: 9px;
  place-items: center;
  color: var(--gold-strong);
  font-size: 29px;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(245, 196, 81, 0.32);
}

.category-icon .icon-svg {
  width: 31px;
  height: 31px;
}

.category-grid strong {
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding: 52px clamp(16px, 5vw, 48px);
}

.section + .section {
  border-top: 1px solid rgba(245, 196, 81, 0.12);
}

.section-heading {
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 7px 0 0;
  color: var(--gold-strong);
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-heading h2::before,
.section-heading h2::after {
  position: absolute;
  top: 50%;
  width: min(80px, 8vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}

.section-heading h2::before {
  right: calc(100% + 18px);
}

.section-heading h2::after {
  left: calc(100% + 18px);
  transform: rotate(180deg);
}

.align-left h2::before,
.align-left h2::after {
  display: none;
}

.feature-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-grid article,
.experience-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.035), transparent 38%),
    var(--panel);
  padding: 24px 16px;
  text-align: center;
}

.feature-grid article {
  min-height: 218px;
}

.feature-grid article::after,
.experience-card::after {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(245, 196, 81, 0.05);
  content: "";
}

.feature-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 15px;
  place-items: center;
  border: 1px solid rgba(245, 196, 81, 0.42);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(245, 196, 81, 0.17), rgba(49, 214, 166, 0.08));
  color: var(--gold-strong);
  font-size: 22px;
  font-weight: 950;
  box-shadow: var(--glow);
}

.feature-icon .icon-svg {
  width: 34px;
  height: 34px;
}

.feature-grid h3,
.experience-card h3,
.step-card h3,
.mobile-benefits h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.24;
  text-transform: uppercase;
}

.feature-grid p,
.experience-card p,
.step-card p,
.mobile-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.experience-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 64, 78, 0.16), transparent 45%),
    rgba(4, 9, 18, 0.55);
}

.experience-card {
  display: grid;
  min-height: 292px;
  padding: 0;
  grid-template-rows: auto 1fr;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.experience-card:hover,
.experience-card:focus-visible {
  border-color: var(--gold-strong);
  transform: translateY(-4px);
}

.experience-media {
  width: 100%;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
  transition: transform 280ms ease;
}

.experience-card:hover .experience-media,
.experience-card:focus-visible .experience-media {
  transform: scale(1.035);
}

.experience-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 92px;
  align-content: center;
  background:
    linear-gradient(180deg, rgba(16, 28, 49, 0.94), rgba(6, 12, 23, 0.98));
  padding: 15px 12px 17px;
}

.steps-visual {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 21px 21px 0 0;
  background: #050b15;
  box-shadow: var(--glow);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 21px 21px;
  background: rgba(7, 14, 26, 0.92);
}

.steps-grid::before {
  display: none;
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 140px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 24px 18px 18px;
  text-align: center;
}

.step-card:last-child {
  border-right: 0;
}

.step-card b {
  position: absolute;
  top: 10px;
  left: 50%;
  color: rgba(245, 196, 81, 0.7);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 950;
  transform: translateX(-50%);
}

.mobile-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 80px);
  background:
    radial-gradient(circle at 25% 50%, rgba(49, 214, 166, 0.1), transparent 36%),
    #060b15;
}

.mobile-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.mobile-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 214, 166, 0.18), transparent 67%);
  content: "";
  transform: translate(-50%, -50%);
}

.mobile-showcase {
  position: relative;
  z-index: 1;
  width: min(100%, 370px);
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.48));
}

.mobile-benefits {
  display: grid;
  gap: 12px;
}

.mobile-benefits article {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(13, 24, 43, 0.68);
  padding: 13px 16px;
}

.mobile-benefits article > span {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border: 1px solid rgba(49, 214, 166, 0.48);
  border-radius: 50%;
  color: var(--emerald);
  font-size: 25px;
}

.mobile-benefits .icon-svg {
  width: 26px;
  height: 26px;
}

.safety-section {
  background: linear-gradient(180deg, rgba(9, 20, 36, 0.74), rgba(4, 8, 16, 0.6));
}

.safety-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr minmax(190px, 28%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 214, 166, 0.06), transparent 45%),
    var(--panel);
}

.safety-panel ul {
  display: grid;
  margin: 0;
  padding: 28px;
  grid-template-columns: 1fr 1fr;
  gap: 20px 26px;
  list-style: none;
}

.safety-panel li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #dce4ec;
  font-size: 14px;
}

.safety-panel li span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border: 1px solid rgba(49, 214, 166, 0.55);
  border-radius: 50%;
  color: var(--emerald);
  font-size: 20px;
  font-weight: 950;
}

.safety-panel li .icon-svg {
  width: 17px;
  height: 17px;
}

.safety-shield {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle, rgba(49, 214, 166, 0.24), transparent 54%),
    rgba(7, 17, 29, 0.8);
  padding: 12px;
}

.security-shield-image {
  width: 100%;
  filter: drop-shadow(0 0 24px rgba(47, 201, 255, 0.22));
}

.faq-list {
  display: grid;
  width: min(100%, 840px);
  margin: 0 auto;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(9, 17, 31, 0.82);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  padding: 15px 18px;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover,
.faq-item button:focus-visible {
  background: rgba(245, 196, 81, 0.06);
}

.faq-plus {
  color: var(--gold);
  font-size: 24px;
  transition: transform 160ms ease;
}

.faq-item button[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  border-top: 1px solid var(--line-soft);
  padding: 0 18px 17px;
  color: var(--muted);
}

.faq-answer p {
  margin: 14px 0 0;
}

.resource-list {
  display: grid;
  padding: 0 clamp(16px, 5vw, 48px) 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.resource-card {
  display: grid;
  min-height: 140px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--panel);
  padding: 20px;
  gap: 7px;
}

.resource-kicker {
  color: var(--emerald);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.resource-card > span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.pager {
  padding: 0 20px 28px;
  color: var(--gold);
  text-align: center;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  align-content: center;
  overflow: hidden;
  margin: 20px clamp(14px, 4vw, 40px) 42px;
  border: 1px solid var(--gold);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent, rgba(245, 196, 81, 0.08), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 7px, transparent 7px 14px),
    #07101f;
  box-shadow: var(--glow);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  top: 50%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(245, 196, 81, 0.38);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.final-cta::before {
  left: -75px;
}

.final-cta::after {
  right: -75px;
}

.final-cta strong {
  background: linear-gradient(180deg, #fff0a7, #c98916 68%, #ffe9a0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Georgia, serif;
  font-size: clamp(52px, 10vw, 86px);
  line-height: 1;
}

.final-cta p {
  margin: 8px 0 18px;
  color: #e5dfd0;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.final-cta .button {
  min-width: min(360px, 80%);
}

.cta-crown {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: -3px;
  color: var(--gold-strong);
  font-size: 31px;
}

.final-cta.compact {
  min-height: 230px;
}

.site-footer {
  display: grid;
  justify-items: center;
  border-top: 1px solid var(--line);
  padding: 38px 20px 50px;
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  color: var(--gold-strong);
  font-family: Georgia, serif;
  font-size: 29px;
}

.site-footer > span {
  color: #ddd5c2;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 13px 0;
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #d6cdaF;
  font-size: 12px;
}

.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: none;
  min-height: 68px;
  padding-bottom: env(safe-area-inset-bottom);
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 14, 0.97);
  box-shadow: 0 -14px 42px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  display: grid;
  min-width: 0;
  place-items: center;
  align-content: center;
  color: #b7c0cd;
  font-size: 10px;
  gap: 3px;
}

.bottom-nav a:first-child,
.bottom-nav a:hover,
.bottom-nav a:focus-visible {
  color: var(--gold-strong);
}

.bottom-icon {
  display: grid;
  place-items: center;
  font-size: 23px;
  line-height: 1;
}

.bottom-icon .icon-svg {
  width: 23px;
  height: 23px;
}

.page-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 7, 16, 0.98), rgba(3, 7, 16, 0.52)),
    url("/static/vip79/vip79-trust-hero.webp") 76% center / cover no-repeat;
  padding: clamp(58px, 9vw, 100px) clamp(20px, 7vw, 74px);
}

.page-hero::after,
.article-hero::after {
  position: absolute;
  right: -40px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(245, 196, 81, 0.17);
  border-radius: 50%;
  content: "";
}

.page-hero h1,
.article-hero h1 {
  max-width: 780px;
  color: #fff0c0;
}

.content-layout,
.article-layout {
  display: grid;
  padding: 50px clamp(16px, 5vw, 48px);
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
}

.side-nav,
.article-toc {
  position: sticky;
  top: 102px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.side-nav > strong,
.article-toc > strong {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  color: var(--gold-strong);
  font-size: 13px;
  text-transform: uppercase;
}

.side-nav a {
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
}

.side-nav a[aria-current="page"],
.side-nav a:hover {
  background: rgba(245, 196, 81, 0.08);
  color: var(--gold-strong);
}

.content-sections {
  display: grid;
  gap: 16px;
}

.content-card,
.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), transparent 36%),
    var(--panel);
  padding: clamp(22px, 5vw, 38px);
}

.content-card h2 {
  margin: 0 0 15px;
  color: var(--gold-strong);
  font-size: clamp(22px, 4vw, 31px);
  line-height: 1.16;
}

.content-card p {
  margin: 0 0 14px;
  color: #c1cad6;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(245, 196, 81, 0.16);
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.inner-faq {
  background: rgba(4, 9, 17, 0.7);
}

.article-toc ol {
  display: grid;
  margin: 0;
  padding: 8px 16px 16px 34px;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.article-toc a:hover {
  color: var(--gold);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--emerald);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  margin: 22px 0;
  border-block: 1px solid var(--line-soft);
  padding: 11px 0;
  color: var(--muted);
  font-size: 12px;
}

.article-meta span {
  color: var(--gold);
  font-weight: 900;
}

.article-body {
  color: #ccd4df;
  font-size: 16px;
}

.article-body h2,
.article-body h3 {
  scroll-margin-top: 105px;
  color: #f5e3a8;
  line-height: 1.22;
}

.article-body h2 {
  margin: 38px 0 14px;
  font-size: 29px;
}

.article-body h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.article-body a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body img {
  height: auto;
  margin: 24px auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-body blockquote {
  margin: 24px 0;
  border-left: 3px solid var(--emerald);
  border-radius: 0 12px 12px 0;
  background: rgba(49, 214, 166, 0.06);
  padding: 15px 18px;
}

.article-cta {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(245, 196, 81, 0.11), rgba(49, 214, 166, 0.06));
  padding: 22px;
}

.article-cta strong {
  color: var(--gold-strong);
  font-size: 20px;
}

.article-cta p {
  margin: 5px 0 15px;
  color: var(--muted);
}

.pagebreak {
  margin: 24px 0;
  color: var(--gold);
  text-align: center;
}

.prenext {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.prenext section {
  display: grid;
  min-height: 96px;
  align-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  padding: 13px;
}

.prenext span {
  color: var(--emerald);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.related-grid a {
  display: grid;
  min-height: 116px;
  align-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--panel);
  padding: 16px;
}

.related-grid span {
  color: var(--emerald);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.responsible-note {
  margin: 0;
  padding: 15px 20px 28px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
}

.error-card {
  display: grid;
  width: min(560px, 100%);
  min-height: 420px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0, rgba(245, 196, 81, 0.15), transparent 44%),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 34px;
  text-align: center;
}

.error-card > span {
  color: var(--gold-strong);
  font-family: Georgia, serif;
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
}

.error-card h1 {
  margin: 16px 0 5px;
  font-size: 33px;
}

.error-card p {
  max-width: 400px;
  margin: 0 0 22px;
  color: var(--muted);
}

.error-card small {
  margin-top: 20px;
  color: var(--muted);
}

@media (max-width: 780px) {
  body {
    padding-bottom: 74px;
  }

  .bottom-nav {
    display: grid;
  }

  .feature-grid,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step-card {
    width: auto;
    min-height: 132px;
    margin: 0;
  }

  .mobile-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
  }

  .section-heading.align-left {
    text-align: left;
  }

  .safety-panel {
    grid-template-columns: 1fr 150px;
  }

  .safety-panel ul {
    grid-template-columns: 1fr;
  }

  .safety-shield {
    min-height: 160px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .content-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .side-nav,
  .article-toc {
    position: static;
  }
}

@media (max-width: 430px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    min-height: 72px;
    padding: 9px 12px;
  }

  .brand {
    min-width: 122px;
  }

  .brand-crown {
    left: 50px;
    width: 18px;
    height: 18px;
    font-size: 17px;
  }

  .brand-wordmark {
    font-size: 31px;
  }

  .brand small {
    font-size: 9px;
  }

  .header-login {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 38px;
  }

  .menu-toggle span {
    width: 24px;
  }

  .hero {
    min-height: 630px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(3, 7, 16, 0.14) 12%, rgba(3, 7, 16, 0.7) 50%, #030710 88%),
      url("/static/vip79/vip79-trust-hero.webp") 68% top / auto 58% no-repeat,
      #030710;
    padding: 250px 18px 42px;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(35px, 11vw, 47px);
  }

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

  .hero .button {
    width: 100%;
  }

  .trust-strip {
    width: calc(100% - 20px);
    margin-top: -18px;
  }

  .trust-strip > div {
    min-height: 84px;
  }

  .trust-icon {
    width: 33px;
    height: 33px;
    font-size: 18px;
  }

  .trust-strip strong {
    font-size: 10px;
  }

  .category-grid {
    width: calc(100% - 20px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .category-grid a {
    min-height: 94px;
    border-radius: 12px;
    padding: 9px 3px;
  }

  .category-icon {
    min-width: 34px;
    height: 34px;
    margin-bottom: 5px;
    font-size: 23px;
  }

  .category-grid strong {
    font-size: 9px;
  }

  .section {
    padding: 42px 12px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading h2::before,
  .section-heading h2::after {
    display: none;
  }

  .feature-grid,
  .experience-grid {
    gap: 8px;
  }

  .feature-grid article,
  .experience-card {
    border-radius: 15px;
  }

  .feature-grid article {
    min-height: 202px;
    padding: 18px 10px;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 11px;
  }

  .feature-grid h3,
  .experience-card h3,
  .step-card h3,
  .mobile-benefits h3 {
    font-size: 13px;
  }

  .feature-grid p,
  .experience-card p,
  .step-card p,
  .mobile-benefits p {
    font-size: 11px;
  }

  .experience-card {
    min-height: 242px;
    padding: 0;
  }

  .experience-copy {
    min-height: 78px;
    padding: 11px 8px 13px;
  }

  .steps-grid {
    gap: 0;
  }

  .step-card {
    min-height: 124px;
    border-radius: 0;
    padding: 26px 7px 12px;
  }

  .mobile-section {
    padding-inline: 10px;
    gap: 10px;
  }

  .mobile-showcase {
    width: 100%;
  }

  .mobile-copy .section-heading {
    margin-bottom: 15px;
  }

  .mobile-copy .section-heading > span {
    font-size: 9px;
  }

  .mobile-copy .section-heading h2 {
    font-size: 22px;
  }

  .mobile-benefits article {
    min-height: 72px;
    gap: 9px;
    border-radius: 13px;
    padding: 9px;
  }

  .mobile-benefits article > span {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 20px;
  }

  .mobile-benefits .icon-svg {
    width: 21px;
    height: 21px;
  }

  .safety-panel {
    grid-template-columns: minmax(0, 1fr) 118px;
  }

  .safety-panel ul {
    padding: 16px 11px;
    gap: 12px;
  }

  .safety-panel li {
    gap: 7px;
    font-size: 11px;
  }

  .safety-shield {
    min-height: 150px;
    padding: 6px;
  }

  .faq-item button {
    min-height: 56px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .final-cta {
    min-height: 230px;
    margin: 14px 10px 34px;
    border-radius: 18px;
  }

  .final-cta strong {
    font-size: 55px;
  }

  .bottom-nav {
    min-height: 62px;
  }

  .bottom-nav a {
    font-size: 8px;
  }

  .bottom-icon {
    font-size: 19px;
  }

  .page-hero,
  .article-hero {
    min-height: 430px;
    background:
      linear-gradient(180deg, rgba(3, 7, 16, 0.25), #030710 72%),
      url("/static/vip79/vip79-trust-hero.webp") 68% top / auto 54% no-repeat,
      #030710;
    padding: 190px 16px 40px;
  }

  .content-layout,
  .article-layout {
    padding: 34px 12px;
  }

  .content-card,
  .article-card {
    padding: 22px 16px;
  }

  .content-number {
    top: 13px;
    right: 15px;
    font-size: 43px;
  }

  .resource-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .prenext {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
