:root {
  --bg-body: #121214;
  --bg-panel: #1f1f24;
  --bg-panel-soft: #2a2a31;
  --blue-section: #1f4fd8;
  --purple-section: #7b2fd4;
  --purple-deep: #5b1ea8;
  --pink-section: #c12f9d;
  --accent-yellow: #ffde59;
  --accent-gold: #ffc400;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-dark: #f4f4f7;
  --surface: #1f1f24;
  --surface-alt: #17171b;
  --stroke: #000000;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 14px 0 rgba(0, 0, 0, 0.35);
  --max-width: 1180px;
  --header-height: 3.75rem;
  --header-bg: rgba(14, 14, 18, 0.78);
  --header-border: rgba(255, 255, 255, 0.08);
  --nav-hover: rgba(255, 255, 255, 0.06);
  --nav-active: rgba(255, 222, 89, 0.12);
  --font-display: "Lilita One", "Trebuchet MS", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='10' cy='10' r='4'/%3E%3Ccircle cx='42' cy='16' r='3'/%3E%3Ccircle cx='24' cy='34' r='3.5'/%3E%3Ccircle cx='46' cy='42' r='4'/%3E%3C/g%3E%3C/svg%3E");
  --torn-edge: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 36' preserveAspectRatio='none'%3E%3Cpath fill='%23121214' d='M0 0h50l25 18 25-18h50l20 14 20-14h50l28 20 28-20h50l18 12 18-12h50l24 16 24-16h50l22 15 22-15h50l26 18 26-18h50l20 14 20-14h50l25 18 25-18h50l18 12 18-12h50l28 20 28-20h50l20 14 20-14h50l25 18 25-18h50l18 12 18-12h50l28 20 28-20h50l20 14 20-14h50l25 18 25-18h50l18 12 18-12h50l28 20 28-20h50l20 14 20-14h50l25 18 25-18h50l18 12 18-12h50l28 20 28-20h50l20 14 20-14h50l25 18 25-18h50l18 12 18-12h50l28 20 28-20h50l20 14 20-14h50l25 18 25-18h50V0z'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--bg-body);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-yellow);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: #fff4a8;
}

h1,
h2,
h3,
h4,
.section-heading h2,
.hero h1,
.benefit-card h3,
.cta-panel h2,
.faq-item summary {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 1000;
  background: var(--accent-yellow);
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: #fff;
}

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.menu-trigger__icon {
  width: 0.95rem;
  height: 0.7rem;
  border-block: 2px solid currentColor;
}

.site-header.is-open .menu-trigger {
  color: var(--accent-yellow);
  background: var(--nav-active);
  border-color: rgba(255, 222, 89, 0.22);
}

.site-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: start;
  justify-items: end;
  padding: calc(var(--header-height) + 0.75rem) 1rem 1rem;
  background: rgba(8, 8, 12, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu-panel__nav {
  width: min(100%, 22rem);
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(16, 16, 22, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  transform: translateY(-0.5rem);
  transition: transform 0.28s ease;
}

.site-menu-panel.is-open .site-menu-panel__nav {
  transform: translateY(0);
}

.site-menu-panel__nav a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-menu-panel__nav a:hover {
  color: #fff;
  background: var(--nav-hover);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-menu-panel__nav a[aria-current="page"] {
  color: var(--accent-yellow);
  background: var(--nav-active);
  border-color: rgba(255, 222, 89, 0.22);
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .site-menu-panel {
    padding-right: max(1rem, calc((100vw - var(--max-width)) / 2 + 1rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-trigger,
  .site-menu-panel,
  .site-menu-panel__nav,
  .site-menu-panel__nav a {
    transition: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-body);
  color: var(--text-light);
}

.hero::after {
  content: "";
  display: block;
  height: 28px;
  background: var(--torn-edge) center bottom / 100% 100% no-repeat;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: 3.5rem 2.5rem;
}

.hero-copy,
.hero-visual {
  background: var(--bg-panel);
  border: 5px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: none;
  padding: 1.75rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--accent-yellow);
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.6rem;
  border: 4px solid var(--stroke);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: #fff;
  color: #111;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  color: #111;
  transform: translateY(-1px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 18rem;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(180deg, var(--accent-yellow) 0, var(--accent-yellow) 2.4rem, #fff 2.4rem, #fff 100%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--stroke);
}

.hero-visual img {
  border: 4px solid var(--stroke);
  border-radius: 16px;
  background: linear-gradient(135deg, #67e8f9, #f472b6, #fde047);
}

.breadcrumbs {
  padding-block: 0.9rem;
  background: var(--surface-alt);
  border-bottom: 4px solid var(--stroke);
  font-size: 0.92rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumbs a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 800;
}

.content-section {
  position: relative;
  padding-block: 4rem;
}

.content-section--light {
  background: var(--blue-section) var(--pattern);
  color: var(--text-light);
}

.content-section--light::before,
.content-section--light::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  background: var(--torn-edge) center / 100% 100% no-repeat;
  pointer-events: none;
}

.content-section--light::before {
  top: -1px;
  transform: rotate(180deg);
}

.content-section--light::after {
  bottom: -1px;
}

.content-section--alt {
  background: var(--bg-body);
  color: var(--text-light);
}

.content-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.article {
  color: var(--text-light);
}

.article h2,
.article h3,
.article h4 {
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}

.article h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.article h3 {
  margin-top: 1.75rem;
  font-size: 1.2rem;
}

.article h4 {
  margin-top: 1.25rem;
  font-size: 1.02rem;
}

.article p,
.article li {
  font-size: 1rem;
}

.article ul,
.article ol {
  padding-left: 1.25rem;
}

.article hr {
  margin: 2rem 0;
  border: 0;
  border-top: 3px dashed rgba(255, 255, 255, 0.18);
}

.feature-stack {
  display: grid;
  gap: 1.25rem;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 4px solid var(--stroke);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.28);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-yellow);
  color: #111;
  font-family: var(--font-display);
  font-weight: 400;
  border: 3px solid var(--stroke);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}

.checklist li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
}

.side-visual {
  position: relative;
  min-height: 18rem;
}

.side-visual > img {
  border: 5px solid var(--stroke);
  border-radius: 18px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #60a5fa, #c084fc, #f472b6);
  box-shadow: var(--shadow);
}

.watermark {
  position: absolute;
  inset: 8% 0 auto;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  color: rgba(255, 255, 255, 0.08);
  text-align: center;
  pointer-events: none;
}

.benefits {
  position: relative;
  background:
    linear-gradient(135deg, var(--purple-section) 0%, var(--pink-section) 55%, var(--purple-deep) 100%),
    var(--pattern);
  color: var(--text-light);
}

.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  background: var(--torn-edge) center / 100% 100% no-repeat;
  pointer-events: none;
}

.benefits::before {
  top: -1px;
  transform: rotate(180deg);
}

.benefits::after {
  bottom: -1px;
}

.section-heading {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.28);
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  gap: 1.25rem;
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
  border: 4px solid var(--stroke);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.28);
}

.benefit-card--blue,
.benefit-card--purple,
.benefit-card--pink {
  border-color: var(--stroke);
}

.benefit-card h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.2rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 18px;
  background: var(--bg-panel);
  border: 4px solid var(--stroke);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "▾";
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--text-muted);
}

.cta-panel {
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--bg-panel);
  border: 5px solid var(--stroke);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-top: 0;
}

.cta-panel p {
  color: var(--text-muted);
}

.cta-note {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-articles {
  padding-block: 3rem 4rem;
  background: var(--surface-alt);
  border-top: 4px solid var(--stroke);
}

.related-grid {
  display: grid;
  gap: 1rem;
}

.related-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: var(--bg-panel);
  border: 4px solid var(--stroke);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.28);
}

.related-card a {
  color: #fff;
  text-decoration: none;
}

.related-card p {
  color: var(--text-muted);
}

.site-footer {
  background: linear-gradient(180deg, #0d0d11 0%, #000 100%);
  color: rgba(255, 255, 255, 0.68);
  padding-block: 3.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  display: grid;
  gap: 2.5rem;
}

.site-footer-nav {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer-nav__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-nav__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer-nav__lede {
  margin: 0.75rem 0 1.25rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.site-footer-nav__list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-nav__list a {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer-nav__list a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.site-footer-nav__list a[aria-current="page"] {
  background: var(--nav-active);
  border-color: rgba(255, 222, 89, 0.22);
}

.site-footer-nav__label {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.site-footer-nav__meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

.site-footer-meta {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-row a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-grid,
  .content-grid,
  .faq-grid,
  .benefit-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .hero-grid,
  .content-grid,
  .faq-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
