:root {
  /* Original brand palette (from the 2024 archive) */
  --pink: #f06292;
  --pink-deep: #d94e7d;
  --purple: #9956FF;
  --magenta: #FF40D5;
  --blue: #7EA9FF;
  --ink: #263238;
  --ink-soft: #3a4a52;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --card: rgba(75, 75, 130, 0.2);
  --card-deep: rgba(38, 38, 51, 0.5);
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1280px;

  --brand-gradient: linear-gradient(179.82deg, #9956FF 3.62%, #FF40D5 50%, #7EA9FF 97.28%);
  --brand-gradient-h: linear-gradient(90deg, #9956FF 0%, #FF40D5 90.13%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--pink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.root {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(153, 86, 255, 0.55), transparent 60%),
    radial-gradient(700px 600px at 0% 30%, rgba(255, 64, 213, 0.4), transparent 65%),
    radial-gradient(600px 500px at 100% 70%, rgba(126, 169, 255, 0.35), transparent 65%),
    var(--pink);
}

/* ---------- Material Symbols sizing ---------- */
.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  user-select: none;
}

/* ---------- Buttons ---------- */
.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  color: var(--white);
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 24px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.outline-button:hover {
  background-color: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .outline-button { font-size: 14px; padding: 12px 28px; }
}

/* ---------- Header ---------- */
header.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 8px 0;
}
.header-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.logo {
  height: 44px;
  width: auto;
}
@media (min-width: 768px) {
  .logo { height: 52px; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.nav-toggle:hover { background: var(--white); color: var(--ink); }
@media (min-width: 768px) {
  .nav-toggle { font-size: 14px; padding: 12px 24px; }
}

/* Primary nav links (next to logo) */
.primary-nav {
  display: none;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 16px;
}
@media (min-width: 900px) {
  .primary-nav { display: inline-flex; }
}
.nav-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.nav-link:hover, .nav-link.is-active { border-bottom-color: var(--white); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(38, 22, 56, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  min-width: 480px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.dropdown-menu.open { display: grid; }
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  color: var(--white-90);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s ease;
}
.dropdown-menu a:hover {
  background: rgba(255, 64, 213, 0.18);
  color: var(--white);
}
@media (max-width: 560px) {
  .dropdown-menu { grid-template-columns: 1fr; min-width: 0; left: 0; right: 0; }
}

/* ---------- Welcome / hero ---------- */
.welcome-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
  text-align: center;
}
.welcome-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.welcome-screen .container { position: relative; z-index: 1; }
.welcome-screen-logo {
  width: 220px;
  margin: 0 auto 36px;
}
.welcome-screen-logo img {
  width: 100%;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}
.welcome-screen-text {
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .welcome-screen-text { font-size: 52px; } }
@media (min-width: 1024px) { .welcome-screen-text { font-size: 65px; } }

.welcome-screen-subtext {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-90);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .welcome-screen-subtext { font-size: 22px; } }

.welcome-screen-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media (min-width: 768px) { .welcome-screen-links { flex-direction: row; } }

.welcome-screen-link { display: inline-block; transition: transform 0.15s ease; }
.welcome-screen-link:hover { transform: translateY(-2px); }
.welcome-screen-link img { height: 52px; width: auto; }

/* Decorative shape (replaces the missing shape.svg) */
.shape {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 60%);
  height: 80px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.shape::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brand-gradient);
  filter: blur(40px);
}
@media (max-width: 767px) { .shape { display: none; } }

/* Scroll indicator */
.scroll-inform {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 0 40px;
  margin-top: -40px;
  z-index: 2;
}
.scroll-inform .shape-dot {
  width: 24px;
  height: 38px;
  border: 2px solid var(--white-70);
  border-radius: 14px;
  position: relative;
}
.scroll-inform .shape-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50%      { transform: translate(-50%, 12px); opacity: 0.4; }
}

/* ---------- Section base ---------- */
section { position: relative; padding: 70px 0; }
@media (min-width: 768px) { section { padding: 90px 0; } }

/* Title with gradient bar on the left, dark ink text, italic */
.title-with-border {
  position: relative;
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  text-transform: capitalize;
  color: var(--ink);
  padding-left: 24px;
  margin-bottom: 28px;
}
.title-with-border::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  background: var(--brand-gradient);
  border-radius: 4px;
}
@media (min-width: 768px) { .title-with-border { font-size: 38px; } }
@media (min-width: 1024px) { .title-with-border { font-size: 44px; } }

.expectations-wrapper,
.swipe-cards-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.expectations-text-block { display: grid; gap: 18px; }

.expectations-text,
.expectations-text-footer,
.swipe-cards-subtitle,
.text {
  color: var(--white);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}
@media (min-width: 768px) {
  .expectations-text,
  .expectations-text-footer,
  .swipe-cards-subtitle,
  .text { font-size: 18px; }
}

/* Ordered list (Hookup features list) */
.swipe-cards-wrapper ol {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  counter-reset: feature;
}
.swipe-cards-wrapper ol li {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px 22px 22px 76px;
  position: relative;
  counter-increment: feature;
  backdrop-filter: blur(6px);
}
.swipe-cards-wrapper ol li::before {
  content: counter(feature);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-gradient-h);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 64, 213, 0.35);
}
.swipe-cards-wrapper ol li a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.swipe-cards-wrapper ol li a:hover { border-bottom-color: var(--white); }

/* ---------- Get-app section ---------- */
.get-app { padding-bottom: 120px; }
.get-app-wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--card-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
@media (min-width: 900px) {
  .get-app-wrapper {
    grid-template-columns: 1fr 360px;
    text-align: left;
    padding: 56px 48px;
  }
}
.get-app-title {
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 10px;
  opacity: 0.85;
}
.get-app-second-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 24px;
}
.get-app-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 900px) { .get-app-links { justify-content: flex-start; } }
.get-app-links img { height: 52px; width: auto; }
.get-app-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 22px;
  box-shadow: 0 24px 60px -10px rgba(0,0,0,0.45);
  justify-self: center;
}
@media (min-width: 900px) { .get-app-photo { justify-self: end; } }

.get-app-wrapper--solo {
  grid-template-columns: auto 1fr;
  text-align: left;
  gap: 28px;
}
@media (max-width: 720px) {
  .get-app-wrapper--solo {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
.get-app-icon {
  font-size: 88px !important;
  color: var(--white);
  background: var(--brand-gradient-h);
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(255, 64, 213, 0.45);
  font-variation-settings: 'FILL' 1, 'wght' 500;
}

/* ---------- Links block (footer SEO links) ---------- */
.links-block { padding: 60px 0; }
.links-block .center { text-align: center; }
.links-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.links-wrapper li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: all 0.15s ease;
}
.links-wrapper li a:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

/* ---------- Footer ---------- */
footer.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 36px 0 32px;
  margin-top: 20px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.footer-content .logo { height: 36px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white-90);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.footer-links a:hover { opacity: 0.7; }
.footer-links .material-symbols-rounded { font-size: 18px; }
.links-wrapper .material-symbols-rounded { font-size: 16px; color: var(--magenta); }
.nav-toggle .material-symbols-rounded { font-size: 18px; }
.footer-web-copyright {
  color: var(--white-70);
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Feature grid (niche pages) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
}
.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-3px);
}
.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-gradient-h);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(255, 64, 213, 0.35);
}
.feature-card-icon .material-symbols-rounded {
  font-size: 28px;
  color: var(--white);
}
.feature-card h3 {
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.feature-card p {
  color: var(--white-90);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

/* ---------- Phone mockups in hero ---------- */
.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
  height: 380px;
  perspective: 1400px;
  width: 100%;
  max-width: 720px;
}
@media (min-width: 768px) {
  .hero-phones { height: 460px; }
}
.phone-mock {
  position: absolute;
  width: 200px;
  height: 400px;
  background: #1a1230;
  border: 7px solid #0a0418;
  border-radius: 34px;
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  overflow: hidden;
  transition: transform 0.4s ease;
}
@media (min-width: 768px) {
  .phone-mock { width: 230px; height: 460px; border-radius: 38px; }
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #0a0418;
  border-radius: 12px;
  z-index: 2;
}
.phone-mock--left {
  transform: translateX(-150px) rotate(-12deg);
  z-index: 1;
}
.phone-mock--right {
  transform: translateX(150px) rotate(12deg);
  z-index: 1;
}
.phone-mock--center {
  transform: translateY(-12px);
  z-index: 3;
}
@media (max-width: 640px) {
  .phone-mock--left { transform: translateX(-90px) rotate(-12deg) scale(0.85); }
  .phone-mock--right { transform: translateX(90px) rotate(12deg) scale(0.85); }
  .phone-mock--center { transform: translateY(-12px) scale(0.95); }
}
.phone-mock:hover { transform: translateY(-6px) rotate(0); z-index: 5; }
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2a1556, #1a0f3a 60%, #0e0820);
  color: #fff;
  font-size: 12px;
  padding: 36px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-screen-title {
  font-size: 11px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

/* Screen 1: Match / Discover */
.phone-card {
  flex: 1;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65) 100%),
    linear-gradient(135deg, #ff8a5b, #ff4d8d 50%, #b14bff);
  position: relative;
  overflow: hidden;
}
.phone-card-name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
}
.phone-card-name strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 4px;
}
.phone-card-name span {
  font-size: 11px;
  opacity: 0.85;
}
.phone-card-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 6px 0 0;
}
.phone-action {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Material Symbols Rounded';
  font-size: 20px;
  font-variation-settings: 'FILL' 1;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.phone-action--nope { color: #ff8a8a; }
.phone-action--like { background: #ff4d8d; }

/* Screen 2: Chat */
.phone-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.phone-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a5b, #ff4d8d);
}
.phone-chat-header strong { font-size: 13px; font-weight: 900; font-style: italic; }
.phone-chat-header span { font-size: 10px; color: rgba(255, 255, 255, 0.6); display: block; }
.phone-bubbles {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
  overflow: hidden;
}
.phone-bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.4;
}
.phone-bubble--them {
  background: rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.phone-bubble--me {
  background: linear-gradient(135deg, #ff4d8d, #b14bff);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.phone-input {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.phone-input::after {
  content: 'send';
  font-family: 'Material Symbols Rounded';
  font-size: 16px;
  margin-left: auto;
  color: #ff4d8d;
  font-variation-settings: 'FILL' 1;
}

/* Screen 3: Profile */
.phone-profile-photo {
  height: 140px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7EA9FF, #b14bff 60%, #ff4d8d);
  position: relative;
}
.phone-profile-photo::after {
  content: 'verified';
  font-family: 'Material Symbols Rounded';
  font-size: 18px;
  font-variation-settings: 'FILL' 1;
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #fff;
  color: #b14bff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}
.phone-profile h4 {
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
  margin-top: 6px;
}
.phone-profile p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.phone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.phone-tag {
  font-size: 9px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
}

/* ---------- Mobile menu drawer ---------- */
.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle .material-symbols-rounded { font-size: 22px; }
@media (max-width: 899px) {
  .menu-toggle { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 8, 30, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.mobile-drawer-close {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-drawer-close .material-symbols-rounded { font-size: 22px; }
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.mobile-drawer-links a {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-drawer-section {
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 16px 0 10px;
}
.mobile-drawer-communities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 18px;
}
.mobile-drawer-communities a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  padding: 8px 4px;
  border-bottom: none;
}
.mobile-drawer-cta {
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  text-align: center;
  align-self: flex-start;
}

/* ---------- Sticky bottom CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(20, 8, 30, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 16px env(safe-area-inset-bottom, 12px);
  display: none;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 899px) {
  .sticky-cta { display: flex; }
}
.sticky-cta p {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.sticky-cta a {
  flex-shrink: 0;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* Add bottom padding to body so sticky bar doesn't cover footer on mobile */
@media (max-width: 899px) {
  body { padding-bottom: 80px; }
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.blog-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
}
.blog-card-cover {
  height: 160px;
  background: var(--brand-gradient-h);
  position: relative;
  display: grid;
  place-items: center;
}
.blog-card-cover .material-symbols-rounded {
  font-size: 56px;
  color: rgba(255, 255, 255, 0.85);
  font-variation-settings: 'FILL' 1;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--white);
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--white-90);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.blog-card-link {
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link .material-symbols-rounded { font-size: 16px; }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}
.post-cover {
  height: 220px;
  border-radius: 18px;
  background: var(--brand-gradient-h);
  margin-bottom: 28px;
  display: grid;
  place-items: center;
}
.post-cover .material-symbols-rounded {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.85);
  font-variation-settings: 'FILL' 1;
}

/* ---------- How it works (3-step walkthrough) ---------- */
.steps {
  display: grid;
  gap: 60px;
  margin-top: 40px;
}
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .step { grid-template-columns: 1fr 1fr; gap: 60px; }
  .step--reverse { direction: rtl; }
  .step--reverse > * { direction: ltr; }
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--brand-gradient-h);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(255, 64, 213, 0.4);
}
.step-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.step-content p {
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}
.step-content ul {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}
.step-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}
.step-content ul li::before {
  content: 'check_circle';
  font-family: 'Material Symbols Rounded';
  font-size: 20px;
  color: var(--white);
  font-variation-settings: 'FILL' 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.step-visual {
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 380px;
}
.step-visual .phone-mock {
  position: relative;
  transform: none;
}
@media (min-width: 900px) {
  .step-visual .phone-mock { transform: rotate(-4deg); }
  .step--reverse .step-visual .phone-mock { transform: rotate(4deg); }
}

/* ---------- Comparison table ---------- */
.compare-wrapper {
  margin: 40px auto 0;
  max-width: 980px;
}
.compare-table {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: center;
}
.compare-row + .compare-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.compare-cell {
  padding: 16px 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-cell--feature {
  text-align: left;
  justify-content: flex-start;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.compare-cell--us {
  background: linear-gradient(180deg, rgba(255, 64, 213, 0.18), rgba(177, 75, 255, 0.18));
}
.compare-header .compare-cell {
  background: rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  min-height: 62px;
}
.compare-header .compare-cell--us {
  background: var(--brand-gradient-h);
  color: var(--white);
}
.compare-cell .material-symbols-rounded {
  font-size: 22px;
  font-variation-settings: 'FILL' 1;
}
.compare-icon-yes { color: #c0ffd6; }
.compare-icon-no  { color: rgba(255, 255, 255, 0.4); }
.compare-icon-meh { color: #ffe14a; }

@media (max-width: 720px) {
  .compare-row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  /* Hide the two extra competitor columns on small screens — keep "us" and one comp */
  .compare-cell--hide-mobile { display: none; }
  .compare-cell { font-size: 13px; padding: 12px 10px; }
}

/* ---------- Press kit grid ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.press-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(6px);
}
.press-card h3 {
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--white);
}
.press-card p {
  color: var(--white-90);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.press-card .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.press-card .download-btn .material-symbols-rounded { font-size: 16px; }

.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.color-swatch {
  border-radius: 12px;
  padding: 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  color: var(--white);
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.color-swatch strong { font-size: 14px; font-family: 'Mulish', sans-serif; font-style: italic; }

/* ---------- Hero trust badges (under hero subtitle) ---------- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  margin: 0 auto 28px;
  max-width: 700px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.trust-badge .material-symbols-rounded {
  font-size: 16px;
  font-variation-settings: 'FILL' 1;
}

/* ---------- Pricing tiers ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 40px;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-tier {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}
.pricing-tier--featured {
  background: linear-gradient(180deg, rgba(255, 64, 213, 0.22), rgba(177, 75, 255, 0.22));
  border-color: rgba(255, 255, 255, 0.45);
  transform: none;
}
@media (min-width: 900px) {
  .pricing-tier--featured {
    transform: scale(1.04);
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.35);
  }
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-name {
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 6px;
  color: var(--white);
}
.pricing-desc {
  font-size: 14px;
  color: var(--white-90);
  margin-bottom: 22px;
  min-height: 42px;
}
.pricing-price {
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-price small {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.pricing-period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing-features {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  list-style: none;
  padding: 0;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}
.pricing-features li::before {
  content: 'check_circle';
  font-family: 'Material Symbols Rounded';
  font-size: 18px;
  color: var(--white);
  font-variation-settings: 'FILL' 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-features li.is-disabled {
  opacity: 0.5;
}
.pricing-features li.is-disabled::before {
  content: 'remove_circle';
  opacity: 0.6;
}
.pricing-cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
  transition: all 0.15s ease;
}
.pricing-cta:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.pricing-cta--primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.pricing-cta--primary:hover { transform: translateY(-2px); }

/* ---------- City hero ---------- */
.city-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 24px auto 0;
  max-width: 720px;
}
.city-stat {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.city-stat-value {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  margin-bottom: 4px;
}
.city-stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Generic page hero (About, FAQ, Safety, Contact, Privacy, Terms) ---------- */
.page-hero {
  padding: 140px 0 40px;
  text-align: center;
  position: relative;
}
.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero-subtext {
  font-size: 18px;
  color: var(--white-90);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 500;
}
@media (min-width: 768px) { .page-hero-subtext { font-size: 20px; } }

/* ---------- Waitlist form ---------- */
.waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: all 0.15s ease;
}
.waitlist-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.65); }
.waitlist-form input[type="email"]:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.waitlist-form button:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.waitlist-form .material-symbols-rounded { font-size: 18px; }
.waitlist-status {
  margin-top: 14px;
  font-size: 14px;
  color: var(--white-90);
  min-height: 1.2em;
}
.waitlist-status.is-error { color: #ffd6e0; }
.waitlist-status.is-success { color: #c0ffd6; }

/* ---------- Age gate modal ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 8, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.age-gate.is-open { opacity: 1; visibility: visible; }
.age-gate-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 36px 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  color: var(--white);
}
.age-gate-icon {
  font-size: 56px !important;
  background: var(--brand-gradient-h);
  width: 88px; height: 88px;
  display: grid; place-items: center;
  border-radius: 22px;
  margin: 0 auto 20px;
  color: var(--white);
}
.age-gate-title {
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 10px;
}
.age-gate-text {
  color: var(--white-90);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.age-gate-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease;
}
.age-gate-btn:hover { transform: translateY(-1px); }
.age-gate-btn--primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.age-gate-btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 900;
  background: rgba(20, 8, 30, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 18px 20px;
  display: none;
  align-items: center;
  gap: 16px;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
.cookie-banner.is-open { display: flex; }
.cookie-banner p {
  flex: 1 1 280px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white-90);
}
.cookie-banner a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.5); }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner button {
  padding: 10px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease;
}
.cookie-banner button:hover { transform: translateY(-1px); }
.cookie-btn--accept { background: var(--white); color: var(--ink); }
.cookie-btn--decline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner button { flex: 1; }
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; margin-top: 28px; }
.faq-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: 'expand_more';
  font-family: 'Material Symbols Rounded';
  font-size: 24px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item-body {
  padding: 0 22px 22px;
  color: var(--white-90);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}
.faq-item-body p + p { margin-top: 10px; }

/* ---------- Long-form prose (Privacy, Terms, Safety) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--white);
}
.prose h2 {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  margin: 36px 0 12px;
  color: var(--ink);
}
.prose h3 {
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  margin: 24px 0 8px;
  color: var(--white);
}
.prose p, .prose li {
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}
.prose p + p { margin-top: 14px; }
.prose ul, .prose ol {
  padding-left: 22px;
  margin: 12px 0;
  list-style: disc;
}
.prose ol { list-style: decimal; }
.prose li + li { margin-top: 6px; }
.prose a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.prose .draft-notice {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  margin-bottom: 28px;
}
.prose .last-updated {
  font-size: 13px;
  color: var(--white-70);
  margin-bottom: 24px;
}

/* ---------- Contact form ---------- */
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin: 28px auto 0;
}
.contact-form label {
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: all 0.15s ease;
  width: 100%;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}
.contact-form button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.contact-form button:hover { transform: translateY(-1px); }
.contact-form .material-symbols-rounded { font-size: 18px; }

/* ---------- Niche pages ---------- */
.niche-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}
.niche-eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
