:root {
  --page-bg: #efeff1;
  --surface: #f7f6f2;
  --surface-alt: #e8e4dc;
  --surface-soft: #f3f1ec;
  --surface-white: #ffffff;
  --hero-ink: #f7f3ec;
  --text-main: #4a4d51;
  --text-soft: #696d72;
  --title: #50545a;
  --line: rgba(72, 74, 79, 0.14);
  --green: #065851;
  --green-dark: #02473f;
  --green-soft: #2e8d7f;
  --gold: #dab15b;
  --gold-deep: #b88d38;
  --gold-soft: rgba(218, 177, 91, 0.28);
  --shadow-soft: 0 24px 60px rgba(24, 29, 34, 0.1);
  --shadow-card: 0 14px 30px rgba(20, 24, 28, 0.08);
  --shadow-glow: 0 30px 80px rgba(18, 28, 31, 0.18);
  --shadow-hero-card: 0 28px 70px rgba(7, 7, 9, 0.28);
  --max: 1120px;
  --hero-max: 1320px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-dark);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.99rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  color: var(--title);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero-container {
  width: min(var(--hero-max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.6rem;
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.center-title {
  text-align: center;
}

.center-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.4rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.center-row {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 18px rgba(16, 20, 24, 0.04);
}

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

.button-primary,
.button-accent {
  background: linear-gradient(180deg, #e0bb67 0%, var(--gold-deep) 100%);
  border-color: rgba(196, 150, 62, 0.92);
  color: #454033;
  box-shadow: 0 14px 30px rgba(184, 141, 56, 0.26);
}

.button-primary:hover,
.button-accent:hover {
  background: linear-gradient(180deg, #e6c779 0%, #c69a43 100%);
  color: #3f3a2c;
}

.button-outline,
.button-outline-light,
.button-dark-ghost {
  background: transparent;
}

.button-outline {
  border-color: rgba(80, 84, 90, 0.26);
  color: var(--title);
  background: rgba(255, 255, 255, 0.7);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.8);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--hero-ink);
  background: rgba(255, 255, 255, 0.03);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--hero-ink);
}

.button-dark-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: #f4f4ef;
}

.button-dark-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button-dark-accent {
  background: var(--yellow);
  border: 1px solid var(--yellow-dark);
  color: #383420;
}

.button-dark-accent:hover {
  background: #ead45b;
  color: #383420;
}

.button-panel {
  background: rgba(20, 18, 18, 0.2);
  border-color: rgba(255, 255, 255, 0.26);
  color: #f7f3ea;
  box-shadow: none;
}

.button-panel:hover {
  background: rgba(20, 18, 18, 0.32);
}

.button-hero-secondary {
  min-height: 56px;
  padding: 0.95rem 1.6rem;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(16, 15, 14, 0.28);
  color: #f6f1e8;
}

.button-hero-secondary:hover {
  background: rgba(16, 15, 14, 0.42);
  color: #ffffff;
}

.button-hero-gold,
.button-hero-outline {
  width: 100%;
  min-height: 56px;
  font-weight: 700;
}

.button-hero-gold {
  background: linear-gradient(180deg, #dfbb69 0%, #be9140 100%);
  border-color: rgba(207, 160, 72, 0.9);
  color: #2f291c;
}

.button-hero-gold:hover {
  background: linear-gradient(180deg, #e6c879 0%, #c89e4f 100%);
  color: #2f291c;
}

.button-hero-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.34);
  color: #faf6ef;
  box-shadow: none;
}

.button-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 40;
}

.site-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(8, 9, 11, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.masthead {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-badge {
  width: 94px;
  min-height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 83, 76, 0.92);
  color: #f1f4ea;
  line-height: 1;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 14px 30px rgba(6, 88, 81, 0.18);
}

.brand-script {
  font-size: 1.8rem;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-small {
  margin-top: -0.1rem;
  font-size: 0.5rem;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav > a,
.login-link {
  font-size: 0.83rem;
  color: rgba(248, 244, 236, 0.92);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: 0.3rem;
}

.login-link {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.68rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: rgba(248, 244, 236, 0.96);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255, 255, 255, 0.88);
}

.hero-immersive {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(12, 11, 12, 0.72) 0%, rgba(28, 22, 19, 0.56) 35%, rgba(21, 16, 15, 0.42) 64%, rgba(16, 12, 12, 0.5) 100%),
    radial-gradient(circle at 16% 18%, rgba(219, 183, 112, 0.24) 0%, rgba(219, 183, 112, 0) 28%),
    radial-gradient(circle at 82% 22%, rgba(255, 240, 214, 0.1) 0%, rgba(255, 240, 214, 0) 24%),
    url("images/eliterelationships.jpg") center center / cover no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 9, 0.34) 0%, rgba(8, 7, 9, 0.12) 26%, rgba(8, 7, 9, 0.06) 46%, rgba(8, 7, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.24) 0%, rgba(10, 10, 12, 0.05) 24%, rgba(10, 10, 12, 0.18) 100%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 108px 0 52px;
}

.hero-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-center {
  color: var(--hero-ink);
  width: min(860px, 100%);
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #d7b46a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 860px;
  margin: 0 auto 1.05rem;
  color: var(--hero-ink);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 1.02;
  font-weight: 350;
  letter-spacing: -0.045em;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}

.hero-intro {
  max-width: 520px;
  margin: 0 auto 1.35rem;
  color: rgba(244, 238, 230, 0.92);
  font-size: 1.06rem;
  line-height: 1.65;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.hero-cta-row .button {
  min-height: 56px;
  min-width: 240px;
  padding: 0.95rem 1.7rem;
}

.hero-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1rem;
}

.hero-link-row a {
  position: relative;
  color: rgba(245, 240, 232, 0.84);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-link-row a::before {
  content: "◌";
  margin-right: 0.45rem;
  color: #d7b46a;
}

.hero-trust-strip {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.35rem;
  padding: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 32px rgba(12, 12, 14, 0.16);
}

.hero-trust-strip div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(218, 177, 91, 0.18);
  color: #a57f37;
  font-size: 0.8rem;
}

.hero-trust-strip strong {
  color: #46484d;
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-triad,
.editorial-section,
.stories-stage,
.magazine-section,
.process-section,
.country-section,
.utility-section,
.faq-section {
  padding: 5.25rem 0;
}

.feature-triad {
  background: transparent;
  padding-top: 6.2rem;
}

.triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.triad-item {
  text-align: center;
  padding: 1.8rem 1.35rem;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  border: 1px solid rgba(85, 88, 94, 0.08);
  box-shadow: var(--shadow-card);
}

.triad-icon,
.editorial-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-soft);
}

.triad-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.editorial-marker {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.8rem;
  font-size: 2rem;
}

.editorial-section {
  background: var(--surface);
  position: relative;
}

.editorial-section.alt-tone {
  background: #ece8eb;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.8rem;
}

.stories-stage {
  background: linear-gradient(180deg, #d7d1c6 0%, #d2cbbf 100%);
  border-radius: 32px;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  box-shadow: 0 18px 38px rgba(58, 50, 42, 0.08);
}

.stories-frame {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 132px;
  gap: 2.6rem;
  align-items: center;
  margin-top: 2.2rem;
}

.story-thumb {
  width: 132px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(34, 30, 26, 0.14);
}

.story-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.story-name {
  display: block;
  margin-bottom: 0.85rem;
  color: #7a736b;
  font-size: 0.9rem;
}

.story-quote blockquote {
  margin: 0;
  color: #605d59;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  font-style: italic;
  line-height: 1.42;
}

.story-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
}

.story-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(91, 88, 83, 0.35);
}

.story-dots .active {
  background: rgba(91, 88, 83, 0.85);
}

.magazine-section {
  background: #ecebee;
}

.magazine-grid {
  display: grid;
  grid-template-columns: 1.08fr 1.08fr 1fr;
  grid-template-rows: 170px 170px 175px;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.magazine-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-white);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.magazine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-card {
  padding: 1.2rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dark-card {
  background: rgba(70, 74, 82, 0.92);
}

.dark-card h3,
.dark-card p {
  color: #f6f4f1;
}

.pale-card {
  background: var(--surface-soft);
}

.wide {
  grid-column: span 2;
}

.magazine-card h3 {
  margin-bottom: 0.7rem;
  color: #4f5358;
  font-size: 1.55rem;
  font-weight: 450;
  line-height: 1.08;
}

.magazine-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.member-card-a {
  grid-column: 1;
  grid-row: 1;
}

.member-card-b {
  grid-column: 2;
  grid-row: 1;
}

.member-card-c {
  grid-column: 3;
  grid-row: 1;
}

.member-card-d {
  grid-column: 1 / span 2;
  grid-row: 2;
}

.member-card-e {
  grid-column: 3;
  grid-row: 2;
}

.member-card-f {
  grid-column: 3;
  grid-row: 3;
}

.member-card-g {
  grid-column: 1;
  grid-row: 3;
}

.member-card-g p {
  max-width: 30ch;
}

.member-card-d img,
.member-card-f img {
  object-position: center center;
}

.member-card-b img {
  object-position: center 20%;
}

.comparison-shell {
  overflow: auto;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.9);
  color: var(--title);
  font-weight: 600;
}

.process-section {
  background: var(--surface);
}

.process-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.process-ribbon article {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border-top: 4px solid var(--green-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.process-ribbon span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.dark-app-band {
  background: #101214;
  color: #f5f3ef;
  border-radius: 28px;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.dark-band-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 2rem;
  min-height: 440px;
}

.dark-band-copy {
  padding: 4rem 0;
}

.dark-band-copy h2,
.dark-band-copy p {
  color: #f4f2ef;
}

.dark-band-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.country-section {
  background: #ece8eb;
}

.country-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.country-tile {
  min-height: 280px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(8, 88, 81, 0.08), rgba(8, 88, 81, 0)),
    var(--surface-white);
  border-top: 3px solid var(--green-soft);
  box-shadow: var(--shadow-card);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.country-media {
  margin: 0;
  aspect-ratio: 1.7 / 1;
  overflow: hidden;
}

.country-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.country-tile:hover .country-media img {
  transform: scale(1.04);
}

.country-tile strong {
  display: block;
  margin: 1rem 1.2rem 0.7rem;
  color: var(--title);
  font-size: 1.15rem;
  font-weight: 500;
}

.country-tile span {
  display: block;
  padding: 0 1.2rem 1.25rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.utility-section {
  background: var(--surface);
}

.utility-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.utility-panel {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.86);
  border-left: 4px solid #d5c092;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.quote-panel {
  background: #f3ebd4;
}

.utility-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--green);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-banner {
  padding: 5.3rem 0;
  background: #d6d0c6;
  text-align: center;
  border-radius: 28px;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.faq-section {
  background: #ecebee;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.78);
  border-top: 2px solid rgba(6, 88, 81, 0.22);
  padding: 0 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  color: var(--title);
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 0 1rem;
}

.page-main {
  padding-top: 0;
}

.page-signup .site-header {
  background: rgba(247, 245, 240, 0.9);
  border-bottom: 1px solid rgba(82, 84, 89, 0.08);
  backdrop-filter: blur(14px);
}

.page-signup .site-nav > a,
.page-signup .login-link {
  color: var(--title);
}

.signup-login-link {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(82, 84, 89, 0.14);
}

.page-hero {
  padding: 7.2rem 0 4.6rem;
  background:
    radial-gradient(circle at top left, rgba(218, 177, 91, 0.12), rgba(218, 177, 91, 0) 30%),
    linear-gradient(180deg, #f1efeb 0%, #ece8eb 100%);
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 2.4rem;
  align-items: start;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: #7a7f83;
  font-size: 0.88rem;
}

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

.page-kicker {
  margin-bottom: 0.7rem;
  color: #9a8048;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin-bottom: 1rem;
  color: #4d5157;
  font-size: clamp(2.6rem, 4.3vw, 4.2rem);
  line-height: 1.04;
}

.page-lead {
  max-width: 60ch;
  margin-bottom: 1.5rem;
  color: #666c73;
  font-size: 1.05rem;
  line-height: 1.75;
}

.signup-feature-list {
  display: grid;
  gap: 0.95rem;
  max-width: 620px;
}

.signup-feature-list div {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  border: 1px solid rgba(84, 87, 92, 0.08);
  box-shadow: var(--shadow-card);
}

.signup-feature-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #4f5358;
  font-size: 1rem;
  font-weight: 600;
}

.signup-feature-list span {
  color: #676d73;
  font-size: 0.94rem;
  line-height: 1.65;
}

.signup-card {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  border: 1px solid rgba(82, 84, 89, 0.08);
  box-shadow: 0 18px 40px rgba(25, 28, 34, 0.08);
}

.signup-card-head {
  margin-bottom: 1.25rem;
}

.signup-card-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #9a8048;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signup-card h2 {
  margin-bottom: 0.55rem;
  font-size: 2rem;
  font-weight: 450;
}

.signup-card-head p {
  margin: 0;
  color: #6b7076;
}

.signup-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field span {
  color: #575b60;
  font-size: 0.85rem;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 1rem;
  border: 1px solid rgba(86, 89, 95, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: #494d52;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.field input::placeholder {
  color: #8f9498;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(184, 141, 56, 0.72);
  box-shadow: 0 0 0 4px rgba(218, 177, 91, 0.12);
}

.field-full {
  grid-column: 1 / -1;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1rem;
  color: #666c72;
  font-size: 0.92rem;
  line-height: 1.6;
}

.check-row input {
  margin-top: 0.18rem;
  accent-color: var(--gold);
}

.signup-actions {
  margin-top: 1.15rem;
}

.signup-actions .button {
  width: 100%;
  min-height: 56px;
}

.signup-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: signup-step;
}

.signup-steps li {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  color: #666b71;
  line-height: 1.7;
}

.signup-steps li::before {
  counter-increment: signup-step;
  content: counter(signup-step, decimal-leading-zero);
  position: absolute;
  top: 1.05rem;
  left: 1.15rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(218, 177, 91, 0.16);
  color: #9f7d37;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Legacy page compatibility */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.brand-mark,
.brand-text {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(184, 141, 56, 0.28);
  background: radial-gradient(circle at top, rgba(218, 177, 91, 0.18), rgba(218, 177, 91, 0.05));
  color: #9f7d37;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text {
  margin-left: 0.72rem;
  color: var(--title);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.button-secondary,
.button-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

.button-secondary {
  border: 1px solid rgba(80, 84, 90, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--title);
  box-shadow: 0 8px 18px rgba(16, 20, 24, 0.04);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.84);
  color: var(--title);
}

.button-soft {
  border: 1px solid rgba(82, 86, 92, 0.14);
  background: rgba(255, 255, 255, 0.55);
  color: var(--title);
  box-shadow: none;
}

.button-soft:hover {
  background: rgba(255, 255, 255, 0.76);
  color: var(--title);
}

.page-country .site-header,
.page-login .site-header,
.page-verification .site-header,
.page-app .site-header,
.page-safety .site-header,
.page-faqs .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 245, 240, 0.92);
  border-bottom: 1px solid rgba(82, 84, 89, 0.08);
  backdrop-filter: blur(14px);
}

.page-country .site-nav > a,
.page-login .site-nav > a,
.page-verification .site-nav > a,
.page-app .site-nav > a,
.page-safety .site-nav > a,
.page-faqs .site-nav > a,
.page-country .login-link,
.page-login .login-link,
.page-verification .login-link,
.page-app .login-link,
.page-safety .login-link,
.page-faqs .login-link {
  color: var(--title);
}

.page-country main,
.page-login main,
.page-verification main,
.page-app main,
.page-safety main,
.page-faqs main {
  display: block;
}

.hero.hero-page {
  padding: 5rem 0 3.8rem;
  background:
    radial-gradient(circle at top left, rgba(218, 177, 91, 0.14), rgba(218, 177, 91, 0) 26%),
    linear-gradient(180deg, #f0ede8 0%, #ece8ea 100%);
}

.hero.hero-page.hero-dark {
  background:
    radial-gradient(circle at top left, rgba(218, 177, 91, 0.16), rgba(218, 177, 91, 0) 30%),
    linear-gradient(135deg, #1f262b 0%, #353b3f 50%, #474e54 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 360px);
  gap: 2.5rem;
  align-items: center;
}

.hero.hero-page > .narrow {
  text-align: center;
  max-width: 860px;
  padding: 0 0.5rem;
}

.hero-page .eyebrow {
  margin-bottom: 0.7rem;
  color: #9a8048;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-dark .eyebrow,
.hero-dark h1,
.hero-dark .lead,
.hero-dark .breadcrumbs,
.hero-dark .breadcrumbs a {
  color: #f5f0e8;
}

.hero-page h1 {
  margin-bottom: 1rem;
  color: #50545a;
  font-size: clamp(2.5rem, 4.6vw, 4.35rem);
  line-height: 1.04;
}

.hero-page .lead {
  max-width: 60ch;
  margin: 0 0 1.2rem;
  color: #666c73;
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero.hero-page > .narrow .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-media {
  max-width: 360px;
  margin-left: auto;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.hero-media-small {
  max-width: 300px;
}

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.hero-trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(84, 87, 92, 0.1);
  border-radius: 999px;
  color: #555a60;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-trust-points span svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: #a27f3b;
}

.section {
  padding: 4.4rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.38);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-card,
.icon-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(82, 84, 89, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.feature-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 1.1rem 1.1rem 1rem;
}

.feature-card svg,
.icon-card svg {
  width: 28px;
  height: 28px;
  fill: var(--green);
}

.feature-card h3,
.icon-card h3 {
  margin-bottom: 0.35rem;
}

.feature-card p,
.icon-card p {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.icon-card {
  padding: 1.25rem 1.1rem;
}

.icon-card svg {
  margin-bottom: 0.8rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.82);
}

.table-wrap table,
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: rgba(255, 255, 255, 0.82);
}

.table-wrap th,
.table-wrap td,
.comparison-table th,
.comparison-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(82, 84, 89, 0.08);
  color: #5a5f65;
  text-align: left;
  font-size: 0.96rem;
  vertical-align: top;
}

.table-wrap thead th,
.comparison-table thead th {
  color: #474c52;
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(241, 237, 230, 0.92);
}

.table-wrap tbody tr:nth-child(even) td,
.comparison-table tbody tr:nth-child(even) td {
  background: rgba(247, 245, 241, 0.7);
}

.form-card {
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(82, 84, 89, 0.08);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  margin-bottom: 0.9rem;
  font-size: 1.8rem;
  font-weight: 400;
}

.form-card form {
  display: grid;
  gap: 0.85rem;
}

.form-card label {
  color: #575b60;
  font-size: 0.86rem;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 1rem;
  border: 1px solid rgba(86, 89, 95, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: #494d52;
  font: inherit;
}

.form-card textarea {
  min-height: 140px;
  padding: 1rem;
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: rgba(184, 141, 56, 0.72);
  box-shadow: 0 0 0 4px rgba(218, 177, 91, 0.12);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin: 0.2rem 0 0.35rem;
}

.inline-links a {
  font-size: 0.92rem;
  font-weight: 600;
}

.content-list {
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.content-list li + li {
  margin-top: 0.7rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(82, 84, 89, 0.1);
  color: #5b6066;
  font-size: 0.93rem;
  box-shadow: 0 8px 18px rgba(18, 22, 26, 0.04);
}

.related-links a:hover {
  background: rgba(255, 255, 255, 0.92);
}

.page-country .footer-brand .brand-mark,
.page-login .footer-brand .brand-mark,
.page-verification .footer-brand .brand-mark,
.page-app .footer-brand .brand-mark,
.page-safety .footer-brand .brand-mark,
.page-faqs .footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  font-size: 0.94rem;
}

.page-country .footer-brand .brand-text,
.page-login .footer-brand .brand-text,
.page-verification .footer-brand .brand-text,
.page-app .footer-brand .brand-text,
.page-safety .footer-brand .brand-text,
.page-faqs .footer-brand .brand-text {
  font-size: 1.55rem;
}

.site-footer {
  padding: 4rem 0 1rem;
  background: #f4f1ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-badge {
  width: 92px;
}

.site-footer h2 {
  font-size: 1.1rem;
  font-weight: 500;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .card-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    align-items: start;
  }

  .hero-media {
    max-width: 320px;
  }

  .signup-layout,
  .dark-band-grid,
  .utility-grid,
  .two-column-copy,
  .triad-grid,
  .country-mosaic,
  .process-ribbon,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(2.7rem, 4.8vw, 4.4rem);
  }

  .magazine-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 200px;
  }

  .wide {
    grid-column: span 1;
  }

  .member-card-a,
  .member-card-b,
  .member-card-c,
  .member-card-d,
  .member-card-e,
  .member-card-f,
  .member-card-g {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: inline-block;
    border-color: rgba(18, 18, 18, 0.16);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 20px rgba(18, 22, 26, 0.08);
  }

  .menu-toggle span {
    background: #111111;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem;
    background: rgba(16, 16, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    border-radius: 18px;
  }

  .page-signup .site-nav > a,
  .page-signup .login-link {
    color: rgba(248, 244, 236, 0.92);
  }

  .page-country .site-nav > a,
  .page-login .site-nav > a,
  .page-verification .site-nav > a,
  .page-app .site-nav > a,
  .page-safety .site-nav > a,
  .page-faqs .site-nav > a,
  .page-country .login-link,
  .page-login .login-link,
  .page-verification .login-link,
  .page-app .login-link,
  .page-safety .login-link,
  .page-faqs .login-link {
    color: rgba(248, 244, 236, 0.92);
  }

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

  .nav-cta {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }

  .login-link,
  .nav-cta .button {
    width: 100%;
    text-align: center;
  }

  .dark-band-grid,
  .utility-grid,
  .two-column-copy,
  .triad-grid,
  .country-mosaic,
  .process-ribbon,
  .footer-grid,
  .stories-frame {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .signup-layout,
  .signup-form-grid,
  .signup-steps {
    grid-template-columns: 1fr;
  }

  .hero.hero-page {
    padding: 4.4rem 0 3rem;
  }

  .hero-page h1 {
    font-size: clamp(2.1rem, 8vw, 3.1rem);
  }

  .hero-page .lead {
    font-size: 1rem;
  }

  .hero-media,
  .hero-media-small {
    max-width: 100%;
    margin-left: 0;
  }

  .form-card,
  .table-wrap {
    border-radius: 20px;
  }

  .related-links {
    gap: 0.65rem;
  }

  .hero-immersive {
    min-height: auto;
    background-position: center top;
  }

  .hero-immersive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.36) 0%, rgba(8, 8, 10, 0.18) 25%, rgba(8, 8, 10, 0.4) 100%);
  }

  .hero-shell {
    min-height: 0;
    padding: 112px 0 42px;
  }

  .hero-content {
    display: block;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.5rem, 8vw, 3.8rem);
  }

  .hero-trust-strip {
    border-radius: 26px;
    padding: 0.75rem;
  }

  .stories-frame {
    text-align: center;
    gap: 1rem;
  }

  .story-thumb {
    justify-self: center;
    width: 120px;
    height: 132px;
  }

  .stories-stage,
  .dark-app-band,
  .final-banner {
    width: calc(100% - 2rem);
  }
}

@media (max-width: 640px) {
  .feature-triad,
  .editorial-section,
  .stories-stage,
  .magazine-section,
  .process-section,
  .country-section,
  .utility-section,
  .faq-section,
  .final-banner {
    padding: 4rem 0;
  }

  .hero-immersive {
    background:
      linear-gradient(180deg, rgba(10, 10, 12, 0.72) 0%, rgba(20, 16, 14, 0.5) 35%, rgba(15, 11, 11, 0.6) 100%),
      radial-gradient(circle at 20% 16%, rgba(219, 183, 112, 0.2) 0%, rgba(219, 183, 112, 0) 30%),
      url("images/eliterelationships.jpg") center center / cover no-repeat;
  }

  .hero-shell {
    padding: 102px 0 34px;
  }

  .page-hero {
    padding: 6.4rem 0 3.8rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.94rem;
  }

  .brand-text {
    font-size: 1.7rem;
  }

  .button-row,
  .inline-links {
    gap: 0.7rem;
  }

  .button-row .button,
  .button-row .button-soft,
  .button-row .button-secondary,
  .button-row .button-primary,
  .button-row .button-accent {
    width: 100%;
  }

  .feature-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .feature-card svg,
  .icon-card svg {
    width: 24px;
    height: 24px;
  }

  .hero-trust-points {
    gap: 0.65rem;
  }

  .hero-trust-points span,
  .related-links a {
    width: 100%;
    justify-content: center;
  }

  .signup-card {
    padding: 1.25rem;
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }

  .hero-title {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .hero-cta-row,
  .hero-trust-strip {
    flex-direction: column;
  }

  .hero-cta-row .button {
    width: 100%;
    min-width: 0;
  }

  .hero-link-row {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-trust-strip {
    display: grid;
    border-radius: 22px;
  }

  .hero-trust-strip div {
    width: 100%;
    background: rgba(255, 255, 255, 0.58);
  }

  .magazine-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .dark-band-image img {
    height: 280px;
  }
}
