:root {
  --page: #ffffff;
  --surface: #fafbf8;
  --surface-strong: #f7f8f5;
  --ink: #111111;
  --muted: #686b66;
  --line: #e5e9e3;
  --green: #16a34a;
  --green-soft: #dff3e5;
  --green-light: #74bd86;
  --discount: #e43d22;
  --discount-soft: #fff0eb;
  --dot-off: #d9ddd8;
  --max: 1440px;
  font-family:
    ui-rounded, "SF Pro Rounded", "Segoe UI", "Avenir Next", Avenir,
    "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--page);
}

* {
  box-sizing: border-box;
}

/* ===== BETA BAR ===== */

.beta-bar {
  background: var(--green);
  color: #ffffff;
  font-weight: 750;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.3;
}

/* ===== BETA WATERMARK ===== */

.beta-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  z-index: 1;
  font-size: clamp(70px, 9vw, 180px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--green);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

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

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

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green-soft);
  outline-offset: 4px;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  padding: 0 28px;
  margin: 0 auto;
  min-height: 82px;
}

.brand {
  justify-self: start;
}

.header-right {
  justify-self: end;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
}

/* ===== MAIN NAVIGATION ===== */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 3vw, 54px);
  font-family:
    ui-rounded, "SF Pro Rounded", "Segoe UI", "Avenir Next", Avenir,
    "Trebuchet MS", sans-serif;
}

.main-nav a,
.cat-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 24px 4px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease;
}

.cat-trigger {
  font-size: 17px;
}

.cat-menu {
  position: relative;
  display: inline-flex;
}

.cat-arrow {
  font-size: 10px;
  display: inline-block;
  transition: transform 180ms ease;
}

.cat-trigger[aria-expanded="true"] .cat-arrow {
  transform: rotate(180deg);
}

.main-nav a:hover,
.main-nav a.is-active,
.cat-trigger:hover {
  color: var(--green);
}

.main-nav a.is-active {
  border-bottom-color: var(--green);
}

/* ===== CATEGORY DROPDOWN ===== */

.cat-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  width: min(320px, calc(100vw - 32px));
  max-height: 420px;
  overflow-y: auto;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 8px;
}

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition:
    background 140ms ease,
    color 140ms ease;
}

.cat-count {
  min-width: 28px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.cat-item:hover,
.cat-item:focus-visible {
  background: var(--green-soft);
  color: var(--green);
}

.cat-item.is-active {
  background: var(--green);
  color: #ffffff;
}

.cat-item.is-active .cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cat-item.is-disabled,
.cat-item:disabled {
  color: #a0a59d;
  cursor: not-allowed;
  opacity: 0.7;
}

.cat-item.is-disabled:hover,
.cat-item:disabled:hover {
  background: none;
  color: #a0a59d;
}

.cat-divider {
  height: 1px;
  margin: 6px 10px;
  background: var(--line);
}

/* ===== HEADER RIGHT ===== */

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.live-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.live-status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.header-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
  flex-shrink: 0;
}

/* ===== SOCIAL AREA ===== */

.header-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.social-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--muted);
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
}

.social-btn svg {
  display: block;
}

/* Instagram active */
.social-btn--ig {
  color: #c13584;
}

.social-btn--ig:hover {
  background: #fdf2f8;
  border-color: #c13584;
}

/* Coming-soon channels: subdued */
.social-btn--wa,
.social-btn--fb,
.social-btn--tt {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.social-btn--wa {
  color: #25d366;
}

.social-btn--fb {
  color: #1877f2;
}

.social-btn--tt {
  color: #010101;
}

.social-message {
  display: block;
  font-size: 12px;
  font-weight: 650;
  color: var(--green);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ===== MOBILE TOGGLE ===== */

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.mobile-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */

.mobile-nav {
  display: none;
}

main,
.site-footer {
  width: calc(100% - 64px);
  max-width: 1380px;
  margin-inline: auto;
}

.brand-slogan {
  margin: 30px 0 26px;
  color: var(--green);
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 650;
  letter-spacing: 0.24em;
  text-align: center;
  opacity: 1;
}

.featured-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.22fr) minmax(380px, 0.43fr) minmax(
      340px,
      0.35fr
    );
  gap: clamp(22px, 3.3vw, 48px);
  align-items: center;
  min-height: min(660px, calc(100vh - 136px));
  padding: clamp(24px, 3.3vw, 46px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.intro-panel {
  min-width: 0;
}

.radar-label {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 3.4vw, 3.6rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.intro-copy {
  max-width: 330px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 600;
  line-height: 1.5;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.benefit-list span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.benefit-list i,
.trust-strip > article > span {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2px solid var(--green);
  border-radius: 999px;
}

.benefit-list i::after,
.trust-strip > article > span::after {
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
  content: "";
}

.featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(390px, 40vw, 560px);
  background: transparent;
}

.featured-image img {
  width: 100%;
  max-width: 580px;
  max-height: 560px;
  object-fit: contain;
}

.image-placeholder {
  display: grid;
  width: min(100%, 380px);
  min-height: 280px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.deal-panel {
  min-width: 0;
}

.deal-top-label {
  display: inline-flex;
  padding: 4px 12px 5px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 850;
}

.deal-meta span {
  color: var(--green);
}

.deal-meta em {
  color: var(--muted);
  font-style: normal;
}

.discount-badge,
.card-discount {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 18px;
  background: var(--discount-soft);
  color: var(--discount);
  font-weight: 900;
}

.discount-badge {
  margin-bottom: 16px;
  padding: 8px 14px 10px;
  font-size: clamp(2.5rem, 3.8vw, 3.55rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.product-brand,
.card-brand {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-panel h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.price-group {
  display: grid;
  gap: 5px;
  margin-bottom: 16px;
}

.price-group strong,
.card-price strong {
  color: var(--discount);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.price-group strong {
  font-size: clamp(3.7rem, 5.2vw, 5rem);
  white-space: nowrap;
}

.price-group span,
.card-price span {
  color: var(--muted);
  font-weight: 760;
  text-decoration: line-through;
}

.price-group em,
.card-price em {
  color: var(--discount);
  font-style: normal;
  font-weight: 850;
}

.deal-summary {
  display: -webkit-box;
  max-width: 480px;
  min-height: 1.35em;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.signal-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-heading {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.08em;
}

.signal-row {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
}

.signal-row .signal-label {
  color: var(--ink);
}

.signal-dots {
  display: inline-flex;
  gap: 6px;
  justify-content: center;
}

.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--dot-off);
}

.signal-dot.is-active {
  background: var(--green);
}

.signal-strength {
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--muted);
  text-align: right;
}

.primary-cta,
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 16px;
  background: var(--green);
  color: #ffffff;
  font-weight: 850;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.primary-cta {
  min-height: 56px;
  min-width: 220px;
  padding: 0 30px;
  font-size: 1rem;
}

.primary-cta:hover,
.card-cta:hover {
  border-color: #12833d;
  background: #12833d;
  transform: translateY(-1px);
}

.is-disabled {
  pointer-events: none;
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--muted);
}

.live-feed {
  padding: clamp(44px, 6vw, 74px) 0 42px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading h2 {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading h2 span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}

.section-heading a {
  color: var(--green);
  font-weight: 780;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.live-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.card-image-wrap {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.card-discount {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  padding: 7px 10px;
  font-size: 1.25rem;
  line-height: 1;
}

.card-deal-num {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card-image {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  background: #ffffff;
}

.card-image img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.card-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.card-content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.028em;
}

.card-price {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.card-price strong {
  font-size: clamp(2.2rem, 3.1vw, 3rem);
}

.card-signals {
  max-width: none;
  margin-top: auto;
  margin-bottom: 14px;
  border-top: none;
  border-bottom: none;
  padding: 8px 0;
}

.signal-row-compact {
  grid-template-columns: 58px 1fr;
  gap: 8px;
  font-size: 0.78rem;
}

.signal-row-compact .signal-dot {
  width: 10px;
  height: 10px;
}

.card-cta {
  min-height: 46px;
  width: 100%;
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 44px;
  border-top: 1px solid var(--line);
}

.trust-strip article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-strip h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 850;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.38;
}

/* ===== SO FUNKTIONIERT's ===== */

.how-section {
  padding: 52px 0 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.how-intro {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.how-steps {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.how-step {
  display: flex;
  flex: 1;
  gap: 12px;
  align-items: flex-start;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.how-step:last-child {
  border-right: none;
}

.how-step:first-child {
  padding-left: 0;
}

.how-step-num {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.how-step-label {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
  font-weight: 800;
}

.how-step-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 550;
}

.how-radar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 11px;
  background: var(--surface);
}

.how-radar-label {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.08em;
}

.how-radar-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  font-size: 0.86rem;
  color: var(--muted);
}

.how-radar-line strong {
  font-weight: 750;
  color: var(--ink);
}

.how-radar-sep {
  color: var(--line);
  font-weight: 700;
}

/* ===== AFFILIATE DISCLOSURE ===== */

.disclosure {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
}

.disclosure-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
}

.disclosure-text {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 550;
  line-height: 1.4;
}

/* ===== FOOTER ===== */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-footer a:hover {
  color: var(--green);
}

/* ===== TABLET / MOBILE ===== */

@media (max-width: 1180px) {
  .featured-shell {
    grid-template-columns: minmax(200px, 0.33fr) minmax(340px, 1fr);
  }

  .deal-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    gap: 20px 34px;
    align-items: start;
  }

  .deal-meta,
  .discount-badge,
  .product-brand,
  .deal-panel h2,
  .price-group,
  .deal-summary {
    grid-column: 1;
  }

  .signal-stack,
  .primary-cta {
    grid-column: 2;
  }

  .signal-stack {
    margin-top: 4px;
  }
}

@media (max-width: 980px) {
  .featured-shell,
  .deal-panel,
  .deal-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 360px;
  }

  .featured-image img {
    max-height: 400px;
  }

  .deal-meta,
  .discount-badge,
  .product-brand,
  .deal-panel h2,
  .price-group,
  .deal-summary,
  .signal-stack,
  .primary-cta {
    grid-column: auto;
  }

  .live-card {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  }
}

/* Mobile nav appears below 1000px */
@media (max-width: 1000px) {
  .site-header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
    min-height: 72px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand-logo {
    height: 42px;
    max-width: 160px;
  }

  .main-nav {
    display: none;
  }

  .live-status {
    display: none;
  }

  .header-divider {
    display: none;
  }

  .header-social {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 25;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 0;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .mobile-nav-inner {
    display: flex;
    flex-direction: column;
    padding: 12px 0 8px;
  }

  .mobile-nav-link,
  .mobile-cat-trigger {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border: none;
    background: none;
    color: var(--ink);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 160ms ease;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.is-active,
  .mobile-cat-trigger:hover {
    color: var(--green);
  }

  .mobile-cat-trigger {
    width: 100%;
    gap: 6px;
  }

  .mobile-cat-list {
    padding: 0 20px 8px;
  }

  .mobile-cat-list .cat-item {
    padding-left: 20px;
    font-size: 0.9rem;
  }

  .mobile-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--line);
  }

  .mobile-social-actions {
    display: flex;
    gap: 8px;
  }

  .mobile-social .social-btn {
    width: 40px;
    height: 40px;
  }

  .mobile-social .social-message {
    font-size: 12px;
  }

  .how-steps {
    flex-direction: column;
    gap: 16px;
  }

  .how-step {
    padding: 0;
    border-right: none;
  }

  .how-radar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .disclosure {
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
  }
}

@media (max-width: 720px) {
  main,
  .site-footer {
    width: calc(100% - 28px);
  }

  .site-header-inner {
    width: calc(100% - 16px);
    min-height: 64px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand-logo {
    height: 36px;
    max-width: 140px;
  }

  .brand-slogan {
    margin: 22px 0 18px;
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  .featured-shell {
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
  }

  .intro-panel h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .intro-copy {
    margin-bottom: 18px;
  }

  .featured-image {
    min-height: 280px;
  }

  .featured-image img {
    max-height: 310px;
  }

  .discount-badge {
    font-size: clamp(2.4rem, 12vw, 3.3rem);
  }

  .deal-panel h2 {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
  }

  .price-group strong {
    font-size: clamp(3.2rem, 14vw, 4.4rem);
  }

  .primary-cta {
    width: 100%;
  }

  .section-heading {
    display: block;
  }

  .category-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading a {
    display: inline-flex;
    margin-top: 10px;
  }

  .live-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .card-image {
    min-height: 250px;
  }

  .card-image img {
    max-height: 280px;
  }

  .site-footer {
    justify-content: flex-start;
  }
}

/* ===== LARGE DESKTOP >= 1400px ===== */

@media (min-width: 1400px) {
  main,
  .site-footer {
    width: calc(100% - 120px);
    max-width: 1640px;
  }

  .featured-shell {
    min-height: 600px;
    padding: clamp(32px, 3.5vw, 52px);
  }

  .featured-image {
    min-height: 500px;
  }

  .featured-image img {
    max-width: 100%;
    max-height: 540px;
    width: 100%;
    object-fit: contain;
  }

  .deal-panel h2 {
    font-size: clamp(38px, 2.8vw, 54px);
  }

  .price-group strong {
    font-size: clamp(64px, 4.5vw, 88px);
  }

  .discount-badge {
    font-size: clamp(40px, 3vw, 60px);
  }

  .signal-dot {
    width: 13px;
    height: 13px;
  }

  .signal-dots {
    gap: 9px;
  }

  .signal-row {
    font-size: 14px;
  }

  .signal-strength {
    font-size: 11.5px;
  }

  .deal-grid {
    gap: 32px;
  }

  .live-card {
    min-height: 400px;
    padding: 28px;
    grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
    gap: 28px;
  }

  .card-image {
    min-height: 300px;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: contain;
  }

  .card-content h3 {
    font-size: clamp(24px, 1.6vw, 34px);
    line-height: 1.08;
  }

  .card-price strong {
    font-size: clamp(36px, 2.3vw, 52px);
  }

  .section-heading {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
  }

  .section-heading h2 {
    justify-self: start;
  }

  .section-subtitle {
    justify-self: center;
    text-align: center;
  }

  .section-heading a {
    justify-self: end;
  }

  .signal-row-compact {
    grid-template-columns: 110px auto;
    font-size: 0.82rem;
  }

  .signal-row-compact .signal-dot {
    width: 10px;
    height: 10px;
  }

  .how-section {
    padding: 60px 0 52px;
  }

  .how-section h2 {
    font-size: clamp(34px, 2.6vw, 46px);
    margin-bottom: 12px;
  }

  .how-intro {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .how-step {
    position: relative;
    border-right: none;
    padding: 0 36px;
  }

  .how-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: 8px;
    top: 4px;
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
    opacity: 0.2;
  }

  .how-step:first-child {
    padding-left: 0;
  }

  .how-step-num {
    font-size: 13.5px;
  }

  .how-step-label {
    font-size: 20px;
  }

  .how-step-text {
    font-size: 15px;
  }

  .how-radar {
    padding: 18px 24px;
  }

  .how-radar-line {
    font-size: 14px;
    gap: 6px 16px;
  }

  .disclosure {
    padding: 18px 28px;
  }

  .disclosure-text {
    font-size: 13px;
  }

  .signal-row-compact .signal-strength {
    display: none;
  }
}

/* ===== MISSED DEAL BADGE ===== */

.missed-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--discount);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.is-missed .card-cta,
.is-missed .primary-cta {
  opacity: 0.5;
  cursor: default;
}

.is-missed .card-image {
  opacity: 0.6;
}

.is-missed .primary-cta::after {
  display: none;
}
