: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;
  }
}
