/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  background-color: var(--color-off-white);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: 'Urbanist', sans-serif;
}

/* ================================================
   CSS CUSTOM PROPERTIES
================================================ */
:root {
  --color-lavender: #d2ccfd;
  --color-plum: #3c183c;
  --color-white: #ffffff;
  --color-off-white: #f9f7ff;
  --color-text-dark: #1a0a1a;
  --color-text-muted: #7a6a7a;
  --color-text-light: #ede8fd;
}

/* ================================================
   TYPOGRAPHY
================================================ */
h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  padding: 12px 28px;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
}

/* Dark-bg button: lavender fill */
.btn-primary-dark {
  background: var(--color-lavender);
  color: var(--color-plum);
  font-weight: 800;
}

.btn-primary-dark:hover {
  background: #c0b8fc;
}

/* Light-bg button: plum fill */
.btn-primary-light {
  background: var(--color-plum);
  color: var(--color-white);
}

.btn-primary-light:hover {
  background: #2a0a2a;
}

/* Ghost on dark */
.btn-ghost-dark {
  background: transparent;
  border: 1.5px solid var(--color-lavender);
  color: var(--color-lavender);
}

.btn-ghost-dark:hover {
  background: rgba(210, 204, 253, 0.1);
}

/* Ghost on light */
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid var(--color-plum);
  color: var(--color-plum);
}

.btn-ghost-light:hover {
  background: rgba(60, 24, 60, 0.05);
}

/* ================================================
   SECTION LABEL
================================================ */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* ================================================
   NAVIGATION
================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-plum);
  border-bottom: 1px solid rgba(210, 204, 253, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px 16px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-center a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-light);
  transition: color 0.18s ease;
}

.nav-center a:hover {
  color: var(--color-lavender);
}

.nav-center a:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-ghost {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid var(--color-lavender);
  color: var(--color-lavender);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: 'Urbanist', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-nav-ghost:hover {
  background: rgba(210, 204, 253, 0.1);
  transform: translateY(-2px);
}

.btn-nav-ghost:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
}

.btn-nav-filled {
  font-size: 14px;
  font-weight: 800;
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--color-lavender);
  color: var(--color-plum);
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: 'Urbanist', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-nav-filled:hover {
  background: #c0b8fc;
  transform: translateY(-2px);
}

.btn-nav-filled:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-lavender);
  border-radius: 2px;
  transition: all 0.2s ease;
  pointer-events: none;
}

/* Mobile nav panel */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--color-plum);
  padding: 8px 24px 24px;
  flex-direction: column;
  z-index: 99;
  border-top: 1px solid rgba(210, 204, 253, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.nav-mobile-panel.open {
  display: flex;
}

.nav-mobile-panel .mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 16px 0;
  border-bottom: 1px solid rgba(210, 204, 253, 0.08);
  transition: color 0.18s ease;
  display: block;
}

.nav-mobile-panel .mobile-nav-link:hover {
  color: var(--color-lavender);
}

.nav-mobile-panel .mobile-nav-link:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.nav-mobile-actions a {
  text-align: center;
  justify-content: center;
}

/* ================================================
   HERO SECTION
================================================ */
.hero {
  background: var(--color-plum);
  padding: 120px 24px 100px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(210, 204, 253, 0.15);
  border: 1px solid var(--color-lavender);
  color: var(--color-lavender);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.rotating-word {
  color: var(--color-lavender);
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rotating-word.is-exiting {
  opacity: 0;
  transform: translateY(-10px);
}

.rotating-word.is-entering {
  opacity: 0;
  transform: translateY(12px);
  transition: none;
}

.hero-subheadline {
  color: var(--color-text-light);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-proof-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Hero Visual — Image */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 204, 253, 0.45) 0%, rgba(210, 204, 253, 0) 70%);
  filter: blur(48px);
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 24px;
  display: block;
}

/* ================================================
   MODERN HERO — ANIMATED COMPOSITION
================================================ */
.hero-modern {
  background: linear-gradient(145deg, #2a0a2a 0%, #1f0520 30%, #2a0a2a 60%, #1a0018 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Gradient orbs for depth */
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(180, 120, 220, 0.6) 0%, rgba(160, 100, 200, 0.3) 40%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 120, 180, 0.5) 0%, rgba(200, 100, 160, 0.25) 40%, transparent 70%);
  bottom: -150px;
  left: 5%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(160, 140, 220, 0.4) 0%, rgba(140, 120, 200, 0.2) 40%, transparent 70%);
  top: 40%;
  left: 45%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-45%, -55%) scale(1.1); }
}

/* Visual Composition Container */
.hero-visual-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 1500px;
  perspective-origin: center center;
  overflow: visible;
}

.hero-composition {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 600px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease-out;
  overflow: visible;
}

/* Dotted connecting lines */
.hero-dotted-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.dotted-path {
  fill: none;
  stroke: rgba(210, 204, 253, 0.2);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  animation: dashFlow 20s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -200; }
}

/* Phone Mockups Base Styles */
.hero-phone {
  position: absolute;
  z-index: 10;
}

/* Glow effect behind phones */
.hero-phone::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(210, 180, 253, 0.5) 0%, rgba(210, 180, 253, 0.2) 40%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
  border-radius: 50%;
  opacity: 0.8;
}

.phone-frame {
  background: linear-gradient(165deg, #ffffff 0%, #f5f3f8 50%, #ebe8f0 100%);
  border-radius: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 4px 6px rgba(60, 24, 60, 0.04),
    0 12px 24px rgba(60, 24, 60, 0.08),
    0 32px 64px rgba(60, 24, 60, 0.12),
    0 48px 80px rgba(60, 24, 60, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(60, 24, 60, 0.05);
}

.phone-screen {
  background: linear-gradient(180deg, #faf9fc 0%, #f5f3f8 100%);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(60, 24, 60, 0.06);
}

/* Phone 1: Primary (Outfits Grid) */
.phone-primary {
  width: 260px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  animation: phonePrimaryFloat 6s ease-in-out infinite;
}

.phone-primary::before {
  background: radial-gradient(ellipse at center, rgba(180, 160, 253, 0.6) 0%, rgba(200, 170, 253, 0.3) 35%, transparent 65%);
  inset: -50px;
}

.phone-primary .phone-screen {
  height: 480px;
  padding: 20px 14px 14px;
}

@keyframes phonePrimaryFloat {
  0%, 100% { transform: translateY(-50%) rotate(-4deg) translateX(0); }
  50% { transform: translateY(calc(-50% - 12px)) rotate(-3deg) translateX(4px); }
}

/* App Event Header */
.app-event-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.app-event-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f5f3f8;
  border: 1.5px solid #e8e4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.app-event-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-event-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-event-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.app-event-date {
  font-size: 10px;
  color: #8a8a8a;
  margin-top: 2px;
}

/* App Description */
.app-event-desc {
  font-size: 9px;
  color: #5a5a5a;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* App Action Buttons */
.app-action-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.app-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #ffffff;
  border: 1.5px solid #e8e4f0;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: default;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.app-action-btn svg {
  stroke: #1a1a1a;
  flex-shrink: 0;
}

.app-action-btn.btn-moodboard svg {
  stroke: none;
}

/* App Filter Button */
.app-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1.5px solid #e8e4f0;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: default;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.app-filter-btn svg {
  stroke: #1a1a1a;
}

/* Outfits Grid */
.outfits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.outfit-card {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(60, 24, 60, 0.08);
}

.outfit-img {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Phone 2: Secondary (Join Event) */
.phone-secondary {
  width: 200px;
  right: 20px;
  top: 55%;
  transform: translateY(-50%) rotate(6deg);
  animation: phoneSecondaryFloat 7s ease-in-out infinite;
  animation-delay: -1.5s;
}

.phone-secondary::before {
  background: radial-gradient(ellipse at center, rgba(253, 180, 210, 0.5) 0%, rgba(253, 180, 220, 0.25) 35%, transparent 65%);
  inset: -35px;
}

.phone-secondary .phone-frame {
  padding: 8px;
  border-radius: 36px;
  box-shadow: 
    0 4px 6px rgba(60, 24, 60, 0.04),
    0 10px 20px rgba(60, 24, 60, 0.08),
    0 24px 48px rgba(60, 24, 60, 0.12),
    0 40px 70px rgba(60, 24, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(60, 24, 60, 0.05);
}

.phone-secondary .phone-screen {
  height: 340px;
  border-radius: 28px;
}

@keyframes phoneSecondaryFloat {
  0%, 100% { transform: translateY(-50%) rotate(6deg) translateX(0); }
  50% { transform: translateY(calc(-50% - 15px)) rotate(5deg) translateX(-5px); }
}

/* Join Screen inside phone 2 */
.join-screen {
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(180deg, #faf9fc 0%, #f5f3f8 100%);
}

.join-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background: #f5f3f8;
  border: 2px solid #e0dae8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.join-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-welcome {
  font-size: 10px;
  font-weight: 500;
  color: #8a8a8a;
  margin-bottom: 4px;
}

.join-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.join-subtitle {
  font-size: 9px;
  color: #7a7a7a;
  line-height: 1.45;
  margin-bottom: 18px;
  padding: 0 6px;
}

.join-code-input {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1.5px solid #e8e4f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.join-code-input span {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 2px;
}

.join-btn {
  background: var(--color-plum);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(60, 24, 60, 0.25);
}

/* Floating Cards Base */
.floating-card {
  position: absolute;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 255, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 
    0 2px 4px rgba(60, 24, 60, 0.04),
    0 8px 16px rgba(60, 24, 60, 0.08),
    0 16px 32px rgba(60, 24, 60, 0.1),
    0 24px 48px rgba(60, 24, 60, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 20;
}

.card-stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(210, 204, 253, 0.4) 0%, rgba(210, 204, 253, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.card-icon svg {
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-number {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-plum);
  line-height: 1.1;
}

.card-label {
  font-size: 11px;
  color: #7a6a7a;
  font-weight: 500;
}

/* Card: Outfits Added */
.card-outfits {
  top: 8%;
  left: 42%;
  animation: cardFloat1 5s ease-in-out infinite;
  transform: rotate(-3deg);
}

@keyframes cardFloat1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-8px); }
}

/* Card: Guests Joined */
.card-guests {
  bottom: 22%;
  left: -5%;
  animation: cardFloat2 6s ease-in-out infinite;
  animation-delay: -2s;
  transform: rotate(4deg);
}

@keyframes cardFloat2 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}


/* Card: Notification */
.card-notification {
  bottom: 5%;
  right: 15%;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: cardFloat4 7s ease-in-out infinite;
  animation-delay: -3s;
  transform: rotate(2deg);
}

.notif-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f3f8;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notif-content {
  display: flex;
  flex-direction: column;
}

.notif-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-plum);
}

.notif-time {
  font-size: 9px;
  color: #7a6a7a;
}

@keyframes cardFloat4 {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(0deg) translateY(-6px); }
}

/* Hover tilt effect */
.hero-composition:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

/* ================================================
   MODERN HERO — RESPONSIVE
================================================ */
@media (max-width: 1100px) {
  .hero-composition {
    max-width: 480px;
    height: 560px;
  }

  .phone-primary {
    width: 230px;
  }

  .phone-primary .phone-screen {
    height: 420px;
    padding: 16px 12px 12px;
  }

  .phone-secondary {
    width: 170px;
    right: 0;
  }

  .phone-secondary .phone-screen {
    height: 300px;
  }

  .card-outfits {
    left: 35%;
  }
}

@media (max-width: 900px) {
  .hero-modern {
    min-height: auto;
    padding: 100px 24px 80px;
  }

  .hero-composition {
    max-width: 420px;
    height: 520px;
  }

  .phone-primary {
    width: 210px;
    left: -10px;
  }

  .phone-primary .phone-screen {
    height: 380px;
    padding: 14px 10px 10px;
  }

  .phone-secondary {
    width: 150px;
    right: -10px;
  }

  .phone-secondary .phone-screen {
    height: 260px;
  }

  .floating-card {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .card-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .card-number {
    font-size: 15px;
  }

  .card-label {
    font-size: 10px;
  }

  .card-outfits {
    top: 5%;
    left: 30%;
  }

  .card-guests {
    bottom: 18%;
    left: -8%;
  }

  .card-notification {
    bottom: 2%;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-modern .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-modern {
    order: 1;
  }

  .hero-text {
    order: 0;
    text-align: center;
  }

  .hero-text .hero-ctas {
    justify-content: center;
  }

  .hero-composition {
    max-width: 340px;
    height: 480px;
    margin: 0 auto;
    overflow: visible;
  }

  .phone-primary {
    width: 190px;
    left: 0;
    top: 45%;
    transform: translateY(-50%) rotateY(5deg);
    z-index: 10;
  }

  .phone-primary .phone-frame {
    padding: 6px;
    border-radius: 28px;
  }

  .phone-primary .phone-screen {
    height: 360px;
    padding: 12px 8px 8px;
    border-radius: 24px;
  }

  .phone-primary .phone-screen::before {
    border-radius: 24px;
  }

  .phone-secondary {
    width: 155px;
    right: 0;
    top: 55%;
    transform: translateY(-50%) rotateY(-5deg);
    z-index: 5;
  }

  .phone-secondary .phone-frame {
    padding: 5px;
    border-radius: 24px;
  }

  .phone-secondary .phone-screen {
    height: 330px;
    border-radius: 20px;
  }

  .phone-frame::before,
  .phone-frame::after {
    display: none;
  }

  .outfits-grid {
    gap: 4px;
  }

  .outfit-card {
    border-radius: 6px;
  }

  .app-event-header {
    margin-bottom: 8px;
    gap: 6px;
  }

  .app-event-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .app-event-title {
    font-size: 10px;
  }

  .app-event-date {
    font-size: 7px;
  }

  .app-event-desc {
    font-size: 7px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .app-action-btns {
    gap: 4px;
    margin-bottom: 8px;
  }

  .app-action-btn {
    padding: 5px 8px;
    font-size: 7px;
    gap: 3px;
  }

  .app-action-btn svg {
    width: 9px;
    height: 9px;
  }

  .app-filter-btn {
    padding: 6px 10px;
    font-size: 8px;
    margin-bottom: 8px;
  }

  .app-filter-btn svg {
    width: 10px;
    height: 10px;
  }

  .floating-card {
    padding: 6px 10px;
    border-radius: 10px;
  }

  .card-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
    border-radius: 6px;
  }

  .card-icon svg {
    width: 12px;
    height: 12px;
  }

  .card-number {
    font-size: 12px;
  }

  .card-label {
    font-size: 8px;
  }

  /* Card positioned at top center, between phones */
  .card-outfits {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    animation: cardFloat1Mobile 5s ease-in-out infinite;
  }

  /* Card overlapping left side of primary phone */
  .card-guests {
    top: 42%;
    left: -5%;
    bottom: auto !important;
    right: auto !important;
    transform: rotate(0deg);
    z-index: 15;
    animation: cardFloat2Mobile 6s ease-in-out infinite;
    padding: 6px 10px !important;
    border-radius: 10px;
  }

  .card-guests.card-stats {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px;
    flex-wrap: nowrap !important;
  }

  .card-guests .card-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
  }

  .card-guests .card-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .card-guests .card-number {
    font-size: 12px;
    line-height: 1.1;
  }

  .card-guests .card-label {
    font-size: 8px;
    line-height: 1.1;
  }

  /* Card at bottom right, near/under secondary phone */
  .card-notification {
    bottom: 12%;
    right: 5%;
    padding: 5px 8px;
    transform: rotate(0deg);
    z-index: 15;
    animation: cardFloat3Mobile 5.5s ease-in-out infinite;
  }

  .notif-avatar {
    width: 22px;
    height: 22px;
  }

  .notif-text {
    font-size: 8px;
  }

  .notif-time {
    font-size: 6px;
  }

  @keyframes cardFloat1Mobile {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
  }

  @keyframes cardFloat2Mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  @keyframes cardFloat3Mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }

  .hero-gradient-orb {
    opacity: 0.2;
  }

  .hero-orb-1 {
    width: 250px;
    height: 250px;
  }

  .hero-orb-2 {
    width: 180px;
    height: 180px;
  }

  .hero-orb-3 {
    display: none;
  }

  .hero-dotted-lines {
    display: none;
  }

  .join-screen {
    padding: 20px 12px;
  }

  .join-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-bottom: 12px;
  }

  .join-welcome {
    font-size: 9px;
  }

  .join-title {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .join-subtitle {
    font-size: 8px;
    margin-bottom: 16px;
    line-height: 1.35;
  }

  .join-code-input {
    padding: 9px 12px;
    margin-bottom: 12px;
  }

  .join-code-input span {
    font-size: 9px;
  }

  .join-btn {
    font-size: 10px;
    padding: 11px 24px;
  }
}

@media (max-width: 480px) {
  .hero-composition {
    max-width: 300px;
    height: 420px;
    overflow: visible;
  }

  .phone-primary {
    width: 165px;
    left: 0;
    top: 45%;
    transform: translateY(-50%) rotateY(3deg);
  }

  .phone-primary .phone-frame {
    padding: 5px;
    border-radius: 24px;
  }

  .phone-primary .phone-screen {
    height: 310px;
    padding: 10px 6px 6px;
    border-radius: 20px;
  }

  .phone-primary .phone-screen::before {
    border-radius: 20px;
  }

  .phone-secondary {
    width: 135px;
    right: 0;
    top: 55%;
    transform: translateY(-50%) rotateY(-3deg);
  }

  .phone-secondary .phone-frame {
    padding: 4px;
    border-radius: 20px;
  }

  .phone-secondary .phone-screen {
    height: 285px;
    border-radius: 17px;
  }

  .app-event-avatar {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .app-event-title {
    font-size: 9px;
  }

  .app-event-date {
    font-size: 6px;
  }

  .app-event-desc {
    font-size: 6px;
    margin-bottom: 6px;
    line-height: 1.35;
  }

  .app-action-btns {
    gap: 3px;
    margin-bottom: 6px;
  }

  .app-action-btn {
    padding: 4px 6px;
    font-size: 6px;
  }

  .app-action-btn svg {
    width: 8px;
    height: 8px;
  }

  .app-filter-btn {
    padding: 5px 8px;
    font-size: 7px;
    margin-bottom: 6px;
  }

  .app-filter-btn svg {
    width: 9px;
    height: 9px;
  }

  .outfits-grid {
    gap: 3px;
  }

  .outfit-card {
    border-radius: 5px;
  }

  .floating-card {
    padding: 5px 8px;
    border-radius: 8px;
  }

  .card-outfits {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-guests {
    top: 40%;
    left: -8%;
    bottom: auto !important;
    right: auto !important;
    padding: 5px 8px !important;
  }

  .card-guests.card-stats {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px;
    flex-wrap: nowrap !important;
  }

  .card-guests .card-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
  }

  .card-guests .card-number {
    font-size: 11px;
  }

  .card-guests .card-label {
    font-size: 7px;
  }

  .card-notification {
    bottom: 10%;
    right: 2%;
    padding: 4px 6px;
  }

  .card-icon {
    width: 20px;
    height: 20px;
  }

  .card-icon svg {
    width: 10px;
    height: 10px;
  }

  .card-number {
    font-size: 11px;
  }

  .card-label {
    font-size: 7px;
  }

  .notif-avatar {
    width: 18px;
    height: 18px;
  }

  .notif-text {
    font-size: 7px;
  }

  .notif-time {
    font-size: 5px;
  }

  .join-screen {
    padding: 16px 10px;
  }

  .join-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    margin-bottom: 10px;
  }

  .join-welcome {
    font-size: 8px;
  }

  .join-title {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .join-subtitle {
    font-size: 7px;
    margin-bottom: 14px;
    line-height: 1.35;
  }

  .join-code-input {
    padding: 8px 10px;
    margin-bottom: 10px;
  }

  .join-code-input span {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .join-btn {
    font-size: 9px;
    padding: 10px 20px;
  }
}

/* ================================================
   HOW IT WORKS SECTION
================================================ */
.how-it-works {
  background: var(--color-off-white);
  padding: 100px 24px;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.how-header h2 {
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.how-header .section-label {
  color: var(--color-text-muted);
  text-align: center;
}

.how-header p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Host steps wrapper */
.host-card {
  padding: 0;
}

.host-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.host-card h3 {
  font-size: 22px;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.step-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.how-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.step-card {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(210, 204, 253, 0.3);
  position: relative;
  padding: 26px 20px 18px;
  transition: all 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.step-image-holder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 1.5px dashed rgba(60, 24, 60, 0.2);
  background: rgba(210, 204, 253, 0.12);
  color: rgba(60, 24, 60, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.app-preview-holder {
  display: block;
  padding: 12px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.app-pricing-holder {
  display: block;
  padding: 12px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.app-join-holder {
  display: block;
  padding: 12px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.app-browse-holder {
  display: block;
  padding: 12px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.floating-app-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border-radius: 16px;
  border: 1px solid rgba(210, 204, 253, 0.65);
  box-shadow: 0 14px 30px rgba(60, 24, 60, 0.14), 0 2px 8px rgba(60, 24, 60, 0.08);
  padding: 14px 12px 12px;
  transform: rotate(-1.3deg);
  animation: app-card-float 4.5s ease-in-out infinite;
}

.floating-app-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-plum);
  letter-spacing: 0.2px;
  margin-bottom: 8px;
  text-transform: none;
}

.floating-app-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.floating-app-steps span {
  font-size: 8px;
  font-weight: 700;
  color: #7a6a7a;
  background: rgba(210, 204, 253, 0.25);
  border-radius: 999px;
  padding: 3px 6px;
  line-height: 1.2;
}

.floating-app-steps .is-active {
  background: var(--color-plum);
  color: var(--color-white);
}

.floating-app-field {
  margin-bottom: 8px;
}

.floating-app-field label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #7a6a7a;
  margin-bottom: 4px;
}

.floating-app-input {
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid rgba(210, 204, 253, 0.9);
  box-shadow: 0 6px 14px rgba(60, 24, 60, 0.08);
  font-size: 9px;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 7px 9px;
  line-height: 1.3;
}

.floating-app-btn {
  margin-top: 2px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--color-plum);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  padding: 8px 10px;
  cursor: default;
  box-shadow: 0 8px 16px rgba(60, 24, 60, 0.2);
}

.app-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid rgba(210, 204, 253, 0.85);
  box-shadow: 0 6px 12px rgba(60, 24, 60, 0.12);
  color: var(--color-plum);
  font-size: 10px;
  line-height: 1;
  animation: app-float-bob 3.2s ease-in-out infinite;
}

.app-float-star {
  top: -8px;
  right: -6px;
}

.app-float-heart {
  top: 30%;
  left: -8px;
  animation-delay: 0.7s;
}

.app-float-dress {
  right: -8px;
  bottom: 18%;
  animation-delay: 1.2s;
}

.floating-pricing-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border-radius: 16px;
  border: 1px solid rgba(210, 204, 253, 0.65);
  box-shadow: 0 14px 30px rgba(60, 24, 60, 0.14), 0 2px 8px rgba(60, 24, 60, 0.08);
  padding: 12px 10px 10px;
  transform: rotate(1deg);
  animation: app-pricing-float 4.8s ease-in-out infinite;
}

.floating-pricing-title {
  font-size: 10px;
  font-weight: 800;
  color: var(--color-plum);
  margin-bottom: 4px;
  text-transform: none;
}

.floating-pricing-subtitle {
  font-size: 8px;
  color: #7a6a7a;
  line-height: 1.35;
  margin-bottom: 10px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: -0.1px;
}

.pricing-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.pricing-mini-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid rgba(210, 204, 253, 0.8);
  border-radius: 11px;
  padding: 8px;
  box-shadow: 0 8px 16px rgba(60, 24, 60, 0.08);
}

.pricing-mini-name {
  font-size: 9px;
  font-weight: 800;
  color: var(--color-plum);
  margin-bottom: 2px;
  text-transform: none;
}

.pricing-mini-desc {
  font-size: 7px;
  color: #7a6a7a;
  margin-bottom: 8px;
  line-height: 1.3;
  text-transform: none;
  font-weight: 400;
  letter-spacing: -0.08px;
}

.pricing-mini-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-plum);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  line-height: 1;
  text-transform: none;
}

.pricing-mini-btn {
  width: 100%;
  border: 1px solid rgba(60, 24, 60, 0.18);
  border-radius: 8px;
  background: rgba(210, 204, 253, 0.18);
  color: var(--color-plum);
  font-size: 8px;
  font-weight: 700;
  padding: 6px 8px;
  cursor: default;
  transition: background-color 0.2s ease;
}

.pricing-mini-btn:hover {
  background: rgba(210, 204, 253, 0.28);
}

.pricing-mini-card.is-popular {
  border-color: rgba(60, 24, 60, 0.25);
  box-shadow: 0 10px 18px rgba(60, 24, 60, 0.12);
}

.pricing-mini-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.7px;
  background: var(--color-plum);
  color: var(--color-lavender);
  border-radius: 999px;
  padding: 2px 6px;
}

.app-float-pricing-star {
  top: -8px;
  left: -6px;
}

.app-float-pricing-heart {
  right: -8px;
  top: 34%;
  animation-delay: 0.8s;
}

.app-float-pricing-dot {
  left: 42%;
  bottom: -8px;
  animation-delay: 1.4s;
}

.floating-join-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9f6ff 100%);
  border-radius: 16px;
  border: 1px solid rgba(210, 204, 253, 0.7);
  box-shadow: 0 14px 30px rgba(60, 24, 60, 0.14), 0 2px 8px rgba(60, 24, 60, 0.08);
  padding: 12px 11px 11px;
  text-align: center;
  transform: rotate(-0.8deg);
  animation: app-join-float 5s ease-in-out infinite;
}

.join-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin: 0 auto 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 204, 253, 0.45);
  border: 1px solid rgba(210, 204, 253, 0.9);
  color: var(--color-plum);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.floating-join-title {
  font-size: 9px;
  font-weight: 700;
  color: #7a6a7a;
  margin-bottom: 4px;
  text-transform: none;
}

.floating-join-heading {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-plum);
  line-height: 1.3;
  margin-bottom: 6px;
  text-transform: none;
}

.floating-join-support {
  font-size: 8px;
  color: #7a6a7a;
  line-height: 1.35;
  margin-bottom: 10px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: -0.1px;
}

.floating-join-input {
  background: var(--color-white);
  border-radius: 999px;
  border: 1px solid rgba(210, 204, 253, 0.95);
  box-shadow: 0 8px 16px rgba(60, 24, 60, 0.1);
  color: var(--color-plum);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 9px 10px;
  margin-bottom: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.floating-join-btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--color-plum);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 800;
  padding: 8px 10px;
  box-shadow: 0 10px 18px rgba(60, 24, 60, 0.22);
  cursor: default;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-join-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(60, 24, 60, 0.24);
}

.app-float-join-star {
  top: -8px;
  right: -6px;
}

.app-float-join-heart {
  top: 34%;
  left: -8px;
  animation-delay: 0.9s;
}

.app-float-join-dot {
  right: -8px;
  bottom: 18%;
  animation-delay: 1.3s;
}

.floating-browse-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border-radius: 16px;
  border: 1px solid rgba(210, 204, 253, 0.7);
  box-shadow: 0 14px 30px rgba(60, 24, 60, 0.14), 0 2px 8px rgba(60, 24, 60, 0.08);
  padding: 10px;
  transform: rotate(0.9deg);
  animation: app-browse-float 5s ease-in-out infinite;
}

.browse-event-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.browse-event-avatar {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(140deg, #c7bffd 0%, #8f79d8 100%);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.browse-event-meta {
  min-width: 0;
}

.browse-event-title {
  font-size: 9px;
  font-weight: 800;
  color: var(--color-plum);
  line-height: 1.25;
  margin-bottom: 1px;
  text-transform: none;
}

.browse-event-date {
  font-size: 7px;
  color: #7a6a7a;
  text-transform: none;
}

.browse-event-desc {
  font-size: 7px;
  color: #7a6a7a;
  line-height: 1.45;
  margin-bottom: 8px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: -0.08px;
}

.browse-mini-actions {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.browse-mini-btn {
  border: 1px solid rgba(60, 24, 60, 0.15);
  background: rgba(210, 204, 253, 0.15);
  color: var(--color-plum);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  cursor: default;
}

.browse-filter-wrap {
  margin-bottom: 7px;
}

.browse-filter-btn {
  border: 1px solid rgba(60, 24, 60, 0.2);
  background: var(--color-white);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 7px;
  font-weight: 700;
  color: var(--color-plum);
  box-shadow: 0 6px 10px rgba(60, 24, 60, 0.08);
  cursor: default;
}

.browse-outfit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.browse-outfit-card {
  aspect-ratio: 1 / 0.82;
  border-radius: 9px;
  background: linear-gradient(160deg, #f2edff 0%, #dfd3ff 55%, #f8f4ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 6px 10px rgba(60, 24, 60, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.browse-outfit-icon {
  font-size: 18px;
  line-height: 1;
  color: rgba(60, 24, 60, 0.68);
  filter: drop-shadow(0 2px 3px rgba(60, 24, 60, 0.14));
}

.app-float-browse-star {
  top: -8px;
  right: -5px;
}

.app-float-browse-heart {
  top: 34%;
  left: -8px;
  animation-delay: 0.8s;
}

.app-float-browse-dot {
  right: -8px;
  bottom: 18%;
  animation-delay: 1.25s;
}

@keyframes app-card-float {
  0%, 100% { transform: rotate(-1.3deg) translateY(0); }
  50% { transform: rotate(-0.4deg) translateY(-4px); }
}

@keyframes app-pricing-float {
  0%, 100% { transform: rotate(1deg) translateY(0); }
  50% { transform: rotate(0.2deg) translateY(-4px); }
}

@keyframes app-join-float {
  0%, 100% { transform: rotate(-0.8deg) translateY(0); }
  50% { transform: rotate(-0.1deg) translateY(-4px); }
}

@keyframes app-browse-float {
  0%, 100% { transform: rotate(0.9deg) translateY(0); }
  50% { transform: rotate(0.2deg) translateY(-4px); }
}

@keyframes app-float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.step-item {
  display: block;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-lavender);
  color: var(--color-plum);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.step-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.15px;
}

/* Guest cards */
.guest-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guest-card {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(210, 204, 253, 0.3);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.2s ease;
}

.guest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.guest-card:first-child {
  background: rgba(210, 204, 253, 0.12);
}

.guest-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(210, 204, 253, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guest-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-plum);
  color: var(--color-plum);
}

.guest-card:first-child .guest-card-icon {
  background: rgba(60, 24, 60, 0.08);
}

.guest-card-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.guest-card-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================================================
   FEATURES SECTION
================================================ */
.features {
  background: var(--color-plum);
  padding: 100px 24px;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-label {
  color: var(--color-lavender);
  text-align: center;
}

.features-header h2 {
  color: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-tile {
  background: #2a0a2a;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(210, 204, 253, 0.1);
  transition: all 0.2s ease;
}

.feature-tile:hover {
  border-color: rgba(210, 204, 253, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-tile.highlight {
  background: var(--color-lavender);
  border-color: var(--color-lavender);
}

.feature-tile.highlight:hover {
  border-color: var(--color-lavender);
  box-shadow: 0 12px 40px rgba(210, 204, 253, 0.25);
}

.feature-tile.highlight h3,
.feature-tile.highlight p {
  color: var(--color-plum);
}

.feature-icon {
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(210, 204, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-text-light);
  color: var(--color-text-light);
}

.feature-tile.highlight .feature-icon {
  background: rgba(60, 24, 60, 0.12);
}

.feature-tile.highlight .feature-icon svg {
  stroke: var(--color-plum);
  color: var(--color-plum);
}

.feature-tile h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.feature-tile p {
  font-size: 14px;
  color: rgba(237, 232, 253, 0.6);
  line-height: 1.65;
}

/* ================================================
   PRICING SECTION
================================================ */
.pricing {
  background: var(--color-off-white);
  padding: 100px 24px;
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header .section-label {
  color: var(--color-text-muted);
  text-align: center;
}

.pricing-header h2 {
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.pricing-card {
  background: var(--color-white);
  border-radius: 24px;
  border: 1.5px solid rgba(60, 24, 60, 0.08);
  padding: 36px 32px;
  transition: all 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.pricing-card.featured {
  border: 2px solid var(--color-plum);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-plum);
  color: var(--color-lavender);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Urbanist', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--color-plum);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-billing {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.plan-guests {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  color: #7b6ef6;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}

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

.btn-plan:focus-visible {
  outline: 2px solid var(--color-plum);
  outline-offset: 3px;
}

.btn-plan-outline {
  border: 1.5px solid var(--color-plum);
  background: transparent;
  color: var(--color-plum);
}

.btn-plan-outline:hover {
  background: rgba(60, 24, 60, 0.05);
}

.btn-plan-featured {
  background: var(--color-plum);
  color: var(--color-lavender);
  font-weight: 800;
  border: none;
}

.btn-plan-featured:hover {
  background: #2a0a2a;
}

.btn-plan-dark {
  background: var(--color-plum);
  color: var(--color-white);
  border: none;
}

.btn-plan-dark:hover {
  background: #2a0a2a;
}

/* ================================================
   FAQ SECTION
================================================ */
.faq {
  background: var(--color-off-white);
  padding-top: 0;
  padding-bottom: 100px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  color: var(--color-text-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(60, 24, 60, 0.07);
  padding: 28px 32px;
  transition: all 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ================================================
   FINAL CTA SECTION
================================================ */
.final-cta {
  background: var(--color-plum);
  padding: 120px 24px;
  text-align: center;
}

.final-cta h2 {
  font-size: 60px;
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.08;
}

.final-cta-sub {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-btn-lg {
  font-size: 17px;
  padding: 16px 40px;
  font-weight: 800;
}

.cta-reassurance {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(237, 232, 253, 0.45);
  letter-spacing: 0.3px;
}

/* ================================================
   EVENT DEMO MODAL
================================================ */
.event-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.event-demo-modal.is-open {
  display: flex;
}

.event-demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 26, 0.7);
  backdrop-filter: blur(2px);
}

.event-demo-dialog {
  position: relative;
  width: min(420px, 94vw);
  z-index: 1;
}

.event-demo-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(60, 24, 60, 0.15);
  background: #ffffff;
  color: #3c183c;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(20, 8, 20, 0.22);
}

.event-demo-close:focus-visible {
  outline: 2px solid var(--color-plum);
  outline-offset: 2px;
}

.event-demo-phone {
  background: #ffffff;
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(22, 8, 22, 0.35);
  overflow-y: auto;
  border: 1px solid rgba(60, 24, 60, 0.12);
  max-height: min(760px, 88vh);
  scrollbar-width: thin;
}

.event-demo-notch {
  width: 140px;
  height: 28px;
  margin: 0 auto;
  background: #050505;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.event-demo-top {
  padding: 20px 24px 18px;
  background: #ffffff;
}

.event-demo-body {
  padding: 18px 24px 24px;
  background: #efedf6;
}

.event-demo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.event-demo-avatar {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #ece7ee;
  border: 1px solid #ddd6e2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-demo-avatar span {
  font-size: 11px;
  color: #6e6171;
  font-weight: 600;
}

.event-demo-info {
  min-width: 0;
}

.event-demo-title {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.2px;
  color: #1a0a1a;
  margin-bottom: 2px;
}

.event-demo-date {
  font-size: 11px;
  color: #847a88;
}

.event-demo-description {
  font-size: 14px;
  color: #4f4453;
  line-height: 1.45;
  margin-bottom: 14px;
}

.event-demo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.event-demo-chip {
  border: 1px solid #dad3df;
  background: #ffffff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #271528;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-demo-chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  background: #f4eff9;
}

.event-demo-chip-icon img {
  width: 13px;
  height: 13px;
  display: block;
  object-fit: contain;
}

.event-demo-filter {
  border: 1px solid #dad3df;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #271528;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.event-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.event-demo-card {
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(140deg, #ffffff 0%, #e8e1f1 100%);
  border: 1px solid rgba(130, 112, 146, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-demo-card span {
  font-size: 12px;
  color: #6f6176;
  font-weight: 600;
}

body.modal-open {
  overflow: hidden;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: #1a001a;
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(210, 204, 253, 0.15);
  color: rgba(237, 232, 253, 0.45);
  transition: all 0.18s ease;
}

.footer-social-link:hover {
  color: var(--color-lavender);
  border-color: rgba(210, 204, 253, 0.4);
  background: rgba(210, 204, 253, 0.07);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-lavender);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(237, 232, 253, 0.55);
  transition: color 0.18s ease;
}

.footer-col ul li a:hover {
  color: var(--color-lavender);
}

.footer-col ul li a:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(210, 204, 253, 0.1);
  padding-top: 28px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(237, 232, 253, 0.3);
  font-weight: 400;
  line-height: 1.5;
}

/* ================================================
   INNER PAGES — SHARED
================================================ */

.page-hero {
  background: var(--color-plum);
  padding: 100px 24px 80px;
  text-align: center;
}

.page-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-lavender);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 56px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.page-section {
  background: var(--color-off-white);
  padding: 80px 24px;
}

.page-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-inner-wide {
  max-width: 1100px;
  margin: 0 auto;
}

/* Prose (legal pages) */
.prose h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 48px;
  margin-bottom: 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 15px;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose ul li {
  color: var(--color-text-muted);
  margin-bottom: 8px;
  line-height: 1.65;
  font-size: 15px;
}

.prose a {
  color: var(--color-plum);
  text-decoration: underline;
}

.prose-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(60, 24, 60, 0.08);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 28px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail-link {
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: transform 0.18s ease;
}

.contact-detail-link:hover {
  transform: translateY(-1px);
}

.contact-detail-link:focus-visible {
  outline: 2px solid var(--color-plum);
  outline-offset: 3px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(60, 24, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-plum);
  color: var(--color-plum);
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 14px;
  color: var(--color-text-muted);
}

.contact-form-card {
  background: var(--color-white);
  border-radius: 24px;
  border: 1.5px solid rgba(60, 24, 60, 0.08);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(60, 24, 60, 0.12);
  background: var(--color-off-white);
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  color: var(--color-text-dark);
  transition: border-color 0.18s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-plum);
  background: var(--color-white);
}

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

/* Blog page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(60, 24, 60, 0.07);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 24, 60, 0.12);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6c5ce7;
  background: rgba(210, 204, 253, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-plum);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.18s ease;
}

.blog-read-more:hover {
  gap: 8px;
}

/* About page */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.about-mission-img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  display: block;
}

.about-mission-text h2 {
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.about-mission-text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(60, 24, 60, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 72px;
}

.about-stat {
  background: var(--color-white);
  padding: 40px 24px;
  text-align: center;
}

.about-stat-number {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--color-plum);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.value-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(60, 24, 60, 0.07);
}

.value-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(60, 24, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-plum);
}

.value-card h3 {
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Form feedback states */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}

.form-success[hidden] {
  display: none !important;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(60, 24, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.form-success-icon svg {
  stroke: var(--color-plum);
}

.form-success h3 {
  font-size: 22px;
  color: var(--color-text-dark);
}

.form-success p {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.form-error {
  font-size: 13px;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.55;
}

.form-error a {
  color: #c0392b;
  font-weight: 600;
}

.captcha-wrap {
  margin-top: 4px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive inner pages */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .page-hero {
    padding: 72px 24px 56px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 24px;
  }

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

  .about-mission {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   SCROLL ANIMATIONS
================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-app-card,
  .floating-pricing-card,
  .floating-join-card,
  .floating-browse-card,
  .app-float {
    animation: none;
  }
}

/* ================================================
   RESPONSIVE — TABLET (≤ 1024px)
================================================ */
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .hero-inner {
    gap: 48px;
  }

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

  .final-cta h2 {
    font-size: 44px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ================================================
   RESPONSIVE — MOBILE (≤ 768px)
================================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  /* Nav */
  .nav-center {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 72px 24px 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-text h1 {
    font-size: 44px;
    line-height: 1.08;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .social-proof-text {
    font-size: 15px;
    text-align: center;
  }

  /* How it works */
  .how-it-works {
    padding: 64px 24px;
  }

  .how-header {
    margin-bottom: 40px;
  }

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

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

  /* Features */
  .features {
    padding: 64px 24px;
  }

  .features-header {
    margin-bottom: 40px;
  }

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

  /* Pricing */
  .pricing {
    padding: 64px 24px;
  }

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

  .pricing-card.featured {
    margin-top: 14px;
  }

  /* FAQ */
  .faq {
    padding-bottom: 64px;
  }

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

  /* Final CTA */
  .final-cta {
    padding: 80px 24px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .final-cta-sub {
    font-size: 16px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .event-demo-dialog {
    width: min(360px, 94vw);
  }

  .event-demo-top {
    padding: 18px 18px 14px;
  }

  .event-demo-body {
    padding: 14px 18px 18px;
  }

  .event-demo-avatar {
    width: 58px;
    height: 58px;
  }

  .event-demo-title {
    font-size: 14px;
  }

  .event-demo-description {
    font-size: 13px;
  }

  .event-demo-chip,
  .event-demo-filter {
    font-size: 12px;
  }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
================================================ */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-item {
    padding: 22px 20px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .host-card {
    padding: 28px 24px;
  }
}
