/**
 * Sell page — Hume AI style (hume.ai)
 * Clean, minimal, light backgrounds, icon + tag + title pattern.
 */

/* ===== Hume base — light background, refined typography ===== */
.sell-page {
  background: #fafafa;
}

.sell-page .section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ===== Header — transparent over hero at top, white after scroll ===== */
.sell-page .site-header--hero {
  background: transparent;
}

/* Logo default color at top (no filter) */
.sell-page .site-header--hero .logo-link img {
  filter: none;
}

/* Header actions — blue */
.sell-page .site-header--hero .site-header__catalog {
  color: #2563eb;
}

.sell-page .site-header--hero .site-header__catalog:hover {
  color: #1d4ed8;
  opacity: 1;
}

.sell-page .site-header--hero .btn-primary-nav {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff !important;
}

.sell-page .site-header--hero .btn-primary-nav:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

/* Header becomes white after scroll */
.sell-page .site-header--hero.site-header--scrolled {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sell-page .site-header--hero.site-header--scrolled .logo-link img {
  filter: none;
}

/* Hero extends behind header so blue shows through */
.sell-page .sell-hero--gradient {
  margin-top: -72px;
  padding-top: 72px;
}

/* ===== Hero — Animated blue gradient (tars.pro style) ===== */
.sell-page .sell-hero--gradient {
  position: relative;
  background: transparent;
  overflow: hidden;
}

.sell-page .sell-hero__gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(59, 130, 246, 0.08) 0%, rgba(29, 78, 216, 0.04) 40%, transparent 70%),
    radial-gradient(ellipse 90% 70% at 30% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 70% 60%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fafafa 0%, #f8fafc 25%, #f1f5f9 55%, #f0f9ff 85%, #e0f2fe 100%);
  animation: sell-hero-gradient 14s ease-in-out infinite alternate;
}

@keyframes sell-hero-gradient {
  0% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.03) translate(1%, 0.5%); }
  66% { transform: scale(1.01) translate(-0.5%, 1%); }
  100% { transform: scale(1.02) translate(0, 0); }
}

.sell-page .sell-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.14) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 65%);
  pointer-events: none;
}

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

.sell-page .sell-hero .hero-realm__tag {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.4);
}

.sell-page .sell-hero .hero-realm__title {
  color: #0f172a;
}

.sell-page .sell-hero .hero-realm__sub {
  color: #475569;
}

/* ===== Trust block — standalone section (outside hero) ===== */
.sell-page .sell-trust {
  background: #fafafa;
  padding-top: 64px;
  padding-bottom: 64px;
}

.sell-page .sell-trust__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.sell-page .sell-trust .buy-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.sell-page .buy-trust__card {
  border-radius: 12px;
  padding: 24px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Metric cards — white background, Hume-style shadow */
.sell-page .buy-trust__card--metric {
  background: #ffffff;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  justify-content: space-between;
  align-items: flex-start;
}

.sell-page .buy-trust__metric {
  display: block;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}

.sell-page .buy-trust__label {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.4;
}

/* Testimonial cards — blue gradient with subtle pattern */
.sell-page .buy-trust__card--testimonial {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
}

.sell-page .buy-trust__card--testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.sell-page .buy-trust__card--testimonial .buy-trust__quote,
.sell-page .buy-trust__card--testimonial .buy-trust__attribution {
  position: relative;
  z-index: 1;
}

.sell-page .buy-trust__quote {
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
  margin: 0 0 12px;
  flex: 1;
}

.sell-page .buy-trust__attribution {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.sell-page .buy-trust__role {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .sell-page .sell-trust .buy-trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sell-page .sell-trust {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .sell-page .buy-trust__card {
    min-height: 120px;
    padding: 20px;
  }
}

/* ===== Blue colour scheme overrides (Sell page only) ===== */
.sell-page .btn-primary-nav {
  background: #2563eb;
}

.sell-page .btn-primary-nav:hover {
  background: #1d4ed8;
}

.sell-page .btn-hero--primary {
  background: #2563eb;
  border-color: #2563eb;
}

.sell-page .btn-hero--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.sell-page .btn-hero--secondary {
  border-color: #2563eb;
  color: #1e3a8a;
}

.sell-page .btn-hero--secondary:hover {
  background: #eff6ff;
  border-color: #3b82f6;
}

.sell-page .buy-chooser__blip {
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

/* ===== Hume-style chooser section ===== */
.sell-page .buy-chooser--hume {
  background: #fafafa;
}

.sell-page .buy-chooser--hume .buy-chooser__tag {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 16px;
}

.sell-page .buy-chooser--hume .buy-chooser__headline {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #0f172a;
}

.sell-page .buy-chooser--hume .buy-chooser__lead {
  font-size: 17px;
  line-height: 1.6;
  color: #64748b;
  max-width: 640px;
  margin: 0 0 28px;
}

/* ===== Stripe-style capabilities (content left, geometric pattern right) ===== */
.sell-page .buy-chooser--stripe {
  background: #fafafa;
}

.sell-page .buy-chooser__inner--stripe {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  text-align: left;
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
}

.sell-page .buy-chooser__content {
  padding: 48px 48px 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sell-page .buy-chooser__capabilities-wrap {
  padding: 48px 56px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fafafa;
}

.sell-page .buy-chooser--stripe .buy-chooser__tag {
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.sell-page .buy-chooser--stripe .buy-chooser__headline {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #0f172a;
}

.sell-page .buy-chooser--stripe .buy-chooser__lead {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 28px;
  max-width: 480px;
}

.sell-page .buy-chooser__capabilities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sell-page .buy-chooser__capability {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sell-page .buy-chooser__capability-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.sell-page .buy-chooser__capability-icon svg {
  width: 20px;
  height: 20px;
}

.sell-page .buy-chooser__capability-content {
  flex: 1;
}

.sell-page .buy-chooser__capability-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.3;
}

.sell-page .buy-chooser__capability-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.sell-page .buy-chooser__cta--stripe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  background: #2563eb;
  color: #fff !important;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.sell-page .buy-chooser__cta--stripe:hover {
  background: #1d4ed8;
}

@media (max-width: 900px) {
  .sell-page .buy-chooser__inner--stripe {
    grid-template-columns: 1fr;
  }

  .sell-page .buy-chooser__content {
    padding: 40px 24px 32px;
  }

  .sell-page .buy-chooser__capabilities-wrap {
    padding: 32px 24px 40px;
  }
}

@media (max-width: 640px) {
  .sell-page .buy-chooser__capability {
    flex-direction: column;
    gap: 10px;
  }

  .sell-page .buy-chooser__capability-title {
    font-size: 15px;
  }
}

/* ===== Hume-style value stack ===== */
.sell-page .value-stack--hume {
  background: #fafafa;
}

.sell-page .value-stack--hume .value-stack__header {
  text-align: center;
  margin-bottom: 16px;
}

.sell-page .value-stack--hume .value-stack__tag {
  display: inline-block;
  margin-bottom: 12px;
}

.sell-page .value-stack--hume .value-stack__heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.sell-page .value-stack--hume .value-stack__sub {
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
  color: #64748b;
  text-align: center;
}

.sell-page .value-stack--hume .value-card--winden {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}

/* ===== Hume-style features ===== */
.sell-page .buy-features--hume {
  background: #fafafa;
}

.sell-page .buy-features--hume .value-stack__header {
  text-align: center;
  margin-bottom: 16px;
}

/* Same chip style as value-stack__tag */
.sell-page .buy-features--hume .buy-features__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 9999px;
  padding: 8px 18px;
  margin-bottom: 12px;
}

.sell-page .buy-features--hume .buy-features__headline {
  margin-bottom: 16px;
}

.sell-page .buy-features--hume .buy-features__sub {
  text-align: center;
  color: #64748b;
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}

.sell-page .buy-features--hume .buy-features__card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sell-page .buy-chooser__headline-accent {
  color: #2563eb;
}

.sell-page .buy-tile__visual--official {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
}

.sell-page .value-stack__tag {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.4);
}

.sell-page .value-stack--benefits .value-card__icon--winden {
  color: #2563eb;
}

.sell-page .workflow--warp .workflow-warp__label {
  color: #1d4ed8;
}

.sell-page .buy-protection__tag {
  color: #3b82f6;
}

.sell-page .buy-protection__benefit-icon {
  background: rgba(37, 99, 235, 0.15);
  color: #2563eb;
}

.sell-page .buy-features__graphic--orange,
.sell-page .buy-features__graphic--teal {
  color: #2563eb;
}

.sell-page .buy-reviews__tag {
  color: #2563eb;
}

.sell-page .buy-reviews__featured-quote {
  color: #1e3a8a;
}

.sell-page .buy-faq__trigger:hover,
.sell-page .buy-faq__item--open .buy-faq__trigger {
  color: #2563eb;
}

.sell-page .buy-faq__trigger:focus-visible {
  outline-color: #2563eb;
}

.sell-page .buy-faq__icon {
  color: #2563eb;
}

.sell-page .buy-faq__item--open .buy-faq__icon {
  color: #2563eb;
}

.sell-page .your-move::before {
  background: linear-gradient(
    to bottom,
    rgba(37, 99, 235, 0) 0%,
    rgba(37, 99, 235, 0.2) 100%
  );
}

.sell-page .your-move__heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.sell-page .your-move__sub {
  font-size: 17px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 24px;
}

.sell-page .your-move__cta {
  background: #2563eb;
  border-color: #2563eb;
}

.sell-page .your-move__cta:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.sell-page .your-move__contact {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.5;
}

.sell-page .your-move__contact a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sell-page .your-move__contact a:hover {
  color: #1d4ed8;
}

.sell-page .buy-faq__answer a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sell-page .buy-faq__answer a:hover {
  color: #1d4ed8;
}

/* Hume-style: workflow, protection, reviews, FAQ */
.sell-page .workflow--warp {
  background: #fafafa;
}

.sell-page .buy-protection--banner {
  background: #fafafa;
}

.sell-page .buy-reviews {
  background: #fafafa;
}

.sell-page .buy-faq {
  background: #fafafa;
}

.sell-page .your-move {
  background: #fafafa;
}
