:root {
  --night: #070c15;
  --night-2: #0d1420;
  --navy: #111827;
  --paper: #f8f8f6;
  --paper-2: #efefec;
  --card: #ffffff;
  --ink: #111827;
  --ink-muted: #515867;
  --text: #f7f8fb;
  --muted: #c3cad6;
  --gold: #d7ad52;
  --gold-2: #f0cf79;
  --gold-deep: #9b6d22;
  --line: rgba(17, 24, 39, 0.1);
  --line-dark: rgba(255, 255, 255, 0.1);
  --radius: 10px;
  --max: 1180px;
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  text-rendering: geometricPrecision;
}

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

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 6vw, 92px);
  background: linear-gradient(180deg, rgba(7, 12, 21, 0.86), rgba(7, 12, 21, 0.56));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.36rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.brand-prefix {
  color: var(--gold-2);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.04em;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-right: 2px;
}

.brand-main {
  color: var(--text);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: rgba(247, 248, 251, 0.86);
  font-size: 0.83rem;
  font-weight: 800;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--gold-2);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  white-space: nowrap;
  font-weight: 800;
}

.nav-cta {
  min-height: 42px;
  padding: 0 19px;
  color: #111827;
  background: linear-gradient(180deg, #f3cf78, #d7ad52);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.07;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(3.1rem, 6vw, 4.9rem);
}

h1 span {
  display: block;
  color: var(--gold-2);
}

h2 {
  color: inherit;
  font-size: clamp(2.05rem, 4.2vw, 3.8rem);
}

h3 {
  color: inherit;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

p {
  color: var(--ink-muted);
  text-wrap: pretty;
}

.section-dark,
.section-panel {
  position: relative;
  overflow: hidden;
}

.section-dark {
  color: var(--text);
  background: var(--night);
}

.section-dark p {
  color: var(--muted);
}

.section-panel {
  padding: clamp(72px, 8.5vw, 118px) clamp(20px, 6vw, 92px);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 173, 82, 0.11), transparent 34%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.hero {
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: 106px clamp(20px, 6vw, 92px) 58px;
}

.hero-bg,
.join-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.join-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img {
  object-position: 72% 24%;
  filter: saturate(0.96) contrast(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 21, 0.98) 0%, rgba(7, 12, 21, 0.76) 39%, rgba(7, 12, 21, 0.18) 73%),
    linear-gradient(180deg, rgba(7, 12, 21, 0.2) 0%, rgba(7, 12, 21, 0.08) 68%, rgba(7, 12, 21, 0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: block;
}

.hero-copy {
  width: min(100%, 780px);
}

.hero-subtitle {
  max-width: 490px;
  margin: 24px 0 0;
  color: rgba(247, 248, 251, 0.92);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 34px;
}

.hero-badges span {
  position: relative;
  display: grid;
  gap: 5px;
  min-width: 112px;
  justify-items: center;
  color: rgba(247, 248, 251, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

.hero-badges svg {
  width: 35px;
  height: 35px;
  margin-bottom: 4px;
  color: var(--gold-2);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.24));
}

.hero-badges b {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin: 12px 0 0 16px;
  color: rgba(247, 248, 251, 0.72);
  font-size: 0.82rem;
}

.btn {
  min-height: 52px;
  padding: 0 30px;
  transition: transform 180ms ease, filter 180ms ease;
}

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

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #111827;
  background: linear-gradient(180deg, #f4d37e, var(--gold));
  box-shadow: 0 8px 8px rgba(139, 94, 26, 0.16);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(215, 173, 82, 0.48);
  background: rgba(255, 255, 255, 0.04);
}

.kicker {
  margin: 0 0 13px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-dark .kicker {
  color: var(--gold-2);
}

.section-lead {
  width: min(100%, var(--max));
  margin: 0 auto 42px;
  text-align: center;
}

.section-lead.compact {
  max-width: 760px;
}

.section-lead p:not(.kicker),
.benefit-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.member-showcase {
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 207, 121, 0.14), transparent 33%),
    linear-gradient(180deg, #080d16, #111827 58%, #0a101b);
}

.member-showcase .section-lead p {
  color: rgba(247, 248, 251, 0.74);
}

.member-profile-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.member-card {
  overflow: hidden;
  border: 1px solid rgba(215, 173, 82, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.member-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #0a101b;
}

.member-card-body {
  min-height: 174px;
  padding: 20px;
}

.member-role {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(180deg, #f3cf78, #d7ad52);
  font-size: 0.72rem;
  font-weight: 900;
}

.member-card h3 {
  margin-top: 13px;
  color: var(--ink);
  font-size: 1.12rem;
}

.member-card p {
  margin: 9px 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.trust-grid,
.testimonial-grid,
.city-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card,
.benefit-item,
.testimonial,
.faq-item {
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.feature-card {
  min-height: 235px;
  padding: 30px 26px;
  text-align: center;
}

.feature-card p,
.benefit-item p,
.testimonial blockquote,
.faq-item p {
  color: var(--ink-muted);
}

.icon-token {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(155, 109, 34, 0.32);
  border-radius: 50%;
  color: var(--gold-deep);
  background: linear-gradient(180deg, rgba(240, 207, 121, 0.14), rgba(255, 255, 255, 0.7));
}

.icon-token svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how {
  padding: clamp(72px, 8.5vw, 118px) clamp(20px, 6vw, 92px);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 173, 82, 0.18), transparent 27%),
    linear-gradient(180deg, #0a101b, #111827 55%, #0a101b);
}

.steps {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  top: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 82, 0.35), transparent);
}

.step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 0 22px;
  text-align: center;
}

.step span {
  display: grid;
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: radial-gradient(circle at 32% 28%, #fff0b8, var(--gold) 62%, #a77728);
}

.step p {
  max-width: 270px;
}

.benefit-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.benefit-copy .kicker,
.benefit-copy h2,
.benefit-copy p {
  margin-left: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(88px, auto);
  gap: 14px;
  align-items: stretch;
}

.benefit-item {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  align-content: end;
  padding: clamp(22px, 2.4vw, 30px);
  isolation: isolate;
}

.benefit-item::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(155, 109, 34, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 207, 121, 0.18), transparent 66%);
  pointer-events: none;
  z-index: -1;
}

.benefit-item h3,
.benefit-item p {
  position: relative;
  z-index: 1;
}

.benefit-item h3 {
  max-width: 14ch;
}

.benefit-item p {
  max-width: 34ch;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.64;
}

.benefit-item:nth-child(1) {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  min-height: 210px;
}

.benefit-item:nth-child(1)::before {
  top: -20px;
  right: 26px;
}

.benefit-item:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: 1 / span 3;
  min-height: 286px;
  color: var(--text);
  border-color: rgba(215, 173, 82, 0.18);
  background:
    linear-gradient(160deg, rgba(240, 207, 121, 0.12), transparent 40%),
    linear-gradient(180deg, #141d2b, #0b111d);
}

.benefit-item:nth-child(2) p {
  color: rgba(247, 248, 251, 0.76);
}

.benefit-item:nth-child(2)::before {
  right: -24px;
  bottom: 18px;
  border-color: rgba(240, 207, 121, 0.22);
  background: radial-gradient(circle, rgba(240, 207, 121, 0.18), transparent 68%);
}

.benefit-item:nth-child(3) {
  grid-column: 1 / span 5;
  grid-row: 3 / span 3;
  min-height: 266px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 239, 220, 0.9));
}

.benefit-item:nth-child(3)::before {
  left: -22px;
  top: 28px;
}

.benefit-item:nth-child(4) {
  grid-column: 6 / span 7;
  grid-row: 4 / span 2;
  min-height: 210px;
  border-color: rgba(155, 109, 34, 0.16);
  background:
    linear-gradient(135deg, rgba(240, 207, 121, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.9);
}

.benefit-item:nth-child(4)::before {
  right: 18px;
  top: 18px;
}

.profiles {
  padding: clamp(72px, 8.5vw, 118px) clamp(20px, 6vw, 92px);
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  color: var(--ink);
}

.profiles p {
  color: var(--ink-muted);
}

.profile-split {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.profile-block {
  display: grid;
  align-content: start;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--card);
}

.profile-block:nth-child(1),
.profile-block:nth-child(2) {
  grid-column: span 2;
}

.profile-block img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.profile-block div {
  padding: 26px;
}

.profile-block ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
}

.profile-block li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.city-grid {
  grid-template-columns: repeat(5, 1fr);
}

.city-card {
  display: grid;
  min-height: 300px;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--text);
}

.city-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 600ms ease, opacity 250ms ease;
}

.city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(7, 12, 21, 0.92) 100%);
}

.city-card:hover img {
  transform: scale(1.06);
  opacity: 0.74;
}

.city-card span,
.city-card p {
  position: relative;
  z-index: 1;
}

.city-card span {
  color: var(--gold-2);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.city-card p {
  margin: 8px 0 0;
  color: rgba(247, 248, 251, 0.82);
  font-size: 0.9rem;
}

.testimonials {
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 173, 82, 0.1), transparent 32%),
    var(--paper);
}

.testimonial-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial {
  position: relative;
  margin: 0;
  padding: 30px;
}

.testimonial::before {
  content: "\201D";
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(155, 109, 34, 0.34);
  font-family: Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
}

.testimonial blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 34ch;
  font-size: 0.95rem;
}

.testimonial figcaption {
  margin-top: 26px;
  color: var(--ink);
  font-weight: 900;
}

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

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink);
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
}

.join {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: clamp(72px, 8.5vw, 118px) clamp(20px, 6vw, 92px);
}

.join-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 21, 0.42), rgba(7, 12, 21, 0.95)),
    linear-gradient(90deg, rgba(7, 12, 21, 0.88), rgba(7, 12, 21, 0.38));
}

.join-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  text-align: center;
}

.join-inner p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  margin-top: 32px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(7, 12, 21, 0.78);
  backdrop-filter: blur(14px);
}

.signup-form label {
  display: grid;
  gap: 7px;
  text-align: left;
}

.signup-form span {
  color: rgba(247, 248, 251, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 12px;
}

.signup-form input::placeholder {
  color: rgba(247, 248, 251, 0.7);
}

.signup-form .btn {
  align-self: end;
  min-height: 50px;
}

.adult-note {
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px clamp(20px, 6vw, 92px) 72px;
  color: var(--text);
  background: var(--night);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 21, 0.96), rgba(7, 12, 21, 0.68) 48%, rgba(7, 12, 21, 0.18)),
    linear-gradient(180deg, rgba(7, 12, 21, 0.1), rgba(7, 12, 21, 0.96));
  z-index: 1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 680px;
  color: rgba(247, 248, 251, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
}

.page-shell {
  padding: clamp(62px, 7vw, 104px) clamp(20px, 6vw, 92px);
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}

.page-shell.dark {
  color: var(--text);
  background: linear-gradient(180deg, #0a101b, #111827);
}

.page-shell.dark p,
.page-shell.dark li {
  color: var(--muted);
}

.content-wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.lede {
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.text-stack > * + * {
  margin-top: 18px;
}

.text-stack h2 {
  margin-top: 34px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.panel-card,
.mini-card,
.article-card,
.form-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.panel-card {
  padding: clamp(24px, 4vw, 42px);
}

.mini-grid,
.article-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.mini-card,
.article-card {
  padding: 24px;
}

.mini-card strong,
.article-card strong {
  color: var(--gold-deep);
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.form-card {
  padding: clamp(22px, 4vw, 34px);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  padding: 0 13px;
}

.form-grid textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
}

.app-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 173, 82, 0.18), transparent 38%),
    #0a101b;
  color: var(--text);
  padding: clamp(24px, 5vw, 48px);
}

.app-card p {
  color: rgba(247, 248, 251, 0.78);
}

.app-card .form-grid label {
  color: rgba(247, 248, 251, 0.92);
}

.app-card .form-grid input,
.app-card .form-grid select {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.blog-hero {
  min-height: 500px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}

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

.article-body h2 {
  margin-top: 42px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.article-body h3 {
  margin-top: 28px;
  font-size: 1.3rem;
}

.article-body p,
.article-body li {
  color: #343b49;
  font-size: 1.03rem;
}

.article-body a {
  color: var(--gold-deep);
  font-weight: 800;
}

.takeaway-box,
.article-cta,
.toc-card {
  border: 1px solid rgba(155, 109, 34, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
}

.takeaway-box {
  margin: 28px 0;
}

.toc-card {
  position: sticky;
  top: 96px;
}

.toc-card a {
  display: block;
  padding: 9px 0;
  color: var(--ink-muted);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  color: rgba(247, 248, 251, 0.76);
  font-weight: 800;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(215, 173, 82, 0.14);
  font-size: 0.84rem;
  font-weight: 900;
}

.article-card {
  display: grid;
  gap: 12px;
}

.article-card h2,
.article-card h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.article-card p {
  margin: 0;
}

.article-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
}

.policy-copy {
  max-width: 860px;
}

.policy-copy h2 {
  margin-top: 38px;
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
}

.policy-copy p,
.policy-copy li {
  color: #343b49;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 30px clamp(20px, 6vw, 92px);
  background: #070c15;
  color: var(--text);
}

.site-footer nav {
  display: flex;
  gap: 20px;
  color: rgba(247, 248, 251, 0.74);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
  color: rgba(247, 248, 251, 0.6);
  font-size: 0.8rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .testimonial-grid,
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .member-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-layout {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .benefit-item,
  .benefit-item:nth-child(1),
  .benefit-item:nth-child(2),
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 200px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(7, 12, 21, 0.97);
  }

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

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .hero-bg img {
    object-position: 68% 22%;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(7, 12, 21, 0.94), rgba(7, 12, 21, 0.58)),
      linear-gradient(180deg, rgba(7, 12, 21, 0.18), rgba(7, 12, 21, 0.94));
  }

  h1 {
    font-size: clamp(2.78rem, 13vw, 4.4rem);
  }

  .hero-badges {
    gap: 16px;
  }

  .hero-badges span {
    min-width: 92px;
  }

  .steps,
  .benefit-grid,
  .signup-form,
  .site-footer,
  .profile-split,
  .member-profile-grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .benefit-item,
  .benefit-item:nth-child(1),
  .benefit-item:nth-child(2),
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4) {
    min-height: 190px;
  }

  .profile-block:nth-child(1),
  .profile-block:nth-child(2) {
    grid-column: span 1;
  }

  .signup-form .btn {
    width: 100%;
  }

  .site-footer,
  .site-footer nav {
    justify-items: start;
    flex-wrap: wrap;
  }

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

  .toc-card {
    position: static;
    order: -1;
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    padding: 14px;
    scrollbar-width: none;
  }

  .toc-card strong {
    flex: 0 0 auto;
  }

  .toc-card a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
  }

  .page-hero {
    min-height: 470px;
    padding-top: 112px;
  }

  .image-card img {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .section-panel,
  .how,
  .profiles,
  .member-showcase,
  .testimonials,
  .join {
    padding-inline: 18px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }

  .hero-badges span {
    min-width: 0;
    font-size: 0.72rem;
  }

  .hero-badges svg {
    width: 30px;
    height: 30px;
  }

  .trust-grid,
  .testimonial-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }
}

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