:root {
  --bg: #0f1115;
  --bg-soft: #161a21;
  --text: #f7f7f2;
  --muted: #b3bac7;
  --ember: #ff6b35;
  --mint: #2ec4b6;
  --sand: #ffbf69;
  --line: #2b3140;
  --radius: 16px;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(70% 40% at 15% 0%, rgba(255, 107, 53, 0.22) 0%, rgba(255, 107, 53, 0) 70%),
    radial-gradient(50% 35% at 95% 15%, rgba(46, 196, 182, 0.16) 0%, rgba(46, 196, 182, 0) 70%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.is-hidden {
  display: none !important;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 1.2rem 0;
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--sand);
  margin-bottom: 0.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background-color: rgba(15, 17, 21, 0.72);
  border-bottom: 1px solid rgba(43, 49, 64, 0.5);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 0;
}

.brand {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--ember);
}

.main-nav {
  display: flex;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--text);
}

.mobile-nav {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0.4rem 0 0.8rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.68rem 1.05rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(110deg, var(--ember), #ff8a5b);
  color: #101218;
  border: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn.pro-cta-inline,
.pro-cta-inline {
  margin-top: 0.6rem;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  background:
    linear-gradient(150deg, rgba(255, 107, 53, 0.12), transparent 35%),
    var(--bg-soft);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.trend-strip {
  padding-top: 0.2rem;
}

.trend-wrap {
  border: 1px solid rgba(46, 196, 182, 0.28);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  background:
    linear-gradient(145deg, rgba(46, 196, 182, 0.12), rgba(15, 17, 21, 0.08)),
    var(--bg-soft);
}

.trend-wrap .eyebrow {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.trend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trend-link {
  border: 1px solid rgba(255, 191, 105, 0.45);
  background: rgba(255, 191, 105, 0.08);
  color: #ffe3ba;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.83rem;
  font-weight: 600;
}

.trend-link:hover {
  border-color: rgba(255, 191, 105, 0.8);
  background: rgba(255, 191, 105, 0.16);
}

.quick-paths {
  padding-top: 1rem;
}

.quick-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quick-path-card {
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 107, 53, 0.11), rgba(15, 17, 21, 0.08)),
    var(--bg-soft);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.quick-path-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.14rem;
}

.quick-path-card p {
  margin: 0;
  color: var(--muted);
}

.quick-path-card .cta-row {
  margin-top: 0.95rem;
}

.ad-slot {
  border: 1px dashed rgba(255, 191, 105, 0.7);
  color: #ffe3ba;
  text-align: center;
  padding: 0.9rem;
  border-radius: 10px;
  background: rgba(255, 191, 105, 0.06);
  font-size: 0.9rem;
}

.ad-strip.is-hidden {
  display: none;
}

.content-hero-media {
  margin: 1.35rem 0 0;
}

.content-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border: 1px solid rgba(255, 191, 105, 0.22);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.content-ad {
  margin: 1.25rem 0;
}

.content-conversion-block {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.weekly-picks .lead {
  margin: 0.5rem 0 0;
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pick-card {
  border: 1px solid rgba(255, 191, 105, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 191, 105, 0.1), rgba(15, 17, 21, 0.16)),
    var(--bg-soft);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.pick-card h3 {
  margin: 0.45rem 0 0.35rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.pick-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.pick-card .btn {
  width: 100%;
}

.tool-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.tool-card h3 {
  margin: 0 0 0.3rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.tool-card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.gear-finder-links {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.gear-finder-links .btn {
  flex: 1 1 180px;
}

.gear-finder-checklist {
  margin: 0.72rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.gear-finder-checklist li {
  margin-bottom: 0.28rem;
}

.roi-links {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.roi-links .btn {
  flex: 1 1 180px;
}

.roi-plan-list {
  margin: 0.72rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.roi-plan-list li {
  margin-bottom: 0.28rem;
}

.tool-form {
  display: grid;
  gap: 0.55rem;
}

.tool-form label {
  color: #e9eef8;
  font-size: 0.84rem;
}

.tool-form .field-group {
  display: grid;
  gap: 0.4rem;
}

.tool-form select,
.tool-form input {
  width: 100%;
  border: 1px solid #394052;
  border-radius: 10px;
  padding: 0.58rem 0.7rem;
  background: #141821;
  color: var(--text);
}

.tool-form textarea {
  width: 100%;
  border: 1px solid #394052;
  border-radius: 10px;
  padding: 0.58rem 0.7rem;
  background: #141821;
  color: var(--text);
  resize: vertical;
}

.tool-form input[type="range"] {
  accent-color: var(--mint);
  padding: 0;
}

.token-box {
  border: 1px solid #3a4256;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.token-box summary {
  cursor: pointer;
  color: #cbe7ff;
  margin-bottom: 0.55rem;
}

.result {
  margin-top: 0.9rem;
  background: rgba(46, 196, 182, 0.1);
  border: 1px solid rgba(46, 196, 182, 0.35);
  border-radius: 10px;
  padding: 0.8rem;
  min-height: 66px;
  color: #d9fffb;
  font-size: 0.92rem;
}

.result.loading {
  border-color: rgba(255, 191, 105, 0.5);
  background: rgba(255, 191, 105, 0.12);
  color: #ffe6c0;
}

.result.error {
  border-color: rgba(255, 107, 107, 0.6);
  background: rgba(255, 107, 107, 0.14);
  color: #ffd1d1;
}

.result.success {
  border-color: rgba(46, 196, 182, 0.5);
}

.affiliate-link.is-disabled,
.affiliate-link.is-hidden {
  display: none;
}

.smart-reco {
  border: 1px solid rgba(46, 196, 182, 0.4);
  background:
    linear-gradient(145deg, rgba(46, 196, 182, 0.16), rgba(15, 17, 21, 0.08)),
    var(--bg-soft);
}

.smart-reco h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.smart-reco p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.smart-reco .btn {
  margin-bottom: 0.35rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.12), rgba(15, 17, 21, 0.15)), var(--bg-soft);
  padding: 1rem;
}

.partner-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.partner-card p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

.pro-strip {
  margin-top: 1.1rem;
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.15), rgba(15, 17, 21, 0.2));
  padding: 1rem;
}

.pro-strip h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.pro-strip p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.paypal-subscribe {
  max-width: 420px;
  margin-bottom: 0.7rem;
}

.paypal-subscribe.is-hidden {
  display: none !important;
}

.pro-waitlist {
  margin-top: 0.8rem;
  border: 1px dashed rgba(255, 191, 105, 0.45);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(255, 191, 105, 0.08);
}

.pro-waitlist-copy {
  margin: 0 0 0.6rem;
  color: #ffe1b3 !important;
}

.pro-waitlist-form {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.6rem;
}

.pro-waitlist-form label {
  grid-column: 1 / -1;
}

.pro-waitlist-form .btn {
  white-space: nowrap;
}

.pro-waitlist .result {
  margin-top: 0.6rem;
}

.deals-alert-card {
  border: 1px solid rgba(255, 191, 105, 0.35);
  background:
    linear-gradient(155deg, rgba(255, 191, 105, 0.12), rgba(15, 17, 21, 0.18)),
    var(--bg-soft);
}

.deals-alert-card h2 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
}

.deals-alert-card .tool-form {
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: end;
}

.deals-alert-card .tool-form label {
  font-size: 0.8rem;
}

.deals-alert-card .tool-form label[for="deals-alert-email"],
.deals-alert-card .tool-form label[for="deals-alert-interest"] {
  margin-bottom: -0.2rem;
}

.deals-alert-card .tool-form input,
.deals-alert-card .tool-form select {
  min-height: 42px;
}

.deals-alert-card .result {
  margin-top: 0.7rem;
}

.deal-meta {
  font-size: 0.83rem;
  color: #e6cda8;
}

.conversion-hub {
  border: 1px solid rgba(46, 196, 182, 0.38);
  background:
    linear-gradient(160deg, rgba(46, 196, 182, 0.12), rgba(15, 17, 21, 0.16)),
    var(--bg-soft);
}

.conversion-hub h2 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 3.1vw, 1.7rem);
}

.conversion-hub p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.conversion-grid .btn {
  width: 100%;
}

.conversion-affiliate-row {
  margin-top: 0.65rem;
}

.conversion-picks-head {
  margin-top: 0.72rem;
  margin-bottom: 0.48rem;
}

.conversion-picks-head h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: #fff0cf;
  font-size: 1rem;
}

.conversion-picks-head p {
  margin: 0.3rem 0 0;
  color: #f1d9b4;
  font-size: 0.86rem;
}

.conversion-picks {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.conversion-pick {
  border: 1px solid rgba(255, 191, 105, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(150deg, rgba(255, 191, 105, 0.1), rgba(15, 17, 21, 0.12)),
    var(--bg-soft);
  padding: 0.72rem;
  display: grid;
  gap: 0.45rem;
}

.conversion-pick h3 {
  margin: 0;
  color: #fff3dd;
  font-size: 0.95rem;
  line-height: 1.35;
}

.conversion-pick .btn {
  width: 100%;
}

.conversion-meta {
  margin-top: 0.65rem;
}

.conversion-chip-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.conversion-chip-link {
  border: 1px solid rgba(255, 191, 105, 0.45);
  background: rgba(255, 191, 105, 0.08);
  color: #ffe3ba;
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  font-size: 0.81rem;
  font-weight: 600;
}

.conversion-chip-link:hover {
  border-color: rgba(255, 191, 105, 0.8);
  background: rgba(255, 191, 105, 0.16);
}

.top-deals-today {
  border: 1px solid rgba(255, 191, 105, 0.35);
  background:
    radial-gradient(90% 110% at 8% 0%, rgba(255, 107, 53, 0.16), rgba(255, 107, 53, 0) 68%),
    radial-gradient(90% 110% at 100% 100%, rgba(46, 196, 182, 0.16), rgba(46, 196, 182, 0) 72%),
    var(--bg-soft);
}

.top-deals-today > p {
  margin-top: 0.55rem;
  margin-bottom: 1.05rem;
  color: var(--muted);
}

.top-deals-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.top-deals-status {
  border-color: rgba(46, 196, 182, 0.45);
  color: #bffff8;
  background: rgba(46, 196, 182, 0.14);
}

.top-deals-status.is-24h {
  border-color: rgba(255, 191, 105, 0.5);
  color: #ffe8c1;
  background: rgba(255, 191, 105, 0.14);
}

.top-deals-date {
  font-size: 0.82rem;
  color: #e5f7f4;
  opacity: 0.95;
}

.top-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.top-deal-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 0.95rem;
  background: rgba(12, 14, 19, 0.72);
}

.top-deal-card h3 {
  margin: 0.55rem 0 0.45rem;
  font-size: 1.02rem;
}

.top-deal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.top-deal-metric {
  margin-top: 0.58rem !important;
  color: #d6fff6 !important;
  font-size: 0.8rem !important;
  font-weight: 600;
}

.top-deal-card .cta-row {
  margin-top: 0.8rem;
}

.top-deal-card .cta-row .btn {
  flex: 1 1 100%;
}

.related-content-widget {
  border: 1px solid rgba(255, 191, 105, 0.35);
  background:
    linear-gradient(160deg, rgba(255, 191, 105, 0.1), rgba(15, 17, 21, 0.14)),
    var(--bg-soft);
}

.related-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.related-content-link p {
  margin-top: 0.35rem;
}

.deal-item {
  display: grid;
  gap: 0.7rem;
}

.deal-item h3 {
  margin: 0;
}

.deal-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 191, 105, 0.45);
  color: #ffe2b7;
  background: rgba(255, 191, 105, 0.09);
  font-size: 0.78rem;
  font-weight: 600;
}

.deal-points {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.deal-points li {
  margin-bottom: 0.35rem;
}

.deal-table-wrap {
  overflow-x: auto;
}

.deal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.deal-table th,
.deal-table td {
  text-align: left;
  border-bottom: 1px solid rgba(57, 64, 82, 0.7);
  padding: 0.62rem 0.5rem;
  font-size: 0.9rem;
}

.deal-table th {
  color: #ffdcb0;
  font-weight: 700;
}

.deal-table td {
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)), var(--bg-soft);
  transition: border-color 180ms ease, transform 180ms ease;
}

.guide-card:hover {
  border-color: var(--sand);
  transform: translateY(-3px);
}

.guide-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.hub-discovery-shell {
  padding-top: 0.4rem;
}

.hub-discovery-card {
  border-color: rgba(255, 191, 105, 0.35);
  background:
    linear-gradient(132deg, rgba(255, 107, 53, 0.12), rgba(46, 196, 182, 0.08)),
    var(--bg-soft);
}

.hub-discovery-controls {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.42rem;
}

.hub-sort-wrap {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.42rem;
}

.hub-search-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hub-search-input {
  width: 100%;
  border: 1px solid rgba(57, 64, 82, 0.85);
  border-radius: 12px;
  padding: 0.72rem 0.82rem;
  background: rgba(11, 14, 20, 0.78);
  color: var(--text);
  font: inherit;
}

.hub-search-input:focus {
  outline: none;
  border-color: rgba(255, 191, 105, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 191, 105, 0.15);
}

.hub-sort-select {
  width: 100%;
  border: 1px solid rgba(57, 64, 82, 0.85);
  border-radius: 12px;
  padding: 0.68rem 0.8rem;
  background: rgba(11, 14, 20, 0.78);
  color: var(--text);
  font: inherit;
}

.hub-sort-select:focus {
  outline: none;
  border-color: rgba(46, 196, 182, 0.72);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.15);
}

.hub-chip-row {
  margin-top: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hub-filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.36rem 0.76rem;
  font-size: 0.82rem;
  background: rgba(15, 18, 25, 0.7);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.hub-filter-chip:hover {
  border-color: rgba(255, 191, 105, 0.5);
  color: #ffe8c8;
}

.hub-filter-chip.is-active {
  border-color: rgba(255, 191, 105, 0.88);
  color: #11151f;
  background: linear-gradient(120deg, #ffbf69, #ffe2b7);
  font-weight: 700;
}

.hub-filter-meta {
  margin-top: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.hub-filter-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hub-clear-btn {
  border: 0;
  background: transparent;
  color: var(--mint);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.hub-clear-btn:hover {
  text-decoration: underline;
}

.hub-no-results {
  margin-top: 0.85rem;
  border: 1px dashed rgba(255, 191, 105, 0.5);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(16, 20, 28, 0.72);
}

.hub-no-results p {
  margin: 0 0 0.72rem;
  color: var(--muted);
}

.hub-no-results-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.site-footer {
  border-top: 1px solid rgba(43, 49, 64, 0.6);
  padding: 2rem 0;
  background: #0c0e13;
}

.mobile-stick-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 70;
  display: none;
}

.mobile-stick-cta .btn {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.deal-sticky-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  z-index: 76;
  width: min(940px, calc(100% - 24px));
}

.deal-sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(255, 191, 105, 0.38);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
  background:
    linear-gradient(132deg, rgba(255, 107, 53, 0.2), rgba(46, 196, 182, 0.12)),
    rgba(10, 13, 18, 0.94);
  backdrop-filter: blur(8px);
}

.deal-sticky-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffe4bf;
}

.deal-sticky-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
  min-width: min(420px, 62vw);
}

.deal-sticky-bar.is-single .deal-sticky-actions {
  grid-template-columns: 1fr;
}

.deal-sticky-actions .btn {
  width: 100%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

body[data-has-deal-sticky-bar="1"] {
  padding-bottom: 96px;
}

body[data-has-deal-sticky-bar="1"] .mobile-stick-cta {
  display: none !important;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-grid p {
  margin-top: 0.6rem;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--sand);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 620ms ease forwards;
}

.reveal.delay-1 {
  animation-delay: 100ms;
}

.reveal.delay-2 {
  animation-delay: 190ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quick-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-grid,
  .faq-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-picks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-deals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    align-items: stretch;
    gap: 0.75rem;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(max-content, 1fr));
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.08rem;
    scrollbar-width: none;
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.42rem 0.62rem;
    background: rgba(255, 255, 255, 0.04);
    color: #dfe5f0;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-nav a:hover {
    border-color: rgba(255, 191, 105, 0.6);
    color: #fff2dc;
  }

  .hero-grid,
  .tool-grid,
  .pick-grid,
  .quick-path-grid,
  .partner-grid,
  .guide-grid,
  .faq-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trend-link {
    width: 100%;
    text-align: center;
  }

  .related-content-grid {
    grid-template-columns: 1fr;
  }

  .hub-filter-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hub-no-results-links {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .deals-alert-card .tool-form {
    grid-template-columns: 1fr;
  }

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

  .conversion-picks {
    grid-template-columns: 1fr;
  }

  .top-deals-grid {
    grid-template-columns: 1fr;
  }

  .top-deals-meta {
    justify-content: center;
  }

  .conversion-chip-link {
    width: 100%;
    text-align: center;
  }

  .mobile-stick-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }

  .deal-sticky-bar {
    width: calc(100% - 16px);
    bottom: 10px;
  }

  .deal-sticky-bar-inner {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 0.58rem 0.62rem;
    gap: 0.52rem;
  }

  .deal-sticky-label {
    font-size: 0.74rem;
    text-align: center;
  }

  .deal-sticky-actions {
    min-width: 0;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-sticky-bar.is-single .deal-sticky-actions {
    grid-template-columns: 1fr;
  }

  .deal-sticky-actions .btn {
    font-size: 0.82rem;
    padding: 0.62rem 0.78rem;
  }

  body[data-has-deal-sticky-bar="1"] {
    padding-bottom: 122px;
  }
}
