:root {
  --bg: #20131c;
  --text: #fff7ef;
  --accent: #d59a84;
  --alt: #aeb7ff;
  --surface: #2b1a26;
  --muted: rgba(247,247,239,.72);
  --line: rgba(247,247,239,.18);
  --shadow: 0 26px 70px rgba(32,19,28,.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(16px, 4vw, 64px);
  background: rgba(15,17,23,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 7vw, 92px);
}

.hero-image {
  margin: 0;
  min-height: 540px;
  padding: 0;
}

.hero-image img {
  height: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.9rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
}

p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow),
.page-hero p,
.method p,
.legal-copy p {
  max-width: 68ch;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

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

.button,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

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

.primary {
  background: var(--accent);
  color: var(--bg);
}

.secondary {
  border-color: var(--alt);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip span {
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--accent);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 9vw, 116px) clamp(16px, 4vw, 64px);
}

.section-title {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.ranking-card,
.method-board article,
.review-steps article,
.contact-panel {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
}

.ranking-card span,
.review-steps span {
  color: var(--accent);
  font-weight: 900;
}

.top-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.top-list li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.top-list span {
  color: var(--accent);
  font-weight: 900;
}

.top-list em {
  color: var(--muted);
  font-style: normal;
}

.method,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.method-board {
  display: grid;
  gap: 14px;
}

.method-board strong {
  display: block;
  color: var(--accent);
  font-size: 2rem;
}

.visual-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.visual-row img,
.split img {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: clamp(76px, 11vw, 140px) clamp(16px, 4vw, 64px) clamp(44px, 7vw, 82px);
  border-bottom: 1px solid var(--line);
}

.page-hero.small {
  padding-bottom: clamp(34px, 5vw, 62px);
}

.page-hero h1 {
  max-width: 13ch;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.values span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 900;
}

.review-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font: inherit;
}

.legal-copy {
  max-width: 880px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
}

.success-panel {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 48px 16px;
  text-align: center;
}

.success-panel h1 {
  max-width: 12ch;
}

.success-panel span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(16px, 4vw, 64px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 46ch;
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .section-title,
  .method,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 380px;
  }

  .signal-strip,
  .ranking-grid,
  .visual-row,
  .review-steps {
    grid-template-columns: 1fr;
  }

  .top-list li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .top-list em {
    grid-column: 2;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3rem;
  }

  .hero-copy,
  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }
}