:root {
  --bg: #fbfbfd;
  --text: #050505;
  --muted: #77767a;
  --pill: #f1f1f5;
  --accent: #050505;
  --white: #ffffff;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.site-header {
  width: 100%;
  padding: 0.5rem clamp(1rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5f7cff, #3ec5ff);
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

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

.header-center {
  display: flex;
  justify-content: center;
}

.search-bar {
  flex: 0 1 420px;
  background: #eef0f4;
  border-radius: 20px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #81848f;
}

.search-bar input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 0.95rem;
  color: var(--text);
}

.search-bar input:focus {
  outline: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.header-actions__items {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e2e4ec;
  background: #fff;
  cursor: pointer;
}

.header-toggle svg {
  width: 20px;
  height: 20px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.5rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.btn.login {
  border-color: #000;
  color: #000;
  background: #fff;
}

.btn.signup {
  background: #000;
  color: #fff;
}

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

.settings {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #353d66;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}

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

.page {
  min-height: 100vh;
  padding: 0;
}

.landing-two-page a,
.landing-two-page a:hover,
.landing-two-page a:focus {
  text-decoration: none;
}

.hero-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 4vw, 3rem);
}

.hero-wrapper::before,
.hero-wrapper::after {
  content: '';
  position: absolute;
  inset: -60%;
  z-index: 0;
  animation: hueSpin 18s linear infinite;
  filter: blur(70px);
  opacity: 0.3;
}

.hero-wrapper::before {
  background: conic-gradient(#6b5bff, #ff4fd8, #ffb347, #00c6ff, #6b5bff);
  animation-duration: 20s;
}

.hero-wrapper::after {
  background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.5), transparent 55%),
              radial-gradient(circle at 75% 30%, rgba(255,255,255,0.3), transparent 40%),
              radial-gradient(circle at 50% 80%, rgba(255,255,255,0.25), transparent 45%);
  filter: blur(90px);
  animation-duration: 28s;
}

.hero {
  width: min(1400px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.features {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 6vw, 4rem);
  max-width: 1400px;
  margin: 0 auto clamp(4rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 36px;
}

.features-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.features-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.features-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}

.features-header .subtitle {
  margin: 0;
  color: #68687b;
  font-size: 1rem;
}

.feature-panels {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  height: 420px;
}

.feature-panel {
  position: relative;
  flex: 0 0 60px;
  min-width: 60px;
  border-radius: 48px;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  overflow: hidden;
}

.feature-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel .shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
  transition: opacity 0.6s;
}

.feature-panel .feature-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  position: absolute;
  bottom: 16px;
  left: 24px;
  transform: translate(0, 12px);
  opacity: 0;
  background: rgba(0,0,0,0.55);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}


.feature-panel .feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s;
  margin-left: 10px;
}
.feature-panel .feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-panel .info .main {
  font-weight: 700;
  font-size: 1rem;
}

.feature-panel .info .sub {
  font-size: 0.75rem;
  opacity: 0.9;
}
.feature-panel .info {
  transition: opacity 0.4s ease, width 0.4s ease;
}

.feature-panel.active {
  flex: 4;
}

.feature-panel.active .feature-label {
  opacity: 1;
  transform: translate(0, 0);
  justify-content: flex-start;
  padding: 12px 24px;
}
.feature-panel:not(.active) .feature-label {
  opacity: 1;
  left: 50%;
  transform: translate(-50%, 0);
  justify-content: center;
  padding: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
}

.feature-panel.active .feature-icon {
  display: none;
}
.feature-panel:not(.active) .feature-icon {
  color: #ffffff;
}
.feature-panel:not(.active) .info {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.movement-blurb {
  max-width: 1400px;
  margin: clamp(1rem, 0vw, 1rem) auto;
  padding: clamp(4rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 5vw, 6rem);
  background: #fff;
}

.movement-blurb__title {
  grid-column: 1 / -1;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #7b7b8b;
}

.movement-blurb__headline {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 900;
  color: #131313;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.movement-blurb__text {
  color: #454556;
  line-height: 1.8;
  font-size: 1.05rem;
}

.movement-blurb__text p {
  margin: 0 0 1.2rem;
}

.movement-blurb__btn {
  border: none;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 0.9rem 2rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 768px) {
  .movement-blurb {
    grid-template-columns: 1fr;
    padding: 3.2rem 1.5rem;
    gap: 2.5rem;
  }

  .movement-blurb__headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .movement-blurb__btn {
    width: 100%;
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .feature-panels {
    flex-direction: column;
    height: auto;
  }
  .feature-panel {
    flex: 1 0 auto;
    min-height: 60px;
  }
  .feature-panel:not(.active) {
    height: 60px;
  }
  .feature-panel.active {
    min-height: 300px;
  }
  .feature-panel .feature-label {
    bottom: 4px;
  }
  .feature-panel:not(.active) .feature-label {
    left: 6%;
  }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  margin: 0;
  line-height: 1.05;
}

.hero-text .tagline {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
}

.hero-text .lede {
  margin: 1.5rem 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.email-form {
  display: flex;
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem;
  gap: 0.5rem;
  align-items: center;
  width: min(420px, 100%);
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  padding: 0 1rem;
}

.input-wrapper .icon {
  font-size: 1rem;
  color: #b5b5c0;
}

.input-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #eef0f4;
  font-size: 0.85rem;
  color: #777;
  white-space: nowrap;
}

.email-form input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
}

.email-form input:focus {
  outline: none;
}

.email-form button {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.email-form button:hover {
  transform: translateY(-1px);
}

.hero-cards {
  position: relative;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-label {
  position: absolute;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.floating-label::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  z-index: -1;
}

.label-top-left {
  top: 2%;
  left: 4%;
  animation-delay: 0s;
  rotate: -10deg;
}
.label-top-left::after {
  bottom: -6px;
  left: 28px;
}

.label-top-right {
  top: 6%;
  right: 4%;
  animation-delay: 0.5s;
  rotate: 25deg;
}
.label-top-right::after {
  bottom: -6px;
  right: 28px;
}

.label-bottom-left {
  bottom: -12%;
  left: 6%;
  animation-delay: 1s;
  rotate: 10deg;
}
.label-bottom-left::after {
  top: -7px;
  left: 28px;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-left: 1px solid rgba(0,0,0,0.05);
  border-bottom: none;
  border-right: none;
}

.label-bottom-right {
  bottom: -8%;
  right: 3%;
  animation-delay: 1.5s;
  rotate: -10deg;
}
.label-bottom-right::after {
  top: -7px;
  right: 25px;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-left: 1px solid rgba(0,0,0,0.05);
  border-bottom: none;
  border-right: none;
}

@media (max-width: 640px) {
  .floating-label {
    display: none;
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.card {
  width: 280px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(95,124,255,0.2);
  overflow: hidden;
  position: absolute;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.card--front,
.card--back {
  display: flex;
  flex-direction: column;
}

.card--right {
  display: flex;
  flex-direction: column;
  transform: rotate(10deg) translateX(90px);
  opacity: 0.85;
  z-index: 0;
}

.card--back {
  transform: rotate(-12deg) translateX(-40px);
  opacity: 0.9;
  z-index: 0;
}

.card--front {
  z-index: 1;
  transform: translateX(30px) scale(1);
  opacity: 1;
  background: #fff;
}

.card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-body h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card-body p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.avatar-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}

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

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  background: #070707;
  color: #fff;
  font-size: 0.85rem;
}

.card-footer .icons {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.card-footer .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.card.slide-in {
  animation: cardIn 0.7s ease forwards;
}

.card.slide-out {
  animation: cardOut 0.7s ease forwards;
}

@keyframes cardIn {
  0% {
    transform: rotate(-12deg) translateX(-80px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateX(30px);
    opacity: 1;
  }
}

@keyframes cardOut {
  0% {
    transform: translateX(30px);
    opacity: 1;
  }
  100% {
    transform: rotate(-12deg) translateX(-80px) scale(0.9);
    opacity: 0.6;
  }
}

@keyframes hueSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@media (max-width: 900px) {
  .hero {
    text-align: center;
  }

  .email-form {
    margin: 0 auto;
  }

  .hero-cards {
    min-height: 400px;
  }

  .card--front {
    position: relative;
    transform: translateX(0);
  }

  .card--back {
    display: none;
  }

  .card--right {
    display: none;
  }
}
.cp-gallery {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 0;
}

.cp-gallery-intro {
  text-align: center;
  padding: 0 20px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.cp-gallery-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cp-gallery-intro p {
  color: #000;
  line-height: 1.5;
}

.cp-gallery-row {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}

.cp-gallery-row::-webkit-scrollbar {
  display: none;
}

.cp-gallery-row.is-dragging {
  cursor: grabbing;
}

.cp-gallery-track {
  display: flex;
  width: max-content;
  touch-action: pan-y;
}

.cp-gallery-group {
  display: flex;
  gap: 10px;
}

.cp-gallery-group.clone {
  margin-left: 10px;
}

.cp-gallery-card {
  width: 240px;
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  isolation: isolate;
  background: #f0f2f5;
  color: #fff;
}

.cp-gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.cp-gallery-card__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 9, 0) 0%, rgba(5, 6, 9, 0.7) 55%, rgba(5, 6, 9, 0.98) 100%);
  border-radius: inherit;
  padding: 0 18px 20px;
  padding-top: min(55%, 180px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  z-index: 1;
}

.cp-gallery-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-gallery-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.cp-gallery-card__fullname {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cp-gallery-card__badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #50a5ff, #94d0ff);
  box-shadow: 0 0 0 2px rgba(5, 6, 9, 0.6);
}

.cp-gallery-card__badge svg {
  width: 12px;
  height: 12px;
  fill: #031627;
}

.cp-gallery-card__username {
  margin: 2px 0 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
}

.cp-gallery-card__bio {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.cp-gallery-card__stats {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cp-gallery-card__stat {
  flex: 1;
  text-align: center;
}

.cp-gallery-card__stat-value {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
}

.cp-gallery-card__stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.cp-gallery-card__actions {
  display: flex;
  gap: 10px;
}

.cp-gallery-card__button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  background: #fff;
  color: #050407;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.cp-gallery-card__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.cp-gallery-card__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .cp-gallery-card {
    width: 180px;
    height: 280px;
  }
  .cp-gallery-card__info {
    padding-top: min(60%, 150px);
  }
}

.earnings-sim {
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
  color: #0a0f1f;
}

.earnings-sim__inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
}

.earnings-sim__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.earnings-sim__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: #ff5f8f;
  margin-bottom: 0.75rem;
}

.earnings-sim__head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 0.8rem;
  padding: 15px 0px;
  color: #060914;
}

.earnings-sim__head p {
  color: rgba(6, 9, 20, 0.65);
  margin: 0;
}

.earnings-sim__controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.earnings-sim__control {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 1.4rem;
  column-gap: 1rem;
}

.earnings-sim__control label {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.earnings-sim__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #060914;
  margin: 0;
  justify-self: end;
}

.earnings-sim__control input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: transparent;
  height: 4px;
  grid-column: 1 / -1;
}

.earnings-sim__control input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(90deg, #ff5f8f, #ffb85f);
  border-radius: 999px;
}

.earnings-sim__control input[type="range"]::-moz-range-track {
  height: 6px;
  background: linear-gradient(90deg, #ff5f8f, #ffb85f);
  border-radius: 999px;
}

.earnings-sim__control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff5f8f;
  border: 3px solid #fff;
  margin-top: -7px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.earnings-sim__control input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff5f8f;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.earnings-sim__result {
  text-align: center;
}

.earnings-sim__result p {
  margin: 0.4rem 0;
  color: rgba(6, 9, 20, 0.75);
}

.earnings-sim__amount {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0a0f1f;
}

.earnings-sim__hint {
  font-size: 0.85rem;
  color: rgba(6, 9, 20, 0.65);
}

@media (max-width: 640px) {
  .earnings-sim__inner {
    padding: 2rem;
  }
}

.faq {
  padding: clamp(3rem, 6vw, 6rem) 1.5rem 5rem;
  background-color: #f0f1f5;
}

.faq__container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq__content {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.faq__headline {
  text-align: left;
}

.faq__title {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  margin: 0 0 1rem;
  color: #1d1206;
  font-weight: 700;
}

.faq__description {
  color: rgba(29, 18, 6, 0.7);
  margin: 0;
  max-width: 340px;
  line-height: 1.6;
}

.faq__cards {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq__card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  border: none;
  box-shadow: none;
}

.faq__card-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.65rem;
  background: transparent;
  border: none;
  color: #1d1206;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq__card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(29, 18, 6, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.faq__card-line {
  width: 12px;
  height: 2px;
  background: #1d1206;
  display: inline-block;
  position: absolute;
}

.faq__card-line--vertical {
  transform: rotate(90deg);
}

.faq__card-button[aria-expanded="true"] .faq__card-line--vertical {
  opacity: 0;
}

.faq__card-panel {
  margin: 0 1.65rem 1.2rem 1.65rem;
  color: rgba(29, 18, 6, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq__card-panel[hidden] {
  display: none;
}

.error_report {
  display: none;
  margin-top: 0.4rem;
  color: #ff4f5a;
  font-size: 0.85rem;
}

.search-bar {
  position: relative !important;
}

.hero-claim {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.65rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem;
  box-shadow: 0 10px 30px rgba(5, 5, 15, 0.08);
  width: min(520px, 100%);
  margin-top: 1.25rem;
}

.hero-claim__prefix {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #eef0f4;
  font-size: 0.9rem;
  color: #555;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hero-claim input {
  border: none;
  flex: 1 1 220px;
  min-width: 0;
  font-size: 1rem;
  padding: 0.4rem 0.6rem;
  background: transparent;
}

.hero-claim input:focus {
  outline: none;
}

.hero-claim__btn {
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4fd8, #ffb347);
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  white-space: nowrap;
  border: none;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.hero-claim__errors {
  width: min(520px, 100%);
  margin-top: 0.5rem;
}

.hero-claim__errors .error_report {
  margin-top: 0.35rem;
}

@media (max-width: 640px) {
  .hero-claim {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .hero-claim__prefix,
  .hero-claim input,
  .hero-claim__btn {
    width: 100%;
  }

  .hero-claim__btn {
    width: 100%;
  }
}


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

@media (max-width: 1024px) {
  .search-bar {
    flex: 0 1 100%;
    max-width: 520px;
  }

  .header-center {
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-center {
    width: 100%;
  }

  .header-actions__items {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(5, 5, 15, 0.12);
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .header-actions--open .header-actions__items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .search-bar {
    padding: 0.5rem 0.8rem;
  }
}


/* ============================================================
   DIZZY — COMPLETE CREATOR PLATFORM REDESIGN
   Premium black/white creator-platform aesthetic
   ============================================================ */
:root{
  --dz-black:#050505;
  --dz-ink:#111111;
  --dz-text:#181818;
  --dz-muted:#6b6b6b;
  --dz-line:#e9e9e9;
  --dz-soft:#f7f7f7;
  --dz-card:#fff;
  --dz-accent:#00aff0;
  --dz-accent-dark:#0095ce;
  --dz-radius:14px;
  --dz-shadow:0 8px 30px rgba(0,0,0,.07);
}

html{scroll-behavior:smooth}
body{background:#fff!important;color:var(--dz-text)!important;font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif!important}
.landing-two-page{background:#fff!important;color:var(--dz-text)!important}
.landing-two-page *{box-sizing:border-box}
.landing-two-page a{text-decoration:none!important}

/* HEADER — minimal creator platform */
.site-header{
  height:68px!important;
  padding:0 28px!important;
  background:rgba(255,255,255,.96)!important;
  border-bottom:1px solid var(--dz-line)!important;
  box-shadow:0 1px 10px rgba(0,0,0,.025)!important;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  position:sticky!important;
  top:0!important;
  z-index:100!important;
}
.site-header::before{display:none!important}
.site-header .logo{width:42px!important;height:42px!important}
.header-center{justify-content:center!important}
.search-bar{
  flex:0 1 390px!important;
  height:42px;
  background:#f4f4f4!important;
  border:1px solid transparent!important;
  border-radius:999px!important;
  padding:0 17px!important;
}
.search-bar:focus-within{background:#fff!important;border-color:#d9d9d9!important;box-shadow:0 0 0 3px rgba(0,0,0,.035)}
.search-bar input{font-size:14px!important;color:#111!important}
.header-actions__items{gap:8px!important}
.btn{font-size:14px!important;font-weight:700!important;padding:10px 20px!important;border-radius:999px!important;min-height:42px}
.btn.login{border:1px solid #d9d9d9!important;background:#fff!important;color:#111!important}
.btn.login:hover{background:#f5f5f5!important;border-color:#cfcfcf!important}
.btn.signup{background:var(--dz-black)!important;color:#fff!important;border:1px solid var(--dz-black)!important}
.btn.signup:hover{background:#222!important}

/* HERO — clean split layout */
.hero-wrapper{
  min-height:calc(100vh - 68px)!important;
  padding:70px 28px 80px!important;
  background:#fff!important;
  overflow:hidden!important;
}
.hero-wrapper::before,.hero-wrapper::after{display:none!important}
.hero{
  width:min(1180px,100%)!important;
  grid-template-columns:minmax(0,1fr) minmax(430px,.92fr)!important;
  gap:80px!important;
  padding:0!important;
  align-items:center!important;
}
.hero-text{max-width:610px!important}
.hero-text .tagline{
  display:inline-flex;
  margin:0 0 18px!important;
  color:#777!important;
  font-size:12px!important;
  font-weight:800!important;
  text-transform:uppercase;
  letter-spacing:.22em!important;
}
.hero-text h1{
  margin:0!important;
  color:#080808!important;
  font-size:clamp(3.2rem,6vw,5.8rem)!important;
  line-height:.98!important;
  letter-spacing:-.065em!important;
  font-weight:800!important;
}
.hero-text .lede{
  max-width:560px!important;
  margin:24px 0 0!important;
  color:#626262!important;
  font-size:18px!important;
  line-height:1.65!important;
}
.hero-claim{
  width:min(560px,100%)!important;
  margin-top:30px!important;
  padding:5px!important;
  background:#f5f5f5!important;
  border:1px solid #e8e8e8!important;
  border-radius:999px!important;
  box-shadow:none!important;
}
.hero-claim__prefix{background:#fff!important;color:#555!important;border:1px solid #e8e8e8!important}
.hero-claim input{color:#111!important}
.hero-claim__btn{background:var(--dz-accent)!important;border-radius:999px!important;font-weight:750!important}
.hero-claim__btn:hover{background:var(--dz-accent-dark)!important}

/* Hero creator cards */
.hero-cards{
  min-height:560px!important;
  position:relative!important;
}
.hero-cards .card{
  width:300px!important;
  height:470px!important;
  border-radius:18px!important;
  border:1px solid #e7e7e7!important;
  background:#fff!important;
  box-shadow:0 22px 60px rgba(0,0,0,.15)!important;
  overflow:hidden!important;
}
.hero-cards .card--front{transform:translate(-4%,0)!important;z-index:3}
.hero-cards .card--right{transform:rotate(7deg) translate(23%,1%)!important;z-index:2}
.hero-cards .card--back{transform:rotate(-7deg) translate(-25%,2%)!important;z-index:1}
.hero-cards .card-image{height:345px!important;object-fit:cover!important}
.hero-cards .card-body{padding:16px!important}
.hero-cards .card-title{font-size:15px!important;color:#111!important;font-weight:800!important}
.hero-cards .card-artist{font-size:12px!important;color:#777!important}
.hero-cards .card-footer{border-top:1px solid #eee!important;color:#777!important;padding:12px 16px!important}
.hero-cards .floating-label{background:#fff!important;color:#222!important;border:1px solid #e7e7e7!important;border-radius:999px!important;box-shadow:0 8px 25px rgba(0,0,0,.08)!important;font-size:11px!important;font-weight:700!important;padding:9px 13px!important}

/* Features */
.features{max-width:1180px!important;padding:90px 24px!important;margin:0 auto!important;background:#fff!important;border-radius:0!important}
.features-header{gap:8px!important}
.features-header .eyebrow{color:#888!important;letter-spacing:.2em!important;font-size:11px!important;font-weight:800!important}
.features-header h2{font-size:clamp(2rem,4vw,3rem)!important;letter-spacing:-.04em!important;color:#0b0b0b!important}
.features-header .subtitle{color:#777!important}
.feature-panels{height:480px!important;gap:10px!important}
.feature-panel{border-radius:18px!important;flex-basis:70px!important;min-width:70px!important}
.feature-panel.active{flex:1!important}
.feature-panel .shadow{background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,.78) 100%)!important}
.feature-panel .feature-label{padding:20px!important}

/* Spotlight */
.movement-blurb{
  max-width:1180px!important;
  margin:0 auto!important;
  padding:100px 24px!important;
  border-top:1px solid var(--dz-line)!important;
  border-bottom:1px solid var(--dz-line)!important;
  background:#fff!important;
}
.movement-blurb__title{color:#888!important;font-size:11px!important;font-weight:800!important;letter-spacing:.2em!important;text-transform:uppercase}
.movement-blurb__headline{color:#090909!important;font-size:clamp(2.5rem,5vw,4.8rem)!important;line-height:1!important;letter-spacing:-.055em!important;font-weight:800!important}
.movement-blurb__text{color:#666!important;max-width:600px!important}
.movement-blurb__btn{display:inline-flex!important;background:#050505!important;color:#fff!important;border-radius:999px!important;padding:13px 22px!important;font-weight:750!important;margin-top:12px}

/* Creator gallery */
.cp-gallery{padding:95px 0!important;background:#f7f7f7!important;overflow:hidden!important}
.cp-gallery-intro{max-width:1180px!important;margin:0 auto 30px!important;padding:0 24px!important}
.cp-gallery-intro h2{font-size:clamp(2rem,4vw,3rem)!important;color:#090909!important;letter-spacing:-.045em!important}
.cp-gallery-intro p{color:#777!important}
.cp-gallery-card{width:255px!important;height:390px!important;border-radius:16px!important;background:#111!important;box-shadow:0 12px 35px rgba(0,0,0,.12)!important}
.cp-gallery-card__info{background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.92) 100%)!important}
.cp-gallery-card__button{background:#fff!important;color:#050505!important}
.cp-gallery-card__badge{background:var(--dz-accent)!important}

/* Earnings */
.earnings-sim{padding:100px 24px!important;background:#fff!important}
.earnings-sim__inner{max-width:980px!important;border:1px solid var(--dz-line)!important;border-radius:20px!important;padding:48px!important;box-shadow:var(--dz-shadow)!important}
.earnings-sim__eyebrow{color:#777!important;font-weight:800!important;letter-spacing:.18em!important}
.earnings-sim__head h2{color:#0a0a0a!important;font-size:clamp(2rem,4vw,3rem)!important;letter-spacing:-.04em!important}
.earnings-sim__control input[type=range]::-webkit-slider-runnable-track{background:#111!important}
.earnings-sim__control input[type=range]::-moz-range-track{background:#111!important}
.earnings-sim__control input[type=range]::-webkit-slider-thumb{background:var(--dz-accent)!important}
.earnings-sim__control input[type=range]::-moz-range-thumb{background:var(--dz-accent)!important}
.earnings-sim__amount{color:#111!important}

/* FAQ */
.faq{padding:100px 24px 110px!important;background:#f7f7f7!important}
.faq__container{max-width:1100px!important}
.faq__title{color:#090909!important;letter-spacing:-.045em!important}
.faq__description{color:#707070!important}
.faq__card{background:#fff!important;border:1px solid #e7e7e7!important;border-radius:14px!important;overflow:hidden}
.faq__card-button{color:#111!important}
.faq__card-icon{border-color:#ccc!important}
.faq__card-line{background:#111!important}
.faq__card-panel{color:#666!important}

/* ============================================================
   LOGIN MODAL — actual structure used by Dizzy
   ============================================================ */
.i_modal_bg{background:rgba(0,0,0,.72)!important;backdrop-filter:blur(14px)!important;-webkit-backdrop-filter:blur(14px)!important;padding:20px!important}
.i_modal_bg .i_modal_in{
  width:min(900px,96vw)!important;
  max-width:900px!important;
  display:grid!important;
  grid-template-columns:43% 57%!important;
  background:#fff!important;
  border-radius:18px!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.15)!important;
  box-shadow:0 35px 100px rgba(0,0,0,.35)!important;
}
.i_modal_bg .i_modal_content{min-width:0!important;width:100%!important;background:#fff!important;padding:0!important}
.i_modal_bg .dz-login-brand{display:flex;grid-column:1;grid-row:1;min-height:620px;padding:42px;position:relative;overflow:hidden;background:#050505;color:#fff;flex-direction:column;justify-content:space-between}
.i_modal_bg .dz-login-brand::before{content:"";position:absolute;width:300px;height:300px;border-radius:50%;right:-130px;top:-100px;background:rgba(0,175,240,.24);filter:blur(5px)}
.i_modal_bg .dz-login-brand::after{content:"";position:absolute;width:220px;height:220px;border-radius:50%;left:-100px;bottom:-90px;background:rgba(0,175,240,.16);filter:blur(2px)}
.dz-login-brand__logo{font-size:25px;font-weight:850;letter-spacing:-.04em;position:relative;z-index:2}
.dz-login-brand__logo span{color:var(--dz-accent)}
.dz-login-brand__content{position:relative;z-index:2}
.dz-login-brand__content h2{font-size:42px;line-height:1.02;letter-spacing:-.05em;margin:0 0 18px;color:#fff;font-weight:800}
.dz-login-brand__content p{margin:0;color:rgba(255,255,255,.68);font-size:14px;line-height:1.7;max-width:310px}
.dz-login-brand__features{position:relative;z-index:2;display:flex;flex-direction:column;gap:11px}
.dz-login-brand__features div{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.82);font-size:12px}
.dz-login-brand__features i{width:7px;height:7px;border-radius:50%;background:var(--dz-accent);box-shadow:0 0 0 5px rgba(0,175,240,.12)}
.i_modal_bg .i_modal_in .i_modal_content{grid-column:2;grid-row:1}
.i_modal_bg .i_login_box_header{padding:46px 48px 20px!important;display:block!important}
.i_modal_bg .i_login_box_wellcome_icon{display:none!important}
.i_modal_bg .i_welcome_back{padding:0!important}
.i_modal_bg .i_lBack{font-size:30px!important;font-weight:800!important;letter-spacing:-.035em!important;color:#101010!important}
.i_modal_bg .i_lnot{font-size:13px!important;color:#777!important;padding-top:7px!important}
.i_modal_bg .i_modal_social_login_content .login-title{font-size:10px!important;color:#999!important;letter-spacing:.12em!important;margin:12px 48px 0!important}
.i_modal_bg .i_modal_social_login_content .login-title>span{padding:0 12px!important;background:#fff!important}
.i_modal_bg .i_modal_social_login_content .i_social-btns{padding:14px 42px 7px!important;gap:8px}
.i_modal_bg .i_modal_social_login_content .i_social-btns>div{padding:0 4px!important}
.i_modal_bg .i_modal_social_login_content .i_social-btns>div a{min-height:44px!important;border-radius:9px!important;padding:10px!important}
.i_modal_bg .i_warns{padding:0 48px!important}
.i_modal_bg .i_direct_login{padding:10px 48px 5px!important;background:#fff!important}
.i_modal_bg .form_group{padding:7px 0!important}
.i_modal_bg .form_label{font-size:11px!important;font-weight:750!important;color:#3e3e3e!important;margin-bottom:7px!important}
.i_modal_bg .form-control{border:0!important;background:transparent!important;padding:0!important}
.i_modal_bg .form-control input{width:100%!important;height:50px!important;padding:0 14px!important;border:1px solid #dedede!important;border-radius:9px!important;background:#fafafa!important;color:#111!important;font-size:14px!important;outline:none!important}
.i_modal_bg .form-control input:focus{background:#fff!important;border-color:var(--dz-accent)!important;box-shadow:0 0 0 3px rgba(0,175,240,.09)!important}
.i_modal_bg .i_login_button{margin-top:10px!important;background:var(--dz-accent)!important;border-radius:9px!important;box-shadow:none!important}
.i_modal_bg .i_login_button:hover{background:var(--dz-accent-dark)!important;box-shadow:0 8px 22px rgba(0,175,240,.22)!important}
.i_modal_bg .i_login_button button{height:52px!important;padding:0 10px!important;font-weight:800!important;font-size:14px!important}
.i_modal_bg .i_l_footer{padding:20px 48px 32px!important;background:#fff!important;border:0!important;color:#777!important;font-size:12px!important}
.i_modal_bg .i_l_footer a{color:var(--dz-accent)!important;font-size:12px!important;padding:0 5px!important}
.i_modal_bg .password-reset{position:absolute!important;bottom:22px!important;right:48px!important;width:auto!important;margin:0!important;color:#777!important;font-size:11px!important;font-weight:600!important}
.i_modal_bg .password-reset:hover{color:var(--dz-accent)!important}
.i_modal_bg .i_modal_close{right:12px!important;top:12px!important;width:34px!important;height:34px!important;padding:8px!important;background:rgba(255,255,255,.8)!important;border-radius:50%!important}
.i_modal_bg .i_modal_close svg{fill:#333!important;width:15px!important;height:15px!important}
.i_modal_bg .i_error{border-radius:8px!important;background:#fff0f1!important;color:#d33!important;padding:10px 12px!important}

/* Forgot-password screen */
.i_modal_bg .i_modal_forgot{grid-column:2;grid-row:1;border-radius:0!important;box-shadow:none!important}
.i_modal_bg .i_modal_forgot .i_modal_content{padding:0!important}
.i_modal_bg .i_modal_forgot .i_login_box_header{padding:46px 48px 20px!important}
.i_modal_bg .i_modal_forgot .i_direct_login{padding:10px 48px 20px!important}
.i_modal_bg .i_modal_forgot .i_l_footer{padding:20px 48px 30px!important}

/* Footer */
.footer_container_out{background:#fff!important;border-top:1px solid #eee!important}

/* Responsive */
@media(max-width:900px){
  .hero{grid-template-columns:1fr!important;gap:45px!important;text-align:center!important}
  .hero-text{margin:0 auto!important}
  .hero-text .lede{margin-left:auto!important;margin-right:auto!important}
  .hero-claim{margin-left:auto!important;margin-right:auto!important}
  .hero-cards{min-height:500px!important;max-width:650px!important;margin:0 auto!important;width:100%!important}
  .hero-cards .card{width:270px!important;height:430px!important}
  .i_modal_bg .i_modal_in{grid-template-columns:1fr!important;width:min(520px,96vw)!important}
  .i_modal_bg .dz-login-brand{display:none!important}
  .i_modal_bg .i_modal_content{grid-column:1!important}
  .i_modal_bg .i_modal_forgot{grid-column:1!important}
}
@media(max-width:620px){
  .site-header{height:62px!important;padding:0 12px!important}
  .header-center{display:none!important}
  .btn{padding:9px 14px!important;font-size:12px!important}
  .hero-wrapper{min-height:auto!important;padding:58px 16px 65px!important}
  .hero-text h1{font-size:3.25rem!important}
  .hero-text .lede{font-size:15px!important}
  .hero-claim{border-radius:18px!important;flex-wrap:wrap!important;background:#f4f4f4!important;padding:8px!important}
  .hero-claim__prefix,.hero-claim input,.hero-claim__btn{width:100%!important}
  .hero-claim__prefix{border-radius:10px!important}
  .hero-claim__btn{min-height:46px!important}
  .hero-cards{min-height:390px!important;transform:scale(.78)!important;transform-origin:top center!important;margin-bottom:-80px!important}
  .features{padding:70px 14px!important}
  .feature-panels{height:390px!important}
  .movement-blurb{padding:70px 18px!important}
  .cp-gallery{padding:70px 0!important}
  .cp-gallery-card{width:220px!important;height:340px!important}
  .earnings-sim{padding:70px 14px!important}
  .earnings-sim__inner{padding:28px 20px!important}
  .faq{padding:70px 14px!important}
  .i_modal_bg{padding:8px!important}
  .i_modal_bg .i_modal_in{width:100%!important;border-radius:14px!important}
  .i_modal_bg .i_login_box_header{padding:38px 24px 14px!important}
  .i_modal_bg .i_direct_login{padding:10px 24px!important}
  .i_modal_bg .i_warns{padding:0 24px!important}
  .i_modal_bg .i_modal_social_login_content .i_social-btns{padding:12px 18px 6px!important}
  .i_modal_bg .i_modal_social_login_content .login-title{margin-left:24px!important;margin-right:24px!important}
  .i_modal_bg .i_l_footer{padding:16px 24px 28px!important}
  .i_modal_bg .password-reset{right:24px!important}
}



/* ============================================================
   DIZZY — CONVERSION HOME + SIGNUP V2
   ============================================================ */

:root{
  --dz-brand:#00aff0;
  --dz-brand-2:#007fba;
  --dz-ink:#0f1115;
  --dz-text:#1b2026;
  --dz-muted:#6c7480;
  --dz-bg:#f6f8fa;
  --dz-card:#fff;
  --dz-line:#e5e9ed;
  --dz-radius:18px;
}

/* HOME: stronger visual hierarchy */
body{
  background:var(--dz-bg) !important;
  color:var(--dz-text);
}
.hero-wrapper{
  min-height:calc(100vh - 72px) !important;
  padding:55px 24px 40px !important;
  background:
    radial-gradient(circle at 12% 12%,rgba(0,175,240,.16),transparent 28%),
    radial-gradient(circle at 88% 75%,rgba(0,175,240,.10),transparent 28%),
    linear-gradient(180deg,#fff 0%,#f7f9fb 100%) !important;
}
.hero{
  width:min(1280px,100%) !important;
  grid-template-columns:minmax(0,1fr) minmax(480px,.95fr) !important;
  gap:65px !important;
  align-items:center !important;
}
.hero-text h1{
  font-size:clamp(3.2rem,5.8vw,6.2rem) !important;
  line-height:.94 !important;
  letter-spacing:-.065em !important;
  font-weight:850 !important;
  color:var(--dz-ink) !important;
}
.hero-text h1 strong,
.hero-text h1 span{
  color:var(--dz-brand) !important;
}
.hero-text .lede{
  font-size:1.15rem !important;
  max-width:610px;
  line-height:1.7 !important;
}
.hero-text .tagline{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 13px;
  border-radius:999px;
  background:rgba(0,175,240,.09);
  border:1px solid rgba(0,175,240,.16);
  color:var(--dz-brand) !important;
}
.hero-text .tagline::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:var(--dz-brand);
  box-shadow:0 0 0 4px rgba(0,175,240,.12);
}

/* Strong CTA */
.hero-text .cta,
.hero-text .btn,
.hero-text a[class*="btn"]{
  border-radius:999px !important;
  min-height:52px;
  padding:0 25px !important;
  font-weight:800 !important;
  background:var(--dz-brand) !important;
  box-shadow:0 12px 28px rgba(0,175,240,.22);
  transition:.22s ease;
}
.hero-text .cta:hover,
.hero-text .btn:hover,
.hero-text a[class*="btn"]:hover{
  transform:translateY(-2px);
  background:var(--dz-brand-2) !important;
  box-shadow:0 16px 34px rgba(0,175,240,.28);
}

/* Creator cards: compact and dense */
.hero-cards{
  min-height:500px !important;
}
.hero-cards .card{
  border-radius:22px !important;
  border:1px solid rgba(15,25,35,.09) !important;
  box-shadow:0 22px 70px rgba(15,25,35,.15) !important;
}

/* ============================================================
   CREATOR ROWS — 8 PER ROW + HORIZONTAL AUTO SCROLL
   ============================================================ */

/* Common grids from the original theme */
.creators-grid,
.creator-list,
.models-grid,
.users-grid,
.suggested-creators,
.creator-cards{
  display:grid !important;
  grid-template-columns:repeat(8,minmax(0,1fr)) !important;
  gap:12px !important;
}

/* When the container is a carousel, keep eight compact cards visible */
.creator-row,
.creator-carousel,
.creators-carousel,
.horizontal-creators{
  display:flex !important;
  gap:12px !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  padding:6px 2px 14px !important;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.creator-row::-webkit-scrollbar,
.creator-carousel::-webkit-scrollbar,
.creators-carousel::-webkit-scrollbar,
.horizontal-creators::-webkit-scrollbar{
  display:none;
}
.creator-row > *,
.creator-carousel > *,
.creators-carousel > *,
.horizontal-creators > *{
  flex:0 0 calc((100% - 84px)/8) !important;
  min-width:0 !important;
}

/* Compact creator card */
.creator-card,
.user-card,
.model-card,
.profile-card{
  border-radius:14px !important;
  box-shadow:0 3px 14px rgba(15,25,35,.055) !important;
  border:1px solid var(--dz-line) !important;
  overflow:hidden;
}
.creator-card:hover,
.user-card:hover,
.model-card:hover,
.profile-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(15,25,35,.11) !important;
}
.creator-card .cover,
.user-card .cover,
.profile-card .cover,
.creator-cover{
  aspect-ratio:3/4 !important;
}
.creator-card .creator-avatar,
.user-card .user-avatar,
.profile-card .profile-avatar{
  top:auto !important;
  bottom:55px !important;
  width:48px !important;
  height:48px !important;
}
.creator-info,
.user-info,
.profile-info{
  padding:37px 10px 11px !important;
}
.creator-name,
.user-name,
.profile-name{
  font-size:12px !important;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.creator-username,
.username{
  font-size:10px !important;
}
.creator-description,
.profile-description{
  display:none !important;
}
.creator-card .btn-primary,
.creator-card .follow-btn,
.creator-card .subscribe-btn,
.user-card .btn-primary,
.user-card .follow-btn,
.user-card .subscribe-btn{
  font-size:10px !important;
  padding:7px 9px !important;
}

/* ============================================================
   SIGNUP — PREMIUM PROFESSIONAL
   ============================================================ */

.i_signup,
.signup-page,
.register-page{
  background:
    radial-gradient(circle at 10% 10%,rgba(0,175,240,.15),transparent 25%),
    radial-gradient(circle at 90% 90%,rgba(0,175,240,.10),transparent 25%),
    #f7f9fb !important;
}
.i_signup .signup-box,
.signup-page .signup-box,
.register-page .register-box{
  width:min(960px,94vw) !important;
  border-radius:24px !important;
  overflow:hidden;
  border:1px solid rgba(15,25,35,.08);
  box-shadow:0 30px 90px rgba(15,25,35,.14) !important;
  background:#fff !important;
}
.signup-box::before,
.register-box::before{
  content:"";
  display:block;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.20),transparent 20%),
    linear-gradient(145deg,#00aff0,#0079b0);
}
.signup-box .form,
.register-box .form{
  padding:38px !important;
}
.signup-box h1,
.register-box h1{
  font-size:34px !important;
  font-weight:850 !important;
  letter-spacing:-.04em;
}
.signup-box input,
.register-box input{
  height:52px !important;
  border:1px solid #dfe4e8 !important;
  border-radius:12px !important;
  background:#fafbfc !important;
  transition:.2s ease;
}
.signup-box input:focus,
.register-box input:focus{
  background:#fff !important;
  border-color:var(--dz-brand) !important;
  box-shadow:0 0 0 4px rgba(0,175,240,.09) !important;
}
.signup-box button,
.register-box button{
  min-height:52px !important;
  border:0 !important;
  border-radius:12px !important;
  background:var(--dz-brand) !important;
  color:#fff !important;
  font-weight:800 !important;
  box-shadow:0 10px 24px rgba(0,175,240,.2);
  transition:.22s ease;
}
.signup-box button:hover,
.register-box button:hover{
  transform:translateY(-2px);
  background:var(--dz-brand-2) !important;
}

/* Generic signup selectors used by Dizzy variants */
.i_register_form input,
.i_signup_form input{
  min-height:50px;
  border-radius:11px !important;
  background:#fafbfc !important;
}
.i_register_form input:focus,
.i_signup_form input:focus{
  border-color:rgba(0,175,240,.6) !important;
  box-shadow:0 0 0 4px rgba(0,175,240,.08) !important;
}
.i_register_form button,
.i_signup_form button{
  min-height:50px;
  border-radius:11px !important;
  background:var(--dz-brand) !important;
  font-weight:800 !important;
}

/* Feature heading if present: hide exactly as requested */
.home-features-title,
.features-title,
.community-features-title{
  display:none !important;
}

/* Responsive */
@media(max-width:1200px){
  .creators-grid,
  .creator-list,
  .models-grid,
  .users-grid,
  .suggested-creators,
  .creator-cards{
    grid-template-columns:repeat(6,minmax(0,1fr)) !important;
  }
  .creator-row > *,
  .creator-carousel > *,
  .creators-carousel > *,
  .horizontal-creators > *{
    flex-basis:calc((100% - 60px)/6) !important;
  }
}
@media(max-width:900px){
  .hero{
    grid-template-columns:1fr !important;
    text-align:center;
  }
  .hero-text{margin:auto;}
  .hero-text .lede{margin-left:auto;margin-right:auto;}
  .creators-grid,
  .creator-list,
  .models-grid,
  .users-grid,
  .suggested-creators,
  .creator-cards{
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  }
  .creator-row > *,
  .creator-carousel > *,
  .creators-carousel > *,
  .horizontal-creators > *{
    flex-basis:calc((100% - 36px)/4) !important;
  }
  .signup-box,
  .register-box{
    grid-template-columns:1fr !important;
  }
  .signup-box::before,
  .register-box::before{
    display:none !important;
  }
}
@media(max-width:560px){
  .hero-text h1{font-size:3.1rem !important;}
  .hero-cards{transform:scale(.84);margin:-30px 0;}
  .creators-grid,
  .creator-list,
  .models-grid,
  .users-grid,
  .suggested-creators,
  .creator-cards{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  .creator-row > *,
  .creator-carousel > *,
  .creators-carousel > *,
  .horizontal-creators > *{
    flex-basis:calc((100% - 12px)/2) !important;
  }
  .signup-box .form,
  .register-box .form{padding:24px !important;}
}
