@import "tailwindcss";

:root {
  --ink: #14121d;
  --ink-soft: #555160;
  --paper: #f6f3ef;
  --cream: #fffaf4;
  --night: #100b1b;
  --night-2: #21152f;
  --coral: #ff5f62;
  --coral-bright: #ff766f;
  --violet: #8e5cff;
  --cyan: #68d7d2;
  --line: rgba(20, 18, 29, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button, input, select { font: inherit; }

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.siteHeader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 clamp(24px, 5vw, 80px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand > span:last-child > span { color: var(--coral-bright); }

.brandLogo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: contain;
}

.siteHeader nav { display: flex; gap: 32px; }

.siteHeader nav a,
.loginLink {
  font-size: 14px;
  font-weight: 650;
  color: rgba(255,255,255,.76);
  transition: color .2s ease;
}

.siteHeader nav a:hover,
.loginLink:hover { color: #fff; }

.headerActions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 25px;
  color: #fff;
  background: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(255,95,98,.22);
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--coral-bright);
  box-shadow: 0 18px 38px rgba(255,95,98,.3);
}

.buttonSmall { min-height: 42px; padding: 0 18px; gap: 8px; }

.hero {
  position: relative;
  min-height: 760px;
  height: min(920px, 100svh);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .86fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: center;
  padding: 128px clamp(24px, 6vw, 104px) 88px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 16%, rgba(142,92,255,.2), transparent 31%),
    linear-gradient(135deg, #100b1b 0%, #1d102c 54%, #120d1d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) .7px, transparent .7px);
  background-size: 18px 18px;
  opacity: .12;
  pointer-events: none;
}

.heroGlow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.heroGlowOne {
  width: 420px;
  height: 420px;
  right: 28%;
  bottom: -280px;
  background: rgba(255,95,98,.18);
}

.heroGlowTwo {
  width: 260px;
  height: 260px;
  right: -100px;
  top: 120px;
  background: rgba(104,215,210,.1);
}

.heroCopy { position: relative; z-index: 2; max-width: 730px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow b,
.liveDot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255,95,98,.12);
}

.hero h1,
.section h2,
.joinSection h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 { font-size: clamp(54px, 6vw, 92px); }

.hero h1 em,
.joinSection h2 em,
.safetyCopy h2 em { color: var(--coral-bright); font-weight: inherit; }

.heroCopy > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.heroActions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.heroActions .button { font-size: 16px; }

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 750;
}

.textLink span { color: var(--coral-bright); }

.heroTrust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.heroTrust b { color: #fff; margin-right: 4px; }

.heroVisual { position: relative; z-index: 2; height: min(640px, 70vh); min-height: 500px; }

.photoFrame {
  position: absolute;
  inset: 0 0 0 7%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 190px 12px 190px 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
}

.heroImage { object-fit: cover; object-position: 50% center; }

.photoWash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(16,11,27,.74) 100%),
    linear-gradient(135deg, rgba(142,92,255,.1), transparent 45%);
}

.liveCard,
.matchCard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(25,16,37,.84);
  box-shadow: 0 20px 46px rgba(0,0,0,.25);
  backdrop-filter: blur(16px);
}

.liveCard { top: 15%; left: 0; }
.matchCard { right: -20px; bottom: 17%; }

.liveCard strong,
.matchCard strong { display: block; font-size: 13px; }

.liveCard small,
.matchCard small { display: block; margin-top: 3px; color: rgba(255,255,255,.55); font-size: 11px; }

.miniAvatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  font-size: 12px;
  font-weight: 800;
}

.miniAvatarTwo { margin-left: -22px; background: linear-gradient(135deg, var(--cyan), #3379a9); }

.photoCredit {
  position: absolute;
  right: 16px;
  bottom: -28px;
  margin: 0;
  color: rgba(255,255,255,.34);
  font-size: 10px;
}

.photoCredit a { text-decoration: underline; text-underline-offset: 2px; }
.photoCredit a:hover { color: rgba(255,255,255,.62); }

.scrollCue {
  position: absolute;
  left: clamp(24px, 6vw, 104px);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.3);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.scrollCue span { width: 1px; height: 36px; background: rgba(255,255,255,.24); }

.searchPanel {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 48px));
  margin: -42px auto 0;
  padding: 18px;
  border: 1px solid rgba(20,18,29,.08);
  border-radius: 14px;
  background: rgba(255,250,244,.96);
  box-shadow: 0 24px 70px rgba(36,25,42,.13);
}

.searchPanel form { display: grid; grid-template-columns: 1.2fr .8fr 1fr; align-items: end; }

.searchPanel label { display: block; padding: 0 24px; border-right: 1px solid var(--line); }
.searchPanel label:last-child { border-right: 0; }

.searchPanel label > span {
  display: block;
  margin-bottom: 8px;
  color: #8b8490;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.searchPanel select,
.searchPanel input {
  width: 100%;
  height: 36px;
  padding: 0 26px 0 0;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.searchPanel input::placeholder { color: var(--ink); opacity: 1; }

.searchPanel button,
.joinForm button {
  height: 58px;
  padding: 0 22px;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.searchPanel button span,
.joinForm button span { margin-left: 16px; }

.section { padding: clamp(88px, 10vw, 150px) clamp(24px, 6vw, 104px); }

.sectionHeading { width: min(1180px, 100%); margin: 0 auto 56px; }

.splitHeading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }

.section h2 { font-size: clamp(44px, 5vw, 68px); }

.sectionHeading > p,
.faqIntro > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.darkEyebrow { color: #8e8792; }
.darkEyebrow::before { background: var(--coral); }

.modeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.modeCard {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 28px;
  border-radius: 14px;
  color: #fff;
  background: var(--night);
  isolation: isolate;
}

.modeCard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 70% 22%, var(--card-glow), transparent 36%);
}

.modeCard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 36%, rgba(10,7,16,.94) 100%);
}

.modeCard.coral { --card-glow: rgba(255,95,98,.62); }
.modeCard.violet { --card-glow: rgba(142,92,255,.65); }
.modeCard.cyan { --card-glow: rgba(104,215,210,.5); }

.modeNumber { color: rgba(255,255,255,.45); font-size: 11px; font-weight: 800; letter-spacing: .12em; }

.modeArt {
  position: relative;
  overflow: hidden;
  height: 190px;
  margin: 10px 0 20px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
}

.modeArt img {
  object-fit: cover;
  transition: transform .45s ease;
}

.modeCard:hover .modeArt img { transform: scale(1.035); }

.modeCard h3 { margin: 0; font-family: var(--serif); font-size: 32px; font-weight: 400; letter-spacing: -.04em; }

.modeCard p { min-height: 72px; margin: 14px 0 22px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }

.modeCard a { display: inline-flex; gap: 14px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.modeCard a span { color: var(--coral-bright); }

.safetySection {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  color: var(--ink);
  background: #f7f3ee;
}

.safetyCopy { max-width: 500px; }
.safetyCopy h2 { font-size: clamp(40px, 3.4vw, 54px); }
.safetyCopy h2 em { color: var(--coral); }
.safetyCopy > p { margin: 28px 0 30px; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.safetyProof { margin-top: 26px; padding: 18px 0 0 16px; border-top: 1px solid var(--line); border-left: 3px solid var(--coral); }
.safetyProof strong, .safetyProof span { display: block; }
.safetyProof strong { margin-bottom: 4px; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.safetyProof span { color: var(--ink-soft); font-size: 11px; line-height: 1.5; }

.buttonLight { color: var(--night); background: #fff; border-color: #fff; box-shadow: none; }
.buttonLight:hover { color: #fff; background: var(--coral); border-color: var(--coral); }

.safetyProduct { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(250px, .72fr); gap: 18px; align-items: center; }
.safetyPhone { position: relative; overflow: hidden; min-height: 650px; border: 1px solid rgba(20,18,29,.08); border-radius: 44px; background: #fff; box-shadow: 0 28px 70px rgba(39,24,45,.14); }
.safetyPhone > img { object-fit: cover; object-position: center top; }
.safetyPhoneBadge { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 16px 18px; border-radius: 14px; background: rgba(20,14,28,.92); color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.safetyPhoneBadge strong, .safetyPhoneBadge span { display: block; }
.safetyPhoneBadge strong { margin-bottom: 3px; font-size: 13px; }
.safetyPhoneBadge span { color: rgba(255,255,255,.62); font-size: 10px; }
.trustGrid { display: grid; gap: 12px; }

.trustGrid article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(20,18,29,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(48,34,54,.06);
}

.trustIcon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 28px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--night-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.trustGrid h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.trustGrid p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }

.howSection { background: var(--cream); }

.centeredHeading { text-align: center; }
.howLead { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(46px, 7vw, 96px); align-items: center; width: min(1180px, 100%); margin: 0 auto 52px; }
.howLeadCopy h2 { margin: 18px 0 24px; font-size: clamp(44px, 5vw, 68px); }
.howLeadCopy h2 em { color: var(--coral); }
.howLeadCopy > p { max-width: 570px; margin: 0 0 28px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.howLeadCopy .button { width: min(286px, 100%); }
.howAssurances { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 22px; color: var(--ink-soft); font-size: 12px; }
.howAssurances span { padding-left: 12px; border-left: 2px solid rgba(255,95,98,.5); }
.howVisual { position: relative; overflow: hidden; min-height: 400px; border-radius: 72px 72px 72px 18px; box-shadow: 0 24px 60px rgba(42,29,48,.14); }
.howVisual img { object-fit: cover; object-position: center; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: min(1180px, 100%); margin: 0 auto 30px; }

.steps article { position: relative; min-height: 220px; padding: 30px; border: 1px solid rgba(20,18,29,.07); border-radius: 22px; background: rgba(255,255,255,.72); box-shadow: 0 16px 36px rgba(48,34,54,.06); }
.steps article > span { display: inline-grid; place-items: center; min-width: 48px; height: 30px; margin-bottom: 30px; padding: 0 12px; border-radius: 18px; color: #fff; background: var(--night-2); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.steps h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.promptCard {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 28px;
  border-radius: 24px;
  background: var(--night-2);
  color: #fff;
  box-shadow: 0 24px 70px rgba(25,16,37,.16);
}

.promptIntro { display: flex; flex-direction: column; justify-content: center; padding: 28px; }
.promptKicker { color: var(--coral-bright); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.promptIntro h3 { margin: 22px 0 20px; font-family: var(--serif); font-size: clamp(30px, 3.2vw, 44px); font-weight: 400; line-height: 1.08; }
.promptIntro h3 em { color: var(--coral-bright); }
.promptIntro p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.7; }
.profilePreview { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 24px; border-radius: 18px; background: #fff; color: var(--ink); transform: rotate(-1deg); box-shadow: 0 20px 44px rgba(0,0,0,.2); }
.profilePhoto { position: relative; overflow: hidden; min-height: 210px; border-radius: 14px; }
.profilePhoto img { object-fit: cover; object-position: 30% center; }
.profileDetails { display: flex; flex-direction: column; justify-content: center; }
.profileName strong, .profileName span { display: block; }
.profileName strong { font-size: 20px; }
.profileName span { margin-top: 4px; color: var(--ink-soft); font-size: 12px; }
.profileDetails small { margin-top: 22px; color: #8e62c2; font-size: 9px; font-weight: 800; letter-spacing: .11em; }
.profileDetails blockquote { margin: 8px 0 18px; font-family: var(--serif); font-size: 21px; line-height: 1.35; }
.profileDetails a { align-self: flex-start; padding: 12px 22px; border-radius: 24px; color: #fff; background: var(--coral); font-size: 12px; font-weight: 800; }

.valuesBand { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #efeae4; }
.valuesBand div { padding: 30px clamp(20px, 3vw, 46px); border-right: 1px solid var(--line); }
.valuesBand div:last-child { border-right: 0; }
.valuesBand span { display: block; margin-bottom: 8px; color: #9c949f; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.valuesBand strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }


.faqSection { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 7vw, 100px); background: #f7f3ee; }
.faqIntro { max-width: 450px; }
.faqIntro h2 { margin-bottom: 24px; }

.faqPromises { display: grid; gap: 14px; margin: 32px 0 30px; }
.faqPromises div { padding-left: 14px; border-left: 3px solid var(--coral); }
.faqPromises div:nth-child(2) { border-left-color: #7c74d8; }
.faqPromises div:nth-child(3) { border-left-color: #2cbda9; }
.faqPromises strong, .faqPromises span { display: block; }
.faqPromises strong { margin-bottom: 2px; font-size: 14px; }
.faqPromises span { color: var(--ink-soft); font-size: 12px; }
.memberCollage { position: relative; width: min(380px, 100%); height: 220px; margin-top: 20px; }
.memberPhoto { position: absolute; overflow: hidden; border: 4px solid #fff; border-radius: 24px; background: #eee; box-shadow: 0 14px 30px rgba(41,25,50,.16); }
.memberPhoto img { object-fit: cover; }
.memberPhotoOne { z-index: 2; left: 12px; top: 54px; width: 122px; height: 138px; transform: rotate(-4deg); }
.memberPhotoTwo { z-index: 4; left: 95px; top: 8px; width: 142px; height: 172px; }
.memberPhotoThree { z-index: 3; right: 16px; top: 48px; width: 132px; height: 148px; transform: rotate(4deg); }
.memberNote { margin-top: 14px; }
.memberNote strong, .memberNote span { display: block; }
.memberNote strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.memberNote span { margin-top: 3px; color: var(--ink-soft); font-size: 12px; }
.faqList { display: grid; gap: 16px; align-self: center; }
.faqList details { overflow: hidden; border: 1px solid rgba(20,18,29,.08); border-radius: 18px; background: rgba(255,255,255,.86); box-shadow: 0 16px 36px rgba(48,34,54,.07); }
.faqList summary { display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; gap: 18px; min-height: 90px; padding: 18px 22px; list-style: none; cursor: pointer; }
.faqList summary::-webkit-details-marker { display: none; }
.faqList summary b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #756fc5; background: rgba(124,116,216,.12); font-size: 11px; letter-spacing: .08em; }
.faqList details:nth-child(2) summary b { color: #e15d7c; background: rgba(255,95,126,.12); }
.faqList details:nth-child(3) summary b { color: #c37a16; background: rgba(245,166,35,.14); }
.faqList details:nth-child(4) summary b { color: #178f80; background: rgba(44,189,169,.13); }
.faqList summary strong { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.faqList summary > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--coral); background: rgba(255,95,98,.1); font-family: var(--sans); font-size: 22px; transition: transform .2s ease; }
.faqList details[open] summary span { transform: rotate(45deg); }
.faqList details p { margin: -8px 70px 24px 82px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

.joinSection {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 24px;
  color: #fff;
  text-align: center;
  background: var(--night);
}

.joinSection::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.1) .7px, transparent .7px); background-size: 18px 18px; opacity: .14; }
.joinOrb { position: absolute; border-radius: 50%; filter: blur(1px); }
.joinOrbOne { width: 420px; height: 420px; left: -170px; bottom: -250px; background: rgba(142,92,255,.2); }
.joinOrbTwo { width: 350px; height: 350px; right: -120px; top: -220px; background: rgba(255,95,98,.22); }
.joinContent { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.joinSection h2 { font-size: clamp(52px, 7vw, 88px); }
.joinSection p { margin: 28px 0 32px; color: rgba(255,255,255,.62); font-size: 17px; }

.joinForm { display: grid; grid-template-columns: 1fr auto; width: min(580px, 100%); margin: 0 auto 16px; padding: 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; background: rgba(255,255,255,.06); }
.joinForm input { width: 100%; height: 58px; padding: 0 18px; color: #fff; border: 0; outline: 0; background: transparent; }
.joinForm input::placeholder { color: rgba(255,255,255,.46); }
.joinContent small { color: rgba(255,255,255,.34); font-size: 10px; }

footer { padding: 54px clamp(24px, 6vw, 104px) 28px; color: #fff; background: #0b0811; }
.footerTop { display: grid; grid-template-columns: .75fr 1.15fr auto; gap: 44px; align-items: center; padding-bottom: 45px; }
.footerTop p { max-width: 390px; margin: 0; color: rgba(255,255,255,.42); font-size: 13px; line-height: 1.7; }
.countryLinks { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.countryLinks a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; width: 58px; min-height: 68px; padding: 9px 8px 7px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(255,255,255,.045); box-shadow: 0 10px 24px rgba(0,0,0,.12); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.countryLinks img { display: block; width: 38px; height: 25px; object-fit: cover; border: 1px solid rgba(255,255,255,.22); border-radius: 2px; box-shadow: 0 3px 8px rgba(0,0,0,.28); }
.countryLinks span { color: rgba(255,255,255,.7); font-size: 10px; font-weight: 800; line-height: 1; letter-spacing: .14em; }
.countryLinks a:hover,
.countryLinks a:focus-visible { transform: translateY(-2px); border-color: rgba(255,95,98,.7); background: rgba(255,95,98,.12); outline: 0; }
.footerLinks { display: flex; flex-wrap: wrap; gap: 24px; }
.footerLinks a { color: rgba(255,255,255,.58); font-size: 12px; font-weight: 700; }
.footerBottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); font-size: 10px; letter-spacing: .04em; }

@media (max-width: 1080px) {
  .siteHeader { grid-template-columns: 1fr auto; }
  .siteHeader nav { display: none; }
  .hero { grid-template-columns: 1fr .8fr; padding-inline: 48px; }
  .hero h1 { font-size: clamp(52px, 6.3vw, 72px); }
  .matchCard { right: -10px; }
  .searchPanel form { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .searchPanel label:nth-child(2) { border-right: 0; }
  .searchPanel label:last-child { grid-column: 1 / -1; }
  .searchPanel button { margin-left: 18px; }
  .modeCard { min-height: 420px; }
}

@media (max-width: 820px) {
  .siteHeader { min-height: 72px; padding: 0 22px; }
  .loginLink { display: none; }
  .buttonSmall { min-height: 38px; }
  .hero { height: auto; min-height: 0; grid-template-columns: 1fr; padding: 120px 24px 86px; }
  .heroCopy { max-width: 680px; }
  .hero h1 { font-size: clamp(50px, 12vw, 72px); }
  .heroVisual { height: 560px; min-height: 0; margin-top: 12px; }
  .photoFrame { inset: 0; border-radius: 140px 10px 140px 10px; }
  .liveCard { left: -4px; }
  .matchCard { right: -4px; }
  .scrollCue { display: none; }
  .searchPanel { margin-top: -26px; }
  .searchPanel form { grid-template-columns: 1fr; }
  .searchPanel label { padding: 12px 10px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .searchPanel label:last-child { grid-column: auto; border-bottom: 0; }
  .searchPanel button { margin: 8px 0 0; }
  .splitHeading,
  .safetySection,
  .faqSection { grid-template-columns: 1fr; gap: 44px; }
  .howLead { grid-template-columns: 1fr; }
  .howVisual { min-height: 440px; }
  .faqIntro { max-width: 600px; }
  .modeGrid { grid-template-columns: 1fr; }
  .modeCard { min-height: 410px; }
  .trustGrid { max-width: 680px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps article:last-child { border-bottom: 0; }
  .promptCard { grid-template-columns: 1fr; }
  .promptIntro { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .valuesBand { grid-template-columns: 1fr 1fr; }
  .valuesBand div:nth-child(2) { border-right: 0; }
  .valuesBand div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footerTop { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 540px) {
  .brand { font-size: 16px; gap: 8px; }
  .brandLogo { width: 42px; height: 42px; border-radius: 11px; }
  .heroActions { align-items: stretch; flex-direction: column; gap: 20px; }
  .heroActions .button { width: 100%; }
  .heroTrust { gap: 12px 18px; }
  .heroVisual { height: 440px; }
  .photoFrame { border-radius: 92px 8px 92px 8px; }
  .liveCard { top: 12px; }
  .matchCard { bottom: 14px; }
  .liveCard,
  .matchCard { max-width: 235px; padding: 12px; }
  .section { padding-inline: 22px; }
  .sectionHeading { margin-bottom: 38px; }
  .trustGrid { grid-template-columns: 1fr; }
  .safetyProduct { grid-template-columns: 1fr; }
  .safetyPhone { min-height: 590px; }
  .trustGrid article { min-height: 0; }
  .howVisual { min-height: 330px; border-radius: 42px 42px 42px 14px; }
  .profilePreview { grid-template-columns: 1fr; padding: 16px; transform: none; }
  .profilePhoto { min-height: 240px; }
  .valuesBand { grid-template-columns: 1fr; }
  .valuesBand div { border-right: 0; border-bottom: 1px solid var(--line); }
  .valuesBand div:last-child { border-bottom: 0; }
  .joinForm { grid-template-columns: 1fr; }
  .faqList summary { grid-template-columns: 36px 1fr 36px; gap: 12px; padding-inline: 14px; }
  .faqList summary b, .faqList summary > span { width: 36px; height: 36px; }
  .faqList summary strong { font-size: 18px; }
  .faqList details p { margin: -4px 18px 22px 62px; }
  .joinForm button { width: 100%; }
  .footerBottom { flex-direction: column; gap: 8px; }
}

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

/* Static-export image sizing (Next/Image supplied these values at runtime). */
.photoFrame > img,
.modeArt > img,
.safetyPhone > img,
.howVisual > img,
.profilePhoto > img,
.memberPhoto > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.searchPanel form { grid-template-columns: 1.1fr .8fr 1fr auto; }
.searchPanel button { margin: 0 18px 0 0; white-space: nowrap; }
.footerTop { grid-template-columns: 1fr auto; }
.formMessage { min-height: 24px; margin: 0 0 14px !important; color: var(--cyan) !important; font-size: 13px !important; }

@media (max-width: 1080px) {
  .searchPanel form { grid-template-columns: 1fr 1fr; }
  .searchPanel button { grid-column: 1 / -1; margin: 0 18px 0; }
}

@media (max-width: 820px) {
  .searchPanel form { grid-template-columns: 1fr; }
  .searchPanel button { grid-column: auto; margin: 8px 0 0; }
}

/* Content-rich single-page additions. */
.gayStoryPanel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
  margin-top: 64px;
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid rgba(20,18,29,.12);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffaf4, #f1ece8);
}
.gayStoryLead h3 { margin: 16px 0 0; font-family: var(--serif); font-size: clamp(36px, 4.4vw, 58px); font-weight: 500; line-height: 1.02; letter-spacing: -.045em; }
.gayStoryLead em { color: var(--coral); font-weight: 400; }
.gayStoryCopy { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.gayStoryCopy p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.82; }
.supportingCopy { margin-top: 18px !important; }

.gayLifePanel {
  margin: 72px 0;
  padding: clamp(38px, 5vw, 64px);
  color: #fff;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,95,98,.26), transparent 32%),
    linear-gradient(135deg, #171020, #281638);
}
.gayLifePanel h3 { max-width: 900px; margin: 15px 0 36px; font-family: var(--serif); font-size: clamp(34px, 4.2vw, 56px); font-weight: 500; line-height: 1.06; letter-spacing: -.04em; }
.gayLifeColumns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.gayLifeColumns p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.75; }
.gayLifeColumns strong { display: block; margin-bottom: 8px; color: #fff; font-size: 15px; }
.interestCloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.interestCloud span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.8); background: rgba(255,255,255,.055); font-size: 11px; font-weight: 700; letter-spacing: .03em; }

/* Product screenshots should remain complete; portraits retain intentional crops. */
.safetyPhone { min-height: 720px; background: linear-gradient(180deg, #fff, #f7f4f1); }
.safetyPhone > img { object-fit: contain; object-position: center top; }
.heroImage { object-position: 50% 42%; }
.modeCard.coral .modeArt img { object-position: 50% 45%; }
.modeCard.violet .modeArt img { object-position: 50% 38%; }
.modeCard.cyan .modeArt img { object-position: 50% 42%; }
.howVisual img { object-position: 50% 38%; }
.profilePhoto img { object-position: 35% 28%; }
.memberPhoto img { object-position: 50% 28%; }

@media (max-width: 900px) {
  .gayStoryPanel { grid-template-columns: 1fr; }
  .gayLifeColumns { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 620px) {
  .gayStoryPanel { margin-top: 44px; padding: 28px 22px; }
  .gayStoryCopy { grid-template-columns: 1fr; gap: 18px; }
  .gayLifePanel { margin: 52px 0; padding: 30px 22px; }
  .safetyPhone { min-height: 620px; }
}

/* V3 readability and layout pass. */
body { font-size: 16px; }
.siteHeader { padding-top: 18px; padding-bottom: 18px; }
.siteHeader nav a,
.loginLink { font-size: 15px; }
.eyebrow { font-size: 12px; }
.section { padding-block: clamp(72px, 7vw, 112px); }
.sectionHeading { margin-bottom: 46px; }
.sectionHeading > p,
.splitHeading > p { font-size: 17px; line-height: 1.75; }

.modeGrid { gap: 22px; }
.modeCard { padding: 24px; }
.modeCard h3 { font-size: 34px; }
.modeCard p { min-height: 0; font-size: 16px; line-height: 1.68; }
.modeCard a { font-size: 13px; }
.modeArt { height: 220px; }

.gayStoryPanel { margin-top: 52px; }
.gayStoryCopy p { font-size: 17px; line-height: 1.75; }
.safetyCopy > p { font-size: 17px; line-height: 1.75; }
.safetyProof span { font-size: 13px; }
.trustGrid { gap: 16px; }
.trustGrid article { padding: 24px; }
.trustGrid h3 { font-size: 25px; }
.trustGrid p { font-size: 15px; line-height: 1.65; }
.safetyPhoneBadge strong { font-size: 15px; }
.safetyPhoneBadge span { font-size: 12px; }

.howLead { margin-bottom: 42px; }
.howLeadCopy > p { font-size: 17px; }
.howAssurances { font-size: 14px; }
.steps article { min-height: 205px; padding: 28px; }
.steps article > span { margin-bottom: 22px; font-size: 12px; }
.steps h3 { font-size: 28px; }
.steps p { font-size: 16px; }
.gayLifePanel { margin: 58px 0; }
.gayLifeColumns p { font-size: 16px; line-height: 1.7; }
.gayLifeColumns strong { font-size: 17px; }
.interestCloud span { font-size: 13px; }
.promptKicker { font-size: 12px; }
.promptIntro p { font-size: 16px; }
.profileName span { font-size: 14px; }
.profileDetails small { font-size: 11px; }
.profileDetails blockquote { font-size: 23px; }
.profileDetails a { font-size: 14px; }

.valuesBand span { font-size: 11px; }
.valuesBand strong { font-size: 22px; }
.faqPromises strong { font-size: 16px; }
.faqPromises span,
.memberNote span { font-size: 14px; }
.faqList summary strong { font-size: 24px; }
.faqList details p { font-size: 16px; }
.joinContent small { font-size: 12px; }

.footerTop { grid-template-columns: minmax(210px, .8fr) minmax(420px, 1.35fr) auto; gap: 34px; }
.countryLinks { justify-content: center; }
.countryLinks a { width: 62px; min-height: 72px; }
.countryLinks img { width: 40px; height: 27px; }
.countryLinks span { font-size: 11px; }
.footerLinks a { font-size: 14px; }
.footerBottom { font-size: 12px; }

@media (max-width: 1080px) {
  .footerTop { grid-template-columns: 1fr; }
  .countryLinks { justify-content: flex-start; }
  .footerLinks { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .section { padding-block: 68px; }
  .modeArt { height: 250px; }
  .gayLifePanel { margin-block: 46px; }
}

@media (max-width: 540px) {
  .siteHeader { padding-inline: 18px; }
  .section { padding-block: 56px; }
  .sectionHeading > p,
  .splitHeading > p,
  .modeCard p,
  .gayStoryCopy p,
  .safetyCopy > p,
  .howLeadCopy > p,
  .steps p,
  .gayLifeColumns p,
  .promptIntro p,
  .faqList details p { font-size: 16px; }
  .countryLinks { gap: 8px; }
  .countryLinks a { width: 56px; min-height: 68px; }
}

/* Final minimum type-size guard for labels and supporting copy. */
.liveCard small,
.matchCard small,
.searchPanel label > span,
.modeNumber,
.trustIcon,
.profileDetails small,
.valuesBand span,
.countryLinks span { font-size: 12px; }

/* V4: compact editorial story panel and consistent footer country navigation. */
.gayStoryPanel {
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.45fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
  margin-top: 44px;
  padding: clamp(34px, 3.5vw, 50px) clamp(38px, 4.5vw, 68px);
}
.gayStoryLead h3 { max-width: 520px; font-size: clamp(42px, 4vw, 58px); }
.gayStoryCopy { align-items: start; gap: clamp(28px, 3vw, 48px); }
.gayStoryCopy p { max-width: 42ch; }
.countryLinks a { text-decoration: none; }

@media (max-width: 900px) {
  .gayStoryPanel { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .gayStoryLead h3 { max-width: 680px; }
  .gayStoryCopy p { max-width: none; }
}

@media (max-width: 620px) {
  .gayStoryPanel { margin-top: 36px; padding: 28px 22px; }
}

/* V5: balanced dating headlines, two-column footer, and direct registration CTA. */
.splitHeading { grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(42px, 6vw, 86px); align-items: center; }
.splitHeading h2 { max-width: 16ch; text-wrap: balance; }
.gayStoryLead h3,
.safetyCopy h2,
.howLeadCopy h2,
.joinContent h2 { text-wrap: balance; }
.footerTop { grid-template-columns: minmax(210px, .7fr) minmax(420px, 1.3fr); }
.joinOnlyButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 210px;
  margin: 25px auto 0;
  padding: 18px 28px;
  border-radius: 9px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 18px 46px rgba(255,95,98,.22);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.joinOnlyButton:hover,
.joinOnlyButton:focus-visible { transform: translateY(-2px); box-shadow: 0 22px 52px rgba(255,95,98,.32); outline: 2px solid #fff; outline-offset: 3px; }

@media (max-width: 900px) {
  .splitHeading { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .splitHeading h2 { max-width: 18ch; }
  .footerTop { grid-template-columns: 1fr; }
}

/* V6: wider desktop canvas, balanced headings, centered final CTA, and aligned flags. */
.heroCopy { max-width: 790px; }
.hero h1 { font-size: clamp(52px, 5.35vw, 84px); text-wrap: balance; }
.section h2,
.section h3,
.joinSection h2 { text-wrap: balance; }
.section { padding-inline: clamp(24px, 4vw, 78px); }
.searchPanel,
.sectionHeading,
.modeGrid,
.howLead,
.steps,
.promptCard { width: min(1380px, 100%); }
.searchPanel { width: min(1380px, calc(100% - 48px)); }
.howLead { grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr); gap: clamp(56px, 6vw, 108px); }
.howLeadCopy > p { max-width: 650px; }
.howVisual { min-height: 430px; }
.joinSection { padding-block: clamp(88px, 9vw, 132px); }
.joinOnlyButton { display: flex; width: fit-content; margin: 26px auto 0; }
.joinContent small { display: block; max-width: 680px; margin: 18px auto 0; line-height: 1.6; text-align: center; }
footer { padding-block: 42px 26px; }
.footerTop,
.footerBottom { width: min(1380px, 100%); margin-inline: auto; }
.footerTop { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 34px; }
.countryLinks { justify-content: flex-end; }

@media (max-width: 900px) {
  .hero h1 { font-size: clamp(50px, 10vw, 72px); }
  .howLead { grid-template-columns: 1fr; }
  .footerTop { align-items: flex-start; flex-direction: column; }
  .countryLinks { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: clamp(46px, 13vw, 62px); }
  .countryLinks { justify-content: center; }
  .footerTop { align-items: center; }
}
