:root{
  --ink: #0b1020;
  --hero: #000e33;

  --accent: #0066ff;
  --accent2: #c27aff;

  --radius: 18px;
  --radius2: 26px;

  --shadow: 0 16px 40px rgba(11,16,32,0.12);
}

/* Base */
*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
body{
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #000e33;
  background: radial-gradient(circle at top left, #E8F1FF 0, #ffffff 45%, #faf5ff 100%);
}


/* Profile dropdown container */
.profile-container {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-container {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-container .avatar {
  cursor: pointer;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-monogram {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000e33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #000e33;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-10px);
  z-index: 1100;
}

.profile-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.profile-container:hover .profile-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.profile-dropdown a i {
  width: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.profile-dropdown a:hover {
  background: linear-gradient(135deg, #0066ff, #c27aff);
}
.profile-container .avatar {
  cursor: pointer;
}

/* Profile dropdown menu */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px); /* Reduced gap from 12px to 8px */
  right: 0;
  background: #000e33;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-10px);
  z-index: 1100;
}

/* Add invisible bridge between avatar and dropdown */
.profile-dropdown::before {
  content: '';
  position: absolute;
  top: -12px; /* Covers the gap */
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.profile-container:hover .profile-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px; /* Increased from 10px to 12px for easier clicking */
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.profile-dropdown a i {
  width: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.profile-dropdown a:hover {
  background: linear-gradient(135deg, #0066ff, #c27aff);
}

a{ color: inherit; text-decoration: none; }
.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== NAV (from home page) ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 2000;
  height: 72px;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.navbar.scrolled {
  backdrop-filter: blur(12px);
}


.nav-link-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;

  color: #000e33 !important;

  /* 👇 FIXED */
  background: rgba(0, 14, 51, 0.04);
  border: 1px solid rgba(0, 14, 51, 0.15) !important;

  box-shadow: 0 6px 16px rgba(0, 14, 51, 0.08);

  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.nav-link-btn:hover {
  background: rgba(0, 14, 51, 0.07) !important;
  border-color: rgba(0, 14, 51, 0.25) !important;
  transition: 0.3s ease-in-out;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  grid-column: 2;
}

.nav-logo {
  width: 160px;
  height: auto;
  grid-column: 1;
  justify-self: start;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  grid-column: 3;
  justify-self: end;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000e33;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.nav-item::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 18px;
  background: transparent;
}


.nav-item:hover i {
  transform: translateY(1px);
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0066ff, #c27aff);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left center;
  transition: opacity 0.22s ease, transform 0.25s ease;
}

.nav-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ── Nav dropdowns ── */

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #ffffff;
  border-radius: 14px;
  padding: 6px;
  min-width: 190px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #000e33 !important;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown a:hover {
  background: rgba(75, 91, 213, 0.08);
  color: #4b5bd5 !important;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
}

.create-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.menu-toggle {
  display: none;
}

.hamburger {
  color: #000e33;
  font-size: 28px;
  cursor: pointer;
  display: none;
}


/* ───── RESPONSIVE BREAKPOINTS ───── */
@media (max-width: 1100px) {
  .navbar {
    padding: 0 32px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-logo {
    width: 180px;
  }

  .nav-left {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
padding: 16px 16px 12px;
  }

  .nav-logo {
    width: 170px;
  }

  .nav-left {
    display: none;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-right .create-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(0, 14, 51, 0.96);
  padding: 20px 24px;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-sizing: border-box;
}

.menu-toggle:checked ~ .mobile-menu {
  display: flex;
}

.create-btn:hover {
  box-shadow: 0 0 12px rgba(194, 122, 255, 0.6),
              0 0 6px rgba(0, 102, 255, 0.6);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11,16,32,0.12);
  background: rgba(255,255,255,0.86);
  color: rgba(11,16,32,0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(11,16,32,0.10); }
.btn.primary{
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 40px rgba(75,91,213,0.28);
}
.btn.primary:hover{ box-shadow: 0 22px 54px rgba(75,91,213,0.34); }
.btn.ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
}
.btn.ghost:hover{
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.30);
}

/* ===== LEGAL HERO (hero vibe, but compact) ===== */
.legal-hero{
  position: relative;
  overflow: hidden;
  background: var(--hero);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 102, 255, 0.10), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(194, 122, 255, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  color: #000e33;

  padding: 44px 0 28px;
}
.legal-hero::before{
  content:"";
  position:absolute;
  width: 820px;
  height: 820px;
  top: -30%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.30) 0%,
    rgba(124, 58, 237, 0.22) 28%,
    rgba(75, 91, 213, 0.14) 45%,
    transparent 60%
  );
  filter: blur(65px);
  opacity: 0.95;
  pointer-events: none;
}
.legal-hero::after{
  content:"";
  position:absolute;
  width: 740px;
  height: 740px;
  bottom: -40%;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(77, 8, 136, 0.36) 0%,
    rgba(124, 58, 237, 0.22) 30%,
    rgba(194, 122, 255, 0.12) 48%,
    transparent 62%
  );
  filter: blur(80px);
  opacity: 0.9;
  pointer-events: none;
}
.legal-hero-inner{
  position: relative;
  z-index: 1;
  max-width: 760px;
}

/* Pill (same style you used in hero) */
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(75, 91, 213, 0.08);
  border: 1px solid rgba(75, 91, 213, 0.14);
  color: #4b5bd5;
  font-size: 13px;
  font-weight: 700;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow:
    0 0 0 3px rgba(0, 102, 255, 0.25),
    0 0 10px rgba(194, 122, 255, 0.45);
}

.legal-title{
  margin: 14px 0 8px;
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.legal-sub{
  margin: 0;
  color: rgba(0, 14, 51, 0.62);
  line-height: 1.6;
  font-size: 15.5px;
}
.legal-sub a{
  color: rgba(0, 14, 51, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.legal-sub a:hover{ border-bottom-color: rgba(255,255,255,0.35); }

.legal-meta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;

}

.rr-hero-proof {
  display: flex;
  justify-content: flex-start; /* ← change this */
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.rr-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0, 14, 51, 0.08);

  box-shadow: 0 8px 22px rgba(0, 14, 51, 0.04);

  font-size: 13px;
  font-weight: 550;
  color: rgba(0, 14, 51, 0.65);
}
.rr-hero-proof span i {
  font-size: 12px;

  background: linear-gradient(90deg, #0066ff, #c27aff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  display: inline-block;
}

.meta-chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(0, 14, 51, 0.58);
  font-size: 12.5px;
  font-weight: 650;
}

/* ===== Legal content background ===== */
.legal-wrap{
  background: radial-gradient(circle at top left, #E8F1FF 0%, #ffffff 45%, #faf5ff 100%);
  position: relative;
  overflow: hidden;
  padding: 28px 0 70px;
}
.legal-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(900px 420px at 80% 0%, rgba(194,122,255,0.08), transparent 60%);
}

.legal-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

/* TOC */
.legal-toc{
  position: sticky;
  top: 92px; /* under nav */
}
.toc-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,16,32,0.08);
  border-radius: var(--radius2);
  box-shadow: 0 12px 28px rgba(11,16,32,0.06);
  padding: 14px;
}
.toc-title{
  font-weight: 850;
  color: rgba(11,16,32,0.86);
  margin: 4px 0 10px;
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.toc-card a{
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(11,16,32,0.74);
  font-size: 13.5px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.toc-card a:hover{
  background: rgba(75, 91, 213, 0.12); /* soft indigo wash */
    color: #4b5bd5;
  transform: translateX(1px);
}

/* Article card */
.legal-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(11,16,32,0.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 22px;
}
.legal-lede{
  margin: 0 0 14px;
  color: rgba(11,16,32,0.70);
  font-size: 15px;
  line-height: 1.7;
}

.legal-card h2{
  margin: 18px 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(11,16,32,0.92);
}
.legal-card h3{
  margin: 14px 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: rgba(11,16,32,0.90);
}
.legal-card p{
  margin: 0 0 10px;
  color: rgba(11,16,32,0.70);
  line-height: 1.75;
  font-size: 14.75px;
}
.legal-card a{
  color: #4b5bd5;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,102,255,0.20);
}
.legal-card a:hover{ border-bottom-color: rgba(0,102,255,0.38); }

/* Callout */
.callout{
  margin: 14px 0 10px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(75, 91, 213, 0.12); /* soft indigo wash */
    color: #4b5bd5;
  border: 1px solid rgba(0,102,255,0.14);
}
.callout-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,102,255,0.20);
}
.callout-icon i{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
}
.callout-body{
  color: rgba(11,16,32,0.72);
  font-size: 14.25px;
  line-height: 1.65;
}

/* Bottom actions */
.legal-bottom{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== Footer (your "rr-footer" system) ===== */
.rr-footer{
  background: #000e33;
  color: rgba(255,255,255,0.88);
  padding: 28px 0 56px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.rr-footer::before{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(0,102,255,0.18), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(194,122,255,0.16), transparent 62%);
  filter: blur(40px);
  opacity: 0.8;
}
.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.footer-logo-wrapper{ text-align: left; margin-bottom: 26px; }
.footer-logo{ height: 100px; width: auto; display: block; margin-bottom: 10px; }
.footer-tagline{
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
}
.footer-columns{
  display: flex;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-col{ min-width: 160px; }
.footer-col h4{
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.footer-col a{
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(203,213,225,0.90);
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}
.footer-col a:hover{ color: #ffffff; transform: translateX(1px); }
.footer-divider{
  margin: 34px 0 26px;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-app-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.footer-badges img{ width: 130px; }
.footer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 40px rgba(75,91,213,0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.footer-cta:hover{ transform: translateY(-1px); box-shadow: 0 20px 50px rgba(75,91,213,0.34); }
.footer-bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-legal{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
}
.footer-socials a{
  margin-left: 12px;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: opacity .15s ease, transform .15s ease;
}
.footer-socials a:hover{ opacity: 0.8; transform: translateY(-1px); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .navbar {
    padding: 0 32px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-logo {
    width: 180px;
  }

  .nav-left {
    gap: 20px;
  }
}

@media (max-width: 980px){
  .container, .footer-inner{ padding-left: 22px; padding-right: 22px; }
  .legal-grid{ grid-template-columns: 1fr; }
  .legal-toc{ position: relative; top: auto; }
  .footer-logo{ height: 60px; }
  .footer-columns{ gap: 28px; }
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px; /* ← adds top padding, removes weird bottom heaviness */
  }

  .nav-logo {
    width: 170px;
  }

  .nav-left {
    display: none;
  }

  .guest-nav-left,
  body:not(.authenticated) .guest-nav-left {
    display: none !important;
  }

  .guest-nav-actions,
  body:not(.authenticated) .guest-nav-actions {
    display: none !important;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-right .create-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 520px){
  .legal-title{ font-size: 36px; }
  .footer-badges img{ width: 120px; }
  .footer-socials a{ margin-left: 10px; }
  html, body { overflow-x: hidden; }

}

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

.nav-left,
.nav-item,
.nav-link-btn,
.icon-btn {
  color: #000e33 !important;
}



.rr-footer {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  color: #000e33;
  padding: 64px 24px 40px;
  border-top: 1px solid rgba(0, 14, 51, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* subtle hero-like glow */
.rr-footer::before{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(0,102,255,0.18), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(194,122,255,0.16), transparent 62%);
  filter: blur(40px);
  opacity: 0.8;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Logo + tagline */
.footer-logo-wrapper{
  text-align: left;
  margin-bottom: 26px;
}

.footer-logo{
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-tagline{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 14, 51, 0.65);
}

/* Columns */
.footer-columns{
  display: flex;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-col{
  min-width: 160px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 14, 51, 0.5);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: #000e33;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #4b5bd5;
}

/* Divider */
.footer-divider {
  margin: 36px 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 14, 51, 0.08),
    transparent
  );
}


.footer-app-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.footer-badges img {
  height: 40px;
  margin-right: 10px;
  opacity: 0.9;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-badges img:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* App badges row + CTA */
.footer-app-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}


.footer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;

  background: linear-gradient(90deg, #0066ff, #c27aff);
  box-shadow: 0 16px 40px rgba(75,91,213,0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.footer-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(75,91,213,0.34);
}

/* Bottom row */
.footer-bottom {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 20px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.footer-legal {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(0, 14, 51, 0.5);
  line-height: 1.4;
}


.footer-legal-subtle {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(0, 14, 51, 0.42);
  text-align: center;
}


.footer-socials {
  display: flex;
  gap: 12px;
  justify-self: end;
}

@media (max-width: 900px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .footer-legal-subtle {
    text-align: left;
  }

  .footer-socials {
    justify-self: start;
  }
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 14, 51, 0.05);
  color: #000e33;
  transition: all 0.18s ease;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #0066ff, #c27aff);
  color: #fff;
}

.rr-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(
    circle at top,
    rgba(194, 122, 255, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.footer-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-heart i {
  font-size: 0.85rem;

  /* gradient heart */
  background: linear-gradient(135deg, #0066ff, #c27aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* fallback for non-webkit */
  color: #c27aff;
}

.footer-heart i {
  transition: transform 0.2s ease;
}

.footer-made:hover .footer-heart i {
  transform: scale(1.15);
}



.footer-made {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(0, 14, 51, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
/* gradient heart */
.footer-heart i {
  font-size: 0.85rem;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c27aff;
  transition: transform 0.2s ease;
}

/* subtle hover = feels alive */
.footer-made:hover .footer-heart i {
  transform: scale(1.15);
}

/* NYC link styling */
.footer-city-link {
  color: #000e33;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

/* subtle underline on hover */
.footer-city-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.footer-city-link:hover::after {
  transform: scaleX(1);
}

.footer-legal-subtle {
  font-size: 0.72rem;
  opacity: 0.6;
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-legal,
.footer-legal-subtle {
  margin: 0;
}

.footer-legal-subtle {
  font-size: 0.72rem;
  opacity: 0.6;
}

.rr-feature-media {
  position: absolute !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  max-height: 520px !important;
  max-width: 360px !important;
  object-fit: contain !important;
  opacity: 0 !important;
  transform: scale(1.02) !important;
  transition: opacity .28s ease, transform .28s ease !important;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.18)) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.rr-feature-media.active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.rr-feature-copy {
  position: relative !important;
  z-index: 2 !important;
}

.rr-feature-showcase {
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important; /* tighter */
}
.rr-feature-copy {
  padding-left: 10px !important;
  max-width: 440px !important;
}
.rr-feature-media {
  transform: translateX(40px) scale(1) !important;
}

.rr-demo-caption-section {
  background: transparent !important;
  padding: 44px 0 78px !important;
}

.rr-hero {
  padding-bottom: 0 !important;
}

@media (max-width: 768px) {
  .rr-demo-chip {
    display: none !important;
  }

  .pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(75, 91, 213, 0.08);
  border: 1px solid rgba(75, 91, 213, 0.14);
  color: #4b5bd5;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 700;
}

  .rr-demo-shell {
    padding-bottom: 0;
  }

  .rr-demo-video {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .rr-hero-demo {
    margin-top: 12px;
  }

  .rr-demo-video {
    border-radius: 20px;
    max-height: 380px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {

.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

  .phone-frame {
    width: 100%;
    height: auto;
  }

.phone-video {
  width: 100%;
  height: auto;   /* 🔥 key */
  object-fit: contain;
}
}@media (min-width: 769px) {
  .phone-wrap {
    transform: translateY(-110px) scale(0.88);
  }
}
@media (max-width: 768px) {
  .rr-feature-showcase {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .rr-feature-visual {
    height: auto !important; /* 🔥 KEY FIX */
    min-height: unset !important;
    overflow: visible !important; /* 🔥 allow image to show */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 10px;
  }

  .rr-feature-media {
    position: relative !important;
    max-width: 240px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .rr-feature-showcase {
    display: flex !important;
    flex-direction: column !important;
    padding: 18px !important;
    gap: 20px !important;
  }

  .rr-feature-visual {
    min-height: auto;
    height: 360px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .rr-feature-media {
    display: none !important;
  }

  .rr-feature-media.active {
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    height: 330px !important;
    max-width: 260px !important;
    max-height: 330px !important;
    object-fit: contain !important;
    transform: none !important;
    z-index: 2 !important;
  }

  .rr-feature-visual::before {
    width: 260px !important;
    height: 260px !important;
  }

  .rr-feature-copy {
    text-align: center !important;
    padding: 0 10px 18px !important;
  }
}

.nav-link-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;

  color: #000e33 !important;

  /* 👇 FIXED */
  background: rgba(0, 14, 51, 0.04);
  border: 1px solid rgba(0, 14, 51, 0.15) !important;

  box-shadow: 0 6px 16px rgba(0, 14, 51, 0.08);

  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.nav-link-btn:hover {
  background: rgba(0, 14, 51, 0.07) !important;
  border-color: rgba(0, 14, 51, 0.25) !important;
  transition: 0.3s ease-in-out;
}
/* ===== Creator Program Redesign ===== */

.creator-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  padding: 96px 52px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(0,102,255,0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(194,122,255,0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.creator-hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.creator-eyebrow,
.creator-section-heading span,
.creator-suite-copy span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(75, 91, 213, 0.08);
  border: 1px solid rgba(75, 91, 213, 0.14);
  color: #4b5bd5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.creator-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #171b24;
}


.creator-hero-sub {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(0, 14, 51, 0.66);
}

.creator-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.creator-primary-btn,
.creator-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.creator-primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  box-shadow: 0 18px 44px rgba(75, 91, 213, 0.30);
}

.creator-secondary-btn {
  color: #000e33;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0, 14, 51, 0.11);
  box-shadow: 0 10px 24px rgba(0, 14, 51, 0.06);
}

.creator-primary-btn:hover,
.creator-secondary-btn:hover {
  transform: translateY(-2px);
}

.creator-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.creator-stats div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 14, 51, 0.08);
  box-shadow: 0 12px 28px rgba(0, 14, 51, 0.045);
}

.creator-stats div:last-child {
  border-right: 0;
}

.creator-stats strong {
  display: block;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.creator-stats span {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(0, 14, 51, 0.58);
}

.creator-hero-preview {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.creator-phone-card {
  width: min(100%, 430px);
  border-radius: 34px;
  padding: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0, 14, 51, 0.09);
  box-shadow: 0 36px 90px rgba(0, 14, 51, 0.16);
  backdrop-filter: blur(16px);
}

.creator-phone-main {
  transform: rotate(2deg);
}

.creator-profile-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.creator-avatar {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 850;
  background: linear-gradient(135deg, #0066ff, #c27aff);
}

.creator-profile-top h3 {
  margin: 0;
  font-size: 18px;
  color: #000e33;
}

.creator-profile-top p {
  margin: 4px 0 0;
  color: rgba(0, 14, 51, 0.52);
  font-size: 13px;
}

.creator-map-preview {
  position: relative;
  height: 260px;
  margin: 22px 0;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,14,51,0.05) 1px, transparent 1px),
    linear-gradient(rgba(0,14,51,0.05) 1px, transparent 1px),
    radial-gradient(circle at 25% 28%, rgba(0,102,255,0.20), transparent 24%),
    radial-gradient(circle at 70% 62%, rgba(194,122,255,0.24), transparent 26%),
    #f6f8ff;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  border: 1px solid rgba(0,14,51,0.07);
}

.pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  box-shadow: 0 10px 22px rgba(75,91,213,0.34);
}

.pin-one { top: 52px; left: 88px; }
.pin-two { top: 126px; right: 92px; }
.pin-three { bottom: 50px; left: 164px; }

.creator-preview-list {
  display: grid;
  gap: 12px;
}

.creator-preview-list div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 14, 51, 0.035);
  border: 1px solid rgba(0, 14, 51, 0.06);
}

.creator-preview-list strong,
.creator-preview-list span {
  display: block;
}

.creator-preview-list strong {
  color: #000e33;
  font-size: 14px;
}

.creator-preview-list span {
  margin-top: 4px;
  color: rgba(0, 14, 51, 0.55);
  font-size: 12px;
}

.creator-floating-card {
  position: absolute;
  right: 4%;
  bottom: 62px;
  width: 250px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0, 14, 51, 0.08);
  box-shadow: 0 22px 60px rgba(0, 14, 51, 0.14);
}

.creator-floating-card i {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0066ff, #c27aff);
}

.creator-floating-card strong,
.creator-floating-card span {
  display: block;
}

.creator-floating-card strong {
  font-size: 13.5px;
  color: #000e33;
}

.creator-floating-card span {
  margin-top: 3px;
  font-size: 12px;
  color: rgba(0, 14, 51, 0.55);
}

.creator-trust {
  padding: 28px 24px;
  text-align: center;

  /* gradient background */
  background: linear-gradient(135deg, #0066ff, #c27aff);

  /* text styling */
  color: #ffffff;
}
.rr-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5bd5;
}
.creator-trust p {
  margin: 0 auto;
  max-width: 880px;

  font-size: 15px;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.92);
}

.creator-trust {
  box-shadow: 0 20px 50px rgba(75, 91, 213, 0.25);
}
.creator-section {
  padding: 70px 52px 1px;
  background: #ffffff;
}


.creator-faq {
  padding: 70px 52px 40px;
  background: #ffffff;
}
.creator-scroll-section {
  padding: 30px 52px 110px !important;
}

.creator-section + .creator-scroll-section {
  margin-top: -40px; /* pulls next section up */
}
.creator-section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.creator-section-heading h2,
.creator-suite-copy h2,
.creator-final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #000e33;
}

.creator-section-heading p,
.creator-suite-copy p,
.creator-final-cta p {
  max-width: 680px;
  margin: 16px auto;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0, 14, 51, 0.58);
}

.creator-steps,
.creator-benefit-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.creator-step,
.creator-benefit-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  border: 1px solid rgba(0, 14, 51, 0.08);
  box-shadow: 0 14px 36px rgba(0, 14, 51, 0.06);
}

.creator-step-number {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 850;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  margin-bottom: 42px;
}

.creator-step h3,
.creator-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.04 em;
  color: #000e33;
}

.creator-step p,
.creator-benefit-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(0, 14, 51, 0.62);
}

.creator-suite {
  padding: 96px 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 54px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(194,122,255,0.16), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(0,102,255,0.13), transparent 32%),
    linear-gradient(180deg, #fbfaff 0%, #ffffff 100%);
}

.creator-suite-copy {
  max-width: 620px;
}

.creator-suite-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.creator-suite-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0, 14, 51, 0.07);
  color: rgba(0, 14, 51, 0.76);
  font-size: 14px;
  font-weight: 650;
}

.creator-suite-list i {
  background: linear-gradient(135deg, #0066ff, #c27aff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.creator-suite-visual {
  display: grid;
  place-items: center;
}

.creator-dashboard-card {
  width: min(100%, 560px);
  padding: 26px;
  border-radius: 34px;
  background: #000e33;
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 14, 51, 0.28);
}

.creator-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.creator-dashboard-header span {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.creator-dashboard-header strong {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
}

.creator-dashboard-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.creator-dashboard-row span {
  color: rgba(255,255,255,0.68);
}

.creator-dashboard-row strong {
  font-size: 28px;
}

.creator-dashboard-pill {
  margin-top: 22px;
  padding: 14px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  font-weight: 750;
}

.creator-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creator-benefit-card i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  margin-bottom: 24px;
}

.creator-faq {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

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

.creator-faq-list details {
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0, 14, 51, 0.08);
  box-shadow: 0 12px 30px rgba(0, 14, 51, 0.05);
  overflow: hidden;
}

.creator-faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 750;
  color: #000e33;
  list-style: none;
}

.creator-faq-list summary::-webkit-details-marker {
  display: none;
}

.creator-faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(0, 14, 51, 0.62);
  line-height: 1.65;
}

.creator-final-cta {
  padding: 92px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,102,255,0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(194,122,255,0.20), transparent 32%),
    #000e33;
}

.creator-final-cta h2 {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
}

.creator-final-cta p {
  color: rgba(255,255,255,0.70);
}

.creator-final-cta .creator-hero-actions {
  justify-content: center;
}

.creator-final-cta .creator-secondary-btn {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: #ffffff;
}

@media (max-width: 980px) {
  .creator-hero,
  .creator-suite {
    grid-template-columns: 1fr;
    padding: 44px 24px;
  }

  .creator-hero {
    min-height: auto;
  }

  .creator-hero-preview {
    min-height: auto;
  }

  /* Clip phone image cleanly on tablet — handles both transparent and opaque PNGs */
  .creator-phone-wrap {
    border-radius: 28px;
    overflow: hidden;
  }

  .creator-phone-main {
    transform: none;
  }

  .creator-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -18px;
  }

  .creator-steps,
  .creator-benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .creator-section,
  .creator-faq {
    padding: 72px 24px;
  }
}

@media (max-width: 640px) {
  .creator-hero {
    padding-top: 28px;
  }

  .creator-hero h1 {
    font-size: 46px;
  }

  .creator-hero-sub {
    font-size: 16px;
  }

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

  .creator-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 14, 51, 0.09);
  }

  .creator-stats div:last-child {
    border-bottom: 0;
  }

  .creator-section-heading {
    text-align: left;
  }

  .creator-section-heading p {
    margin-left: 0;
  }

  .creator-section-heading h2,
  .creator-suite-copy h2,
  .creator-final-cta h2 {
    font-size: 36px;
  }
}

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

/* Phone wrapper (controls tilt + size) */
.creator-phone-wrap {
  position: relative;
  width: 120px; /* 🔥 KEY SIZE */
  transform: rotate(6deg);
  transition: transform 0.3s ease;
}

/* subtle hover (feels premium) */
.creator-phone-wrap:hover {
  transform: rotate(4deg) scale(1.02);
}

/* actual image */
.creator-phone-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 14, 51, 0.25);
}

/* floating card */
.creator-floating-card {
  position: absolute;
  bottom: 40px;
  right: -20px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 18px;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 14, 51, 0.08);
  box-shadow: 0 20px 50px rgba(0, 14, 51, 0.15);
}

.creator-floating-card i {
  width: 36px;
  height: 36px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: linear-gradient(135deg, #0066ff, #c27aff);
}

.creator-floating-card strong {
  font-size: 13px;
  color: #000e33;
}

.creator-floating-card span {
  font-size: 12px;
  color: rgba(0, 14, 51, 0.6);
}

/* mobile fix */
@media (max-width: 768px) {
  .creator-phone-wrap {
    width: 240px;
    transform: rotate(3deg);
  }

  .creator-floating-card {
    right: 0;
    bottom: -10px;
  }
}

h1 span {
  background: linear-gradient(90deg, #0066ff, #c27aff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

/* PHONE */
.creator-phone-wrap {
  position: relative;
  width: 180px;
  transform: rotate(6deg);
  z-index: 2;
}

.creator-phone-img {
  width: 100%;
  height: auto;
  display: block;

  /* 🔥 IMPORTANT: removes weird background feel */
  background: transparent;

  /* Clean shadow (no blob) */
  box-shadow: 0 30px 70px rgba(0, 14, 51, 0.18);
  border-radius: 28px;
}

/* FLOATING CARDS BASE */
.creator-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 18px;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 14, 51, 0.08);
  box-shadow: 0 20px 50px rgba(0, 14, 51, 0.12);

  z-index: 3;
}

/* ICON */
.creator-card i {
  width: 36px;
  height: 36px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: linear-gradient(135deg, #0066ff, #c27aff);
}

/* TEXT */
.creator-card strong {
  font-size: 13px;
  color: #000e33;
}

.creator-card span {
  font-size: 12px;
  color: rgba(0, 14, 51, 0.6);
}

/* 🔥 POSITIONING FIX (THIS WAS YOUR ISSUE) */

/* main card = right side mid */
.creator-card-main {
  right: -40px;
  top: 55%;
  transform: translateY(-50%);
}

/* secondary card = lower + offset */
.creator-card-secondary {
  right: -20px;
  bottom: 10%;
}

/* MOBILE */
@media (max-width: 768px) {
  .creator-phone-wrap {
    width: 240px;
    transform: rotate(3deg);
  }

  .creator-card-main {
    right: 0;
    top: auto;
    bottom: -10px;
    transform: none;
  }

  .creator-card-secondary {
    display: none; /* cleaner mobile */
  }
}/* ===== HERO PHONE IMAGE — FINAL CLEAN VERSION ===== */

.creator-hero-preview {
  position: relative;
  min-height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.creator-phone-wrap {
  position: relative;
  width: clamp(220px, 24vw, 320px);
  transform: rotate(6deg) translateY(4px);
  transform-origin: center center;
  z-index: 2;
}

.creator-phone-img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 26px 42px rgba(0, 14, 51, 0.16));
}

/* cards */
.creator-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;

  width: 230px;
  min-height: 64px;
  padding: 11px 13px;

  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 14, 51, 0.08);
  box-shadow: 0 16px 34px rgba(0, 14, 51, 0.11);
  backdrop-filter: blur(12px);
}

.creator-card i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  font-size: 14px;
}

.creator-card strong,
.creator-card span {
  display: block;
}

.creator-card strong {
  font-size: 12.5px;
  line-height: 1.18;
  color: #000e33;
}

.creator-card span {
  margin-top: 2px;
  font-size: 11.5px;
  line-height: 1.2;
  color: rgba(0, 14, 51, 0.58);
}

.creator-card-main {
  right: 8px;
  top: 44%;
  transform: translateX(34%);
}

.creator-card-secondary {
  right: 34px;
  top: 64%;
  transform: translateX(24%);
}

/* kill old duplicate floating-card version */
.creator-floating-card {
  display: none !important;
}

@media (max-width: 980px) {
  .creator-hero-preview {
    min-height: 500px;
  }

  .creator-phone-wrap {
    width: min(76vw, 340px);
    transform: rotate(4deg);
  }

  .creator-card-main {
    right: 8%;
    top: 60%;
    transform: translateX(14%);
  }

  .creator-card-secondary {
    display: none;
  }
}

@media (max-width: 640px) {
  .creator-hero-preview {
    min-height: 420px;
    margin-top: 18px;
  }

  .creator-phone-wrap {
    width: min(82vw, 290px);
    transform: rotate(3deg);
  }

  .creator-card {
    width: 215px;
    min-height: 58px;
    padding: 10px 12px;
  }

  .creator-card-main {
    right: 50%;
    top: auto;
    bottom: 18px;
    transform: translateX(50%);
  }
}

@media (max-width: 640px) {
  .creator-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .creator-stats div {
    padding: 16px 18px;
  }
}

.creator-scroll-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 110px 52px;
  background: #ffffff;
  align-items: start;
}

.creator-scroll-media {
  position: sticky;
  top: 110px;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creator-image-stack {
  position: relative;
  width: min(100%, 560px);
  height: 700px;
  border-radius: 34px;
  overflow: hidden;
  background: #f4f2ff;
  box-shadow: 0 28px 80px rgba(0, 14, 51, 0.12);
}

/* intentionally empty — scroll-img handles all image styling */

.creator-scroll-copy {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 40px 0;
}

.creator-scroll-item {
  max-width: 620px;
  min-height: 420px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 24px;
  align-content: center;
}

.creator-scroll-num {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 14, 51, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #000e33;
  margin-top: 8px;
}

.creator-scroll-item h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #000e33;
}

.creator-scroll-item p {
  grid-column: 2;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0, 14, 51, 0.62);
}

.creator-scroll-item a {
  grid-column: 2;
  width: fit-content;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 700;
  color: #000e33;
  border-bottom: 1px solid rgba(0, 14, 51, 0.45);
  text-decoration: none;
}

.creator-scroll-item a:hover {
  color: #4b5bd5;
  border-bottom-color: #4b5bd5;
}

/* Desktop: hide inline step images (desktop uses sticky media panel) */
.creator-mobile-step-img {
  display: none;
}

@media (max-width: 900px) {
  .creator-scroll-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 24px;
  }

  /* Hide desktop sticky panel on mobile — use inline images instead */
  .creator-scroll-media {
    display: none;
  }

  /* Show and style inline step images on mobile */
  .creator-mobile-step-img {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    grid-column: 1;
  }

  .creator-scroll-copy {
    gap: 54px;
    padding: 0;
  }

  .creator-scroll-item {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .creator-scroll-num,
  .creator-scroll-item p,
  .creator-scroll-item a {
    grid-column: 1;
  }

  .creator-scroll-item h2 {
    font-size: 38px;
    margin-top: 16px;
  }
}

.scroll-img {
  position: absolute;
  inset: 0;
  margin: auto;

  width: 280px; /* 🔥 same size as hero */
  height: auto;
  transform: translateY(20px) rotate(5deg) scale(0.96);

  opacity: 0;
  transform: scale(0.96) rotate(4deg);

  transition: all 0.4s ease;
  pointer-events: none;
}

/* active image */
.scroll-img.active {
  opacity: 1;
    transform: translateY(20px) rotate(5deg) scale(1);

  transform: scale(1) rotate(5deg);
}
.step-1 { transform: scale(1) rotate(3deg); }
.step-2 { transform: scale(1) rotate(6deg); }
.step-3 { transform: scale(1) rotate(2deg); }

.creator-image-stack {
  position: relative;
  width: 340px;
  height: 620px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.scroll-img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 400px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: rotate(5deg) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
  filter: drop-shadow(0 28px 45px rgba(0, 14, 51, 0.16));
  pointer-events: none;
}

.scroll-img.active {
  opacity: 1;
  transform: rotate(5deg) scale(1);
}

.scroll-img.step-2.active {
  transform: rotate(-4deg) scale(1);
}

.scroll-img.step-3.active {
  transform: rotate(3deg) scale(1);
}

@media (max-width: 900px) {
  .creator-image-stack {
    width: 280px;
    height: 520px;
  }

  .scroll-img {
    width: 250px;
  }
}

/* IMAGE CONTAINER */
.creator-image-stack {
  position: relative;
  width: 340px;
  height: 680px; /* increased to prevent cutoff */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
}

/* PHONE IMAGES */
.scroll-img {
  position: absolute;
  top: 20px; /* 🔥 prevents top cutoff */
  left: 0;
  right: 0;
  margin: auto;

  width: 280px; /* 🔥 controls size */
  height: auto;
  object-fit: contain;

  opacity: 0;
  transform: translateY(10px) rotate(5deg) scale(0.94);
  transition: opacity 0.35s ease, transform 0.35s ease;

  filter: drop-shadow(0 28px 45px rgba(0, 14, 51, 0.16));
  pointer-events: none;
}

/* ACTIVE IMAGE */
.scroll-img.active {
  opacity: 1;
  transform: translateY(10px) rotate(5deg) scale(1);
}

/* slight variation per step (feels more premium) */
.scroll-img.step-2.active {
  transform: translateY(10px) rotate(-4deg) scale(1);
}

.scroll-img.step-3.active {
  transform: translateY(10px) rotate(3deg) scale(1);
}

/* MOBILE */
@media (max-width: 900px) {
  .creator-image-stack {
    width: 280px;
    height: 560px;
  }

  .scroll-img {
    width: 240px;
    top: 10px;
  }
}

.creator-testimonials {
  background: #ffffff;
  padding: 0;
}

.testimonial-slider {
  position: relative;
  height: 680px;
  overflow: hidden;
  background: #000e33;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 120px;

  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(4%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;

  /* darker gradient, NO blur */
  background: linear-gradient(
    90deg,
    rgba(0,14,51,0.65),
    rgba(0,14,51,0.35)
  );
}


.testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  color: #ffffff;
}

.testimonial-quote-mark {
  font-size: 92px;
  line-height: 0.7;
  font-family: Georgia, serif;
  opacity: 0.92;
  margin-bottom: 28px;
}

.testimonial-content p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.13;
  letter-spacing: -0.045em;
  color: rgba(255,255,255,0.96);
}

.testimonial-content span {
  display: block;
  margin-top: 44px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);

  width: 62px;
  height: 62px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.78);
  color: #ffffff;

  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-arrow:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%) scale(1.04);
}

.testimonial-prev {
  left: 54px;
}

.testimonial-next {
  right: 54px;
}

@media (max-width: 768px) {
  .testimonial-slider {
    height: 560px;
  }

  .testimonial-slide {
    padding: 64px 28px;
  }

  .testimonial-content p {
    font-size: 34px;
  }

  .testimonial-arrow {
    width: 48px;
    height: 48px;
    top: auto;
    bottom: 28px;
    transform: none;
  }

  .testimonial-arrow:hover {
    transform: scale(1.04);
  }

  .testimonial-prev {
    left: 24px;
  }

  .testimonial-next {
    right: 24px;
  }
}

.creator-benefit-grid.condensed {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1000px) {
  .creator-benefit-grid.condensed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .creator-benefit-grid.condensed {
    grid-template-columns: 1fr;
  }
}

.creator-final-cta-video {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* video */
.cta-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay for readability */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 14, 51, 0.6),
    rgba(0, 14, 51, 0.85)
  );
}

/* content */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
  color: #fff;
}

.cta-content h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}

.cta-content p {
  margin: 20px 0 30px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* reuse your existing buttons but tweak for dark bg */
.creator-final-cta-video .creator-secondary-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* mobile */
@media (max-width: 768px) {
  .creator-final-cta-video {
    height: 70vh;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

.guest-login-btn {
      padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;

  color: #000e33 !important;

  /* 👇 FIXED */
  background: rgba(0, 14, 51, 0.04);
  border: 1px solid rgba(0, 14, 51, 0.15) !important;

  box-shadow: 0 6px 16px rgba(0, 14, 51, 0.08);

  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.guest-login-btn:hover {
      background: rgba(0, 14, 51, 0.07) !important;
  border-color: rgba(0, 14, 51, 0.25) !important;
  transition: 0.3s ease-in-out;
}


.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #ffffff;
  border-radius: 14px;
  padding: 6px;
  min-width: 190px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #000e33 !important;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown a:hover {
  background: rgba(75, 91, 213, 0.08);
  color: #4b5bd5 !important;
}


/* ───── PROFILE DROPDOWN ───── */
.profile-container {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-container .avatar {
  cursor: pointer;
}


.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff !important;
  border-radius: 16px;
  padding: 6px;
  min-width: 180px;
  border: none;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13), 0 1px 4px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-8px);
  z-index: 1100;
}

/* Invisible bridge between avatar and dropdown */
.profile-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.profile-container:hover .profile-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-dropdown a {
  display: flex;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #000e33 !important;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.profile-dropdown a i {
  width: 15px;
  font-size: 0.85rem;
  opacity: 0.38;
  transition: opacity 0.15s ease;
}


/* Profile dropdown menu */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px); /* Reduced gap from 12px to 8px */
  right: 0;
  background: #000e33;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-10px);
  z-index: 1100;
}

/* Add invisible bridge between avatar and dropdown */
.profile-dropdown::before {
  content: '';
  position: absolute;
  top: -12px; /* Covers the gap */
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.profile-container:hover .profile-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px; /* Increased from 10px to 12px for easier clicking */
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.profile-dropdown a i {
  width: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.profile-dropdown a:hover {
  background: linear-gradient(135deg, #0066ff, #c27aff);
}

.profile-dropdown a i {
  width: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.profile-dropdown a:hover {
  background: rgba(75, 91, 213, 0.08) !important;
  color: #4b5bd5 !important;
}

.profile-dropdown a:hover i {
  opacity: 0.85;
}

.profile-dropdown a:hover {
  background: linear-gradient(135deg, #0066ff, #c27aff);
}


.notification-modal {
  position: absolute;
  top: 52px;
  right: 0;
  width: 320px;
  max-height: 420px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%) !important;
  border-radius: 16px;
  color: #000e33;
  padding: 12px 0;
  border: 1px solid rgba(0, 14, 51, 0.06) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);
  overflow-y: auto;
  z-index: 2000001 !important;
}
.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 8px;
  border-bottom: 1px solid rgba(0, 14, 51, 0.08);

}

.notification-header h4 {
   font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.notif-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.notification-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 360px;
  overflow-y: auto;
  z-index: 2000001 !important;
}

.notification-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 2000001 !important;
}

.notification-entry.unread {
  background: rgba(0, 102, 255, 0.08);
}

.notification-empty {
  padding: 12px 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.notification-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.notification-avatar.monogram {
  background: linear-gradient(135deg, #0066ff, #c27aff);
  padding: 2px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-avatar.monogram::after {
  content: attr(data-initials);
  background: #000e33;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-monogram {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000e33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
}

.notification-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.notif-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.notif-name {
  font-weight: 600;
  color: #000e33;
  text-decoration: none;
}

.notif-name:hover {
  text-decoration: underline;
}

.trip-link {
  color: #4b5bd5;
  text-decoration: none;
}
.invite-actions {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.invite-actions button {
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  cursor: pointer;
}

/* ✅ Creator star badge */
.creator-star {
  color: #FFD700;
  font-size: 14px;
  margin-left: 4px;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
}

/* ✅ Better hover state for creator bar */
.collection-creator-bar {
  cursor: pointer !important;
  user-select: none;
}

.collection-creator-bar:hover .collection-creator-name {
  color: #667eea;
}
/* ✅ FIXED: Collection creator bar - no weird padding */
.collection-creator-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.collection-creator-bar,
.collection-creator-link {
  position: relative;
  z-index: 500;
}

.collection-creator-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  padding: 4px 8px;
  margin: -4px -8px; /* Negative margin to expand clickable area */
  border-radius: 6px;
  transition: background 0.15s ease;
  cursor: pointer;
}

.collection-creator-link:hover {
  background: rgba(102, 126, 234, 0.08);
}

.collection-creator-link:hover .collection-creator-name {
  color: #667eea;
}

.collection-creator-name {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

  /* Creator badge */
  .creator-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #0066ff 0%, #c27aff 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
  }

  .creator-badge i {
    font-size: 10px;
  }

  /* ✅ Animation on hover */
  .collection-creator-bar:hover .creator-badge {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(102, 126, 234, 0.4);
  }

  .creator-badge {
    transition: all 0.2s ease;
  }

.invite-actions button:first-child {
  background: #4b5bd5;
  color: #ffffff;
}

.invite-actions button:last-child {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
}

.invite-status {
  margin-top: 4px;
  font-size: 0.78rem;
  opacity: 0.8;
}
.avatar:hover,
.create-btn:hover,
.notification-bell:hover,
  .group-btn-primary:hover,
  #buildCollectionBtn.hover,
  .rec-card-save-btn:hover,
.rec-detail-save-btn:hover
 {
  box-shadow: 0 0 12px rgba(194, 122, 255, 0.6),
              0 0 6px rgba(0, 102, 255, 0.6);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

/* ───── NOTIFICATIONS ───── */

.notification-container {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2000001 !important;
}

.notification-bell {
  position: relative;
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  display: none;
  box-shadow: 0 0 0 2px #ffffff;;
}

.notification-modal {
  position: absolute;
  top: 52px;
  right: 0;
  width: 320px;
  max-height: 420px;
  background: rgba(2, 8, 32, 0.98);
  border-radius: 16px;
  padding: 12px 0;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);
  overflow-y: auto;
  z-index: 2000001 !important;
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 8px;
  border-bottom: 1px solid rgba(0, 14, 51, 0.08);
}

.notification-header h4 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.notification-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.notif-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}


.notif-name:hover {
  text-decoration: underline;
}

.trip-link {
  color: #c27aff;
  text-decoration: none;
}

.trip-link:hover {
  text-decoration: underline;
}

.comment-timestamp {
  font-size: 0.75rem;
  opacity: 0.65;
}

/* invite buttons */

.invite-actions {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.invite-actions button {
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  cursor: pointer;
}

.invite-actions button:first-child {
  background: #4b5bd5;
  color: #ffffff;
}

.invite-actions button:last-child {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
}

.invite-status {
  margin-top: 4px;
  font-size: 0.78rem;
  opacity: 0.8;
}

/* make dropdown nicer on mobile */
@media (max-width: 768px) {
  .notification-modal {
    right: 50%;
    transform: translateX(50%);
    width: min(360px, calc(100vw - 32px));
      z-index: 2000001 !important; /* above nav dropdowns */

  }
}

.notif-close {
  background: none;
  border: none;
  color: #000e33;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.notification-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 360px;
  overflow-y: auto;
}

.notification-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.88rem;
    border-bottom: 1px solid rgba(0, 14, 51, 0.06);
  z-index: 2000001 !important;
}



.notification-entry.unread {
  background: rgba(0, 102, 255, 0.06);
}


.notification-empty {
  padding: 12px 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.monogram-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-location {
  font-size: 0.85rem;
  color: #4b5bd5;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Gradient ring wrapper */
.avatar-gradient {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(135deg, #0066ff, #c27aff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-monogram {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000e33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
}

@media (max-width: 768px) {
  .notification-modal {
    right: 50%;
    transform: translateX(50%);
    width: min(360px, calc(100vw - 32px));
  }
}

@media (max-width: 768px) {
  .creator-hero-preview {
    display: none; /* 🔥 remove phone completely */
  }
}
@media (max-width: 768px) {
  .creator-scroll-section {
    display: block;
    padding: 24px 20px;
  }

  .creator-scroll-item {
    margin-bottom: 40px;
    text-align: left;
  }

  .creator-image-stack {
    display: none; /* ❌ kill shared image system */
  }

  .creator-scroll-item img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 16px;
    display: block;
    border-radius: 20px;
  }
}

/* hidden on desktop because desktop uses the sticky image stack */
.creator-mobile-step-img {
  display: none;
}

@media (max-width: 768px) {
  .creator-hero-preview {
    display: none !important;
  }

  .creator-scroll-section {
    display: block !important;
    padding: 28px 20px 56px !important;
  }

  .creator-scroll-media {
    display: none !important;
  }

  .creator-scroll-copy {
    display: grid !important;
    gap: 42px !important;
  }

  .creator-scroll-item {
    min-height: auto !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .creator-mobile-step-img {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 18px;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(0, 14, 51, 0.14);
  }
}

.guest-mobile-menu {
  background-color: white !important;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px !important;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 16px 24px 24px !important;
  gap: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
  top: 100%;
}

.dropdown {
  top: 100%;
}

@media (max-width: 768px) {
  .rr-feature-visual {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
  }

  .rr-feature-media {
    display: none !important;
  }

  .rr-feature-media.active {
    display: block !important;
    width: 100% !important;
    max-width: 260px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
  }
}
@media (max-width: 768px) {
  .creator-mobile-step-img {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 24px;
    margin: 0 auto 18px !important;
  }
}

body:not(.authenticated) .auth-only {
  display: none !important;
}

body.authenticated .auth-only {
  display: inline-flex;
}
