:root {
  --ink: #17202a;
  --muted: #667085;
  --line: #dfe7e4;
  --paper: #f6f8f6;
  --surface: #ffffff;
  --brand: #0b7a75;
  --brand-dark: #075e5a;
  --deal: #f97316;
  --deal-dark: #c2410c;
  --teal: var(--brand);
  --coral: #f45d48;
  --gold: #e6a100;
  --green: #108a64;
  --shadow: 0 16px 40px rgba(23, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 10;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 14px;
}

.top-strip {
  background: var(--brand-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  padding: 9px 14px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}

.container,
.nav-shell,
.site-footer {
  width: min(1140px, calc(100% - 28px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 950;
  font-size: 23px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--deal) 100%);
  color: #fff;
  box-shadow: inset -8px -8px 0 rgba(255, 255, 255, 0.12);
  text-transform: lowercase;
}

.brand b {
  color: var(--deal);
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 11px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: #eaf7f5;
  color: var(--brand);
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf8 100%);
  border-bottom: 1px solid var(--line);
  padding: 42px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--deal);
}

.hero h1,
.page-hero h1 {
  margin: 10px 0 12px;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.market-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.market-row span {
  min-width: 44px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 950;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.bento-preview {
  display: grid;
  gap: 14px;
}

.bento-preview figcaption {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.bento-preview figcaption strong {
  font-size: 18px;
}

.bento-preview figcaption span {
  color: var(--muted);
}

.search-panel {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(23, 32, 42, 0.08);
}

.search-panel input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
}

.search-panel a,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--deal);
  color: #fff;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 950;
  border: 0;
}

.section {
  padding: 34px 0;
}

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

.section-head h2 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.category-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  min-height: 118px;
  text-decoration: none;
  display: grid;
  align-content: space-between;
}

.category-tile:hover,
.list-card:hover,
.article-card:hover {
  border-color: rgba(11, 122, 117, 0.38);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.08);
}

.category-tile strong {
  display: block;
  font-size: 16px;
}

.category-tile span {
  color: var(--muted);
  font-size: 13px;
}

.icon-badge {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf7f5;
  color: var(--brand);
  font-weight: 950;
}

.featured-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.feature-card,
.list-card,
.info-card,
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.rank-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #fff4ec;
  color: var(--deal-dark);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card h3,
.list-card h3,
.info-card h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.18;
}

.feature-card p,
.list-card p,
.info-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.deal-list {
  display: grid;
  gap: 12px;
}

.list-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  text-decoration: none;
}

.list-card img {
  width: 96px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 38px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 950;
}

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

.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  display: grid;
  gap: 12px;
}

.article-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

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

.article-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: #f2f4f7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding: 0 9px;
}

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

.info-card,
.legal-card {
  padding: 18px;
}

.page-hero {
  padding: 34px 0 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 44px;
}

.legal-nav {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
}

.legal-card h2 {
  margin-top: 0;
}

.preference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.toggle {
  min-width: 58px;
  height: 32px;
  border-radius: 999px;
  background: #d0d5dd;
  position: relative;
}

.toggle::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
}

.toggle.is-on {
  background: var(--green);
}

.toggle.is-on::after {
  left: 29px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .featured-layout,
  .feature-card,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .category-strip,
  .article-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .section-head,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .search-panel,
  .category-strip,
  .article-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .list-card {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .list-card .score-pill {
    grid-column: 1 / -1;
  }
}

.home-page {
  background: #f5f6f3;
}

.po-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.po-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.po-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.po-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.po-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: #667085;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.po-links a:hover,
.po-links a.is-active {
  background: #fff4ec;
  color: var(--deal-dark);
}

.po-hero {
  padding: 66px 0 54px;
  background:
    radial-gradient(circle at 18% 18%, rgba(249, 115, 22, 0.11), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(11, 122, 117, 0.1), transparent 22%),
    #fff;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.po-eyebrow,
.po-section-title p {
  margin: 0 0 10px;
  color: var(--deal-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.po-hero h1 {
  max-width: 820px;
  margin: 0 auto 14px;
  color: #17202a;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.po-lead {
  max-width: 680px;
  margin: 0 auto;
  color: #667085;
  font-size: 19px;
}

.po-search {
  max-width: 620px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
  background: #f7faf8;
  border: 1px solid #dfe7e4;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 32, 42, 0.08);
}

.po-search input {
  min-height: 48px;
  width: 100%;
  border: 1px solid #dfe7e4;
  border-radius: 8px;
  padding: 0 14px;
  color: #17202a;
  font: inherit;
  background: #fff;
}

.po-search a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--deal);
  color: #fff;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 950;
}

.po-section {
  padding: 36px 0;
}

.po-section-title {
  text-align: center;
  margin-bottom: 22px;
}

.po-section-title h2 {
  margin: 0;
  color: #17202a;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: 0;
}

.trend-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.trend-card {
  min-height: 100%;
  display: grid;
  gap: 10px;
  align-content: start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  color: #17202a;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(23, 32, 42, 0.07);
}

.trend-card:hover,
.po-category-card:hover {
  border-color: rgba(249, 115, 22, 0.46);
  box-shadow: 0 14px 32px rgba(23, 32, 42, 0.11);
}

.trend-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.trend-card-large img {
  aspect-ratio: 16 / 10;
}

.trend-card span {
  width: fit-content;
  border-radius: 999px;
  background: #fff4ec;
  color: var(--deal-dark);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.trend-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.trend-card p {
  margin: 0;
  color: #667085;
  font-size: 15px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-strip div {
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-align: center;
}

.proof-strip strong {
  color: var(--brand-dark);
  font-size: 34px;
  line-height: 1;
}

.proof-strip span {
  color: #667085;
  font-size: 13px;
  font-weight: 850;
}

.po-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.po-category-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 132px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  color: #17202a;
  text-decoration: none;
}

.category-visual {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 950;
}

.category-visual.electronics {
  background: linear-gradient(135deg, #075e5a, #0b7a75);
}

.category-visual.home {
  background: linear-gradient(135deg, #108a64, #65a30d);
}

.category-visual.kitchen {
  background: linear-gradient(135deg, #c2410c, #f97316);
}

.category-visual.travel {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}

.category-visual.beauty {
  background: linear-gradient(135deg, #be185d, #f43f5e);
}

.category-visual.garden {
  background: linear-gradient(135deg, #3f6212, #16a34a);
}

.category-visual.office {
  background: linear-gradient(135deg, #334155, #64748b);
}

.po-category-card strong,
.po-category-card small {
  display: block;
}

.po-category-card strong {
  font-size: 22px;
  line-height: 1.1;
}

.po-category-card small {
  margin-top: 6px;
  color: #667085;
  font-size: 14px;
}

.po-about-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  background: #17202a;
  color: #fff;
  border-radius: 8px;
  padding: 28px;
}

.po-about-band .po-eyebrow {
  color: #fed7aa;
}

.po-about-band h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

.po-about-copy {
  display: grid;
  gap: 12px;
}

.po-about-copy p {
  margin: 0;
  color: #d0d5dd;
  font-size: 16px;
}

.po-footer {
  border-top: 1px solid #e5e7eb;
  background: #fff;
  padding: 28px 0 38px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

@media (max-width: 900px) {
  .trend-grid,
  .po-category-grid,
  .po-about-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .po-nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .po-hero {
    padding: 44px 0 38px;
  }

  .po-hero h1 {
    font-size: 38px;
  }

  .po-search,
  .proof-strip,
  .po-category-card {
    grid-template-columns: 1fr;
  }

  .category-visual {
    width: 100%;
  }
}
