/* ============================================================
   Canada Hookup — Design System
   Premium dark hookup platform for open-minded Canadian adults
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Colours */
  --bg-black: #070507;
  --soft-black: #100B10;
  --deep-plum: #1B0E18;
  --berry-pink: #E93672;
  --hot-pink: #FF3D82;

  /* Secondary Colours */
  --purple-accent: #A74DFF;
  --warm-red: #C9274F;
  --soft-rose: #F38AAA;
  --light-text: #F7F2F5;
  --muted-text: #B8AEB5;

  /* Typography */
  --font-heading: 'Playfair Display', 'Cormorant Garamond', 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', 'Manrope', 'Poppins', 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Spacing */
  --content-width: 1280px;
  --card-radius: 14px;
  --btn-radius: 8px;

  /* Shadows & Glows */
  --pink-glow: 0 0 20px rgba(233, 54, 114, 0.3);
  --pink-glow-strong: 0 0 40px rgba(233, 54, 114, 0.5);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --card-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--berry-pink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--hot-pink);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--light-text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--muted-text);
  margin-bottom: 1rem;
}

.highlight {
  color: var(--berry-pink);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--berry-pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--muted-text);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--soft-black);
}

.section-plum {
  background-color: var(--deep-plum);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 5, 7, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 5, 7, 0.95);
  border-bottom: 1px solid rgba(233, 54, 114, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-text);
  white-space: nowrap;
}

.logo .logo-white {
  color: var(--light-text);
}

.logo .logo-pink {
  color: var(--berry-pink);
}

.logo-icon {
  width: 36px;
  height: 36px;
  margin-right: 0.5rem;
  background: linear-gradient(135deg, var(--berry-pink), var(--hot-pink));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--muted-text);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--berry-pink);
  transition: width var(--transition-smooth);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--light-text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--berry-pink), var(--hot-pink));
  color: #fff;
  box-shadow: 0 4px 15px rgba(233, 54, 114, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(233, 54, 114, 0.5);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--light-text);
  border: 1.5px solid rgba(184, 174, 181, 0.4);
}

.btn-secondary:hover {
  border-color: var(--berry-pink);
  color: var(--berry-pink);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light-text);
  border-radius: 1px;
  transition: all var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-black);
  z-index: 999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: var(--btn-radius);
  transition: background var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--deep-plum);
  color: var(--berry-pink);
}

.mobile-menu .btn {
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 5, 7, 0.92) 0%,
    rgba(7, 5, 7, 0.7) 40%,
    rgba(27, 14, 24, 0.6) 70%,
    rgba(7, 5, 7, 0.85) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--muted-text);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-text);
}

.hero-trust-item .icon-check {
  color: var(--berry-pink);
  font-weight: 700;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-photo {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--deep-plum), rgba(233, 54, 114, 0.2));
  border-radius: var(--card-radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--pink-glow), var(--card-shadow);
}

.hero-image-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 5, 7, 0.6) 0%, transparent 40%);
  pointer-events: none;
}

/* --- Cards --- */
.card {
  background: var(--deep-plum);
  border: 1px solid rgba(184, 174, 181, 0.08);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-smooth);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(233, 54, 114, 0.2);
}

.card-image {
  border-radius: calc(var(--card-radius) - 2px);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.card-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

/* --- Member Cards --- */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.member-card {
  background: var(--deep-plum);
  border: 1px solid rgba(184, 174, 181, 0.08);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover), var(--pink-glow);
  border-color: rgba(233, 54, 114, 0.25);
}

.member-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.member-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.04);
  transition: transform 0.5s ease;
  will-change: transform;
}

.member-card:hover .member-card-image img {
  transform: scale(1.1);
}

.member-card-image .online-indicator {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 12px;
  height: 12px;
  background: #4ade80;
  border: 2px solid var(--deep-plum);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.member-card-info {
  padding: 1rem 1.25rem;
}

.member-card-info .name-age {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.member-card-info .name-age h4,
.member-card-info .name-age h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-text);
  margin: 0;
}

.member-card-info .name-age span {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.member-card-info .city {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 0.35rem;
}

.member-card-info .status {
  font-size: 0.8rem;
  color: var(--berry-pink);
  font-style: italic;
}

.member-card .heart-btn {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(7, 5, 7, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.member-card .heart-btn:hover {
  background: var(--berry-pink);
  border-color: var(--berry-pink);
  transform: scale(1.1);
}

/* --- Intention Cards --- */
.intention-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.intention-card {
  background: var(--deep-plum);
  border: 1px solid rgba(184, 174, 181, 0.08);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.intention-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(233, 54, 114, 0.3);
}

.intention-card .intention-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.intention-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.intention-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 0;
}

/* --- City Cards --- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.city-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-smooth);
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.city-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-card:hover img {
  transform: scale(1.08);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 5, 7, 0.9) 0%, rgba(7, 5, 7, 0.2) 50%, rgba(7, 5, 7, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.city-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.city-card-overlay p {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 0;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--berry-pink), var(--berry-pink), transparent);
  opacity: 0.3;
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--deep-plum);
  border: 2px solid var(--berry-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--berry-pink);
  margin: 0 auto 1.25rem;
  box-shadow: var(--pink-glow);
}

.step-item h4,
.step-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- App Section --- */
.app-section {
  background: linear-gradient(135deg, var(--deep-plum) 0%, rgba(199, 39, 79, 0.15) 50%, var(--soft-black) 100%);
  overflow: hidden;
}

.app-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.app-content h2 {
  margin-bottom: 1rem;
}

.app-content p {
  margin-bottom: 2rem;
}

.app-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #000;
  padding: 0.65rem 1.25rem;
  border-radius: var(--btn-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--pink-glow-strong);
}

.app-mockups {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-mockup-image {
  display: block;
  width: min(100%, 640px);
  height: auto;
  border-radius: var(--card-radius);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 28px rgba(233, 54, 114, 0.14));
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.app-mockup-image:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 34px rgba(233, 54, 114, 0.22));
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--deep-plum);
  border: 1px solid rgba(184, 174, 181, 0.08);
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(233, 54, 114, 0.15);
}

.testimonial-card .stars {
  color: var(--berry-pink);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--berry-pink), var(--purple-accent));
  flex-shrink: 0;
}

.testimonial-author .author-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light-text);
  margin: 0;
}

.testimonial-author .author-info span {
  font-size: 0.8rem;
  color: var(--muted-text);
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--deep-plum);
  border: 1px solid rgba(184, 174, 181, 0.08);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(233, 54, 114, 0.2);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.25rem;
}

.blog-card-body .category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--berry-pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card-body .date {
  font-size: 0.8rem;
  color: var(--muted-text);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(184, 174, 181, 0.08);
  border-radius: var(--card-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--deep-plum);
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(233, 54, 114, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--light-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--berry-pink);
}

.faq-question .faq-icon {
  font-size: 1.25rem;
  color: var(--berry-pink);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  text-align: center;
  padding: 7.5rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 5, 7, 0.88) 0%, rgba(27, 14, 24, 0.76) 48%, rgba(7, 5, 7, 0.5) 100%),
    url('../images2/hookup-canada.webp') center / cover no-repeat;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: var(--muted-text);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--berry-pink);
}

.footer-newsletter {
  margin-top: 1rem;
}

.footer-newsletter .input-group {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: var(--soft-black);
  border: 1px solid rgba(184, 174, 181, 0.2);
  border-radius: var(--btn-radius);
  color: var(--light-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer-newsletter input:focus {
  border-color: var(--berry-pink);
}

.footer-newsletter input::placeholder {
  color: var(--muted-text);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted-text);
  transition: all var(--transition-smooth);
}

.social-icons a:hover {
  background: var(--berry-pink);
  border-color: var(--berry-pink);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--muted-text);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom .pink-maple {
  color: var(--berry-pink);
  font-size: 1rem;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--deep-plum) 0%, var(--bg-black) 100%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Form Styles --- */
.form-container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--deep-plum);
  border: 1px solid rgba(184, 174, 181, 0.08);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--soft-black);
  border: 1px solid rgba(184, 174, 181, 0.2);
  border-radius: var(--btn-radius);
  color: var(--light-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--berry-pink);
  box-shadow: 0 0 0 3px rgba(233, 54, 114, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-text);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-check input[type="checkbox"] {
  accent-color: var(--berry-pink);
  width: 18px;
  height: 18px;
}

.form-check label {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.form-check label a {
  color: var(--berry-pink);
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.form-footer a {
  color: var(--berry-pink);
  font-weight: 500;
}

.form-error {
  color: var(--warm-red);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--warm-red);
}

.form-group.error .form-error {
  display: block;
}

/* --- Content Sections (for inner pages) --- */
.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.content-section p {
  margin-bottom: 1rem;
}

.content-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-section ul li {
  color: var(--muted-text);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.content-card {
  background: var(--deep-plum);
  border: 1px solid rgba(184, 174, 181, 0.08);
  border-radius: var(--card-radius);
  padding: 1.5rem;
}

.content-card h4,
.content-card h3 {
  color: var(--berry-pink);
  margin-bottom: 0.75rem;
}

.content-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Safety Tips List --- */
.tip-list {
  counter-reset: tip;
}

.tip-item {
  counter-increment: tip;
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tip-item:last-child {
  border-bottom: none;
}

.tip-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--berry-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tip-content h4 {
  margin-bottom: 0.35rem;
}

.tip-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--berry-pink);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  box-shadow: var(--pink-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--hot-pink);
  transform: translateY(-4px);
  box-shadow: var(--pink-glow-strong);
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted-text);
}

.breadcrumb a:hover {
  color: var(--berry-pink);
}

.breadcrumb .separator {
  color: var(--berry-pink);
}

/* --- Section Header (centered) --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta,
  .hero-trust {
    justify-content: center;
  }

  .hero-image-photo {
    max-width: 360px;
  }

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

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

  .steps-grid::before {
    display: none;
  }

  .app-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-badges {
    justify-content: center;
  }

  .app-mockups {
    order: -1;
  }

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

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

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

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

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .intention-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .member-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

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

  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 3rem 0;
  }

  .cta-section {
    padding: 6rem 0;
  }

  .cta-bg {
    background-position: center, 78% center;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .app-mockup-image {
    width: min(100%, 560px);
  }

  .form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .intention-grid {
    grid-template-columns: 1fr;
  }

  .member-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .hero-image-photo {
    max-width: 280px;
  }

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

  .form-container {
    padding: 1.25rem;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* --- Slider --- */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.slider-dot.active {
  background: var(--berry-pink);
  box-shadow: 0 0 8px rgba(233, 54, 114, 0.5);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--deep-plum);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  z-index: 5;
}

.slider-arrow:hover {
  background: var(--berry-pink);
  border-color: var(--berry-pink);
}

.slider-arrow.prev {
  left: -1rem;
}

.slider-arrow.next {
  right: -1rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--soft-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  max-width: 600px;
  width: calc(100% - 2rem);
}

.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
}

.cookie-banner .btn {
  flex-shrink: 0;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
/* Long-form resource pages */
.resource-hero {
  min-height: auto;
  padding: 9.5rem 0 5.75rem;
  text-align: center;
}

.resource-hero .container {
  display: block;
}

.resource-hero .hero-content {
  max-width: 940px;
  margin: 0 auto;
}

.resource-hero .hero-content h1 {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.25rem, 5.2vw, 4.65rem);
  line-height: 1.04;
}

.resource-hero .hero-content p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.12rem;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.resource-hero-figure {
  margin: 2rem auto 0;
  max-width: 840px;
}

.resource-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.profile-tips-content-section {
  padding-top: 2.5rem;
}

.article-prose {
  max-width: 810px;
  margin: 0 auto;
}

.article-prose > p,
.article-prose li {
  color: var(--gray-300);
  font-size: 1.03rem;
  line-height: 1.78;
}

.article-prose > p {
  margin-bottom: 1.35rem;
}

.article-prose h2 {
  max-width: 760px;
  margin: 3.6rem 0 1.15rem;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.article-prose h3 {
  margin: 2rem 0 0.7rem;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.3;
}

.article-prose ul,
.article-prose ol {
  display: grid;
  gap: 0.75rem;
  margin: 1.1rem 0 1.7rem;
  padding-left: 1.4rem;
}

.article-callout {
  margin: 0 0 3.25rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(233, 54, 114, 0.25);
  border-left: 4px solid var(--berry-pink);
  border-radius: 0 14px 14px 0;
  background: rgba(233, 54, 114, 0.08);
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.7;
}

.article-callout + h2 {
  margin-top: 0;
}

.article-callout strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
}

.example-script {
  position: relative;
  margin: 0.9rem 0;
  padding: 1rem 1.2rem 1rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-200);
  line-height: 1.65;
}

.example-script::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  bottom: 0.85rem;
  left: 0;
  width: 3px;
  border-radius: 3px;
  background: var(--berry-pink);
}

.article-figure {
  margin: 2.3rem 0;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
}

.article-figure-mid {
  margin: 2.5rem 0 2.9rem;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.resource-link {
  display: block;
  min-height: 150px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: var(--dark-plum);
  color: #fff;
  text-decoration: none;
  line-height: 1.35;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.resource-link span {
  display: block;
  margin-top: 0.35rem;
  color: var(--gray-400);
  font-size: 0.86rem;
  line-height: 1.5;
}

.resource-link:hover {
  border-color: rgba(233, 54, 114, 0.45);
  background: rgba(233, 54, 114, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .resource-hero {
    min-height: auto;
    padding: 7.5rem 0 4rem;
  }

  .resource-hero .hero-content h1 {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
    line-height: 1.03;
  }

  .resource-hero .hero-content p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .resource-meta {
    justify-content: center;
    gap: 0.55rem 1rem;
    margin-top: 1.25rem;
    font-size: 0.84rem;
  }

  .resource-hero-figure {
    margin-top: 1.6rem;
  }

  .resource-hero-figure img {
    border-radius: 18px;
  }

  .profile-tips-content-section {
    padding-top: 1.8rem;
  }

  .article-prose h2 {
    margin-top: 2.8rem;
    font-size: 2rem;
    line-height: 1.14;
  }

  .article-prose h3 {
    margin-top: 1.7rem;
    font-size: 1.25rem;
  }

  .article-prose > p,
  .article-prose li {
    font-size: 1rem;
    line-height: 1.72;
  }

  .article-callout {
    margin-bottom: 2.6rem;
    padding: 1.2rem 1.2rem 1.2rem 1.35rem;
  }

  .example-script {
    padding: 0.95rem 1rem 0.95rem 1.2rem;
  }

  .article-figure {
    margin: 2rem 0;
  }

  .article-figure img {
    border-radius: 16px;
  }

  .resource-links {
    grid-template-columns: 1fr;
  }

  .resource-link {
    min-height: 0;
  }
}

/* Homepage hookup editorial sections */
.hookup-editorial {
  overflow: hidden;
}

.hookup-editorial .container {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.hookup-editorial.reverse .editorial-media {
  order: 2;
}

.editorial-media {
  position: relative;
}

.editorial-media::before {
  content: "";
  position: absolute;
  width: 55%;
  height: 55%;
  right: -8%;
  bottom: -10%;
  border-radius: 50%;
  background: rgba(233, 54, 114, 0.18);
  filter: blur(55px);
  pointer-events: none;
}

.editorial-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.editorial-copy {
  max-width: 590px;
}

.editorial-copy h2 {
  margin-bottom: 1.25rem;
}

.editorial-copy > p {
  margin-bottom: 1.75rem;
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.75;
}

.editorial-points {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.editorial-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.editorial-point-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(233, 54, 114, 0.14);
  color: var(--berry-pink);
  font-weight: 700;
}

.editorial-point h3 {
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.editorial-point p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.92rem;
  line-height: 1.55;
}

.compatibility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0 1.85rem;
}

.compatibility-item {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.compatibility-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 0.95rem;
}

.compatibility-item span {
  display: block;
  color: var(--gray-400);
  font-size: 0.86rem;
  line-height: 1.5;
}

.compatibility-item:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .hookup-editorial .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hookup-editorial.reverse .editorial-media {
    order: 0;
  }

  .editorial-copy {
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .editorial-media img {
    border-radius: 18px;
  }

  .editorial-copy > p {
    font-size: 1rem;
  }

  .editorial-point {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .editorial-point-number {
    width: 38px;
    height: 38px;
  }

  .compatibility-list {
    grid-template-columns: 1fr;
  }

  .compatibility-item:last-child {
    grid-column: auto;
  }
}

/* Safety center */
.safety-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5.5rem;
  background:
    radial-gradient(circle at 78% 30%, rgba(233, 54, 114, 0.2), transparent 34%),
    linear-gradient(135deg, #070507 10%, #180d16 58%, #0b070a 100%);
}

.safety-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.safety-hero-copy {
  max-width: 620px;
}

.safety-hero-copy h1 {
  margin-bottom: 1.25rem;
}

.safety-hero-copy > p {
  color: var(--gray-300);
  font-size: 1.08rem;
  line-height: 1.75;
}

.safety-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0 1.5rem;
}

.safety-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.safety-trust-row span {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gray-300);
  font-size: 0.82rem;
}

.safety-hero-media {
  position: relative;
}

.safety-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.safety-float-card {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(20, 11, 18, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.safety-float-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.safety-float-card span {
  color: var(--gray-400);
  font-size: 0.82rem;
  line-height: 1.45;
}

.safety-nav-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--deep-plum);
}

.safety-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.safety-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.safety-nav-link:hover,
.safety-nav-link:focus-visible {
  border-color: rgba(233, 54, 114, 0.45);
  background: rgba(233, 54, 114, 0.08);
}

.safety-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(233, 54, 114, 0.12);
  color: var(--berry-pink);
}

.safety-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.safety-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.safety-card {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--deep-plum);
}

.safety-card h3 {
  margin: 1rem 0 0.45rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
}

.safety-card p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

.safety-split .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.safety-split-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
}

.safety-split-copy > p {
  color: var(--gray-300);
  font-size: 1.02rem;
  line-height: 1.72;
}

.safety-check-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.safety-check-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.safety-check-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.1);
  color: #86efac;
  font-weight: 700;
}

.safety-check-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fff;
  font-size: 0.94rem;
}

.safety-check-item span {
  color: var(--gray-400);
  font-size: 0.86rem;
  line-height: 1.5;
}

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

.red-flag-card {
  min-height: 180px;
  padding: 1.35rem;
  border: 1px solid rgba(251, 113, 133, 0.15);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(251, 113, 133, 0.07), rgba(255, 255, 255, 0.025));
}

.red-flag-card .flag-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(251, 113, 133, 0.12);
  color: #fda4af;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.red-flag-card h3 {
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
}

.red-flag-card p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.58;
}

.date-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.date-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.date-step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(233, 54, 114, 0.28);
  border-radius: 50%;
  background: var(--deep-plum);
  color: var(--berry-pink);
  font-weight: 700;
}

.date-step h3 {
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.date-step p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.55;
}

.exit-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(233, 54, 114, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 20%, rgba(233, 54, 114, 0.16), transparent 34%),
    var(--deep-plum);
}

.exit-card p {
  color: var(--gray-300);
  line-height: 1.7;
}

.exit-scripts {
  display: grid;
  gap: 0.75rem;
}

.exit-script {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--berry-pink);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  line-height: 1.5;
}

.safety-faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .safety-hero .container,
  .safety-split .container {
    grid-template-columns: 1fr;
  }

  .safety-hero-copy {
    max-width: 760px;
  }

  .safety-hero-media {
    max-width: 760px;
  }

  .safety-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .red-flag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .safety-hero {
    padding: 6.75rem 0 3rem;
  }

  .safety-hero .container {
    gap: 2rem;
  }

  .safety-hero-media img,
  .safety-split-media img {
    border-radius: 18px;
  }

  .safety-float-card {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    max-width: none;
    padding: 0.85rem 1rem;
  }

  .safety-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-card-grid,
  .red-flag-grid {
    grid-template-columns: 1fr;
  }

  .exit-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .safety-hero-actions {
    flex-direction: column;
  }

  .safety-nav-grid {
    grid-template-columns: 1fr;
  }

  .safety-nav-link {
    min-height: 54px;
  }
}

/* ============================================================
   APP PRODUCT PREVIEW
   ============================================================ */
.app-page { background: #0d080d; }
.app-preview-hero {
  position: relative; min-height: 760px; padding: 8.75rem 0 5rem; overflow: hidden;
  background: linear-gradient(112deg, rgba(13,8,13,.98), rgba(24,10,20,.94) 48%, rgba(37,11,29,.88));
}
.app-preview-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .17; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to bottom,#000,transparent 88%);
}
.app-hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.app-hero-glow-one { width: 520px; height: 520px; right: -150px; top: 50px; background: radial-gradient(circle,rgba(233,54,114,.22),transparent 67%); }
.app-hero-glow-two { width: 360px; height: 360px; left: -180px; bottom: -120px; background: radial-gradient(circle,rgba(167,77,255,.14),transparent 68%); }
.app-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr); gap: 2rem; align-items: center; }
.app-hero-copy { max-width: 650px; }
.app-kicker {
  display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1.5rem; padding: .5rem .9rem;
  border: 1px solid rgba(233,54,114,.35); border-radius: 999px; background: rgba(233,54,114,.08);
  color: #f6b5c9; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.app-kicker-dot,.app-live-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #f05a8b; box-shadow: 0 0 0 5px rgba(240,90,139,.13); }
.app-hero-copy h1 { max-width: 660px; margin-bottom: 1.4rem; color: #fff; font-size: clamp(3.1rem,5.2vw,5.65rem); line-height: .98; letter-spacing: -.045em; }
.app-hero-copy h1 .highlight { display: block; }
.app-hero-lead { max-width: 590px; color: #d4c9d0; font-size: 1.08rem; line-height: 1.75; }
.app-hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin: 2rem 0 1.5rem; }
.app-status-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: .85rem; }
.app-status-pills span {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .75rem; border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; background: rgba(255,255,255,.035); color: #c9bdc5; font-size: .76rem; font-weight: 600;
}
.app-status-pills i { width: 6px; height: 6px; border-radius: 50%; background: #64d49a; box-shadow: 0 0 10px rgba(100,212,154,.65); }
.app-release-note { margin: 0; color: #91858d; font-size: .78rem; }
.app-hero-visual { position: relative; min-height: 580px; display: flex; align-items: center; justify-content: center; }
.app-hero-visual > img { position: relative; z-index: 2; display: block; width: min(760px,112%); max-width: none; height: auto; transform: translateX(2%); filter: drop-shadow(0 35px 45px rgba(0,0,0,.5)); }
.app-mockup-halo { position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(233,54,114,.23),rgba(167,77,255,.08) 45%,transparent 70%); }
.app-floating-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: .75rem; min-width: 180px; padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(25,16,23,.88); box-shadow: 0 18px 40px rgba(0,0,0,.3); backdrop-filter: blur(14px);
}
.app-floating-card strong,.app-floating-card small { display: block; }
.app-floating-card strong { color: #fff; font-size: .82rem; }
.app-floating-card small { margin-top: .1rem; color: #a99ca5; font-size: .66rem; }
.app-floating-card-top { top: 17%; right: -1%; }
.app-floating-card-bottom { bottom: 13%; left: 2%; }
.app-floating-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg,rgba(233,54,114,.22),rgba(167,77,255,.18)); }
.app-floating-icon svg { width: 19px; fill: none; stroke: #f16c98; stroke-width: 1.8; }
.app-section-nav { position: relative; z-index: 5; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.07); background: #140d13; }
.app-section-nav .container { display: grid; grid-template-columns: repeat(4,1fr); }
.app-section-nav a { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: .65rem; border-right: 1px solid rgba(255,255,255,.06); color: #b9adb5; font-size: .84rem; font-weight: 600; }
.app-section-nav a:first-child { border-left: 1px solid rgba(255,255,255,.06); }
.app-section-nav a:hover { background: rgba(233,54,114,.06); color: #fff; }
.app-section-nav svg { width: 20px; fill: none; stroke: #e93672; stroke-width: 1.7; }
.app-experience { background: radial-gradient(circle at 0 100%,rgba(167,77,255,.06),transparent 30%),#0d080d; }
.app-bento-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.app-feature-card {
  position: relative; min-height: 280px; padding: 1.75rem; overflow: hidden; border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; background: linear-gradient(145deg,rgba(33,20,29,.94),rgba(19,12,18,.94)); transition: transform .25s ease,border-color .25s ease;
}
.app-feature-card:hover { transform: translateY(-4px); border-color: rgba(233,54,114,.28); }
.app-feature-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -60px; bottom: -70px; border-radius: 50%; background: radial-gradient(circle,rgba(233,54,114,.09),transparent 70%); }
.app-feature-wide { grid-column: span 2; display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-content: center; }
.app-feature-accent { background: linear-gradient(135deg,rgba(233,54,114,.13),transparent 55%),linear-gradient(145deg,rgba(37,21,33,.98),rgba(19,12,18,.94)); }
.app-feature-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 2.2rem; border: 1px solid rgba(233,54,114,.24); border-radius: 14px; background: rgba(233,54,114,.08); }
.app-feature-wide .app-feature-icon { margin: .2rem 0 0; }
.app-feature-icon svg { width: 23px; fill: none; stroke: #f16392; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.app-card-tag { display: block; margin-bottom: .65rem; color: #e95b8a; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.app-feature-card h3 { margin-bottom: .75rem; color: #fff; font-family: var(--font-heading); font-size: 1.35rem; line-height: 1.25; }
.app-feature-card p { position: relative; z-index: 1; margin: 0; color: #aa9ea6; font-size: .89rem; line-height: 1.7; }
.app-plan-section { position: relative; overflow: hidden; }
.app-plan-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem,7vw,7rem); align-items: center; }
.app-plan-media { position: relative; padding: 0 0 2.5rem 2.5rem; }
.app-plan-media::before { content: ""; position: absolute; inset: 2.5rem 2.5rem 0 0; border: 1px solid rgba(233,54,114,.23); border-radius: 24px; }
.app-plan-media img { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 22px; box-shadow: 0 28px 60px rgba(0,0,0,.38); }
.app-plan-caption { position: absolute; z-index: 2; left: 0; bottom: 0; width: min(300px,74%); display: flex; align-items: center; gap: 1rem; padding: 1rem 1.15rem; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(27,17,25,.94); box-shadow: 0 15px 35px rgba(0,0,0,.32); }
.app-plan-caption span { color: #ec4e83; font-family: var(--font-heading); font-size: 1.4rem; }
.app-plan-caption p { margin: 0; color: #b9adb5; font-size: .76rem; line-height: 1.45; }
.app-plan-caption strong { color: #fff; }
.app-plan-copy > p { max-width: 540px; }
.app-flow-list { margin: 2rem 0 1.65rem; padding: 0; list-style: none; }
.app-flow-list li { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.app-flow-list li > span { color: #e95787; font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.app-flow-list h3 { margin-bottom: .25rem; color: #fff; font-family: var(--font-body); font-size: .96rem; }
.app-flow-list p { margin: 0; color: #9c9098; font-size: .84rem; line-height: 1.55; }
.app-text-link { display: inline-flex; align-items: center; gap: .6rem; color: #f16b98; font-size: .86rem; font-weight: 700; }
.app-text-link span { transition: transform .2s ease; }
.app-text-link:hover span { transform: translateX(4px); }
.app-moments-section { background: #0d080d; }
.app-moments-heading { display: grid; grid-template-columns: 1.1fr .65fr; gap: 3rem; align-items: end; margin-bottom: 2.5rem; }
.app-moments-heading h2 { margin: 0; }
.app-moments-heading > p { max-width: 430px; margin: 0 0 .4rem auto; }
.app-moments-grid { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 1rem; }
.app-moments-grid article { min-height: 270px; display: flex; flex-direction: column; padding: 1.8rem; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.025); }
.app-moments-grid article.is-featured { transform: translateY(-12px); border-color: rgba(233,54,114,.3); background: linear-gradient(145deg,rgba(233,54,114,.13),rgba(34,19,30,.96)); }
.app-moment-number { color: #e65a88; font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.app-moments-grid h3 { margin: 2.9rem 0 .75rem; color: #fff; font-family: var(--font-heading); font-size: 1.65rem; }
.app-moments-grid p { color: #a99da5; font-size: .9rem; line-height: 1.65; }
.app-moment-meta { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.07); color: #d5c8d0; font-size: .75rem; font-weight: 600; }
.app-privacy-intro { display: grid; grid-template-columns: 1fr .7fr; gap: 3rem; align-items: end; margin-bottom: 2.5rem; }
.app-privacy-intro h2,.app-privacy-intro > p { margin-bottom: 0; }
.app-privacy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.app-privacy-grid article { position: relative; min-height: 315px; padding: 1.8rem; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: linear-gradient(160deg,rgba(39,24,35,.93),rgba(20,13,19,.92)); }
.app-privacy-index { position: absolute; top: 1.4rem; right: 1.5rem; color: rgba(255,255,255,.17); font-family: var(--font-heading); font-size: 1.2rem; }
.app-privacy-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 3.2rem; border-radius: 50%; background: rgba(233,54,114,.09); }
.app-privacy-icon svg { width: 24px; fill: none; stroke: #ef6492; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.app-privacy-grid h3 { margin-bottom: .75rem; color: #fff; font-family: var(--font-heading); font-size: 1.35rem; }
.app-privacy-grid p { margin: 0; color: #a99ca4; font-size: .87rem; line-height: 1.7; }
.app-privacy-note { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; padding: 1rem 1.25rem; border: 1px solid rgba(233,54,114,.15); border-radius: 12px; background: rgba(233,54,114,.04); }
.app-privacy-note span { flex: 0 0 auto; color: #ef6b96; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.app-privacy-note p { margin: 0; color: #a99ca5; font-size: .82rem; }
.app-privacy-note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.app-release-section { background: radial-gradient(circle at 100% 30%,rgba(233,54,114,.08),transparent 28%),#0d080d; }
.app-release-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem,7vw,7rem); align-items: start; }
.app-release-copy { position: sticky; top: 110px; }
.app-release-copy > p { margin-bottom: 1.6rem; }
.app-store-placeholders { display: flex; gap: .65rem; flex-wrap: wrap; margin: 1.5rem 0; }
.app-store-placeholders a { min-width: 150px; display: flex; align-items: center; gap: .65rem; padding: .7rem .85rem; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.035); color: #fff; }
.app-store-placeholders svg { width: 25px; fill: none; stroke: #fff; stroke-width: 1.5; }
.app-store-placeholders small,.app-store-placeholders strong { display: block; }
.app-store-placeholders small { color: #9d9199; font-size: .55rem; letter-spacing: .08em; }
.app-store-placeholders strong { font-size: .95rem; }
.app-release-timeline { position: relative; }
.app-release-timeline::before { content: ""; position: absolute; left: 15px; top: 20px; bottom: 20px; width: 1px; background: rgba(255,255,255,.1); }
.app-release-timeline article { position: relative; display: grid; grid-template-columns: 32px 1fr; gap: 1.2rem; padding: 0 0 2rem; }
.app-release-timeline article > div { padding: 0 0 1.7rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.app-release-timeline article:last-child,.app-release-timeline article:last-child > div { padding-bottom: 0; border-bottom: 0; }
.app-timeline-marker { position: relative; z-index: 1; width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; background: #151015; }
.app-timeline-marker::after { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: #5f555d; }
.app-release-timeline .is-current .app-timeline-marker { border-color: rgba(233,54,114,.52); box-shadow: 0 0 0 6px rgba(233,54,114,.07); }
.app-release-timeline .is-current .app-timeline-marker::after { background: #ed4d83; box-shadow: 0 0 12px rgba(237,77,131,.6); }
.app-release-timeline small { display: block; margin-bottom: .45rem; color: #e65a89; font-size: .62rem; font-weight: 700; letter-spacing: .13em; }
.app-release-timeline h3 { margin-bottom: .4rem; color: #fff; font-family: var(--font-heading); font-size: 1.25rem; }
.app-release-timeline p { max-width: 570px; margin: 0; color: #a99da5; font-size: .86rem; line-height: 1.65; }
.app-faq-wrap { max-width: 900px; }
.app-final-cta { min-height: 490px; display: flex; align-items: center; }
.app-final-cta .section-label { margin-bottom: 1rem; }

@media (max-width: 1100px) {
  .app-hero-grid { grid-template-columns: .9fr 1.1fr; }
  .app-hero-copy h1 { font-size: clamp(3rem,5.5vw,4.5rem); }
  .app-hero-visual { min-height: 500px; }
  .app-hero-visual > img { width: 116%; }
  .app-floating-card-top { right: -4%; }
  .app-bento-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .app-preview-hero { padding-top: 7.5rem; }
  .app-hero-grid,.app-plan-grid,.app-release-grid { grid-template-columns: 1fr; }
  .app-hero-copy { max-width: 720px; text-align: center; margin: 0 auto; }
  .app-hero-copy h1,.app-hero-lead { margin-left: auto; margin-right: auto; }
  .app-hero-actions,.app-status-pills { justify-content: center; }
  .app-hero-visual { width: min(690px,100%); margin: -1rem auto 0; }
  .app-hero-visual > img { width: 105%; transform: none; }
  .app-moments-heading,.app-privacy-intro { grid-template-columns: 1fr; gap: 1rem; }
  .app-moments-heading > p { margin-left: 0; }
  .app-privacy-grid { grid-template-columns: 1fr; }
  .app-privacy-grid article { min-height: 250px; }
  .app-privacy-icon { margin-bottom: 2.2rem; }
  .app-release-copy { position: static; }
}

@media (max-width: 640px) {
  .app-preview-hero { min-height: auto; padding: 6.75rem 0 2rem; }
  .app-preview-hero::before { background-size: 40px 40px; }
  .app-kicker { margin-bottom: 1.1rem; font-size: .65rem; }
  .app-hero-copy h1 { font-size: clamp(2.7rem,13vw,3.65rem); }
  .app-hero-copy h1 .highlight { display: inline; }
  .app-hero-lead { font-size: .97rem; }
  .app-hero-actions { flex-direction: column; }
  .app-hero-actions .btn { width: 100%; }
  .app-status-pills,.app-release-note { display: none; }
  .app-hero-visual { min-height: 360px; margin-top: -.5rem; }
  .app-hero-visual > img { width: 121%; transform: translateX(-3%); }
  .app-floating-card { min-width: 150px; padding: .7rem .8rem; }
  .app-floating-card-top { top: 9%; right: -2%; }
  .app-floating-card-bottom { left: -1%; bottom: 5%; }
  .app-section-nav { overflow-x: auto; }
  .app-section-nav .container { min-width: 560px; }
  .app-section-nav a { min-height: 64px; }
  .app-bento-grid,.app-moments-grid { grid-template-columns: 1fr; }
  .app-feature-card,.app-feature-wide { min-height: 245px; grid-column: auto; display: block; }
  .app-feature-wide .app-feature-icon,.app-feature-icon { margin: 0 0 1.8rem; }
  .app-plan-media { padding: 0 0 1.8rem 1rem; }
  .app-plan-media::before { inset: 1rem 1rem 0 0; }
  .app-plan-caption { width: min(280px,90%); }
  .app-moments-grid article.is-featured { transform: none; }
  .app-privacy-note { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .app-store-placeholders { flex-direction: column; }
  .app-store-placeholders a { width: 100%; }
  .app-final-cta { min-height: 540px; }
}

/* ============================================================
   HOOKUP GUIDE
   ============================================================ */
.guide-page { background: #0d080d; }
.guide-hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(13,8,13,.99), rgba(24,11,20,.96) 50%, rgba(40,12,31,.88)),
    #0d080d;
}
.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom,#000,transparent 90%);
}
.guide-hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(233,54,114,.2),rgba(167,77,255,.07) 45%,transparent 70%);
}
.guide-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(3rem,6vw,6.5rem);
  align-items: center;
}
.guide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.4rem;
  color: #f3a6bf;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.guide-eyebrow span {
  width: 28px;
  height: 1px;
  background: #e93672;
}
.guide-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem,4.6vw,5.1rem);
  line-height: .95;
  letter-spacing: -.05em;
}
.guide-hero-copy h1 .highlight { display: block; }
.guide-hero-copy > p {
  max-width: 600px;
  color: #d0c4cc;
  font-size: 1.08rem;
  line-height: 1.75;
}
.guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 2rem 0;
}
.guide-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}
.guide-hero-meta span {
  color: #9d9199;
  font-size: .75rem;
}
.guide-hero-meta strong {
  margin-right: .25rem;
  color: #fff;
}
.guide-hero-media {
  position: relative;
  padding: 0 0 2rem 2rem;
}
.guide-hero-media::before {
  content: "";
  position: absolute;
  inset: 2rem 2rem 0 0;
  border: 1px solid rgba(233,54,114,.25);
  border-radius: 28px;
}
.guide-hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 32px 70px rgba(0,0,0,.45);
}
.guide-hero-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(360px,82%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(26,16,24,.94);
  box-shadow: 0 18px 38px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}
.guide-hero-card svg {
  width: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ef5f8f;
  stroke-width: 1.6;
}
.guide-hero-card span,.guide-hero-card strong { display: block; }
.guide-hero-card span { margin-bottom: .2rem; color: #ea5b8a; font-size: .59rem; font-weight: 700; letter-spacing: .12em; }
.guide-hero-card strong { color: #fff; font-size: .82rem; line-height: 1.45; }
.guide-quick-nav {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: #140d13;
}
.guide-quick-nav .container { display: grid; grid-template-columns: repeat(6,1fr); }
.guide-quick-nav a {
  min-height: 66px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.06);
  color: #b8acb4;
  font-size: .78rem;
  font-weight: 600;
}
.guide-quick-nav a:first-child { border-left: 1px solid rgba(255,255,255,.06); }
.guide-quick-nav a:hover { color: #fff; background: rgba(233,54,114,.07); }
.guide-start { background: radial-gradient(circle at 0 100%,rgba(167,77,255,.06),transparent 30%),#0d080d; }
.guide-section-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.guide-section-heading h2,.guide-section-heading > p { margin-bottom: 0; }
.guide-section-heading > p { max-width: 560px; }
.guide-definition-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.guide-definition-grid article {
  min-height: 250px;
  padding: 1.7rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: linear-gradient(150deg,rgba(35,22,31,.94),rgba(19,12,18,.94));
}
.guide-definition-grid .guide-definition-main {
  grid-column: span 3;
  min-height: 300px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-content: center;
  column-gap: 1.6rem;
  background: linear-gradient(135deg,rgba(233,54,114,.14),transparent 48%),linear-gradient(150deg,rgba(39,23,35,.98),rgba(19,12,18,.94));
}
.guide-card-number {
  grid-row: span 3;
  color: rgba(255,255,255,.13);
  font-family: var(--font-heading);
  font-size: 3.8rem;
}
.guide-definition-grid h3 {
  margin-bottom: .75rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}
.guide-definition-grid p {
  margin: 0;
  color: #aa9ea6;
  font-size: .89rem;
  line-height: 1.7;
}
.guide-type-label {
  display: block;
  margin-bottom: 2.8rem;
  color: #e85a89;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.guide-key-line {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.4rem;
  color: #ded3da;
  font-size: .86rem;
}
.guide-key-line span { width: 30px; height: 1px; background: #e93672; }
.guide-message-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.guide-message-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.guide-message-status {
  align-self: flex-start;
  margin-bottom: 2.4rem;
  padding: .35rem .65rem;
  border: 1px solid rgba(233,54,114,.2);
  border-radius: 999px;
  color: #e96592;
  font-size: .65rem;
  font-weight: 700;
}
.guide-message-status.is-good::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: .4rem; border-radius: 50%; background: #62ce96; }
.guide-message-card blockquote {
  margin: 0 0 1.2rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.5;
}
.guide-message-card p {
  margin: auto 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #9f939b;
  font-size: .82rem;
  line-height: 1.65;
}
.guide-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.guide-do-dont > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
}
.guide-list-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(83,194,137,.09);
}
.guide-list-icon.is-muted { background: rgba(233,54,114,.08); }
.guide-list-icon svg { width: 20px; fill: none; stroke: #66d29b; stroke-width: 2; }
.guide-list-icon.is-muted svg { stroke: #ea5a89; }
.guide-do-dont h3 { color: #fff; font-family: var(--font-body); font-size: 1rem; }
.guide-do-dont ul { grid-column: 2; margin: .5rem 0 0; padding-left: 1rem; }
.guide-do-dont li { margin: .45rem 0; color: #a99da5; font-size: .83rem; line-height: 1.5; }
.guide-split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(3rem,7vw,7rem);
  align-items: center;
}
.guide-split-media { position: relative; padding: 0 0 2rem 2rem; }
.guide-split-media::before { content: ""; position: absolute; inset: 2rem 2rem 0 0; border: 1px solid rgba(233,54,114,.22); border-radius: 24px; }
.guide-split-media img { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 22px; box-shadow: 0 28px 60px rgba(0,0,0,.4); }
.guide-photo-label {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(310px,80%);
  padding: .95rem 1.1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(25,16,23,.95);
}
.guide-photo-label span,.guide-photo-label strong { display: block; }
.guide-photo-label span { margin-bottom: .25rem; color: #ea5e8c; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.guide-photo-label strong { color: #fff; font-size: .82rem; line-height: 1.4; }
.guide-question-list { margin: 1.7rem 0 1.4rem; }
.guide-question-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: .9rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.guide-question-list article > span { color: #e95d8b; font-size: .68rem; font-weight: 700; }
.guide-question-list h3 { margin-bottom: .2rem; color: #fff; font-family: var(--font-body); font-size: .94rem; }
.guide-question-list p { margin: 0; color: #9f939b; font-size: .81rem; line-height: 1.5; }
.guide-inline-link { display: inline-flex; align-items: center; gap: .5rem; color: #f16b98; font-size: .84rem; font-weight: 700; }
.guide-inline-link span { transition: transform .2s ease; }
.guide-inline-link:hover span { transform: translateX(4px); }
.guide-consent-intro {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.guide-consent-intro h2,.guide-consent-intro > p { margin-bottom: 0; }
.guide-consent-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.guide-consent-grid article {
  min-height: 280px;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: linear-gradient(150deg,rgba(38,23,34,.94),rgba(19,12,18,.92));
}
.guide-consent-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 3.2rem;
  border-radius: 50%;
  background: rgba(233,54,114,.09);
}
.guide-consent-icon svg { width: 23px; fill: none; stroke: #ef6492; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.guide-consent-grid h3 { margin-bottom: .65rem; color: #fff; font-family: var(--font-heading); font-size: 1.35rem; }
.guide-consent-grid p { margin: 0; color: #a99da5; font-size: .84rem; line-height: 1.65; }
.guide-consent-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(233,54,114,.18);
  border-radius: 14px;
  background: rgba(233,54,114,.05);
}
.guide-consent-callout svg { width: 24px; flex: 0 0 auto; fill: none; stroke: #ee6592; stroke-width: 1.7; }
.guide-consent-callout p { margin: 0; color: #b9adb5; font-size: .84rem; line-height: 1.55; }
.guide-consent-callout strong { color: #fff; }
.guide-privacy { background: #0d080d; }
.guide-privacy-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.guide-privacy-grid article {
  min-height: 260px;
  padding: 1.6rem;
  border-top: 2px solid rgba(233,54,114,.42);
  border-radius: 0 0 18px 18px;
  background: rgba(255,255,255,.025);
}
.guide-privacy-grid article > span { display: block; margin-bottom: 3rem; color: #e75a88; font-size: .67rem; font-weight: 700; }
.guide-privacy-grid h3 { margin-bottom: .65rem; color: #fff; font-family: var(--font-heading); font-size: 1.22rem; }
.guide-privacy-grid p { margin: 0; color: #a99da5; font-size: .84rem; line-height: 1.65; }
.guide-meetup-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(3rem,7vw,7rem);
  align-items: center;
}
.guide-meetup-copy > p { max-width: 560px; }
.guide-meetup-steps { margin: 1.8rem 0; padding: 0; list-style: none; }
.guide-meetup-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.guide-meetup-steps li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233,54,114,.25);
  border-radius: 50%;
  color: #e95c89;
  font-size: .69rem;
  font-weight: 700;
}
.guide-meetup-steps h3 { margin-bottom: .2rem; color: #fff; font-family: var(--font-body); font-size: .94rem; }
.guide-meetup-steps p { margin: 0; color: #9f939b; font-size: .81rem; line-height: 1.55; }
.guide-meetup-media { position: relative; padding: 0 2rem 2rem 0; }
.guide-meetup-media::before { content: ""; position: absolute; inset: 2rem 0 0 2rem; border: 1px solid rgba(233,54,114,.22); border-radius: 25px; }
.guide-meetup-media img { position: relative; z-index: 1; display: block; width: 100%; max-height: 650px; aspect-ratio: 4/5; object-fit: cover; object-position: center 42%; border-radius: 23px; box-shadow: 0 30px 64px rgba(0,0,0,.42); }
.guide-exit-card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(320px,82%);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(25,16,23,.95);
}
.guide-exit-card span,.guide-exit-card strong { display: block; }
.guide-exit-card span { margin-bottom: .25rem; color: #e95c89; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.guide-exit-card strong { color: #fff; font-size: .84rem; line-height: 1.45; }
.guide-after { background: #0d080d; }
.guide-after-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.guide-after-heading h2,.guide-after-heading > p { margin-bottom: 0; }
.guide-after-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.guide-after-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 19px;
  background: linear-gradient(150deg,rgba(35,21,31,.92),rgba(19,12,18,.94));
}
.guide-after-number { color: #e85b89; font-size: .66rem; font-weight: 700; letter-spacing: .12em; }
.guide-after-grid h3 { margin: 3rem 0 .7rem; color: #fff; font-family: var(--font-heading); font-size: 1.3rem; }
.guide-after-grid p { margin: 0; color: #a99da5; font-size: .86rem; line-height: 1.68; }
.guide-resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.guide-resource-grid > a {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
  transition: transform .24s ease,border-color .24s ease,background .24s ease;
}
.guide-resource-grid > a:hover { transform: translateY(-4px); border-color: rgba(233,54,114,.3); background: rgba(233,54,114,.045); }
.guide-resource-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 2.4rem;
  border: 1px solid rgba(233,54,114,.2);
  border-radius: 14px;
  background: rgba(233,54,114,.07);
}
.guide-resource-icon svg { width: 23px; fill: none; stroke: #eb5d8c; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.guide-resource-grid small { margin-bottom: .55rem; color: #e65a88; font-size: .61rem; font-weight: 700; letter-spacing: .12em; }
.guide-resource-grid h3 { margin-bottom: .65rem; color: #fff; font-family: var(--font-heading); font-size: 1.35rem; }
.guide-resource-grid p { color: #a99da5; font-size: .85rem; line-height: 1.65; }
.guide-resource-link { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.07); color: #f06a97; font-size: .78rem; font-weight: 700; }
.guide-faq .container { max-width: 900px; }
.guide-final-cta { min-height: 500px; display: flex; align-items: center; }
.guide-final-cta .section-label { margin-bottom: 1rem; }

@media (max-width: 1100px) {
  .guide-hero-grid { grid-template-columns: .95fr 1.05fr; gap: 3rem; }
  .guide-hero-copy h1 { font-size: clamp(3rem,5.2vw,4.4rem); }
  .guide-consent-grid,.guide-privacy-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .guide-hero { padding-top: 7.5rem; }
  .guide-hero-grid,.guide-split-grid,.guide-meetup-grid { grid-template-columns: 1fr; }
  .guide-hero-copy { max-width: 720px; text-align: center; margin: 0 auto; }
  .guide-hero-copy h1,.guide-hero-copy > p { margin-left: auto; margin-right: auto; }
  .guide-hero-actions,.guide-hero-meta { justify-content: center; }
  .guide-hero-media { width: min(680px,100%); margin: 0 auto; }
  .guide-section-heading,.guide-consent-intro,.guide-after-heading { grid-template-columns: 1fr; gap: 1rem; }
  .guide-definition-grid { grid-template-columns: 1fr; }
  .guide-definition-grid .guide-definition-main { grid-column: auto; }
  .guide-message-grid,.guide-after-grid,.guide-resource-grid { grid-template-columns: 1fr; }
  .guide-message-card { min-height: 260px; }
  .guide-meetup-media { grid-row: 1; width: min(650px,100%); margin: 0 auto; }
}

@media (max-width: 640px) {
  .guide-hero { min-height: auto; padding: 6.8rem 0 2.5rem; }
  .guide-hero::before { background-size: 40px 40px; }
  .guide-hero-copy h1 { font-size: clamp(2.75rem,12.5vw,3.45rem); }
  .guide-hero-copy h1 .highlight { display: inline; }
  .guide-hero-copy > p { font-size: .96rem; }
  .guide-hero-actions { flex-direction: column; }
  .guide-hero-actions .btn { width: 100%; }
  .guide-hero-meta { gap: .8rem 1rem; }
  .guide-hero-media { padding: 0 0 1.5rem 1rem; }
  .guide-hero-media::before { inset: 1rem 1rem 0 0; }
  .guide-hero-media img { min-height: 360px; }
  .guide-hero-card { width: min(310px,90%); }
  .guide-quick-nav { overflow-x: auto; }
  .guide-quick-nav .container { min-width: 680px; }
  .guide-quick-nav a { min-height: 60px; }
  .guide-definition-grid .guide-definition-main { display: block; min-height: 310px; }
  .guide-card-number { display: block; margin-bottom: 1.5rem; font-size: 2.7rem; }
  .guide-definition-grid article { min-height: 230px; }
  .guide-message-card { min-height: 290px; }
  .guide-do-dont { grid-template-columns: 1fr; }
  .guide-split-media { padding: 0 0 1.5rem 1rem; }
  .guide-split-media::before { inset: 1rem 1rem 0 0; }
  .guide-consent-grid,.guide-privacy-grid { grid-template-columns: 1fr; }
  .guide-consent-grid article { min-height: 240px; }
  .guide-consent-icon { margin-bottom: 2.4rem; }
  .guide-consent-callout { align-items: flex-start; }
  .guide-meetup-media { padding: 0 1rem 1.5rem 0; }
  .guide-meetup-media::before { inset: 1rem 0 0 1rem; }
  .guide-meetup-media img { max-height: 520px; }
  .guide-after-grid article,.guide-resource-grid > a { min-height: 260px; }
  .guide-final-cta { min-height: 540px; }
}
