:root {
  --bg: #100f12;
  --bg-soft: #17151a;
  --surface: rgba(28, 25, 31, 0.92);
  --surface-strong: #211d25;
  --text: #fff7ed;
  --muted: #cdbfb0;
  --line: rgba(255, 247, 237, 0.1);
  --gold: #efbf74;
  --gold-strong: #ff9f4f;
  --rose: #d98278;
  --green: #8fc79d;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --container: min(1120px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.68;
  background:
    radial-gradient(circle at top left, rgba(217, 130, 120, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(239, 191, 116, 0.14), transparent 26%),
    linear-gradient(180deg, #0f0d10 0%, #151217 46%, #0f0d10 100%);
}

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

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

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: #21140d;
  background: var(--gold);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 10, 13, 0.82);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #1d120b;
  background: linear-gradient(145deg, var(--gold), var(--gold-strong));
  font-weight: 900;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong,
h1,
h2,
h3,
.eyebrow {
  font-family: Georgia, "Times New Roman", serif;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.top-nav {
  display: none;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero,
.section {
  position: relative;
  padding: clamp(56px, 9vw, 96px) 0;
}

.hero {
  overflow: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.hero::before {
  top: 80px;
  left: -120px;
  background: rgba(217, 130, 120, 0.2);
}

.hero::after {
  right: -120px;
  bottom: 20px;
  background: rgba(239, 191, 116, 0.17);
}

.hero__grid,
.split-grid,
.card-grid,
.article-grid,
.cta-grid,
.link-grid {
  display: grid;
  gap: 20px;
}

.hero__grid > *,
.split-grid > *,
.card-grid > *,
.article-grid > *,
.cta-grid > *,
.link-grid > * {
  min-width: 0;
}

.hero__copy,
.hero__panel,
.section-heading,
.content-card,
.article-card,
.cta-panel,
.note-box {
  position: relative;
  z-index: 1;
}

.hero__copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 7vw, 4.1rem);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 5.8vw, 3.35rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 14px 0 0;
  color: var(--muted);
}

.lead {
  max-width: 68ch;
  color: rgba(255, 247, 237, 0.86);
  font-size: 1.06rem;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #21140d;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 16px 34px rgba(255, 159, 79, 0.24);
}

.btn--ghost,
.btn--secondary {
  border-color: rgba(255, 247, 237, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.btn--full {
  width: 100%;
}

.hero__panel,
.content-card,
.article-card,
.cta-panel,
.note-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(239, 191, 116, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero__panel,
.content-card,
.article-card,
.cta-panel,
.note-box {
  padding: 22px;
}

.hero__panel {
  align-self: start;
}

.signal-list,
.check-list,
.step-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.signal-list li,
.check-list li,
.step-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.signal-list li::before,
.check-list li::before,
.step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 0 0 6px rgba(239, 191, 116, 0.11);
}

.section--soft {
  background: rgba(255, 255, 255, 0.018);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
}

.article-body h3 {
  margin-top: 26px;
}

.article-body ul {
  color: var(--muted);
}

.article-body li {
  margin: 8px 0;
}

.article-card h3,
.content-card h3 {
  margin-bottom: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 247, 237, 0.84);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-nav {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 247, 237, 0.88);
  text-decoration: underline;
  text-decoration-color: rgba(239, 191, 116, 0.42);
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
}

.footer {
  padding: 26px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

@media (min-width: 720px) {
  .top-nav {
    display: flex;
  }

  .hero__actions,
  .cta-actions {
    flex-direction: row;
  }

  .card-grid,
  .article-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .hero__grid,
  .split-grid,
  .cta-grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
    align-items: center;
    gap: 28px;
  }

  .hero__panel {
    max-width: 520px;
    justify-self: end;
  }

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