/* =========================================================================
   EconoPlus — Page sections
   Homepage-specific blocks: hero + phone mockup + floating cards,
   booklet-of-the-week feature, install band, merchant teaser,
   newsletter, final CTA. Depends on tokens/base/components.
   ========================================================================= */

/* =======================================================================
   HERO
   ======================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, var(--ep-red-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--ep-white) 0%, var(--ep-gray) 100%);
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(2.5rem, 2rem + 5vw, 6rem);
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}
.hero__copy { max-width: 38rem; }
.hero h1 { font-size: var(--ep-fs-display); margin-bottom: 1.25rem; }
.hero h1 .hero__accent { color: var(--ep-red-ink); }

/* Rotating subhead */
.hero__rotator {
  /* The five phrases used to sit in normal flow, one under another, with only
     opacity hiding four of them — about 115px of dead space that pushed the
     call-to-action buttons below the fold on a phone. Overlaying them means
     the block is as tall as one phrase, not five. */
  position: relative;
  min-height: 3.2em;   /* the longest phrase wraps to two lines at 320px */
  /* That overlay rewrite replaced this rule outright instead of extending it,
     and took the subhead's own type with it. The markup is a bare <p> with no
     other class, so these three are the only thing making it read as a lead
     rather than as body copy, and the only gap between it and the button row.
     The min-height above is in em, so it goes on tracking the size set here. */
  font-size: var(--ep-fs-lead);
  color: var(--ep-text-muted);
  margin-bottom: 1.75rem;
}
.hero__rotator-item {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ep-dur) var(--ep-ease), transform var(--ep-dur) var(--ep-ease);
}
.hero__rotator-item.is-active { opacity: 1; transform: none; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.hero__trust { display: inline-flex; align-items: center; gap: .6rem; font-size: var(--ep-fs-sm); color: var(--ep-text-muted); font-weight: 500; }
.hero__trust .hero__stars { color: var(--ep-red-ink); display: inline-flex; gap: 1px; }
.hero__trust .hero__stars svg { width: 16px; height: 16px; }

/* ---- Phone mockup (built in CSS so it's swappable for final art) ------- */
.hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.phone {
  position: relative;
  width: clamp(240px, 64vw, 300px);
  aspect-ratio: 300 / 610;
  background: var(--ep-charcoal);
  border-radius: 44px;
  padding: 11px;
  box-shadow: var(--ep-shadow-lg), 0 0 0 2px rgba(31,31,35,.06);
  z-index: 2;
}
.phone::before {           /* notch / dynamic island */
  content: "";
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; border-radius: 999px;
  background: var(--ep-charcoal); z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--ep-gray) 100%);
  display: flex; flex-direction: column;
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }

/* Lightweight in-phone "app" UI used as a labelled placeholder for app-mockup art */
.appui { display: flex; flex-direction: column; height: 100%; }
.appui__bar { display: flex; align-items: center; justify-content: space-between; padding: 30px 18px 8px; font-size: 11px; font-weight: 700; }
.appui__top { padding: 4px 18px 12px; }
.appui__hi { font-family: var(--ep-font-display); font-weight: 800; font-size: 18px; }
.appui__sub { font-size: 11px; color: var(--ep-text-muted); }
.appui__tabs { display: flex; gap: 6px; padding: 4px 18px 12px; }
.appui__tab { font-size: 10px; font-weight: 700; padding: 5px 9px; border-radius: 999px; background: var(--ep-gray); color: var(--ep-text-muted); }
.appui__tab.is-on { background: var(--ep-red-ink); color: #fff; }
.appui__feature { margin: 0 14px 12px; border-radius: 16px; overflow: hidden; background: var(--ep-charcoal); color: #fff; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.appui__feature b { font-size: 13px; }
.appui__feature span { font-size: 10px; color: rgba(255,255,255,.7); }
.appui__pill { align-self: flex-start; font-size: 9px; font-weight: 700; background: var(--ep-red); padding: 4px 8px; border-radius: 999px; }
.appui__list { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 14px; overflow: hidden; }
.appui__cell { background: #fff; border-radius: 12px; box-shadow: var(--ep-shadow-sm); padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.appui__thumb { aspect-ratio: 16/11; border-radius: 8px; background: linear-gradient(135deg, var(--ep-red-soft), var(--ep-gray)); }
.appui__disc { font-size: 11px; font-weight: 800; color: var(--ep-red-ink); font-family: var(--ep-font-display); }
.appui__name { font-size: 9px; color: var(--ep-text-muted); line-height: 1.3; }
.appui__nav { display: flex; justify-content: space-around; padding: 10px 0 14px; border-top: 1px solid var(--ep-border); margin-top: 8px; background: #fff; }
.appui__navitem { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8px; color: var(--ep-text-muted); }
.appui__navitem svg { width: 16px; height: 16px; }
.appui__navitem.is-on { color: var(--ep-red-ink); }

/* Floating glassmorphism coupon cards around the phone */
.float-card {
  position: absolute;
  z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .9rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow);
  font-weight: 700; font-size: var(--ep-fs-sm);
  letter-spacing: var(--ep-ls-tight);
  animation: ep-float 6s var(--ep-ease) infinite;
}
.float-card__icon {
  width: 34px; height: 34px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--ep-red-soft); color: var(--ep-red-ink);
}
.float-card__icon svg { width: 18px; height: 18px; }
.float-card small { display: block; font-weight: 500; color: var(--ep-text-muted); font-size: 11px; }

.float-card--a { top: 6%;  left: -2%;  animation-delay: 0s; }
.float-card--b { top: 30%; right: -6%; animation-delay: -1.5s; }
.float-card--c { bottom: 20%; left: -6%; animation-delay: -3s; }
.float-card--d { bottom: 4%; right: 2%; animation-delay: -4.5s; }

@keyframes ep-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@media (max-width: 560px) {
  .float-card--a { left: 0; top: 2%; }
  .float-card--b { right: 0; }
  .float-card--c { left: 0; }
  .float-card--d { right: 0; }
  .float-card small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none; }
}

/* Soft red blob behind phone */
.hero__blob {
  position: absolute; z-index: 1;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,30,38,.16), transparent 65%);
  filter: blur(10px);
  border-radius: 50%;
}

/* =======================================================================
   Marquee section heading row
   ======================================================================= */
.partner { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); }
.partner__head { text-align: center; margin-bottom: 2rem; }
.partner__head p { color: var(--ep-text-muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: var(--ep-fs-sm); }

/* =======================================================================
   Booklet of the Week — big horizontal feature card
   ======================================================================= */
.feature {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  background: var(--ep-white);
  border-radius: var(--ep-radius-lg);
  box-shadow: var(--ep-shadow);
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
@media (min-width: 880px) { .feature { grid-template-columns: 1fr 1fr; } }
.feature__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--ep-radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ep-red-soft), var(--ep-gray));
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.feature__body h2 { font-size: var(--ep-fs-h2); }
.feature__body p { color: var(--ep-text-muted); }
.feature__meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Compact countdown */
.countdown { display: flex; gap: .5rem; }
.countdown__cell {
  min-width: 56px; text-align: center;
  background: var(--ep-gray); border-radius: var(--ep-radius-sm);
  padding: .5rem .25rem;
}
.countdown__num { font-family: var(--ep-font-display); font-weight: 800; font-size: 1.4rem; line-height: 1; }
.countdown__lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--ep-text-muted); margin-top: .25rem; }

/* =======================================================================
   How it works — 3 steps
   ======================================================================= */
.steps { display: grid; gap: var(--ep-gutter); grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  background: var(--ep-white);
  border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow-sm);
  padding: 2rem 1.5rem;
  text-align: center;
}
.step__num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--ep-red-ink); color: #fff;
  font-family: var(--ep-font-display); font-weight: 800;
  box-shadow: var(--ep-shadow-red);
}
.step__icon {
  width: 64px; height: 64px; margin: 1rem auto 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 18px; background: var(--ep-gray); color: var(--ep-charcoal);
}
.step__icon svg { width: 32px; height: 32px; }
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--ep-text-muted); font-size: var(--ep-fs-sm); }

/* =======================================================================
   Install band — "Get the EconoPlus Pass"
   ======================================================================= */
.install {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255,30,38,.14), transparent 50%),
    var(--ep-charcoal);
  color: var(--ep-white);
  border-radius: var(--ep-radius-lg);
  overflow: hidden;
}
.install__grid {
  display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: center;
  padding: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 880px) { .install__grid { grid-template-columns: 1.1fr .9fr; } }
.install h2 { color: #fff; margin-bottom: 1rem; }
.install p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; max-width: 32rem; }
.install__or { font-size: var(--ep-fs-sm); color: rgba(255,255,255,.6); margin: 1rem 0 .5rem; }

/* Wallet-style QR pass card shown in the install band */
.pass {
  max-width: 320px; margin-inline: auto;
  background: var(--ep-white); color: var(--ep-charcoal);
  border-radius: var(--ep-radius-lg);
  box-shadow: var(--ep-shadow-lg);
  overflow: hidden;
}
.pass__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; background: var(--ep-red-ink); color: #fff; }
.pass__head img { height: 22px; filter: brightness(0) invert(1); }
.pass__head span { font-size: var(--ep-fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.pass__brand { font-family: var(--ep-font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: var(--ep-ls-display); color: #fff; }
.pass__brand span { color: #fff; }   /* keep the "$" white on the red header */
.pass__body { padding: 1.5rem 1.25rem; text-align: center; }
.pass__qr { width: 170px; aspect-ratio: 1; margin: 0 auto 1rem; }
.pass__qr svg { width: 100%; height: 100%; }
.pass__merchant { font-weight: 700; }
.pass__offer { font-size: var(--ep-fs-sm); color: var(--ep-text-muted); margin-bottom: 1rem; }
.pass__foot { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.25rem; border-top: 1px dashed var(--ep-border); font-size: var(--ep-fs-xs); color: var(--ep-text-muted); }

/* =======================================================================
   Merchant teaser + dashboard preview
   ======================================================================= */
.merchant-teaser__grid { display: grid; gap: clamp(2rem,4vw,3rem); align-items: center; }
@media (min-width: 880px) { .merchant-teaser__grid { grid-template-columns: .9fr 1.1fr; } }
.flow { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1.5rem 0; }
@media (min-width: 520px) { .flow { grid-template-columns: repeat(3,1fr); } }
.flow__step { display: flex; align-items: center; gap: .75rem; padding: 1rem; background: var(--ep-white); border-radius: var(--ep-radius); box-shadow: var(--ep-shadow-sm); }
.flow__icon { width: 40px; height: 40px; flex: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--ep-red-soft); color: var(--ep-red-ink); }
.flow__icon svg { width: 20px; height: 20px; }
.flow__step b { display: block; font-size: var(--ep-fs-sm); }
.flow__step small { color: var(--ep-text-muted); }

/* Stripe-style dashboard preview */
.dash {
  background: var(--ep-white);
  border-radius: var(--ep-radius-lg);
  box-shadow: var(--ep-shadow);
  padding: clamp(1rem, 2vw, 1.5rem);
}
.dash__bar { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.dash__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--ep-gray-200); }
.dash__dot--r { background: var(--ep-red); }
.dash__title { margin-left: .5rem; font-weight: 700; font-size: var(--ep-fs-sm); }
.dash__kpis { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; margin-bottom: 1rem; }
@media (min-width: 480px) { .dash__kpis { grid-template-columns: repeat(4,1fr); } }
.kpi { background: var(--ep-gray); border-radius: var(--ep-radius); padding: .85rem; }
.kpi__label { font-size: var(--ep-fs-xs); color: var(--ep-text-muted); }
.kpi__val { font-family: var(--ep-font-display); font-weight: 800; font-size: 1.3rem; line-height: 1.1; margin-top: .25rem; }
.kpi__delta { font-size: var(--ep-fs-xs); font-weight: 700; color: var(--ep-red-ink); }
.dash__chart { height: 120px; display: flex; align-items: flex-end; gap: 6px; padding: .75rem; background: var(--ep-gray); border-radius: var(--ep-radius); }
.dash__bar-col { flex: 1; background: linear-gradient(180deg, var(--ep-red), #ff8a8e); border-radius: 6px 6px 0 0; min-height: 8px; }

/* =======================================================================
   Newsletter
   ======================================================================= */
.newsletter {
  background: var(--ep-red-soft);
  border-radius: var(--ep-radius-lg);
  overflow: hidden;
}
/* One column. The second existed only to hold a photograph of a pub, which
   said nothing the copy beside it did not. With the picture gone, splitting
   the panel would leave half of it empty. */
.newsletter__grid {
  display: grid;
  gap: clamp(2rem,4vw,3rem);
  align-items: center;
  padding: clamp(2rem,4vw,4rem);
  max-width: 44rem;
  margin-inline: auto;
}
.newsletter h2 { margin-bottom: .75rem; }
.newsletter p { color: var(--ep-text-muted); margin-bottom: 1.25rem; }
.newsletter form { display: flex; flex-direction: column; gap: .75rem; max-width: 26rem; }
.newsletter__note { font-size: var(--ep-fs-xs); color: var(--ep-text-muted); }

/* =======================================================================
   Final CTA
   ======================================================================= */
.final-cta {
  position: relative;
  text-align: center;
  background:
    radial-gradient(120% 120% at 50% -20%, var(--ep-red-soft), transparent 60%),
    var(--ep-white);
  overflow: hidden;
}
.final-cta__inner { position: relative; z-index: 2; max-width: 40rem; margin-inline: auto; }
.final-cta h2 { font-size: var(--ep-fs-h1); margin-bottom: 1.25rem; }
.final-cta p { color: var(--ep-text-muted); font-size: var(--ep-fs-lead); margin-bottom: 2rem; }
.final-cta__deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.final-cta__deco .float-card { position: absolute; animation-duration: 7s; }
.final-cta__deco .float-card:nth-child(1) { top: 12%; left: 6%; }
.final-cta__deco .float-card:nth-child(2) { top: 22%; right: 8%; animation-delay: -2s; }
.final-cta__deco .float-card:nth-child(3) { bottom: 14%; left: 12%; animation-delay: -4s; }
.final-cta__deco .float-card:nth-child(4) { bottom: 20%; right: 10%; animation-delay: -1s; }
@media (max-width: 768px) { .final-cta__deco { display: none; } }

/* =======================================================================
   INNER PAGES
   ======================================================================= */

/* Page hero (compact header for inner pages) */
.page-hero {
  background:
    radial-gradient(110% 90% at 90% -20%, var(--ep-red-soft), transparent 55%),
    linear-gradient(180deg, var(--ep-white), var(--ep-gray));
  padding-block: clamp(2rem, 1.5rem + 4vw, 4rem);
}
.page-hero__inner { max-width: 52rem; }
.page-hero h1 { font-size: var(--ep-fs-h1); margin-bottom: 1rem; }
.page-hero p { font-size: var(--ep-fs-lead); color: var(--ep-text-muted); }
.page-hero__icon {
  width: 56px; height: 56px; margin-bottom: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px; background: var(--ep-red-soft); color: var(--ep-red-ink);
}
.page-hero__icon svg { width: 28px; height: 28px; }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: var(--ep-fs-sm); color: var(--ep-text-muted); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--ep-text-muted); }
.breadcrumb a:hover { color: var(--ep-charcoal); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.breadcrumb [aria-current="page"] { color: var(--ep-charcoal); font-weight: 600; }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  padding: 1rem; margin-bottom: 1.5rem;
  background: var(--ep-white); border-radius: var(--ep-radius); box-shadow: var(--ep-shadow-sm);
}
.filter-bar__search { display: flex; align-items: center; gap: .5rem; flex: 1 1 220px; padding: .55rem .9rem; background: var(--ep-gray); border-radius: var(--ep-radius-pill); }
.filter-bar__search svg { width: 18px; height: 18px; color: var(--ep-text-muted); flex: none; }
.filter-bar__search input { border: 0; background: transparent; outline: 0; width: 100%; }
.select {
  appearance: none; -webkit-appearance: none;
  padding: .6rem 2.2rem .6rem .9rem; min-height: 44px;
  border: 1.5px solid var(--ep-border); border-radius: var(--ep-radius); background: var(--ep-white);
  font-size: var(--ep-fs-sm); font-weight: 600; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .7rem center;
}
.select:focus { outline: 0; border-color: var(--ep-charcoal); box-shadow: 0 0 0 3px rgba(31,31,35,.08); }
.filter-bar__count { margin-left: auto; font-size: var(--ep-fs-sm); color: var(--ep-text-muted); font-weight: 600; }

/* Category quick-filter chips (merged categories experience on Deals) */
.cat-chips {
  display: flex; flex-wrap: nowrap; gap: .5rem; margin-bottom: 1.5rem;
  overflow-x: auto; padding-bottom: .4rem; scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.cat-chip {
  flex: none; display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .9rem; border-radius: var(--ep-radius-pill);
  background: var(--ep-white); box-shadow: var(--ep-shadow-sm);
  font-size: var(--ep-fs-sm); font-weight: 600; color: var(--ep-charcoal);
  white-space: nowrap; transition: transform var(--ep-dur) var(--ep-ease), background var(--ep-dur) var(--ep-ease), color var(--ep-dur) var(--ep-ease), box-shadow var(--ep-dur) var(--ep-ease);
}
.cat-chip__icon { width: 16px; height: 16px; }
.cat-chip:hover { transform: translateY(-2px); box-shadow: var(--ep-shadow); }
.cat-chip[aria-pressed="true"] { background: var(--ep-red-ink); color: #fff; box-shadow: var(--ep-shadow-red); }

/* Neighbourhood tiles */
.hood-grid { display: grid; gap: var(--ep-gutter); grid-template-columns: repeat(2,1fr); }
@media (min-width: 600px) { .hood-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 980px) { .hood-grid { grid-template-columns: repeat(4,1fr); } }
.hood-tile {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.25rem; background: var(--ep-white); border-radius: var(--ep-radius); box-shadow: var(--ep-shadow-sm);
  transition: transform var(--ep-dur) var(--ep-ease), box-shadow var(--ep-dur) var(--ep-ease);
}
.hood-tile:hover { transform: translateY(-4px); box-shadow: var(--ep-shadow); }
.hood-tile__icon { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--ep-red-soft); color: var(--ep-red-ink); margin-bottom: .35rem; }
.hood-tile__icon svg { width: 20px; height: 20px; }
.hood-tile__name { font-weight: 700; letter-spacing: var(--ep-ls-tight); }
.hood-tile__count { font-size: var(--ep-fs-sm); color: var(--ep-text-muted); }
.region-block + .region-block { margin-top: 2.5rem; }
.region-block__title { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.25rem; }
.region-block__title .chip { font-size: var(--ep-fs-xs); }

/* Merchant directory */
.merchant-grid { display: grid; gap: var(--ep-gutter); grid-template-columns: repeat(auto-fill, minmax(min(100%,220px),1fr)); }
.merchant-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: .5rem;
  padding: 1.5rem; background: var(--ep-white); border-radius: var(--ep-radius); box-shadow: var(--ep-shadow-sm);
  transition: transform var(--ep-dur) var(--ep-ease), box-shadow var(--ep-dur) var(--ep-ease);
}
.merchant-tile:hover { transform: translateY(-4px); box-shadow: var(--ep-shadow); }
.merchant-tile__logo {
  width: 52px; height: 52px; border-radius: 14px; background: var(--ep-gray);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ep-font-display); font-weight: 800; font-size: 1.2rem; color: var(--ep-charcoal);
}
.merchant-tile__name { font-weight: 700; display: flex; align-items: center; gap: .35rem; }
.merchant-tile__verified { width: 16px; height: 16px; color: var(--ep-red-ink); }
.merchant-tile__meta { font-size: var(--ep-fs-sm); color: var(--ep-text-muted); }

/* Booklet cards */
.booklet-grid { display: grid; gap: var(--ep-gutter); grid-template-columns: repeat(auto-fill, minmax(min(100%,300px),1fr)); }
.booklet-card { display: flex; flex-direction: column; background: var(--ep-white); border-radius: var(--ep-radius); box-shadow: var(--ep-shadow); overflow: hidden; transition: transform var(--ep-dur) var(--ep-ease), box-shadow var(--ep-dur) var(--ep-ease); }
.booklet-card:hover { transform: translateY(-4px); box-shadow: var(--ep-shadow-lg); }
.booklet-card--featured { outline: 2px solid var(--ep-red); outline-offset: -2px; }
.booklet-card__media { position: relative; display: block; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--ep-red-soft), var(--ep-gray)); }
.booklet-card__ribbon { position: absolute; top: .75rem; left: .75rem; background: var(--ep-white); }
.booklet-card__body { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; padding: 1.25rem; }
.booklet-card__date { font-size: var(--ep-fs-xs); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ep-red-ink); }
.booklet-card__title { font-size: 1.2rem; }
.booklet-card__blurb { font-size: var(--ep-fs-sm); color: var(--ep-text-muted); }
.booklet-card__meta { display: flex; flex-wrap: wrap; gap: .5rem; }

/* FAQ accordion */
.faq-list { max-width: 48rem; margin-inline: auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--ep-white); border-radius: var(--ep-radius); box-shadow: var(--ep-shadow-sm); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem; font-weight: 700; cursor: pointer; list-style: none;
  font-family: var(--ep-font-display); letter-spacing: var(--ep-ls-tight);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-item__icon { flex: none; width: 24px; height: 24px; color: var(--ep-red-ink); transition: transform var(--ep-dur) var(--ep-ease); }
.faq-item[open] summary .faq-item__icon { transform: rotate(45deg); }
.faq-item__body { padding: 0 1.35rem 1.25rem; color: var(--ep-text-muted); line-height: 1.65; }

/* Long-form prose (about, legal) */
.prose { max-width: var(--ep-maxw-prose); margin-inline: auto; }
.prose h2 { font-size: var(--ep-fs-h3); margin: 2.25rem 0 .75rem; }
.prose h3 { font-size: 1.15rem; margin: 1.5rem 0 .5rem; }
.prose p, .prose li { color: var(--ep-charcoal); line-height: var(--ep-lh-body); }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--ep-red-ink); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose__updated { font-size: var(--ep-fs-sm); color: var(--ep-text-muted); margin-bottom: 2rem; }

/* Contact layout */
.contact-grid { display: grid; gap: clamp(2rem,4vw,3rem); align-items: start; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-card { background: var(--ep-white); border-radius: var(--ep-radius); box-shadow: var(--ep-shadow-sm); padding: clamp(1.5rem,3vw,2.25rem); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info__item { display: flex; gap: .85rem; align-items: flex-start; }
.contact-info__icon { width: 42px; height: 42px; flex: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--ep-red-soft); color: var(--ep-red-ink); }
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__item b { display: block; }
.contact-info__item span { color: var(--ep-text-muted); font-size: var(--ep-fs-sm); }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-stack { display: flex; flex-direction: column; gap: 1rem; }
textarea.input { min-height: 130px; resize: vertical; }

/* How-it-works QR redemption showcase */
.redeem-show { display: grid; gap: clamp(2rem,4vw,3rem); align-items: center; }
@media (min-width: 880px) { .redeem-show { grid-template-columns: 1fr 1fr; } }
.redeem-show__card { max-width: 340px; margin-inline: auto; background: var(--ep-white); border-radius: var(--ep-radius-lg); box-shadow: var(--ep-shadow-lg); overflow: hidden; }

/* Become-a-merchant pricing / benefit cards */
.benefit-grid { display: grid; gap: var(--ep-gutter); grid-template-columns: 1fr; }
@media (min-width: 760px) { .benefit-grid { grid-template-columns: repeat(3,1fr); } }
.benefit { background: var(--ep-white); border-radius: var(--ep-radius); box-shadow: var(--ep-shadow-sm); padding: 1.75rem 1.5rem; }
.benefit__icon { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--ep-red-soft); color: var(--ep-red-ink); margin-bottom: 1rem; }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { margin-bottom: .5rem; }
.benefit p { color: var(--ep-text-muted); font-size: var(--ep-fs-sm); }

/* CTA banner (reused on inner pages) */
.cta-band { background: var(--ep-charcoal); color: #fff; border-radius: var(--ep-radius-lg); padding: clamp(2rem,4vw,3.5rem); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 40rem; margin: 0 auto 1.75rem; }

/* =======================================================================
   VISUAL COMPONENTS — West Island map + 3D digital booklet mockup
   ======================================================================= */

/* ---- West Island map ---- */
.wi-map-wrap {
  position: relative;
  border-radius: var(--ep-radius-lg);
  overflow: hidden;
  box-shadow: var(--ep-shadow);
  background: var(--ep-white);
}
.wi-map { width: 100%; height: auto; display: block; }
.wi-land { filter: drop-shadow(0 8px 14px rgba(31,31,35,.06)); }
.wi-pin__dot { fill: var(--ep-red); }
.wi-pin__core { fill: #fff; }
.wi-pin__pulse { fill: rgba(255,30,38,.30); transform-box: fill-box; transform-origin: center; }
.wi-pin__label {
  font-family: var(--ep-font-ui); font-size: 13px; font-weight: 600;
  fill: var(--ep-charcoal); paint-order: stroke; stroke: #fff; stroke-width: 3px;
}
.wi-pin { cursor: default; transition: transform var(--ep-dur) var(--ep-ease); }
.wi-pin:hover { transform: translate(var(--tx,0), var(--ty,0)) scale(1.0); }
.wi-pin:hover .wi-pin__dot { fill: var(--ep-red-hover); }
@keyframes wi-pulse {
  0%   { transform: scale(.5); opacity: .7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
.wi-pin__pulse { animation: wi-pulse 2.8s var(--ep-ease) infinite; animation-delay: var(--d, 0s); }
/* Floating map legend chip */
.wi-legend {
  position: absolute; left: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border-radius: var(--ep-radius-pill); padding: .5rem .85rem;
  box-shadow: var(--ep-shadow-sm); font-size: var(--ep-fs-sm); font-weight: 600;
}
.wi-legend .wi-legend__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ep-red); flex: none; }
@media (prefers-reduced-motion: reduce) { .wi-pin__pulse { animation: none; opacity: .25; } }

/* ---- 3D digital-booklet mockup ---- */
.bk3d { position: relative; perspective: 1500px; display: flex; align-items: center; justify-content: center; min-height: clamp(300px, 40vw, 420px); width: 100%; }
.bk3d__stage { transform-style: preserve-3d; animation: bk-float 8s var(--ep-ease) infinite; }
.bk3d__book {
  display: flex; transform: rotateX(14deg) rotateY(-18deg) rotateZ(1deg);
  transform-style: preserve-3d;
  border-radius: 10px;
  filter: drop-shadow(0 30px 45px rgba(31,31,35,.28));
}
.bk3d__page {
  width: clamp(140px, 19vw, 184px); aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #fff, #fafafb);
  padding: 14px; display: flex; flex-direction: column; gap: 10px;
}
.bk3d__page--left  { border-radius: 12px 0 0 12px; box-shadow: inset -14px 0 22px -16px rgba(31,31,35,.22); }
.bk3d__page--right { border-radius: 0 12px 12px 0; box-shadow: inset 14px 0 22px -16px rgba(31,31,35,.16); }
.bk3d__spine { width: 10px; background: linear-gradient(180deg, var(--ep-red), var(--ep-red-press)); border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.05) inset; }
.bk3d__head { display: flex; align-items: center; justify-content: space-between; }
.bk3d__ribbon { font-family: var(--ep-font-display); font-weight: 800; font-size: 12px; color: var(--ep-red-ink); letter-spacing: -.01em; }
.bk3d__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ep-red); }
.bk3d__week { font-size: 10px; color: var(--ep-text-muted); margin-top: -4px; }
.bk3d__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; flex: 1; }
.bk3d__cell { background: #fff; border-radius: 8px; box-shadow: var(--ep-shadow-sm); padding: 6px; display: flex; flex-direction: column; gap: 4px; }
.bk3d__badge { align-self: flex-start; font-family: var(--ep-font-display); font-weight: 800; font-size: 9px; color: #fff; background: var(--ep-red-ink); border-radius: 5px; padding: 2px 5px; }
.bk3d__thumb { aspect-ratio: 16/9; border-radius: 5px; background: linear-gradient(135deg, var(--ep-red-soft), var(--ep-gray)); }
.bk3d__name { font-size: 8px; color: var(--ep-text-muted); }
.bk3d__foot { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; color: var(--ep-charcoal); margin-top: auto; }
.bk3d__qr { width: 30px; height: 30px; flex: none; background: #fff; border-radius: 5px; padding: 2px; box-shadow: var(--ep-shadow-sm); }
.bk3d__qr svg { width: 100%; height: 100%; }
.bk3d__floats { position: absolute; inset: 0; pointer-events: none; }
.bk3d__float {
  position: absolute; font-family: var(--ep-font-display); font-weight: 800; font-size: .8rem;
  background: rgba(255,255,255,.78); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--ep-radius-sm); padding: .45rem .7rem; box-shadow: var(--ep-shadow); color: var(--ep-charcoal);
  animation: ep-float 6s var(--ep-ease) infinite;
}
.bk3d__float--a { top: 6%; right: 8%; color: var(--ep-red-ink); }
.bk3d__float--b { bottom: 14%; left: 4%; animation-delay: -2s; }
.bk3d__float--c { top: 40%; right: 0; animation-delay: -4s; color: var(--ep-red-ink); }
@keyframes bk-float {
  0%,100% { transform: translateY(0) rotateX(0); }
  50%     { transform: translateY(-14px) rotateX(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .bk3d__stage, .bk3d__float { animation: none; }
}

/* Hyper-local map section layout */
.local-map__grid { display: grid; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
@media (min-width: 920px) { .local-map__grid { grid-template-columns: 1fr 1.15fr; } }
.hood-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.hood-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .9rem; background: var(--ep-white); border-radius: var(--ep-radius-pill);
  box-shadow: var(--ep-shadow-sm); font-size: var(--ep-fs-sm); font-weight: 600; color: var(--ep-charcoal);
  transition: transform var(--ep-dur) var(--ep-ease), box-shadow var(--ep-dur) var(--ep-ease), color var(--ep-dur) var(--ep-ease);
}
.hood-pill svg { width: 14px; height: 14px; color: var(--ep-red-ink); }
.hood-pill:hover { transform: translateY(-2px); box-shadow: var(--ep-shadow); color: var(--ep-red-ink); }

/* =======================================================================
   EXTRA ANIMATIONS / MOTION
   ======================================================================= */
/* Button sheen sweep on hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ep-ease);
}
.btn--primary:hover::after { left: 140%; }
@media (prefers-reduced-motion: reduce) { .btn--primary::after { display: none; } }

/* Idle 3D tilt on the hero phone */
@keyframes phone-tilt {
  0%,100% { transform: rotateY(-8deg) rotateX(2deg) translateY(0); }
  50%     { transform: rotateY(-2deg) rotateX(0deg) translateY(-8px); }
}
.hero__stage { perspective: 1600px; }
.js .phone { animation: phone-tilt 9s var(--ep-ease) infinite; transform-style: preserve-3d; }
@media (prefers-reduced-motion: reduce) { .js .phone { animation: none; } }

/* Reveal variants */
.js [data-reveal="scale"] { opacity: 0; transform: scale(.94); }
.js [data-reveal="scale"].is-visible { opacity: 1; transform: none; }
.js [data-reveal="left"] { opacity: 0; transform: translateX(-26px); }
.js [data-reveal="left"].is-visible { opacity: 1; transform: none; }
.js [data-reveal="right"] { opacity: 0; transform: translateX(26px); }
.js [data-reveal="right"].is-visible { opacity: 1; transform: none; }

/* Animated soft gradient blobs (decorative) */
.blob {
  position: absolute; border-radius: 50%; filter: blur(34px); opacity: .5; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(255,30,38,.22), transparent 70%);
  animation: blob-drift 16s var(--ep-ease) infinite;
}
@keyframes blob-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(24px,-18px) scale(1.08); }
  66%     { transform: translate(-18px,14px) scale(.96); }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

/* Section divider with subtle animated shimmer accent */
.accent-rule { height: 4px; width: 64px; border-radius: 999px; background: var(--ep-red); margin: 0 0 1.25rem; }
.ep-section-head--center .accent-rule { margin-inline: auto; }

/* Generic labelled image placeholder (so empty slots read clearly) */
.img-slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; width: 100%; height: 100%;
  color: var(--ep-text-muted);
  background:
    linear-gradient(135deg, var(--ep-gray) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, var(--ep-gray) 25%, transparent 25%) -10px 0,
    var(--ep-white);
  background-size: 20px 20px;
  font-size: var(--ep-fs-xs); font-weight: 600;
}
.img-slot svg { width: 40px; height: 40px; color: var(--ep-gray-500); }
.img-slot span { padding: 0 1rem; text-align: center; }
/* A bordered, roomier frame so labelled image areas read as deliberate slots */
.img-slot--framed { border: 2px dashed var(--ep-gray-200); border-radius: var(--ep-radius); }
.img-frame { width: 100%; border-radius: var(--ep-radius); overflow: hidden; box-shadow: var(--ep-shadow-sm); background: linear-gradient(135deg, #fff, var(--ep-gray)); }
.img-frame--wide { aspect-ratio: 16 / 9; }
.img-frame--tall { aspect-ratio: 3 / 4; }
.img-frame--square { aspect-ratio: 1; }
/* Roomier feature media + newsletter media */
.feature__media { aspect-ratio: 5 / 4; min-height: 320px; }

/* ============================================================================
   Merchant directory  (en/merchants.html · fr/commercants.html)
   The information half of the hub: who is on EconoPlus and how to reach them.
   Every card links into the app, which is where browsing and redeeming live.
   ========================================================================== */
.dir-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.dir-chip {
  border: 1px solid var(--ep-border);
  background: var(--ep-white);
  color: var(--ep-charcoal);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;          /* thumb target */
  transition: background .15s, border-color .15s, color .15s;
}
.dir-chip:hover { border-color: var(--ep-charcoal); }
.dir-chip.is-on { background: var(--ep-charcoal); border-color: var(--ep-charcoal); color: var(--ep-white); }

.dir-grid {
  display: grid;
  gap: 1.25rem;
  /* min(100%, 310px) — without the min() a 310px column cannot shrink and the
     grid pushes past the viewport below 342px, which is a horizontal scrollbar
     on an iPhone SE. Every other grid here already guards it this way. */
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 310px), 1fr));
}
.dir-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  background: var(--ep-white);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 1.25rem;
}
.dir-card__head { display: flex; align-items: center; gap: .85rem; }
.dir-card__logo {
  width: 56px; height: 56px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ep-white);
  border: 1px solid var(--ep-border);
  border-radius: 10px;
  overflow: hidden;
}
/* Contained, never cropped — these files are a mix of wide wordmarks, square
   badges, dark marks and white-on-transparent ones. */
.dir-card__logo img { max-width: 84%; max-height: 84%; width: auto; height: auto; object-fit: contain; display: block; }
.dir-card__logo--mark {
  font-family: var(--ep-font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--ep-red-ink); background: var(--ep-gray);
}
.dir-card__id { min-width: 0; }
.dir-card__id h3 { font-family: var(--ep-font-display); font-size: 1.02rem; font-weight: 700; line-height: 1.28; }
.dir-card__id h3 a { color: inherit; text-decoration: none; }
.dir-card__id h3 a:hover { color: var(--ep-red-ink); }
.dir-card__cat {
  display: flex; align-items: center; gap: .35rem;
  margin-top: .2rem; font-size: .8rem; color: var(--ep-text-muted);
}
.dir-card__cat svg { width: 14px; height: 14px; flex: none; }

.dir-card__blurb {
  font-size: var(--ep-fs-sm); color: var(--ep-text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.dir-card__offer {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .85rem;
  background: var(--ep-gray);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ep-charcoal);
  font-size: var(--ep-fs-sm);
  font-weight: 600;
  transition: background .15s;
}
.dir-card__offer:hover { background: var(--ep-red-soft); }
.dir-card__offer .badge-discount { position: static; flex: none; }
.dir-card__offer > span:last-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.dir-card__meta {
  display: flex; flex-direction: column; gap: .4rem;
  margin-top: auto; padding-top: .25rem;
  font-size: .82rem; color: var(--ep-text-muted);
}
/* overflow-wrap:anywhere, not break-word: the merchant email is a bare text
   node inside this flex link, so it is an anonymous flex item with the default
   min-width:auto and cannot shrink below its longest word — and an email has no
   break opportunity in it. Only `anywhere` reduces the min-content size that
   minimum is computed from. Today's longest address clears a 320px card by
   about ten pixels; the next merchant with a longer one would have pushed
   through the edge, and body{overflow-x:hidden} would have clipped it silently
   rather than showing anyone a scrollbar. */
.dir-card__meta a, .dir-card__meta span { display: flex; align-items: center; gap: .4rem; color: inherit; text-decoration: none; overflow-wrap: anywhere; }
.dir-card__meta a:hover { color: var(--ep-red-ink); }
.dir-card__meta svg { width: 14px; height: 14px; flex: none; }


/* The West Island map is drawn in a 720-wide viewBox and scaled to fit. On a
   390px phone that renders its 13px labels at roughly 7px — decoration, not
   information. The .hood-pills list directly above it carries the same
   neighbourhood names at a readable size and links to the same places, so
   below the desktop breakpoint the map keeps its shape and drops its text. */
@media (max-width: 919px) {
  .wi-pin__label { display: none; }
}

/* ---- Launch phase: now → next ---------------------------------------------
   Two rows, one for what is live today and one for what is coming, so the
   site never reads as "a newsletter" and never over-promises the app. */
.phases { display: grid; gap: 1rem; }
.phase {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.15rem; align-items: start;
  padding: 1.35rem 1.5rem; background: var(--ep-white); border-radius: var(--ep-radius);
  box-shadow: var(--ep-shadow-sm); border: 1px solid var(--ep-border);
}
.phase--next { background: var(--ep-charcoal); color: rgba(255,255,255,.82); border-color: transparent; }
.phase__tag {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 3.4rem; padding: .35rem .6rem; border-radius: var(--ep-radius-pill);
  font-size: var(--ep-fs-xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: var(--ep-red-soft); color: var(--ep-red-ink);
}
.phase--next .phase__tag { background: rgba(255,255,255,.12); color: var(--ep-white); }
.phase h3 { font-size: 1.1rem; margin: 0 0 .35rem; }
.phase--next h3 { color: var(--ep-white); }
.phase p { margin: 0; font-size: var(--ep-fs-sm); color: var(--ep-text-muted); line-height: 1.6; }
.phase--next p { color: rgba(255,255,255,.78); }
.phase ul { margin: .6rem 0 0; padding-left: 1.1rem; font-size: var(--ep-fs-sm); color: var(--ep-text-muted); line-height: 1.7; }
.phase--next ul { color: rgba(255,255,255,.78); }

/* Coming-soon band on the home page */
.soon { background: var(--ep-charcoal); color: rgba(255,255,255,.82); }
.soon .ep-eyebrow { color: #FF8A93; }
.soon h2 { color: var(--ep-white); }
.soon__grid { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 880px) { .soon__grid { grid-template-columns: 1.2fr .8fr; } }
.soon__pill { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .9rem; border-radius: var(--ep-radius-pill); background: rgba(255,255,255,.1); color: var(--ep-white); font-size: var(--ep-fs-sm); font-weight: 700; }
.soon .phase--next { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
