:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #6c6b70;
  --paper: #fff8f2;
  --soft: #f5eee8;
  --line: #eadbd0;
  --orange: #ff6b1a;
  --orange-dark: #d94e0e;
  --gold: #c99a45;
  --gold-soft: #f7e4bd;
  --charcoal: #171719;
  --green: #00b865;
  --teal: #0b6f68;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(83, 45, 30, 0.16);
}

* {
  box-sizing: border-box;
}

@media (pointer: fine) {
  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button,
  body.custom-cursor-enabled input,
  body.custom-cursor-enabled select,
  body.custom-cursor-enabled textarea,
  body.custom-cursor-enabled summary {
    cursor: none;
  }

  body.popup-open,
  body.popup-open * {
    cursor: auto;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff8f2 0%, #fffaf6 42%, #f8efe7 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.inner-page {
  background:
    linear-gradient(180deg, rgba(255, 241, 232, 0.95), rgba(255, 248, 242, 1) 420px),
    var(--paper);
}

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

button,
select,
input,
textarea {
  font: inherit;
}

.custom-cursor {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
}

body.popup-open .custom-cursor {
  display: none;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(255,255,255,.9), 0 0 18px rgba(255, 107, 26, 0.9);
  animation: cursorBounce 760ms cubic-bezier(0.2, 0.9, 0.2, 1) infinite;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 184, 101, 0.78);
  background: rgba(0, 184, 101, 0.06);
  box-shadow: 0 0 28px rgba(0, 184, 101, 0.22);
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ring-one {
  border-color: rgba(255, 107, 26, 0.86);
  background: rgba(255, 107, 26, 0.08);
}

.ring-two {
  width: 46px;
  height: 46px;
  border-color: rgba(32, 33, 36, 0.48);
  background: rgba(32, 33, 36, 0.025);
}

.ring-three {
  width: 62px;
  height: 62px;
  border-color: rgba(0, 184, 101, 0.78);
  background: rgba(0, 184, 101, 0.05);
}

.custom-cursor.is-hovering .ring-one {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 107, 26, 0.9);
  background: rgba(255, 107, 26, 0.14);
}

.custom-cursor.is-hovering .ring-two {
  width: 70px;
  height: 70px;
  border-color: rgba(32, 33, 36, 0.62);
  background: rgba(32, 33, 36, 0.05);
}

.custom-cursor.is-hovering .ring-three {
  width: 88px;
  height: 88px;
  border-color: rgba(0, 184, 101, 0.88);
  background: rgba(0, 184, 101, 0.08);
}

.custom-cursor.is-typing .ring-one,
.custom-cursor.is-typing .ring-two,
.custom-cursor.is-typing .ring-three {
  width: 22px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.custom-cursor.is-typing .ring-one {
  border-color: rgba(255, 107, 26, 0.84);
}

.custom-cursor.is-typing .ring-two {
  border-color: rgba(255, 255, 255, 0.78);
}

.custom-cursor.is-typing .ring-three {
  border-color: rgba(0, 184, 101, 0.82);
}

@keyframes cursorBounce {
  0%, 100% {
    width: 10px;
    height: 10px;
  }

  50% {
    width: 15px;
    height: 15px;
  }
}

@media (pointer: coarse), (max-width: 900px) {
  .custom-cursor {
    display: none;
  }
}

.register-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.register-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.app-maintenance-popup {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.app-maintenance-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.app-maintenance-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 15, 19, .68);
  backdrop-filter: blur(7px);
}

.app-maintenance-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(201, 154, 69, .35);
  border-radius: 22px;
  background: linear-gradient(145deg, #fffdfb, #fff4ec);
  text-align: center;
  box-shadow: 0 36px 100px rgba(19, 11, 15, .32);
  transform: translateY(16px) scale(.98);
  transition: transform 220ms ease;
}

.app-maintenance-popup.is-open .app-maintenance-card { transform: translateY(0) scale(1); }
.app-maintenance-card h2 { margin: 7px 0 12px; font-size: clamp(2rem, 5vw, 3.1rem); }
.app-maintenance-card > p:not(.eyebrow) { color: var(--muted); font-weight: 650; }
.maintenance-icon { display: grid; width: 66px; height: 66px; margin: 0 auto 18px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--gold)); color: #fff; font-size: 1.75rem; box-shadow: 0 14px 32px rgba(217,78,14,.2); }
.maintenance-close-button { margin-top: 12px; border: 0; cursor: pointer; }

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 14, 13, 0.48);
}

.popup-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 107, 26, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 10%, rgba(0, 184, 101, 0.16), transparent 28%),
    linear-gradient(135deg, #fffdf9, #fff0e2);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  transform: translateY(22px) scale(0.96);
  transition: transform 240ms ease;
}

.register-popup.is-open .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(32, 33, 36, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.popup-close:hover {
  transform: rotate(90deg) scale(1.05);
  background: var(--orange);
  color: var(--white);
}

.popup-copy {
  margin-bottom: 22px;
  padding-right: 34px;
}

.popup-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.popup-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
}

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

.popup-form label {
  display: grid;
  gap: 8px;
  color: #4d403a;
  font-size: 0.8rem;
  font-weight: 900;
}

.popup-form input,
.popup-form select {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 107, 26, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-weight: 800;
}

.popup-form input:focus,
.popup-form select:focus {
  border-color: rgba(0, 184, 101, 0.58);
  box-shadow: 0 0 0 4px rgba(0, 184, 101, 0.08);
  outline: 0;
}

.popup-form button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--green));
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.popup-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 184, 101, 0.16);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-elevated {
  background: rgba(255, 248, 242, 0.96);
  box-shadow: 0 12px 30px rgba(82, 51, 35, 0.12);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  color: var(--white);
  line-height: 1;
  transition: transform 180ms ease;
}

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

.brand-word {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(1.25rem, 2.55vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-i {
  position: relative;
  display: inline-block;
}

.brand-i-heart {
  position: absolute;
  left: 50%;
  top: -0.44em;
  color: var(--orange-dark);
  font-size: 0.36em;
  line-height: 1;
  text-shadow: 0 5px 14px rgba(255, 107, 26, 0.38);
  transform: translateX(-50%);
  animation: heartJump 1050ms cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.brand:hover .brand-i-heart {
  color: var(--green);
  text-shadow: 0 8px 18px rgba(0, 184, 101, 0.34);
  animation-duration: 620ms;
}

@keyframes heartJump {
  0%, 100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  38% {
    transform: translateX(-50%) translateY(-6px) scale(1.12);
  }

  62% {
    transform: translateX(-50%) translateY(1px) scale(0.96);
  }
}

.brand-orange {
  color: var(--orange);
}

.brand-naatey {
  color: var(--white);
}

.brand-green {
  color: var(--green);
}

.site-header.is-elevated .brand-naatey {
  color: var(--ink);
}

.inner-page .site-header {
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 0.95rem;
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 12px;
  background: rgba(20,16,18,.32);
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.is-elevated .mobile-menu-toggle { border-color: rgba(32,33,36,.18); background: #fff; }

.nav-links a {
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transition: transform 180ms ease;
}

.nav-links a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.login-link {
  min-width: 74px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  text-align: center;
}

.site-header.is-elevated .login-link {
  border-color: rgba(32, 33, 36, 0.18);
}

.hero {
  position: relative;
  min-height: 720px;
  height: 88vh;
  max-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 12, 13, 0.98) 0%, rgba(18, 13, 13, 0.94) 42%, rgba(25, 16, 15, 0.58) 62%, rgba(25, 16, 15, 0.14) 100%),
    linear-gradient(0deg, rgba(15, 12, 13, 0.52), rgba(15, 12, 13, 0.06));
}

.hero-content {
  position: relative;
  width: min(640px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 88px);
  padding-top: 72px;
  color: var(--white);
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6.8vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.3vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 34px;
  padding: 12px;
  border: 1px solid rgba(247, 228, 189, 0.38);
  border-radius: 8px;
  background: rgba(12, 9, 9, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-actions:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.55);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
}

.primary-cta,
.secondary-cta,
.match-form button,
.signup-actions button,
.auth-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.primary-cta:hover,
.secondary-cta:hover,
.match-form button:hover,
.signup-actions button:hover,
.auth-card button:hover {
  background: linear-gradient(135deg, var(--orange-dark), #a93b08);
}

.text-cta {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: var(--gold-soft);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.text-cta:hover {
  color: var(--green);
  transform: translateX(4px);
}

.match-panel {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto 0;
  padding: 22px;
  border: 1px solid rgba(255, 107, 26, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.13), rgba(0, 184, 101, 0.1)),
    linear-gradient(180deg, #ffffff 0%, #fff7ee 100%);
  box-shadow:
    0 26px 74px rgba(47, 30, 24, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.match-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.match-panel:hover,
.match-panel:focus-within {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 101, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.18), rgba(0, 184, 101, 0.15)),
    linear-gradient(180deg, #ffffff 0%, #fff3e7 100%);
  box-shadow:
    0 36px 96px rgba(47, 30, 24, 0.23),
    0 0 0 5px rgba(0, 184, 101, 0.08);
}

.match-form {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.match-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #4d403a;
  font-size: 0.78rem;
  font-weight: 900;
}

.match-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 107, 26, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(83, 45, 30, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.match-form label:hover select,
.match-form select:focus {
  border-color: rgba(255, 107, 26, 0.62);
  background: #fffdf9;
  box-shadow: 0 12px 28px rgba(255, 107, 26, 0.12);
  outline: 0;
  transform: translateY(-2px);
}

.match-panel:hover .match-form label span,
.match-panel:focus-within .match-form label span {
  color: var(--orange-dark);
}

.auth-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) 0 0;
}

.auth-page-main,
.signup-page-main {
  padding-top: 98px;
}

.auth-section-page {
  min-height: calc(100vh - 220px);
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  padding: clamp(54px, 8vw, 96px) 0;
}

.auth-section-page .auth-copy {
  position: static;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 33, 36, 0.94), rgba(75, 39, 28, 0.92)),
    url("assets/hero-matrimonial-app.png") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.auth-section-page .auth-copy h2 {
  color: var(--white);
}

.auth-section-page .auth-copy p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
}

.auth-section-page .auth-copy::after {
  content: "Private profiles. Verified access. Family-first matchmaking.";
  display: block;
  max-width: 360px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.auth-section-page .auth-card {
  border: 0;
  background: rgba(255, 255, 255, 0.98);
}

.signup-section-page {
  padding: clamp(42px, 7vw, 76px) 0 clamp(64px, 9vw, 108px);
}

.auth-copy {
  position: sticky;
  top: 96px;
}

.auth-copy h2,
.signup-section .section-heading h2 {
  max-width: 560px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.signup-section .section-heading {
  margin-bottom: 24px;
}

.auth-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
}

.auth-card {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.auth-tabs button {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  color: var(--muted);
  font-weight: 900;
}

.auth-tabs button.active {
  border-color: var(--orange);
  background: #fff1e8;
  color: var(--orange-dark);
}

.auth-tabs button:hover {
  background: #fff1e8;
  color: var(--orange-dark);
}

.auth-panel {
  display: none;
  gap: 14px;
}

.auth-panel.active {
  display: grid;
}

.auth-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.auth-panel input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  color: var(--ink);
  font-weight: 700;
}

.inline-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.auth-card .ghost-button,
.auth-card .whatsapp-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.auth-card .ghost-button:hover {
  background: var(--paper);
}

.auth-card .whatsapp-button {
  border-color: rgba(0, 184, 101, 0.35);
  color: #087d49;
}

.auth-card .whatsapp-button:hover {
  background: #eafbf2;
}

.divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.divider-text::before,
.divider-text::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.auth-note,
.auth-status {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.auth-status {
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--orange-dark);
}

.signup-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) 0 0;
}

.signup-form {
  display: grid;
  gap: 18px;
}

.signup-form fieldset {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(83, 45, 30, 0.08);
}

.signup-form legend {
  padding: 0 10px;
  color: var(--orange-dark);
  font-size: 1.06rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  color: var(--ink);
  font-weight: 700;
}

.form-grid textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

.wide-field,
.checkbox-field {
  grid-column: span 3;
}

.checkbox-field {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink) !important;
}

.checkbox-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
}

.signup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  background: #202124;
  color: var(--white);
}

.signup-actions p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.signup-actions button {
  flex: 0 0 auto;
  min-width: 210px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(960px, calc(100% - 36px));
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 69, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(83, 45, 30, 0.08);
}

.stats div {
  padding: clamp(22px, 4vw, 36px);
  text-align: center;
  transition: background 220ms ease, transform 220ms ease;
}

.stats div:hover {
  background: #fff2e4;
  transform: translateY(-4px);
}

.stats div + div {
  border-left: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--orange-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  transition: color 220ms ease, transform 220ms ease;
}

.stats div:hover strong {
  color: var(--green);
  transform: scale(1.06);
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.section,
.browse-section,
.faq-section,
.auth-section,
.signup-section,
.advisor-band,
.download-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section,
.browse-section,
.faq-section {
  padding: clamp(64px, 9vw, 108px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.story-card {
  min-height: 228px;
  padding: 28px;
  border: 1px solid rgba(201, 154, 69, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(88, 54, 61, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 26, 0.42);
  background: linear-gradient(180deg, #ffffff, #fff7ef);
  box-shadow: 0 30px 80px rgba(88, 54, 61, 0.16);
}

.card:hover .card-icon {
  transform: rotate(8deg) scale(1.12);
  background: linear-gradient(135deg, var(--orange), var(--green));
  color: var(--white);
}

.card p,
.story-card p,
.advisor-band p,
.faq-list p {
  color: var(--muted);
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff6e5, #f4d68f);
  color: #7a4b09;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.community-slider-section {
  width: 100%;
  margin: 0;
  padding: 0 0 clamp(64px, 8vw, 96px);
  overflow: hidden;
}

.community-slider-section .section-heading {
  width: min(880px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.community-slider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: min(960px, 50.52vw);
  min-height: 620px;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 154, 69, 0.28);
  border-bottom: 1px solid rgba(201, 154, 69, 0.28);
  background: var(--ink);
  box-shadow: 0 30px 86px rgba(83, 45, 30, 0.18);
}

.community-track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.community-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
  opacity: 0;
  animation: communityFade 30s ease-in-out infinite;
}

.community-slide:nth-child(1) {
  animation-delay: 0s;
}

.community-slide:nth-child(2) {
  animation-delay: 6s;
}

.community-slide:nth-child(3) {
  animation-delay: 12s;
}

.community-slide:nth-child(4) {
  animation-delay: 18s;
}

.community-slide:nth-child(5) {
  animation-delay: 24s;
}

.community-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: saturate(1.08) contrast(1.02);
}

.community-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 8, 8, 0.84) 0%, rgba(10, 8, 8, 0.36) 48%, rgba(10, 8, 8, 0.04) 100%),
    linear-gradient(90deg, rgba(255, 107, 26, 0.18), transparent 48%);
}

.community-slide div {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: clamp(34px, 5vw, 86px);
  z-index: 1;
  color: var(--white);
}

.community-slide span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-slide h3 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.08;
}

@keyframes communityFade {
  0% {
    opacity: 0;
    transform: translateX(2%);
  }

  5%, 18% {
    opacity: 1;
    transform: translateX(0);
  }

  23%, 100% {
    opacity: 0;
    transform: translateX(-2%);
  }
}

.advisor-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 8px;
  background: linear-gradient(135deg, #151515 0%, #39221e 58%, #6d3a16 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.advisor-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.secondary-cta {
  flex: 0 0 auto;
  background: var(--green);
}

.secondary-cta:hover {
  background: #008d4d;
}

.story-card {
  overflow: hidden;
  padding: 0;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 184, 101, 0.35);
  box-shadow: 0 30px 78px rgba(40, 76, 58, 0.16);
}

.story-photo {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 34%;
  transition: transform 420ms ease, filter 420ms ease;
}

.story-card:hover .story-photo {
  transform: scale(1.06);
  filter: saturate(1.16) contrast(1.04);
}

.story-disclaimer {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}

.story-card-copy { padding: 24px; }

.story-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.story-card h3 { margin: 0 0 12px; }

.story-card blockquote {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.story-card p { margin: 0; }

.browse-section {
  padding-top: 0;
}

.browse-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.browse-tabs button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.browse-tabs button.active {
  border-color: var(--orange);
  background: #fff1e8;
  color: var(--orange-dark);
}

.browse-tabs button:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  background: #eefbf4;
  color: #087d49;
}

.browse-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.browse-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.browse-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 26, 0.5);
  color: var(--orange-dark);
  box-shadow: 0 12px 28px rgba(255, 107, 26, 0.1);
}

.about-section { display:grid; gap:24px; width:min(1220px,calc(100% - 36px)); margin:0 auto; padding:clamp(72px,9vw,120px) 0; }
.about-hero-card { overflow:hidden; padding:clamp(34px,6vw,72px); border-radius:26px; background:radial-gradient(circle at 88% 18%,rgba(0,184,101,.24),transparent 28%),radial-gradient(circle at 8% 85%,rgba(255,107,26,.24),transparent 30%),linear-gradient(135deg,#21151b,#4b2537 58%,#72364a); color:#fff; box-shadow:0 32px 85px rgba(54,27,40,.22); }
.about-hero-card h2 { max-width:920px; color:#fff; font-size:clamp(2.2rem,5vw,4.4rem); }
.about-hero-card > p:not(.eyebrow) { max-width:850px; color:rgba(255,255,255,.78); font-size:1.05rem; font-weight:650; }
.about-identity-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.about-identity-row span { padding:10px 14px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.82); }
.about-story-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.about-panel { position:relative; overflow:hidden; padding:clamp(28px,4vw,46px); border-radius:22px; box-shadow:0 22px 56px rgba(63,34,29,.1); }
.about-panel h3 { max-width:520px; margin-bottom:14px; font-size:clamp(1.6rem,3vw,2.45rem); }
.about-panel p { color:inherit; opacity:.82; font-weight:650; }
.about-panel blockquote { margin:24px 0 0; padding-left:18px; border-left:4px solid currentColor; font-family:Georgia,serif; font-size:1.18rem; font-weight:800; }
.about-number { position:absolute; top:14px; right:22px; font-family:Georgia,serif; font-size:4rem; font-weight:800; opacity:.12; }
.about-panel.warm { background:linear-gradient(145deg,#fff1e8,#ffd9c5); color:#633120; }
.about-panel.green { background:linear-gradient(145deg,#e8fff5,#bcebd5); color:#07583a; }
.about-panel.plum { background:linear-gradient(145deg,#f8eaf1,#dfb5cb); color:#5b2540; }
.about-panel.gold { background:linear-gradient(145deg,#fff8df,#f2d88e); color:#624918; }
.about-why { padding:clamp(32px,5vw,56px); border:1px solid var(--line); border-radius:24px; background:#fff; box-shadow:0 22px 55px rgba(63,34,29,.08); }
.about-benefits { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin-top:28px; }
.about-benefits span { min-height:90px; display:flex; align-items:center; padding:18px; border-radius:16px; background:linear-gradient(145deg,#fff8f3,#f7ece5); color:var(--ink); font-weight:800; }
.about-benefits span:nth-child(3n+2) { background:linear-gradient(145deg,#effff7,#d6f4e4); }
.about-benefits span:nth-child(3n) { background:linear-gradient(145deg,#f9edf3,#edd5e1); }
.about-closing { padding:28px; border-radius:20px; background:linear-gradient(90deg,var(--orange),#d94e0e); color:#fff; text-align:center; }
.about-closing strong { display:block; margin-bottom:6px; font-size:1.45rem; }
.about-closing p { margin-bottom:8px; font-weight:750; }
.about-closing small { color:rgba(255,255,255,.76); font-weight:700; }

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(83, 45, 30, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details:hover {
  transform: translateX(6px);
  border-color: rgba(0, 184, 101, 0.32);
  box-shadow: 0 18px 44px rgba(18, 111, 104, 0.1);
}

.faq-list summary {
  padding: 20px 22px;
  font-weight: 900;
  cursor: pointer;
}

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

.download-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
  padding: clamp(32px, 5vw, 52px);
  border-radius: 8px;
  border: 1px solid rgba(201, 154, 69, 0.24);
  background: linear-gradient(135deg, #fff6e9, #fffdf9);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.download-band:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.42);
  box-shadow: 0 34px 90px rgba(83, 45, 30, 0.19);
}

.download-band h2 {
  max-width: 660px;
  margin-bottom: 0;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  min-height: 58px;
  padding: 10px 16px;
  border: 1px solid rgba(32, 33, 36, 0.16);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, var(--orange), var(--green));
  box-shadow: 0 18px 40px rgba(0, 184, 101, 0.16);
}

.store-button small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.82;
}

.store-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  font-size: 1.2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(220px, .85fr) auto;
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  padding: 42px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(201,154,69,.28);
  color: rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,107,26,.14), transparent 26%),
    linear-gradient(135deg, #171217, #2d1b25 62%, #3f2230);
  font-size: 0.92rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.footer-brand {
  width: max-content;
  margin-bottom: 7px;
  color: var(--white);
}

.footer-brand .brand-word { font-size: clamp(1.22rem, 2vw, 1.72rem); }
.footer-brand .brand-naatey { color: var(--white); }

.site-footer p {
  margin: 0;
}

.footer-contact,
.footer-meta {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 10px;
}

.footer-contact p span {
  color: var(--gold-soft);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-meta {
  padding-left: clamp(0px, 2vw, 28px);
  border-left: 1px solid rgba(255,255,255,.15);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

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

.site-footer a:hover {
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.profile-showcase {
  overflow: hidden;
  padding: clamp(70px, 9vw, 118px) 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 107, 26, .22), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(201, 154, 69, .16), transparent 34%),
    linear-gradient(135deg, #21151b 0%, #482435 52%, #713447 100%);
  color: var(--white);
}

.profile-showcase .section-heading {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 38px;
}

.profile-showcase h2 { color: var(--white); }
.demo-note { margin: 12px 0 0; color: rgba(255,255,255,.66); font-weight: 650; }
.profile-marquee-shell { position: relative; width: 100%; }
.profile-marquee { width: 100%; overflow: hidden; scroll-behavior: smooth; scrollbar-width: none; }
.profile-marquee::-webkit-scrollbar { display: none; }
.profile-marquee-shift { width: max-content; transition: transform 850ms cubic-bezier(.22,.8,.28,1); will-change: transform; }
.profile-marquee-track { display: flex; width: max-content; gap: 14px; animation: profile-scroll 320s linear infinite; will-change: transform; }
.profile-marquee:hover .profile-marquee-track { animation-play-state: paused; }
.marquee-link { display: block; flex: 0 0 260px; width: 260px; height: 456px; color: inherit; }

.marquee-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0 0 5px;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #006f45;
  box-shadow: 0 12px 34px rgba(0,45,29,.28);
  font-size: 2.45rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.marquee-arrow:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.08); }
.marquee-arrow-left { left: 18px; }
.marquee-arrow-right { right: 18px; }

@keyframes profile-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.directory-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(67, 33, 23, .09);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.directory-card:hover,
.directory-card:focus-visible { transform: translateY(-5px); box-shadow: 0 23px 54px rgba(67,33,23,.16); outline: none; }
.compact-card { display: grid; width: 260px; height: 456px; grid-template-rows: 278px 178px; border-color: rgba(255,255,255,.14); }
.compact-card .directory-photo { height: 278px; aspect-ratio: auto; }
.compact-card .directory-copy { overflow: hidden; }
.directory-photo { position: relative; aspect-ratio: 4 / 4.7; overflow: hidden; background: #3b2928; }
.directory-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.directory-card:hover img { transform: scale(1.035); }
.directory-photo.is-private img { filter: saturate(.65); }
.privacy-pill,
.sample-pill { position: absolute; z-index: 1; padding: 7px 9px; border-radius: 999px; font-size: .66rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.privacy-pill { left: 12px; bottom: 12px; background: rgba(20,17,17,.78); color: #fff; backdrop-filter: blur(8px); }
.sample-pill { top: 12px; right: 12px; background: rgba(255,255,255,.88); color: #754028; }
.directory-copy { padding: 17px; }
.profile-id { color: var(--orange-dark); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.directory-copy h3 { margin: 5px 0 8px; font-size: 1.22rem; }
.directory-copy p { margin: 0 0 6px; color: var(--muted); font-size: .82rem; font-weight: 650; line-height: 1.45; }
.directory-copy > div { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.directory-copy > div span { padding: 6px 8px; border-radius: 999px; background: #fff2eb; color: #82462e; font-size: .67rem; font-weight: 850; }
.showcase-action { display: flex; justify-content: center; margin-top: 38px; }

.profiles-main { padding: 108px 0 90px; background: #fffaf7; }
.profiles-hero { width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: clamp(48px, 8vw, 94px) 0 46px; text-align: center; }
.profiles-hero h1 { max-width: 900px; margin: 8px auto 16px; font-size: clamp(2.65rem, 6vw, 5.6rem); line-height: .98; }
.profiles-hero > p:not(.eyebrow) { max-width: 670px; margin: 0 auto; color: var(--muted); font-weight: 650; }
.demo-badge { display: inline-flex; margin-top: 22px; padding: 9px 13px; border: 1px solid #efc7b4; border-radius: 999px; color: #8a4b30; background: #fff; font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.profile-browser { width: min(1400px, calc(100% - 36px)); margin: 0 auto; }
.profile-filters { position: sticky; top: 82px; z-index: 8; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 16px 40px rgba(80,42,28,.09); backdrop-filter: blur(12px); }
.profile-filters label { display: grid; gap: 7px; }
.profile-filters label span { font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.profile-filters select,
.profile-filters input { min-width: 0; height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; background: #fffaf7; color: var(--ink); font: inherit; font-weight: 700; }
.profile-results-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 30px 0 18px; }
.profile-results-bar p { margin: 0; color: var(--muted); }
.profile-results-bar button { border: 0; background: transparent; color: var(--orange-dark); font: inherit; font-weight: 850; cursor: pointer; }
.profiles-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.profiles-error { grid-column: 1 / -1; padding: 40px; text-align: center; }
.load-more-wrap { display: flex; justify-content: center; margin-top: 38px; }
.load-more-button { min-width: 190px; min-height: 50px; padding: 0 24px; border: 0; border-radius: 999px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; font-weight: 900; box-shadow: 0 14px 32px rgba(217,78,14,.22); cursor: pointer; }
.load-more-button:hover { transform: translateY(-2px); }
.load-more-button[hidden] { display: none; }

.tap-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 40;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 16px 38px rgba(217,78,14,.32);
  font-size: 1.55rem;
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  cursor: pointer;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.tap-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.tap-to-top:hover { transform: translateY(-4px); }

.profile-gate { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity 180ms ease, visibility 180ms ease; }
.profile-gate.is-open { visibility: visible; opacity: 1; }
.profile-gate-backdrop { position: absolute; inset: 0; background: rgba(18,14,14,.76); backdrop-filter: blur(7px); }
.profile-gate-card { position: relative; z-index: 1; width: min(520px, 100%); padding: clamp(28px, 5vw, 48px); border-radius: 24px; background: #fff; text-align: center; box-shadow: 0 34px 90px rgba(0,0,0,.26); transform: translateY(14px); transition: transform 180ms ease; }
.profile-gate.is-open .profile-gate-card { transform: translateY(0); }
.profile-gate-card h2 { margin: 8px 0 12px; font-size: clamp(2rem, 5vw, 3rem); }
.profile-gate-card > p:not(.eyebrow) { color: var(--muted); font-weight: 650; }
.profile-gate-card .primary-cta { display: inline-flex; margin-top: 10px; }
.gate-icon { display: grid; width: 64px; height: 64px; margin: 0 auto 18px; place-items: center; border-radius: 50%; background: #fff0e7; color: var(--orange); font-size: 2rem; }
.gate-login { display: block; margin-top: 18px; color: var(--muted); font-size: .86rem; font-weight: 800; }

.policy-page-main {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 clamp(64px, 9vw, 108px);
}

.policy-hero {
  margin-bottom: 28px;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(201, 154, 69, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #1b1919, #4a2b20);
  color: var(--white);
  box-shadow: var(--shadow);
}

.policy-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.policy-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content section {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(83, 45, 30, 0.07);
}

.policy-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.32rem, 2.5vw, 1.9rem);
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-weight: 650;
}

.policy-content ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1020px) {
  .profiles-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .match-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-form button {
    grid-column: span 2;
  }

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

  .wide-field,
  .checkbox-field {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .about-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
  }

  .profile-filters { grid-template-columns: repeat(2, minmax(0,1fr)); top: 74px; }
  .profiles-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mobile-menu-toggle { display: grid; margin-left: auto; }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    color: var(--ink);
    box-shadow: 0 22px 55px rgba(39,20,25,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { display: block; padding: 12px 14px; border-radius: 10px; }
  .nav-links a:hover { background: #fff2eb; transform: none; }
  .nav-links a::after { display: none; }
  .nav-links .login-link { width: 100%; border-color: var(--line); text-align: left; }

  .hero {
    min-height: 720px;
    height: 92svh;
    max-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(15, 12, 13, 0.98) 0%, rgba(15, 12, 13, 0.84) 66%, rgba(15, 12, 13, 0.28) 100%),
      linear-gradient(90deg, rgba(15, 12, 13, 0.74), rgba(15, 12, 13, 0.18));
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding: 130px 0 72px;
  }

  .feature-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .advisor-band,
  .download-band {
    display: grid;
    align-items: start;
  }

  .auth-section {
    grid-template-columns: 1fr;
  }

  .auth-copy {
    position: static;
  }

  .signup-actions {
    display: grid;
  }

  .community-slider {
    height: 82vw;
    min-height: 500px;
  }

  .community-slide div {
    left: 22px;
    right: 22px;
    bottom: 30px;
  }

  .community-slide h3 {
    max-width: 620px;
    font-size: clamp(1.65rem, 6vw, 2.8rem);
  }
}

@media (max-width: 640px) {
  .about-story-grid,
  .about-benefits { grid-template-columns: 1fr; }
  .profile-filters { position: static; grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .profiles-main { padding-top: 82px; }
  .profiles-hero { padding-top: 42px; }
  .marquee-link { flex-basis: 228px; width: 228px; height: 430px; }
  .compact-card { width: 228px; height: 430px; grid-template-rows: 250px 180px; }
  .compact-card .directory-photo { height: 250px; }
  .marquee-arrow { width: 44px; height: 44px; font-size: 2rem; }
  .marquee-arrow-left { left: 8px; }
  .marquee-arrow-right { right: 8px; }
  .profile-marquee-track { animation-duration: 280s; }
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    gap: 0;
  }

  .brand-word {
    font-size: clamp(1.02rem, 6vw, 1.4rem);
  }

  .login-link {
    min-width: 64px;
    padding: 8px 12px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.7rem);
  }

  .hero-image {
    object-position: 88% center;
  }

  .hero-actions {
    width: 100%;
    margin-top: 28px;
    background: rgba(12, 9, 9, 0.86);
  }

  .hero-actions .primary-cta,
  .hero-actions .text-cta {
    width: 100%;
  }

  .community-slider {
    height: 108vw;
    min-height: 460px;
  }

  .community-slide img {
    object-position: center center;
  }

  .community-slide span {
    font-size: 0.66rem;
  }

  .community-slide h3 {
    font-size: clamp(1.38rem, 7vw, 2.1rem);
  }

  .match-panel {
    width: calc(100% - 24px);
    margin-top: 20px;
    padding: 16px;
  }

  .match-form,
  .auth-tabs,
  .inline-actions,
  .form-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .match-form button {
    grid-column: span 1;
  }

  .wide-field,
  .checkbox-field {
    grid-column: span 1;
  }

  .stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stats div {
    text-align: left;
  }

  .advisor-band,
  .download-band,
  .auth-section,
  .signup-section {
    width: calc(100% - 24px);
  }

  .advisor-band,
  .download-band {
    padding: 28px 18px;
  }

  .auth-card,
  .signup-form fieldset,
  .signup-actions {
    padding: 18px;
  }

  .signup-actions button {
    width: 100%;
    min-width: 0;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .popup-card {
    padding: 22px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
