:root {
  --page-bg: #f6f1e8;
  --paper: #fffdf9;
  --ink: #1d2b24;
  --muted: #59695f;
  --accent: #136f63;
  --accent-dark: #0d4e46;
  --accent-soft: #d8efe9;
  --line: rgba(29, 43, 36, 0.12);
  --warm: #f1c57a;
  --shadow: 0 20px 45px rgba(29, 43, 36, 0.08);
  --font-sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

body {
  background:
    radial-gradient(circle at top left, rgba(241, 197, 122, 0.28), transparent 30%),
    linear-gradient(180deg, #fcf8ef 0%, var(--page-bg) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
}

main.pb7 {
  padding-bottom: 0;
}

.site-top {
  position: relative;
}

.site-top__backdrop {
  background:
    linear-gradient(135deg, rgba(13, 78, 70, 0.96), rgba(20, 43, 36, 0.94)),
    linear-gradient(135deg, #136f63, #0d4e46);
}

.site-top__backdrop--image {
  background-size: cover;
  background-position: center;
}

.site-top--home .site-top__backdrop {
  padding-bottom: 0.75rem;
  box-shadow: 0 18px 40px rgba(20, 43, 36, 0.12);
}

.site-top--section .site-top__backdrop {
  padding-bottom: 1.25rem;
  box-shadow: 0 18px 40px rgba(20, 43, 36, 0.12);
}

.site-top__intro {
  width: min(1120px, calc(100% - 2.75rem));
  margin: 0 auto;
  padding: 1.35rem 0;
  text-align: center;
}

.site-top__title {
  margin: 0;
  color: rgba(255, 253, 249, 0.96);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.site-top__description {
  margin: 0.7rem auto 0;
  max-width: 44rem;
  color: rgba(255, 253, 249, 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.nav-shell {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fffdf9;
}

.nav-brand__logo {
  display: block;
  width: clamp(150px, 19vw, 220px);
  max-width: 100%;
  height: auto;
}

.nav-brand__name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-brand__tag {
  font-size: 0.78rem;
  color: rgba(255, 253, 249, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin: 0;
}

.nav-links__item {
  margin: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.85rem;
}

.nav-menu {
  position: relative;
}

.nav-menu__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 5.4rem;
  height: 2.7rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf9;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-menu__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
}

.nav-menu__icon span {
  display: block;
  width: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.95);
}

.nav-menu__label {
  display: inline-block;
  line-height: 1;
}

.nav-menu .nav-links {
  position: static;
  display: flex;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 0.55rem;
}

.nav-menu .nav-links .nav-links__item {
  display: inline-flex;
  width: auto;
}

.nav-menu .nav-links .nav-links__anchor {
  display: inline-flex;
  width: auto;
}

.nav-social {
  display: inline-flex;
  align-items: center;
}

@media (min-width: 42.001rem) {
  .nav-menu__toggle {
    display: none;
  }

  .nav-menu .nav-links {
    position: static;
    display: flex !important;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 0.55rem;
  }

  .nav-menu .nav-links .nav-links__item {
    display: inline-flex;
    width: auto;
  }

  .nav-menu .nav-links .nav-links__anchor {
    display: inline-flex;
    width: auto;
  }

  .nav-social {
    display: inline-flex;
  }
}

.nav-links__anchor,
.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  line-height: 1;
  color: rgba(255, 253, 249, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.nav-links__anchor:hover,
.site-footer__nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf9;
  transform: translateY(-1px);
}

.site-footer {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0.45rem auto;
  padding: 0.88rem 1.3rem 0.74rem;
  background: linear-gradient(180deg, rgba(13, 78, 70, 0.96), rgba(20, 43, 36, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.site-footer__inner,
.site-footer__nav,
.site-footer__meta {
  display: flex;
  gap: 1rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 1.15rem;
  row-gap: 0;
}

.site-footer__brand {
  display: grid;
  gap: 0;
  padding: 0;
  justify-self: start;
}

.site-footer__title {
  display: inline-flex;
  align-items: center;
  max-width: none;
  color: #fffdf9;
  font-family: var(--font-display);
  font-size: 0;
  line-height: 0;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.site-footer__logo {
  display: block;
  width: clamp(204px, 24vw, 276px);
  max-width: 100%;
  height: auto;
}

.site-footer__tag,
.site-footer__meta {
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.62rem;
}

.site-footer__tag {
  margin: 0;
  line-height: 1.45;
}

.site-footer__nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  margin-right: 0;
}

.site-footer__meta a {
  color: rgba(255, 253, 249, 0.88);
  text-decoration: none;
}

.site-footer__meta {
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  margin-left: 0;
}

.site-footer__meta--sub {
  margin-top: -0.5rem;
  justify-content: flex-end;
  gap: 0.32rem;
  opacity: 0.6;
}

.site-footer__meta--sub .ananke-socials {
  transform: scale(0.72);
  transform-origin: right center;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
}

.home-section,
.deal-list-intro,
.alerts-shell,
.deal-single,
.list-shell,
.taxonomy-shell {
  width: min(1120px, calc(100% - 2.75rem));
  margin: 0.45rem auto;
}

.hero-band {
  width: min(1120px, calc(100% - 2.75rem));
  margin: 1.7rem auto 2rem;
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(19, 111, 99, 0.95), rgba(13, 78, 70, 0.92)),
    linear-gradient(135deg, #136f63, #0d4e46);
  color: #f8fbf8;
  box-shadow: var(--shadow);
}

.hero-band__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.hero-band__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-band h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  line-height: 0.95;
  font-family: var(--font-display);
}

.hero-band p {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-band__actions,
.hero-band__stats,
.category-strip,
.deal-grid,
.alert-options {
  display: grid;
  gap: 1rem;
}

.hero-band__actions {
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  margin-top: 1.5rem;
}

.hero-band__stats {
  grid-template-columns: 1fr;
  align-self: stretch;
}

.hero-band__stat {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.hero-band__stat strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.button-link,
.deal-card__cta,
.deal-single__cta,
.alert-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(20, 43, 36, 0.12);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.button-link:hover,
.deal-card__cta:hover,
.deal-single__cta:hover,
.alert-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(20, 43, 36, 0.16);
}

.button-link--primary,
.deal-card__cta,
.deal-single__cta,
.alert-form button {
  background: var(--ink);
  color: #fffdf9;
}

.button-link--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fffdf9;
}

.button-link--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
}

.alert-form button {
  cursor: pointer;
  border-color: rgba(19, 111, 99, 0.12);
}

.alert-form button:hover {
  border-color: rgba(19, 111, 99, 0.24);
  box-shadow: 0 18px 32px rgba(20, 43, 36, 0.16);
}

.alert-form button:focus-visible {
  outline: none;
  border-color: rgba(19, 111, 99, 0.28);
  box-shadow: 0 0 0 4px rgba(19, 111, 99, 0.1), 0 18px 32px rgba(20, 43, 36, 0.16);
}

.alert-form button:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 12px 24px rgba(20, 43, 36, 0.14);
}

.alert-toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 50;
  margin: 0;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(19, 111, 99, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(20, 43, 36, 0.14);
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.alert-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.alert-toast.is-error {
  border-color: rgba(179, 62, 54, 0.28);
  color: #5f221f;
}

.home-section {
  margin-bottom: 2rem;
}

.home-section__intro,
.list-shell__intro,
.list-subsection__intro {
  margin-bottom: 1.1rem;
  max-width: 54rem;
}

.list-shell__count {
  margin: 0.35rem 0 0;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-section h2,
.list-subsection h2,
.list-shell h1,
.deal-single h1,
.alerts-shell h1 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.list-subsection + .list-subsection {
  margin-top: 2rem;
}

.deal-filters {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.deal-filters__search {
  width: 100%;
  border: 1px solid rgba(29, 43, 36, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.9rem 1rem;
  color: var(--ink);
}

.deal-filters__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.deal-filters__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(29, 43, 36, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.deal-filters__tab:hover,
.deal-filters__tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fffdf9;
}

.deal-filters__tab:hover {
  transform: translateY(-1px);
}

.deal-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.deal-grid--browse {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.deal-card,
.alert-card,
.deal-single,
.guide-card,
.info-card,
.list-shell,
.alerts-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.list-shell,
.alerts-shell,
.deal-single {
  padding: 1.35rem 1.4rem 1.05rem;
}

main > article[class^="page-"] {
  width: min(960px, calc(100% - 2.75rem));
  margin: 1.7rem auto;
  padding: 1.35rem 2.1rem 1.6rem;
  min-height: clamp(520px, 62vh, 760px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

main > article.page-about,
main > article.page-privacy,
main > article.page-disclosure {
  padding-left: 3.9rem;
  padding-right: 3.9rem;
}

main > article[class^="page-"] header {
  margin-top: 0;
  margin-bottom: 1rem;
}

main > article[class^="page-"] .nested-copy-line-height {
  width: 100%;
  padding-right: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.03rem;
}

main > article[class^="page-"] .nested-copy-line-height p,
main > article[class^="page-"] .nested-copy-line-height li {
  line-height: 1.8;
}

main > article[class^="page-"] .instapaper_ignoref {
  color: var(--accent-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

main > article[class^="page-"] h1,
main > article[class^="page-"] h2,
main > article[class^="page-"] h3 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

main > article[class^="page-"] h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-top: 0.5rem;
}

main > article[class^="page-"] time,
main > article[class^="page-"] .ananke-socials {
  color: var(--muted);
  font-family: var(--font-sans);
}

.deal-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.deal-card__image,
.deal-card__placeholder,
.deal-single__image,
.deal-single__placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #d8efe9, #f8f1dc);
}

.deal-card__image img,
.deal-single__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-card__placeholder,
.deal-single__placeholder {
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-card__body,
.deal-single__content,
.alerts-shell,
.list-shell {
  padding: 1.3rem;
}

.deal-card--compact .deal-card__body {
  padding: 1.05rem 1.05rem 1.1rem;
}

.deal-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.15;
}

.deal-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.deal-card__excerpt,
.deal-card__meta,
.deal-card__pending,
.muted-note,
.deal-single__note,
.alert-form__note,
.page-copy {
  color: var(--muted);
  line-height: 1.6;
}

.deal-card__pricing,
.deal-single__pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1rem 0 0.8rem;
}

.deal-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.deal-card__signal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  justify-content: space-between;
}

.deal-card--compact .deal-card__excerpt {
  margin-bottom: 0;
}

.deal-card--compact .deal-card__pricing {
  margin: 0.75rem 0 0.15rem;
}

.deal-card--compact .deal-card__cta {
  margin-top: 0.8rem;
}

.deal-card--list .deal-card__body {
  padding: 1.1rem 1.1rem 1rem;
}

.deal-card__stack {
  display: grid;
  gap: 0.7rem;
  height: 100%;
}

.deal-card__divider {
  height: 1px;
  background: rgba(29, 43, 36, 0.08);
}

.deal-card--list .deal-card__title {
  min-height: calc(1.15em * 2);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.deal-card--list .deal-card__cta {
  width: 100%;
  margin-top: auto;
}

.deal-card.is-hidden {
  display: none;
}

.deal-card__sale,
.deal-single .sale {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.deal-card__list,
.deal-single .list {
  text-decoration: line-through;
  color: var(--muted);
}

.deal-card__badge,
.deal-single .badge,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
}

.deal-card__timer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
}

.deal-card__timer::before {
  content: "";
  width: 0.82rem;
  height: 0.82rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2359695f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.deal-card__tags,
.deal-single__tags,
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deal-card__tag,
.deal-single__tags a,
.category-strip a {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(19, 111, 99, 0.08);
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.deal-card__cta--soft,
.deal-single__cta--soft {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.disclosure-note,
.deal-single__note,
.info-bar {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--warm);
  border-radius: 16px;
  background: rgba(241, 197, 122, 0.18);
}

.info-grid,
.guide-grid,
.alert-options,
.posts-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.guide-card,
.alert-card {
  padding: 1.2rem;
}

.guide-card h3,
.info-card h3,
.alert-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.guide-card a {
  color: var(--ink);
  text-decoration: none;
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  border: 1px solid rgba(29, 43, 36, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.98), rgba(255, 255, 255, 0.98) 48%),
    #fff;
  box-shadow: 0 18px 34px rgba(20, 43, 36, 0.08);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(19, 111, 99, 0.16);
  box-shadow: 0 24px 40px rgba(20, 43, 36, 0.12);
}

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

.guide-card__link {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(13, 78, 70, 0.12);
  border-radius: 999px;
  background: rgba(244, 251, 248, 0.9);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(19, 111, 99, 0.08);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.guide-card__link:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 78, 70, 0.22);
  background: #fff;
  box-shadow: 0 14px 22px rgba(19, 111, 99, 0.12);
}

.posts-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(216, 239, 233, 0.55), rgba(255, 253, 249, 0.96) 42%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.post-card__meta {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.post-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.post-card__excerpt {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.post-card__link {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(13, 78, 70, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.post-card__link:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(13, 78, 70, 0.24);
}

.alert-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.95rem;
}

.alert-form__section {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(29, 43, 36, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.72);
}

.alert-form__heading {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.15;
}

.alert-form__heading--span {
  grid-column: 1 / -1;
}

.alert-form__label {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.alert-form__split {
  display: grid;
  gap: 1rem;
}

.alert-form label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.alert-form__field {
  display: grid;
  gap: 0.45rem;
}

.alert-form input:not([type="checkbox"]),
.alert-form textarea,
.alert-form select {
  width: 100%;
  border: 1px solid rgba(29, 43, 36, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.85rem 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.alert-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(29, 43, 36, 0.7) 50%),
    linear-gradient(135deg, rgba(29, 43, 36, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 1.45rem) calc(50% - 0.16rem),
    calc(100% - 1.1rem) calc(50% - 0.16rem);
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
  background-repeat: no-repeat;
  padding-right: 2.7rem;
}

.alert-form textarea {
  resize: none;
  min-height: 7.5rem;
}

.alert-form__notes {
  min-height: 5.25rem;
}

.alert-form input:not([type="checkbox"])::placeholder,
.alert-form textarea::placeholder {
  color: rgba(89, 105, 95, 0.8);
}

.alert-form input:not([type="checkbox"]):focus,
.alert-form textarea:focus,
.alert-form select:focus {
  outline: none;
  border-color: rgba(19, 111, 99, 0.35);
  box-shadow: 0 0 0 3px rgba(19, 111, 99, 0.08);
}

.alert-field__hint {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.keyword-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.keyword-suggestions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(19, 111, 99, 0.1);
  border-radius: 999px;
  background: rgba(19, 111, 99, 0.06);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.keyword-suggestions button:hover {
  transform: translateY(-1px);
  border-color: rgba(19, 111, 99, 0.24);
  background: rgba(19, 111, 99, 0.12);
}

.keyword-suggestions button:focus-visible {
  outline: none;
  border-color: rgba(19, 111, 99, 0.3);
  box-shadow: 0 0 0 3px rgba(19, 111, 99, 0.1);
}

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

.alert-options label {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(29, 43, 36, 0.08);
  border-radius: 18px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.alert-options label:hover {
  transform: translateY(-1px);
  border-color: rgba(19, 111, 99, 0.2);
  background: rgba(244, 251, 248, 0.96);
}

.alert-options label:has(input[type="checkbox"]:checked) {
  border-color: rgba(19, 111, 99, 0.34);
  background: linear-gradient(180deg, rgba(221, 244, 239, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 24px rgba(19, 111, 99, 0.08);
}

.alert-options label:has(input[type="checkbox"]:focus-visible) {
  border-color: rgba(19, 111, 99, 0.28);
  box-shadow: 0 0 0 4px rgba(19, 111, 99, 0.08);
}

.alert-option__row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1.3;
}

.alert-options small {
  color: var(--muted);
  line-height: 1.5;
}

.alert-options input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem !important;
  height: 1rem !important;
  min-width: 1rem !important;
  min-height: 0 !important;
  max-width: 1rem;
  max-height: 1rem;
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  border: 1.25px solid rgba(19, 111, 99, 0.38);
  border-radius: 0.22rem;
  background: #fff;
  display: inline-grid;
  place-content: center;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.alert-options input[type="checkbox"]::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 0.08rem;
  background: var(--accent-dark);
  transform: scale(0);
  transition: transform 120ms ease;
}

.alert-options input[type="checkbox"]:checked {
  border-color: var(--accent-dark);
  background: rgba(19, 111, 99, 0.08);
}

.alert-options input[type="checkbox"]:checked::after {
  transform: scale(1);
}

.alert-options input[type="checkbox"]:hover {
  transform: scale(1.04);
  border-color: rgba(19, 111, 99, 0.5);
}

.alert-options input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(19, 111, 99, 0.12);
}

.deal-single__hero {
  display: grid;
  gap: 1.5rem;
}

.deal-single__content {
  padding: 0;
  margin-top: 1.2rem;
}

.deal-single__content p,
.alerts-shell p,
.list-shell p {
  line-height: 1.75;
}

@media (min-width: 60rem) {
  .hero-band__grid,
  .deal-single__hero {
    grid-template-columns: 1.3fr 0.9fr;
  }

  .hero-band__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: end;
  }

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

}

@media (max-width: 60rem) {
  .nav-shell {
    align-items: center;
    gap: 0.9rem;
  }

  .nav-brand__tag {
    font-size: 0.72rem;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-menu {
    width: auto;
  }

  .nav-menu__toggle {
    display: inline-flex;
  }

  .nav-menu .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 10;
    display: none !important;
    width: min(16rem, calc(100vw - 2rem));
    margin: 0;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(15, 34, 29, 0.96);
    box-shadow: 0 18px 34px rgba(8, 17, 15, 0.26);
    gap: 0.35rem;
  }

  .nav-menu.is-open .nav-links {
    display: flex !important;
    flex-direction: column;
  }

  .nav-menu .nav-links .nav-links__item {
    width: 100%;
    display: block;
  }

  .nav-menu .nav-links .nav-links__anchor {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .nav-social {
    display: none;
  }

  .site-footer,
  .list-shell,
  .alerts-shell,
  .deal-single,
  main > article[class^="page-"] {
    padding: 0.9rem 0.95rem 0.8rem;
  }

  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .site-top__intro {
    padding-top: 1rem;
  }

  main > article.page-about,
  main > article.page-privacy,
  main > article.page-disclosure {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .alert-form .alert-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 42rem) {
  .site-top__title,
  .hero-band h1,
  .home-section h2,
  .list-subsection h2,
  .list-shell h1,
  .deal-single h1,
  .alerts-shell h1,
  main > article[class^="page-"] h1,
  .deal-card__title,
  .post-card__title,
  .alert-form__heading {
    overflow-wrap: anywhere;
  }

  .hero-band,
  .home-section,
  .list-shell,
  .alerts-shell,
  .deal-single,
  .site-footer,
  main > article[class^="page-"] {
    width: min(100% - 2rem, 1120px);
  }

  .hero-band {
    margin: 1rem auto 1.25rem;
    padding: 1.2rem 1rem 1.1rem;
    border-radius: 22px;
  }

  .hero-band h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

  .hero-band p,
  .site-top__description,
  .deal-single__content p,
  .alerts-shell p,
  .list-shell p,
  .page-copy,
  .info-bar,
  .guide-card p,
  .post-card__excerpt,
  .deal-card__excerpt,
  main > article[class^="page-"] .nested-copy-line-height p,
  main > article[class^="page-"] .nested-copy-line-height li {
    line-height: 1.6;
  }

  .hero-band__actions,
  .hero-band__stats,
  .guide-grid,
  .category-strip {
    grid-template-columns: 1fr;
  }

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

  .button-link,
  .deal-card__cta,
  .deal-single__cta,
  .alert-form button,
  .guide-card__link,
  .post-card__link {
    width: 100%;
  }

  .hero-band__actions .button-link {
    min-height: 3rem;
  }

  .nav-shell {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.9rem;
    align-items: center;
    justify-content: space-between;
  }

  .nav-brand__name {
    font-size: 1.05rem;
  }

  .nav-brand__logo {
    width: clamp(132px, 42vw, 180px);
  }

  .nav-brand__tag {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .alert-form input#keywords {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .alert-form input#keywords::placeholder {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .alert-form textarea#notes {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .alert-form textarea#notes::placeholder {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .site-top__intro {
    width: min(100% - 2rem, 1120px);
    padding: 1rem 0 1.1rem;
  }

  .site-top__title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .home-section,
  .list-shell,
  .alerts-shell,
  .deal-single,
  main > article[class^="page-"],
  .site-footer {
    margin: 0.4rem auto;
  }

  .home-section h2,
  .list-subsection h2,
  .list-shell h1,
  .deal-single h1,
  .alerts-shell h1,
  main > article[class^="page-"] h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .deal-card__placeholder,
  .deal-single__placeholder {
    aspect-ratio: 16 / 9;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .deal-card--list .deal-card__body,
  .deal-card__body,
  .alerts-shell,
  .list-shell {
    padding: 1rem;
  }

  .deal-card--list .deal-card__title {
    min-height: 0;
    font-size: 1rem;
  }

  .deal-card__excerpt,
  .post-card__excerpt,
  .deal-single__note,
  .alert-form__note,
  .page-copy,
  .info-bar,
  .alert-field__hint,
  .site-top__description,
  .site-footer__tag,
  .site-footer__meta,
  .hero-band__stat span,
  .list-shell__count {
    font-size: 0.84rem;
  }

  .deal-card__price-row,
  .deal-card__signal-row,
  .deal-single__pricing,
  .deal-card__pricing {
    gap: 0.5rem;
  }

  .deal-card--list .deal-card__body {
    padding: 0.85rem;
  }

  .deal-card__sale,
  .deal-single .sale {
    font-size: 1.02rem;
  }

  .deal-card__list,
  .deal-single .list,
  .deal-card__badge,
  .deal-card__timer {
    font-size: 0.78rem;
  }

  .deal-filters__search,
  .deal-filters__tab,
  .button-link,
  .deal-card__cta,
  .deal-single__cta,
  .guide-card__link,
  .post-card__link,
  .alert-form button {
    font-size: 0.92rem;
  }

  .deal-card__tag,
  .deal-single__tags a,
  .category-strip a,
  .pill {
    font-size: 0.78rem;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .deal-filters__tab,
  .deal-card__badge,
  .deal-card__timer,
  .deal-card__tag,
  .deal-single__tags a,
  .category-strip a,
  .pill,
  .post-card__meta,
  .list-shell__count {
    overflow-wrap: anywhere;
  }

  .post-card__title {
    font-size: 1.2rem;
  }

  .post-card__meta {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .guide-card__link,
  .post-card__link {
    text-align: center;
  }

  .category-strip a {
    justify-content: center;
  }

  .guide-card,
  .hero-band__stat,
  .alert-form__section {
    border-radius: 20px;
  }

  .guide-card {
    padding: 1rem;
  }

  .site-footer {
    padding: 0.82rem 1.2rem;
    border-radius: 20px;
  }

  .site-footer__brand {
    gap: 0.14rem;
    padding: 0;
  }

  .site-footer__title {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .site-footer__logo {
    width: clamp(170px, 48vw, 210px);
  }

  .site-footer__tag,
  .site-footer__meta {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .site-footer__tag {
    padding-left: 0;
  }

  .site-footer__nav,
  .site-footer__meta {
    width: 100%;
  }

  .site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
    justify-content: flex-start;
  }

  .site-footer__nav a {
    width: auto;
    justify-content: flex-start;
    padding: 0.42rem 0.62rem;
    font-size: 0.8rem;
    text-align: left;
  }

  .site-footer__nav a:first-child {
    padding-left: 0;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-social {
    display: none;
  }

  .alert-form__section {
    padding: 0.95rem;
  }

  .alert-form input:not([type="checkbox"]),
  .alert-form textarea,
  .alert-form select {
    min-height: 3rem;
    font-size: 0.9rem;
  }

  .alert-form select {
    min-height: 2.85rem;
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
    font-size: 0.9rem;
  }

  .alert-form textarea {
    min-height: 6.5rem;
  }

  .alert-options small {
    display: none;
  }

  .keyword-suggestions {
    gap: 0.4rem;
  }

  .keyword-suggestions button {
    min-height: 0;
    max-width: 100%;
    padding: 0.34rem 0.56rem;
    font-size: 0.68rem;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
  }
}
