:root {
  --bg: #f6fbfa;
  --surface: #ffffff;
  --surface-soft: #edf8f6;
  --text: #15313b;
  --muted: #617782;
  --blue: #136fa8;
  --blue-dark: #0f527d;
  --green: #1fa275;
  --green-dark: #147355;
  --line: #d9e9e7;
  --shadow: 0 18px 42px rgba(21, 49, 59, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
}

a:hover,
a:focus {
  color: var(--green-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand img {
  width: min(230px, 62vw);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.95rem;
}

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

.hero-banner {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  object-fit: contain;
}

.section {
  padding: 58px 0;
}

h1,
h2,
h3,
p,
li {
  word-break: normal;
  overflow-wrap: normal;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  line-height: 1.25;
}

p {
  margin: 0 0 14px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.16rem;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.app-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.app-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(21, 49, 59, 0.09);
}

.app-card img {
  width: 92px;
  border-radius: 23px;
  margin-bottom: 18px;
  box-shadow: 0 12px 22px rgba(21, 49, 59, 0.15);
}

.app-placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border: 1px solid rgba(19, 111, 168, 0.25);
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(19, 111, 168, 0.14), rgba(31, 162, 117, 0.2)), #ffffff;
  box-shadow: 0 12px 22px rgba(21, 49, 59, 0.15);
  color: var(--blue-dark);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.app-card p {
  flex: 1;
  color: var(--muted);
}

.app-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.status {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(31, 162, 117, 0.35);
  border-radius: 999px;
  background: rgba(31, 162, 117, 0.09);
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.status.available {
  border-color: rgba(19, 111, 168, 0.35);
  background: rgba(19, 111, 168, 0.09);
  color: var(--blue-dark);
}

.button {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(19, 111, 168, 0.22);
}

.button:hover,
.button:focus {
  background: var(--blue-dark);
  color: #ffffff;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.button.secondary {
  background: var(--surface);
  color: var(--blue-dark);
  border: 1px solid rgba(19, 111, 168, 0.35);
  box-shadow: none;
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-width: 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(31, 162, 117, 0.3);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(19, 111, 168, 0.08), rgba(31, 162, 117, 0.13)), #ffffff;
  box-shadow: 0 14px 32px rgba(21, 49, 59, 0.08);
}

.promo-card--compact {
  margin-top: 24px;
}

.promo-section {
  padding-top: 26px;
  padding-bottom: 34px;
}

.promo-card h2,
.promo-card h3 {
  max-width: 760px;
}

.promo-card p:last-child,
.promo-actions .button {
  margin-bottom: 0;
}

.promo-code {
  display: inline-block;
  max-width: 100%;
  margin: 4px 0 16px;
  padding: 10px 14px;
  border: 1px solid rgba(19, 111, 168, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue-dark);
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  user-select: all;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: min(100%, 260px);
}

.promo-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.promo-badge {
  display: inline-block;
  align-self: flex-start;
  margin: 2px 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(31, 162, 117, 0.35);
  border-radius: 999px;
  background: rgba(31, 162, 117, 0.09);
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.product-hunt-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-width: 0;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(19, 111, 168, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(19, 111, 168, 0.06), rgba(31, 162, 117, 0.08)), #ffffff;
  box-shadow: 0 12px 28px rgba(21, 49, 59, 0.07);
}

.product-hunt-card h2,
.product-hunt-card h3,
.product-hunt-card p:last-child {
  margin-bottom: 0;
}

.product-hunt-section {
  padding-top: 0;
  padding-bottom: 34px;
}

.product-hunt-section .product-hunt-card {
  margin-top: 0;
}

.product-hunt-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.product-hunt-actions a {
  display: block;
  border-radius: 10px;
}

.product-hunt-badge {
  width: 250px;
  max-width: 100%;
  height: auto;
}

.product-hunt-link {
  align-self: flex-start;
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--surface-soft);
  color: var(--green-dark);
}

.text-link {
  font-weight: 800;
}

.center-link {
  margin-top: 28px;
  text-align: center;
}

.value-block {
  padding-top: 24px;
}

.panel,
.page-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(21, 49, 59, 0.08);
}

.panel {
  padding: 34px;
  background: linear-gradient(135deg, rgba(19, 111, 168, 0.08), rgba(31, 162, 117, 0.12)), #ffffff;
}

.page-hero {
  padding-top: 68px;
}

.page-hero .lead {
  max-width: 800px;
}

.cards,
.app-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.page-card,
.policy-card {
  padding: 26px;
}

.app-detail {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.app-detail img {
  width: 94px;
  border-radius: 24px;
  box-shadow: 0 12px 22px rgba(21, 49, 59, 0.14);
}

.app-detail-list.overview {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.app-overview-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.app-overview-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 14px;
}

.app-overview-card__top .status {
  margin-bottom: 0;
}

.app-detail-list.overview .app-overview-card img {
  width: 76px;
  margin-bottom: 14px;
  border-radius: 20px;
}

.app-overview-card .app-placeholder-icon {
  margin-bottom: 14px;
}

.app-placeholder-icon--overview {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  font-size: 1.25rem;
}

.app-placeholder-icon--large {
  width: min(180px, 42vw);
  height: min(180px, 42vw);
  margin-bottom: 0;
  border-radius: 34px;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
}

.taskmate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr);
  gap: 32px;
  align-items: center;
}

.taskmate-hero h2 {
  max-width: 760px;
  margin-top: 18px;
}

.taskmate-hero__mark {
  justify-self: center;
}

.app-overview-card__title {
  width: 100%;
  min-width: 0;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.18;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.app-overview-card > p {
  width: 100%;
  min-width: 0;
  flex: 1;
}

.app-overview-card .app-actions {
  width: 100%;
  margin-top: auto;
}

.app-preview {
  padding-top: 24px;
}

.app-preview .section-heading {
  margin-bottom: 22px;
}

.app-carousel {
  max-width: 920px;
  margin: 0 auto;
}

.app-carousel__viewport {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.app-carousel__slide {
  margin: 0;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(237, 248, 246, 0.7), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 42px rgba(21, 49, 59, 0.12);
  padding: 14px;
}

.app-carousel__slide img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.app-carousel__slide figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.js-enabled .app-carousel__viewport {
  position: relative;
  display: block;
  min-height: 670px;
  overflow: hidden;
  perspective: 1200px;
}

.js-enabled .app-carousel__slide {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: min(360px, 76vw);
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.72);
  transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
  will-change: transform, opacity;
}

.js-enabled .app-carousel__slide.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1) rotateY(0deg);
  box-shadow: var(--shadow);
}

.js-enabled .app-carousel__slide.is-prev {
  z-index: 3;
  opacity: 0.72;
  filter: saturate(0.9);
  transform: translateX(-112%) scale(0.78) rotateY(24deg);
}

.js-enabled .app-carousel__slide.is-next {
  z-index: 3;
  opacity: 0.72;
  filter: saturate(0.9);
  transform: translateX(12%) scale(0.78) rotateY(-24deg);
}

.js-enabled .app-carousel__slide.is-far-prev {
  z-index: 1;
  opacity: 0.24;
  filter: saturate(0.75);
  transform: translateX(-152%) scale(0.62) rotateY(32deg);
}

.js-enabled .app-carousel__slide.is-far-next {
  z-index: 1;
  opacity: 0.24;
  filter: saturate(0.75);
  transform: translateX(52%) scale(0.62) rotateY(-32deg);
}

.js-enabled .app-carousel__slide.is-hidden {
  z-index: 0;
  opacity: 0;
  transform: translateX(-50%) scale(0.55);
}

.js-enabled .app-carousel__slide:not(.is-active) figcaption {
  opacity: 0;
}

.app-carousel__controls {
  display: none;
}

.js-enabled .app-carousel__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.app-carousel__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 111, 168, 0.3);
  border-radius: 999px;
  background: var(--surface);
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(21, 49, 59, 0.08);
}

.app-carousel__button:hover,
.app-carousel__button:focus {
  background: var(--surface-soft);
  color: var(--green-dark);
}

.app-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.app-carousel__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(19, 111, 168, 0.36);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.app-carousel__dots button[aria-current="true"] {
  background: var(--blue);
  border-color: var(--blue);
}

.feature-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

/* ExpiryMate review page */
.expirymate-preview {
  --expiry-green: #25845f;
  --expiry-mint: #e7f7ee;
  --expiry-orange: #d97836;
  --expiry-purple: #7164aa;
  --expiry-teal: #188a87;
  --expiry-amber: #b47716;
}

.expirymate-preview .preview-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 54px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid #cfe8da;
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 203, 93, 0.3) 0, rgba(255, 203, 93, 0) 28%),
    linear-gradient(135deg, #f8fff9 0%, #e5f7ed 52%, #e8f3fa 100%);
  box-shadow: 0 22px 54px rgba(28, 93, 70, 0.13);
}

.expirymate-preview .preview-hero::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 240px;
  height: 240px;
  border: 34px solid rgba(31, 162, 117, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.expirymate-preview .preview-hero__content,
.expirymate-preview .preview-hero__visual {
  position: relative;
  z-index: 1;
}

.expirymate-preview .preview-hero h1 {
  margin-bottom: 8px;
  color: #123f35;
}

.expirymate-preview .preview-hero h2 {
  max-width: 760px;
  margin-top: 22px;
}

.expirymate-preview .preview-hero__visual {
  justify-self: center;
}

.expirymate-preview .preview-hero__visual img {
  width: min(100%, 390px);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(24, 83, 66, 0.2);
  transform: rotate(1deg);
}

.expirymate-preview .preview-hero .status {
  border-color: rgba(37, 132, 95, 0.38);
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(37, 132, 95, 0.12);
}

.expirymate-preview .benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.expirymate-preview .benefit-list li {
  position: relative;
  padding: 8px 12px 8px 34px;
  border: 1px solid rgba(37, 132, 95, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.35;
}

.expirymate-preview .benefit-list li::before {
  position: absolute;
  left: 12px;
  color: var(--expiry-green);
  content: "✓";
}

.expirymate-preview .preview-band {
  position: relative;
}

.expirymate-preview .preview-band::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: -50vw;
  bottom: 18px;
  left: -50vw;
  content: "";
}

.expirymate-preview .preview-band--cool::before {
  background: linear-gradient(90deg, #eefaf5, #eef7fb);
}

.expirymate-preview .preview-band--warm::before {
  background: linear-gradient(90deg, #fff9ec, #f8f4eb);
}

.expirymate-preview .app-preview .section-heading {
  max-width: 700px;
}

.expirymate-preview .app-carousel__slide {
  border-color: #cde6d9;
  background: linear-gradient(180deg, #f5fff8, #ffffff);
}

.expirymate-preview .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.expirymate-preview .feature-card,
.expirymate-preview .highlight-card,
.expirymate-preview .example-card,
.expirymate-preview .coming-soon-callout {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(21, 49, 59, 0.08);
}

.expirymate-preview .feature-card {
  --card-accent: var(--expiry-green);
  --card-tint: var(--expiry-mint);
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-top: 5px solid var(--card-accent);
}

.expirymate-preview .feature-card::after {
  position: absolute;
  top: -52px;
  right: -52px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--card-tint);
  content: "";
  opacity: 0.68;
  pointer-events: none;
}

.expirymate-preview .feature-card.accent-orange {
  --card-accent: var(--expiry-orange);
  --card-tint: #fff0e4;
}

.expirymate-preview .feature-card.accent-purple {
  --card-accent: var(--expiry-purple);
  --card-tint: #f0edfb;
}

.expirymate-preview .feature-card.accent-blue {
  --card-accent: var(--blue);
  --card-tint: #e7f3fa;
}

.expirymate-preview .feature-card.accent-teal {
  --card-accent: var(--expiry-teal);
  --card-tint: #e3f6f4;
}

.expirymate-preview .feature-card.accent-amber {
  --card-accent: var(--expiry-amber);
  --card-tint: #fff4d9;
}

.expirymate-preview .feature-card.accent-slate {
  --card-accent: #506d80;
  --card-tint: #edf2f5;
}

.expirymate-preview .feature-icon,
.expirymate-preview .example-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--card-tint);
  color: var(--card-accent);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.expirymate-preview .feature-card h3 {
  position: relative;
  z-index: 1;
  color: var(--card-accent);
  font-size: 1.45rem;
}

.expirymate-preview .feature-card > p {
  color: var(--muted);
}

.expirymate-preview .feature-list li + li {
  margin-top: 7px;
}

.expirymate-preview .feature-list {
  padding-left: 0;
  list-style: none;
}

.expirymate-preview .feature-list li {
  position: relative;
  padding-left: 24px;
}

.expirymate-preview .feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--card-accent);
  content: "✓";
  font-weight: 900;
}

.expirymate-preview .preview-section-soft {
  position: relative;
}

.expirymate-preview .preview-section-soft::before {
  position: absolute;
  z-index: -1;
  top: 20px;
  right: -50vw;
  bottom: 20px;
  left: -50vw;
  background: linear-gradient(90deg, #eaf8f0, #f7f4e9);
  content: "";
}

.expirymate-preview .example-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.expirymate-preview .example-card {
  --card-accent: var(--expiry-green);
  --card-tint: var(--expiry-mint);
  padding: 24px;
  border-top: 4px solid var(--card-accent);
}

.expirymate-preview .example-card:nth-child(2) {
  --card-accent: var(--blue);
  --card-tint: #e7f3fa;
}

.expirymate-preview .example-card:nth-child(3) {
  --card-accent: var(--expiry-orange);
  --card-tint: #fff0e4;
}

.expirymate-preview .example-card:nth-child(4) {
  --card-accent: var(--expiry-purple);
  --card-tint: #f0edfb;
}

.expirymate-preview .example-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.expirymate-preview .highlight-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.55fr) minmax(0, 1.45fr);
  gap: 8px 44px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-color: #d9e4bd;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 193, 69, 0.2), transparent 28%),
    linear-gradient(135deg, #fffdf4, #eaf7ed);
}

.expirymate-preview .highlight-card .eyebrow {
  grid-column: 1;
}

.expirymate-preview .highlight-card h2 {
  grid-column: 1;
}

.expirymate-preview .highlight-card p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 850px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.expirymate-preview .coming-soon-callout {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border-color: #cae7d7;
  border-left: 6px solid var(--expiry-green);
  background: linear-gradient(110deg, #f3fcf6, #eef8f5);
  text-align: center;
}

.expirymate-preview .coming-soon-callout h2 {
  color: var(--green-dark);
}

.expirymate-preview .coming-soon-callout p:last-child {
  margin-bottom: 0;
}

.expirymate-preview .support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.expirymate-preview .support-links a {
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.policy-card h2 {
  font-size: 1.45rem;
}

.policy-meta {
  color: var(--muted);
  font-weight: 700;
}

.source-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
}

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

.advisory-table {
  width: 100%;
  border-collapse: collapse;
}

.advisory-table th,
.advisory-table td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.advisory-table th {
  background: var(--surface-soft);
}

.site-footer {
  margin-top: 40px;
  background: #102f3a;
  color: #e9f8f6;
}

.footer-inner {
  padding-top: 34px;
  padding-bottom: 34px;
}

.site-footer a {
  color: #9ee8cc;
}

@media (max-width: 1100px) {
  .app-spotlight,
  .app-detail-list.overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner,
  .intro-grid,
  .split,
  .app-detail,
  .promo-card,
  .product-hunt-card,
  .taskmate-hero {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .promo-actions {
    justify-content: flex-start;
  }

  .product-hunt-actions {
    justify-content: flex-start;
  }

  .cards,
  .cards.two,
  .app-detail-list:not(.overview) {
    grid-template-columns: 1fr;
  }

  .expirymate-preview .preview-hero,
  .expirymate-preview .highlight-card {
    grid-template-columns: 1fr;
  }

  .expirymate-preview .preview-hero__visual {
    justify-self: start;
  }

  .taskmate-hero__mark {
    justify-self: start;
  }

  .expirymate-preview .highlight-card .eyebrow,
  .expirymate-preview .highlight-card h2,
  .expirymate-preview .highlight-card p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

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

@media (max-width: 700px) {
  .app-spotlight,
  .app-detail-list.overview {
    grid-template-columns: 1fr;
  }

  .app-spotlight {
    gap: 18px;
  }

  .app-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    overflow: visible;
  }

  .app-card img {
    width: 88px;
    max-width: 32vw;
    margin-bottom: 14px;
  }

  .app-detail,
  .app-detail-list.overview .app-detail {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .app-detail img,
  .app-detail-list.overview .app-detail img {
    width: 82px;
    max-width: 32vw;
  }

  .app-actions {
    align-items: stretch;
  }

  .app-card__actions .button,
  .app-actions .button,
  .promo-actions .button {
    text-align: center;
  }

  .app-carousel {
    max-width: 100%;
    overflow: hidden;
  }

  .js-enabled .app-carousel__viewport {
    min-height: 0;
    overflow: visible;
    perspective: none;
  }

  .js-enabled .app-carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: min(100%, 340px);
    margin: 0 auto;
    opacity: 0;
    transform: none;
    transition: opacity 180ms ease;
  }

  .js-enabled .app-carousel__slide.is-active {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: none;
  }

  .js-enabled .app-carousel__slide.is-prev,
  .js-enabled .app-carousel__slide.is-next,
  .js-enabled .app-carousel__slide.is-far-prev,
  .js-enabled .app-carousel__slide.is-far-next,
  .js-enabled .app-carousel__slide.is-hidden {
    z-index: 0;
    opacity: 0;
    transform: none;
  }

  .js-enabled .app-carousel__slide:not(.is-active) figcaption {
    opacity: 0;
  }

  .expirymate-preview .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 42px 0;
  }

  .page-hero {
    padding-top: 46px;
  }

  .panel,
  .page-card,
  .policy-card,
  .app-card,
  .promo-card {
    padding: 22px;
  }

  .promo-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .js-enabled .app-carousel__slide {
    padding: 14px;
  }

  .expirymate-preview .benefit-list,
  .expirymate-preview .example-grid {
    grid-template-columns: 1fr;
  }

  .expirymate-preview .feature-card,
  .expirymate-preview .example-card,
  .expirymate-preview .coming-soon-callout {
    padding: 22px;
  }

  .expirymate-preview .preview-hero {
    margin-top: 20px;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .expirymate-preview .preview-hero__visual img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .app-carousel__slide {
    transition: none;
  }
}
