/* =========================================
   Halo Pack Perks — Prototype Stylesheet
   Matches the Halo Figma design system.
   ========================================= */

:root {
  /* Brand */
  --halo-yellow: #FCD62D;
  --halo-yellow-hover: #E8C428;
  --halo-blue: #2196F3;
  --halo-blue-strong: #1976D2;
  --halo-ink: #111111;
  --halo-ink-soft: #2C2C2C;
  --halo-text: #1F2937;
  --halo-muted: #6B7280;
  --halo-label: #9CA3AF;
  --halo-paper: #FFFFFF;
  --halo-bg: #F5F5F5;
  --halo-line: #E5E7EB;
  --halo-line-soft: #EFEFEF;

  /* Tier tints (from Halo cards) */
  --bronze-bg: #F5E2D0;
  --bronze-tint: #FAEFE2;
  --bronze-fg: #8B5E3C;
  --silver-bg: #E5E7EB;
  --silver-tint: #F0F1F3;
  --silver-fg: #4B5563;
  --gold-bg: #F4E2A8;
  --gold-tint: #FBF3D6;
  --gold-fg: #8A6B14;

  /* Category accents */
  --vet-bg: #2196F3;
  --food-bg: #E8773A;
  --travel-bg: #2BA46F;

  /* Status / accents */
  --current-blue: #2196F3;
  --link-blue: #1E88E5;
  --soft-blue-bg: #EAF4FE;

  /* Shape & motion */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(17,17,17,0.04);
  --shadow-md: 0 4px 14px rgba(17,17,17,0.06);
  --shadow-lg: 0 10px 28px rgba(17,17,17,0.08);

  --halo-font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  --halo-font-live: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --halo-font-narrow: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Primitive brand colors */
  --halo-black: #000000;
  /* Ink / text — graphite gray. Per Sean, the previous #071826 read too cool;
     ink should feel like graphite. */
  --halo-blue-950: #333333;
  /* Legacy blue-scale aliases now map to the graphite/neutral system. */
  --halo-blue-900: #2a2a2a;
  --halo-blue-800: #404040;
  --halo-blue-100: #e3e3df;
  --halo-blue-50: #f7f7f5;
  --halo-ink: var(--halo-blue-950);
  --halo-gray-900: var(--halo-blue-950);
  --halo-gray-800: #3f3f3f;
  --halo-gray-700: #4d4d4d;
  --halo-gray-600: #5f5f5f;
  --halo-gray-500: #777777;
  --halo-gray-400: #a6a6a0;
  --halo-gray-300: #d2d2cc;
  --halo-gray-200: #e3e3df;
  --halo-gray-100: #f2f2ef;
  --halo-gray-50: #fbfbf9;
  --halo-white: #ffffff;

  --halo-yellow: #fcd62d;
  --halo-yellow-hover: #e5c229;
  --halo-yellow-active: #d3b31f;
  --halo-yellow-strong: var(--halo-yellow-hover);
  --halo-live-yellow: #ffd700;
  --halo-live-yellow-hover: #ffc700;
  --halo-blue: #2f93f3;
  --halo-blue-hover: #1778d4;
  --halo-success: #15a270;
  --halo-warning: #f59e0b;
  --halo-danger: #dc2626;
  --halo-sale: #b91c1c;

  /* Semantic color roles */
  --halo-color-action-primary: var(--halo-yellow);
  --halo-color-action-primary-hover: var(--halo-yellow-hover);
  --halo-color-action-primary-active: var(--halo-yellow-active);
  --halo-color-action-primary-text: var(--halo-ink);
  --halo-color-action-secondary: var(--halo-ink);
  --halo-color-action-secondary-hover: var(--halo-blue-900);
  --halo-color-action-secondary-text: var(--halo-white);
  --halo-color-action-tertiary: transparent;
  --halo-color-action-disabled: #deded9;
  --halo-color-action-disabled-text: #777777;

  --halo-color-link: var(--halo-blue);
  --halo-color-link-hover: var(--halo-blue-hover);
  --halo-color-focus: var(--halo-blue);
  --halo-color-focus-ring: rgba(47, 147, 243, 0.32);

  --halo-color-surface-page: #f7f7f5;
  --halo-color-surface-raised: var(--halo-white);
  --halo-color-surface-subtle: var(--halo-gray-50);
  --halo-color-surface-muted: var(--halo-gray-100);
  --halo-color-surface-product: #fafaf7;
  /* Sean (design): dark surfaces should share the graphite family with the
     ink token — not a separate slate. One dark across the system. */
  --halo-color-surface-dark: #333333;
  --halo-color-surface-dark-raised: #404040;
  --halo-color-surface-promo: #fff7bf;

  /* Section-band surfaces use the same graphite family as the customer footer. */
  --halo-color-surface-band: var(--halo-color-surface-dark);
  --halo-color-surface-band-raised: var(--halo-color-surface-dark-raised);
  --halo-gradient-band: linear-gradient(180deg, var(--halo-color-surface-dark-raised) 0%, var(--halo-color-surface-dark) 100%);

  --halo-color-text-primary: var(--halo-ink);
  --halo-color-text-secondary: var(--halo-gray-600);
  --halo-color-text-muted: var(--halo-gray-500);
  --halo-color-text-inverse: var(--halo-white);
  --halo-color-text-inverse-muted: rgba(255, 255, 255, 0.72);

  --halo-color-border-subtle: var(--halo-gray-200);
  --halo-color-border-strong: #bdbdb7;
  --halo-color-border-dark: #444444;

  --halo-color-status-success: var(--halo-success);
  --halo-color-status-success-surface: #dcf1e2;
  --halo-color-status-warning: var(--halo-warning);
  --halo-color-status-warning-surface: #fff1c7;
  --halo-color-status-danger: var(--halo-danger);
  --halo-color-status-danger-surface: #fbe0e0;
  --halo-color-status-info: var(--halo-blue);
  --halo-color-status-info-surface: #eaf4fe;
  --halo-color-sale: var(--halo-sale);
  --halo-color-sale-surface: #fff3cc;
  --halo-color-membership: var(--halo-blue);
  /* Sean (design): the very light blue read too close to light gray as a
     background. Retire its hex and route through the gray surface token so
     existing consumers (plan cards, pack-perks wells) shift to gray, while the
     --halo-color-link / --halo-color-membership accents stay cobalt. */
  --halo-color-membership-surface: var(--halo-color-surface-muted);

  --halo-color-nav-background: var(--halo-white);
  --halo-color-nav-border: var(--halo-color-border-subtle);
  --halo-color-nav-text: var(--halo-gray-600);
  --halo-color-nav-text-active: var(--halo-ink);
  --halo-color-nav-promo-background: var(--halo-yellow);
  --halo-color-nav-promo-text: var(--halo-ink);

  --halo-color-product-surface: var(--halo-color-surface-product);
  --halo-color-card-background: var(--halo-white);
  --halo-color-card-border: var(--halo-color-border-subtle);
  --halo-color-drawer-scrim: rgba(51, 51, 51, 0.48);
  --halo-color-drawer-background: var(--halo-white);

  /* Radius, layout, and elevation */
  --halo-radius-xs: 4px;
  --halo-radius-sm: 6px;
  --halo-radius-md: 8px;
  --halo-radius-lg: 12px;
  --halo-radius-xl: 16px;
  --halo-radius-pill: 999px;

  --halo-component-nav-radius: var(--halo-radius-md);
  --halo-component-button-radius: var(--halo-radius-pill);
  --halo-component-card-radius: var(--halo-radius-lg);
  --halo-component-product-card-radius: var(--halo-radius-xl);
  --halo-component-form-radius: 10px;
  --halo-component-pdp-gallery-radius: var(--halo-radius-xl);

  --halo-container: 1400px;
  --halo-container-live: 1240px;
  --halo-container-readable: 760px;
  --halo-section-y: 88px;
  --halo-section-y-sm: 56px;
  --halo-page-gutter: 20px;

  --halo-space-2xs: 4px;
  --halo-space-xs: 8px;
  --halo-space-sm: 12px;
  --halo-space-md: 16px;
  --halo-space-lg: 24px;
  --halo-space-xl: 32px;
  --halo-space-2xl: 48px;
  --halo-space-3xl: 64px;
  --halo-space-4xl: 88px;

  --halo-shadow-nav: 0 2px 4px rgba(51, 51, 51, 0.06);
  --halo-shadow-dropdown: 0 24px 48px rgba(51, 51, 51, 0.22);
  --halo-shadow-soft: 0 1px 2px rgba(51, 51, 51, 0.05);
  --halo-shadow-card: 0 4px 14px rgba(51, 51, 51, 0.06);
  --halo-shadow-card-lg: 0 12px 28px rgba(51, 51, 51, 0.1);
  --halo-shadow-raised: 0 18px 42px rgba(51, 51, 51, 0.14);
  --halo-shadow-focus: 0 0 0 4px var(--halo-color-focus-ring);

  --halo-duration-fast: 140ms;
  --halo-duration-base: 220ms;
  --halo-duration-slow: 320ms;
  --halo-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Type roles */
  --halo-type-display: 3.75rem;
  --halo-type-hero: 3.5rem;
  --halo-type-page: 3rem;
  --halo-type-section: 2.5rem;
  --halo-type-subsection: 1.75rem;
  --halo-type-card-title: 1.125rem;
  --halo-type-body: 1rem;
  --halo-type-small: 0.875rem;
  --halo-type-caption: 0.75rem;
  --halo-tracking-tight: -0.03em;

  /* Legacy source-variable bridge */
  --black: var(--halo-ink);
  --white: var(--halo-white);
  --gray-50: var(--halo-gray-50);
  --gray-100: var(--halo-gray-100);
  --gray-200: var(--halo-gray-200);
  --gray-400: var(--halo-gray-400);
  --gray-500: var(--halo-gray-500);
  --gray-600: var(--halo-gray-600);
  --gray-800: var(--halo-gray-800);
  --gray-900: var(--halo-gray-900);
  --accent: var(--halo-yellow);
  --accent-dark: var(--halo-yellow-hover);
  --success: var(--halo-success);
  --font-sans: var(--halo-font-sans);
  --font-primary: var(--halo-font-sans);
  --ease-out: var(--halo-ease-out);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--halo-text);
  background: var(--halo-bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--link-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--halo-yellow); color: var(--halo-ink); }
.btn-primary:hover { background: var(--halo-yellow-hover); }
.btn-dark { background: var(--halo-ink); color: #FFFFFF; }
.btn-dark:hover { background: #000000; }
.btn-light { background: #FFFFFF; color: var(--halo-text); border-color: var(--halo-line); }
.btn-light:hover { background: var(--halo-bg); }
.btn-ghost { background: transparent; color: var(--link-blue); padding: 11px 8px; }
.btn-disabled { background: #E5E7EB; color: #9CA3AF; cursor: not-allowed; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

/* =========================================
   Layout helpers
   ========================================= */

.page-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 32px 80px;
}
.crumbs {
  font-size: 13px;
  color: var(--halo-muted);
  margin: 0 0 18px;
}
.crumbs a { color: var(--halo-muted); }
.page-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--halo-ink);
}
.page-sub {
  font-size: 15px;
  color: var(--halo-muted);
  margin: 0 0 24px;
}
.label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--halo-label);
  font-weight: 600;
  display: block;
  margin: 0 0 8px;
}

/* =========================================
   Pack Perks Banner (dark, 3-up)
   Updated framing: 3 core benefits inline.
   ========================================= */
.pp-banner {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2522 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1.05fr 1.45fr 1.45fr;
  gap: 0;
  margin: 0 0 28px;
  position: relative;
  overflow: hidden;
}
.pp-banner::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.pp-banner::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}
.pp-col {
  padding: 0 22px;
  border-left: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.pp-col:first-child { border-left: none; padding-left: 4px; }
.pp-col h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pp-col .pp-sub {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.pp-col-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
}
.pp-vet-card {
  background: var(--vet-bg);
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pp-vet-card .pp-vet-mark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: 14px;
}
.pp-vet-card .vet-pill {
  background: rgba(255,255,255,0.18);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.4);
}
.pp-vet-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
}
.pp-brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.pp-brand-tile {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.05;
  padding: 4px;
  overflow: hidden;
}
.pp-brand-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.bt-bark { background: #00A6E1; }
.bt-rover { background: #1AB87A; }
.bt-ollie { background: #FFC629; color: #2D2D2D; }
.bt-tfd { background: #C72C3A; }
.bt-more { background: #1A1A1A; border: 1px solid rgba(255,255,255,0.15); font-size: 10px; }
.pp-cta-btn {
  background: var(--halo-yellow);
  color: var(--halo-ink);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.pp-cta-btn:hover { background: var(--halo-yellow-hover); text-decoration: none; }

/* =========================================
   Pack Perks Banner v2
   Pitch left + value-card grid right.
   Reframed per Brian's feedback: tangible $ value, logo + pill cards.
   ========================================= */
.pp-banner.pp-banner-v2 {
  /* Override the v1 3-up grid */
  display: grid;
  grid-template-columns: 0.85fr 1.65fr;
  gap: 36px;
  padding: 36px 40px;
  align-items: center;
  min-height: 280px;
}
.pp-pitch {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.pp-pitch .pp-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--halo-color-link-hover, var(--halo-blue-strong));
}
.pp-pitch .pp-headline {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 340px;
}
.pp-pitch .pp-pitch-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 340px;
}
.pp-pitch .pp-cta-btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 11px 22px;
  font-size: 14px;
  gap: 6px;
}

/* Right column: 4-up value grid + plus-deals strip */
.pp-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr auto;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.pp-value-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 10px 44px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 4px 14px rgba(0,0,0,0.18);
}
.pp-value-card:hover {
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 22px rgba(0,0,0,0.28);
}
.pp-vc-logo {
  font-weight: 800;
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.pp-vc-logo small {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0;
}
.pp-vc-pill {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  background: var(--halo-yellow);
  color: var(--halo-ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.005em;
  padding: 7px 8px;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Brand-specific colors for the 3 core partner cards */
.pv-dutch  { background: linear-gradient(160deg, #FF8200 0%, #E66D00 100%); color: #FFFFFF; }
.pv-pets   { background: linear-gradient(160deg, #1E3A2A 0%, #15281D 100%); color: #FFE9C7; }
.pv-tl     { background: linear-gradient(160deg, #0E2C4F 0%, #07172B 100%); color: #FFFFFF; }
.pv-pets .pp-vc-logo { color: #FFE9C7; }
.pv-tl   .pp-vc-logo { color: #F5C97A; font-style: italic; }

/* Pill color tweaks per card so contrast stays high */
.pv-dutch .pp-vc-pill { background: #FFFFFF; color: #B85700; }
.pv-pets  .pp-vc-pill { background: #FFC629; color: #1E3A2A; }
.pv-tl    .pp-vc-pill { background: #F5C97A; color: #0E2C4F; }

/* "+15 more deals" tile */
.pv-more {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.22);
  color: #FFFFFF;
  padding: 14px 10px;
}
.pv-more .pp-vc-more-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--halo-yellow);
}
.pv-more .pp-vc-more-lbl {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  color: rgba(255,255,255,0.85);
}
.pv-more:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
}

/* Bottom strip showing the real Figma partner logos */
.pp-more-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 4px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}
.pp-more-strip-lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  white-space: nowrap;
}
.pp-more-strip-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
}
.pp-more-strip-logos img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: rgba(255,255,255,0.04);
}

/* Responsive: stack pitch above value grid on narrow screens */
@media (max-width: 960px) {
  .pp-banner.pp-banner-v2 {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }
  .pp-pitch .pp-headline { font-size: 24px; max-width: none; }
  .pp-pitch .pp-pitch-sub { max-width: none; }
}
@media (max-width: 640px) {
  .pp-value-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-more-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =========================================
   Pack Perks Banner v3
   Category-first per Drew's feedback: 3 generic
   categories (Vet / Food / Travel) with savings
   focus + multi-vendor chip strip per card.
   ========================================= */
/* ---- Pack Perks banner v5 — 3 pillar cards with brand logos ---- */
.pp-banner.pp-banner-v5 {
  display: grid;
  grid-template-columns: 0.8fr 1.8fr;
  gap: 36px;
  padding: 36px 52px 36px 40px;
  align-items: stretch;
  min-width: 0;
  min-height: 320px;
  background: var(--halo-color-sale-surface, #fff3df);
  color: var(--halo-color-text-primary, #071826);
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-component-card-radius, 12px);
  box-shadow: var(--halo-shadow-card, 0 4px 14px rgba(7,24,38,0.06));
}
.pp-banner.pp-banner-v5::before {
  display: none;
}
.pp-banner.pp-banner-v5::after {
  display: none;
}
.pp-banner.pp-banner-v5 .pp-banner-dismiss {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-radius-pill, 999px);
  background: var(--halo-color-card-background, #ffffff);
  color: var(--halo-color-text-secondary, #526777);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--halo-shadow-soft, 0 1px 2px rgba(7,24,38,0.05));
}
.pp-banner.pp-banner-v5 .pp-banner-dismiss:hover {
  color: var(--halo-color-text-primary, #071826);
  border-color: var(--halo-color-border-strong, #aec1cf);
}
.pp-banner.pp-banner-v5 .pp-banner-dismiss:focus-visible {
  outline: 2px solid var(--halo-color-focus, #2f93f3);
  outline-offset: 3px;
  box-shadow: var(--halo-shadow-focus, 0 0 0 4px rgba(47,147,243,0.32));
}
.pp-banner.pp-banner-v5 .pp-pitch .pp-eyebrow {
  color: var(--halo-color-link-hover, var(--halo-blue-strong));
}
.pp-banner.pp-banner-v5 .pp-pitch .pp-headline {
  color: var(--halo-color-text-primary, #071826);
}
.pp-banner.pp-banner-v5 .pp-pitch .pp-pitch-sub {
  color: var(--halo-color-text-secondary, #526777);
}
.pp-banner.pp-banner-v5 .pp-pitch,
.pp-banner.pp-banner-v5 .pp-pillar-grid,
.pp-banner.pp-banner-v5 .pp-pillar-track,
.pp-banner.pp-banner-v5 .pp-pillar-card {
  min-width: 0;
}
.pp-banner.pp-banner-v5 .pp-pillar-grid {
  grid-template-columns: 1fr;
}
.pp-banner.pp-banner-v5 .pp-pillar-grid-title {
  color: var(--halo-color-text-secondary, #526777);
}
.pp-banner.pp-banner-v5 .pp-pillar-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pp-banner.pp-banner-v5 .pp-pillar-card {
  color: var(--halo-color-text-primary, #071826);
  background: var(--halo-color-card-background, #ffffff);
  border-color: var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-component-card-radius, 12px);
  box-shadow: var(--halo-shadow-card, 0 4px 14px rgba(7,24,38,0.06));
}
.pp-banner.pp-banner-v5 .pp-pillar-card:hover {
  background: var(--halo-color-card-background, #ffffff);
  border-color: var(--halo-color-border-strong, #aec1cf);
  box-shadow: var(--halo-shadow-card-lg, 0 12px 28px rgba(7,24,38,0.1));
}
.pp-banner.pp-banner-v5 .pp-pillar-eyebrow {
  color: var(--halo-color-link-hover, var(--halo-blue-strong));
}
.pp-banner.pp-banner-v5 .pp-pillar-headline {
  color: var(--halo-color-text-primary, #071826);
}
.pp-banner.pp-banner-v5 .pp-pillar-sub {
  color: var(--halo-color-text-secondary, #526777);
}

/* v6 — pitch on top, 3 pillar cards stacked below */
.pp-banner.pp-banner-v6 {
  display: block !important;
  grid-template-columns: none !important;
  padding: 44px 40px 40px;
  min-height: auto;
}
.pp-banner.pp-banner-v6 .pp-pitch {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 0;
}
.pp-banner.pp-banner-v6 .pp-pitch .pp-headline {
  max-width: none;
  margin: 0 auto 12px;
}
.pp-banner.pp-banner-v6 .pp-pitch .pp-pitch-sub {
  max-width: 600px;
  margin: 0 auto 20px;
}
.pp-banner.pp-banner-v6 .pp-pitch .pp-cta-btn {
  display: inline-flex;
  margin: 0 auto;
}
.pp-banner.pp-banner-v6 .pp-pillar-grid-title {
  text-align: center;
  margin: 0 0 16px;
}
.pp-banner.pp-banner-v6 .pp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .pp-banner.pp-banner-v6 { padding: 28px 22px 32px; }
  .pp-banner.pp-banner-v6 .pp-pitch { margin-bottom: 24px; }
  .pp-banner.pp-banner-v6 .pp-pillar-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 22px;
    gap: 12px;
    padding: 4px 22px 12px;
    margin: 0 -22px;
    scrollbar-width: none;
  }
  .pp-banner.pp-banner-v6 .pp-pillar-grid::-webkit-scrollbar { display: none; }
  .pp-banner.pp-banner-v6 .pp-pillar-grid-title {
    flex: 0 0 100%;
    text-align: left;
    margin: 0 0 4px;
    padding-left: 0;
  }
  .pp-banner.pp-banner-v6 .pp-pillar-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
}

/* 3-up pillar grid */
.pp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* Individual pillar card */
.pp-pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 22px 18px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #FFFFFF;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  overflow: hidden;
  /* Uniform card height */
  min-height: 260px;
}
.pp-pillar-card:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}

.pp-pillar-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.pp-pillar-headline {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.pp-pillar-sub {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

/* Logo row — centered, clean */
.pp-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.pp-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pp-more-pill {
  display: block;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  margin-top: 4px;
}

/* Exclusive partner logo on pillar cards */
.pp-pillar-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  background: #FFFFFF;
  display: block;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  margin: 10px 0;
  align-self: center;
}
/* Pawp app icon — square logo fills the chip via cover */
.pp-pillar-dutch .pp-pillar-logo {
  object-fit: cover;
  padding: 0;
}
/* Pets Table wordmark on brand teal tile — contain so the cursive sits
   inside the chip with breathing room rather than being cropped by cover */
.pp-pillar-pets .pp-pillar-logo {
  background: #CFE8E5;
  object-fit: contain;
  padding: 14px;
}

/* Value pill on pillar cards */
.pp-pillar-value {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.18);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* "+ more" text on pillar cards */
.pp-pillar-plus {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* "Featured Benefits" title above pillar cards */
.pp-pillar-grid-title {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* Responsive — stack pillar grid below pitch on narrow viewports */
@media (max-width: 1024px) {
  .pp-banner.pp-banner-v5 {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 52px 28px 24px;
  }
}
@media (max-width: 720px) {
  .pp-banner.pp-banner-v5 {
    width: 100%;
    max-width: calc(100vw - 32px);
    padding: 48px 20px 24px;
    gap: 18px;
  }
  .pp-banner.pp-banner-v5 .pp-banner-dismiss {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .pp-banner.pp-banner-v5 .pp-pitch .pp-headline,
  .pp-banner.pp-banner-v5 .pp-pitch .pp-pitch-sub {
    overflow-wrap: normal;
  }
  .pp-banner.pp-banner-v5 .pp-pitch .pp-headline {
    width: auto;
    max-width: min(100%, 17.5rem);
    font-size: 20px;
  }
  .pp-banner.pp-banner-v5 .pp-pitch .pp-pitch-sub {
    width: 100%;
    max-width: 100%;
  }
  .pp-pitch .pp-cta-btn { display: none; }
  .pp-pillar-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pp-banner.pp-banner-v5 .pp-pillar-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    padding: 2px 20px 10px 0;
    margin-right: -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pp-banner.pp-banner-v5 .pp-pillar-track::-webkit-scrollbar {
    display: none;
  }
  .pp-pillar-grid-title { font-size: 10px; text-align: left; }
  .pp-pitch { text-align: left; }
  .pp-pillar-card {
    display: grid;
    grid-template-columns: 1fr 48px;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    text-align: left;
    align-items: center;
    padding: 14px 16px;
    min-height: auto;
    border-radius: 10px;
  }
  .pp-banner.pp-banner-v5 .pp-pillar-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .pp-pillar-eyebrow { display: none; }
  .pp-pillar-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin: 0;
    grid-row: 1 / 3;
    grid-column: 2;
  }
  .pp-pillar-dutch .pp-pillar-logo { padding: 0; }
  .pp-pillar-headline {
    font-size: 15px;
    font-weight: 700;
    min-height: auto;
    line-height: 1.2;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }
  .pp-pillar-headline br { display: none; }
  .pp-pillar-sub {
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .pp-cta-mobile {
    box-sizing: border-box;
    max-width: 100%;
    display: block !important;
    text-align: center;
    margin-top: 12px;
    width: 100%;
  }
}

/* Hide mobile CTA on desktop */
.pp-cta-mobile { display: none; }

/* =========================================
   Account page — 3 column layout
   ========================================= */
.welcome-head { margin: 4px 0 22px; }
.welcome-head h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  color: var(--halo-ink);
}
.welcome-head .sub {
  font-size: 14px;
  color: var(--halo-muted);
  margin: 0;
}

.account-cols {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: start;
}
.acct-card {
  background: var(--halo-paper);
  border: 1px solid var(--halo-line);
  border-radius: var(--radius);
  padding: 22px;
}
.acct-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--halo-ink);
}
.acct-section {
  border-top: 1px solid var(--halo-line-soft);
  padding-top: 14px;
  margin-top: 14px;
}
.acct-section:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.acct-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.acct-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--halo-label);
  font-weight: 600;
  margin: 0 0 8px;
}
.acct-value { margin: 0; font-size: 14px; color: var(--halo-text); }
.acct-value-muted { color: var(--halo-muted); font-size: 13px; }
.acct-edit {
  font-size: 12px;
  font-weight: 700;
  color: var(--link-blue);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.acct-edit:hover { text-decoration: underline; }

.acct-link-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
  color: var(--link-blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  cursor: pointer;
  font-family: inherit;
}
.acct-link-btn:hover { background: var(--soft-blue-bg); text-decoration: none; }
.acct-link-btn .ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--soft-blue-bg);
  color: var(--link-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Quantity selector */
.qty-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-top: 10px;
}
.qty-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--current-blue);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  position: relative;
}
.qty-pill .current-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--current-blue);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.qty-pill button {
  background: transparent;
  border: none;
  color: var(--halo-text);
  font-size: 16px;
  cursor: pointer;
  width: 22px;
  height: 22px;
  font-weight: 600;
}
.qty-pill .num {
  font-weight: 700;
  font-size: 14px;
  padding: 0 10px;
}

/* Membership tier cards */
.tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.tier-card {
  border: 1.5px solid var(--halo-line);
  border-radius: var(--radius);
  padding: 14px 8px 12px;
  text-align: center;
  background: var(--halo-paper);
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s ease;
}
.tier-card:hover { border-color: #B7BFCB; }
.tier-card .tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-top: 7px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}
.tier-card .tier-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--halo-text);
  margin-left: 0;
}
.tier-card .tier-price {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--halo-text);
  margin-top: 8px;
}
.tier-card .tier-price.muted { color: var(--halo-muted); font-weight: 500; }

.tier-bronze .tier-badge { background: var(--bronze-bg); color: var(--bronze-fg); }
.tier-silver .tier-badge { background: var(--silver-bg); color: var(--silver-fg); }
.tier-gold   .tier-badge { background: var(--gold-bg);   color: var(--gold-fg); }

.tier-card.is-current {
  border-color: var(--current-blue);
  border-width: 2px;
}
.tier-card.is-faded { opacity: 0.55; }
.tier-card.is-faded .tier-badge { background: #ECEEF2; color: var(--halo-muted); }
.tier-card.tier-bronze.is-faded .tier-badge { background: var(--bronze-tint); color: var(--bronze-fg); opacity: 0.7;}
.tier-card.tier-silver.is-faded .tier-badge { background: var(--silver-tint); color: var(--silver-fg); opacity: 0.7;}
.tier-card.tier-gold.is-faded .tier-badge { background: var(--gold-tint); color: var(--gold-fg); opacity: 0.7;}

.tier-card .current-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--current-blue);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

/* Membership level details panel */
.tier-detail {
  border: 2px solid var(--current-blue);
  background: var(--gold-tint);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 14px;
}
.tier-detail.is-bronze { background: var(--bronze-tint); }
.tier-detail.is-silver { background: var(--silver-tint); }
.tier-detail.is-gold   { background: var(--gold-tint); }
.tier-detail h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--halo-text);
}
.tier-detail h4 .strong { font-weight: 800; }
.tier-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tier-detail li {
  font-size: 13px;
  color: var(--halo-text);
  padding: 4px 0 4px 22px;
  position: relative;
}
.tier-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--halo-yellow);
  background-image: linear-gradient(45deg, transparent 45%, #FFFFFF 45%, #FFFFFF 55%, transparent 55%);
}

.detail-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 0;
}
.detail-toggle .acct-label { margin: 0; }
.detail-toggle a {
  font-size: 12px;
  font-weight: 700;
  color: var(--link-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Halo Care */
.halo-care-note {
  font-size: 13px;
  color: var(--halo-text);
  text-align: center;
  margin: 14px 0;
}
.care-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.care-card {
  border: 1.5px solid var(--halo-line);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
  position: relative;
}
.care-card.is-current { border-color: var(--current-blue); border-width: 2px; }
.care-card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: #ECEEF2;
  color: var(--halo-muted);
  margin-right: 4px;
}
.care-card .tag.included { background: #E5E7EB; color: var(--halo-ink); }
.care-card .tag.essential { background: var(--gold-tint); color: var(--gold-fg); }
.care-card .name { font-weight: 600; font-size: 13px; }
.care-card .price { display: block; font-size: 16px; font-weight: 700; margin: 6px 0 4px; color: var(--halo-text); }
.care-card .price.muted { color: var(--halo-muted); font-weight: 500; }
.care-card .repl { font-size: 11px; color: var(--halo-muted); line-height: 1.3; }
.care-card .current-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--current-blue);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}
.care-disclaimer {
  font-size: 11px;
  color: var(--halo-muted);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}
.care-disclaimer a { color: var(--link-blue); }

/* Billing Interval */
.billing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.bill-card {
  border: 1.5px solid var(--halo-line);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  position: relative;
  background: #FFFFFF;
}
.bill-card.is-current { border-color: var(--current-blue); border-width: 2px; }
.bill-card .name { font-weight: 700; font-size: 13px; color: var(--halo-text); }
.bill-card .name.muted { color: var(--halo-muted); font-weight: 500; }
.bill-card .perk { display: block; font-size: 11px; color: var(--link-blue); margin-top: 4px; }
.bill-card .current-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--current-blue);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.next-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 6px;
  margin-top: 14px;
}
.next-payment .left .name { font-weight: 700; font-size: 14px; color: var(--halo-text); }
.next-payment .left .date { font-size: 12px; color: var(--halo-muted); margin-top: 2px; }
.next-payment .right { text-align: right; }
.next-payment .right .amt { font-weight: 800; font-size: 18px; color: var(--halo-text); }
.next-payment .right .tax { font-size: 11px; color: var(--halo-muted); }

.next-payment.changed {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.next-payment.changed .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.next-payment.changed .new-line {
  text-align: right;
  color: var(--link-blue);
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}
.next-payment.changed .new-line strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--link-blue);
}

.code-apply {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 6px;
}
.code-apply input {
  border: none;
  padding: 11px 14px;
  font-size: 13px;
  outline: none;
  background: #FFFFFF;
  font-family: inherit;
}
.code-apply button {
  border: none;
  background: var(--halo-bg);
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--halo-muted);
  cursor: pointer;
  font-family: inherit;
}
.code-apply button:hover { background: var(--halo-line-soft); }
.credit-note {
  font-size: 12px;
  color: var(--halo-muted);
  text-align: center;
  margin: 8px 0 0;
}

.pack-perks-inline-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0 20px;
  padding: 14px 16px;
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-component-card-radius, 12px);
  background: var(--halo-color-sale-surface, #fff3df);
  color: var(--halo-color-text-primary, #071826);
}
.pack-perks-inline-callout__eyebrow {
  display: block;
  margin: 0 0 3px;
  color: var(--halo-color-link-hover, var(--halo-blue-strong));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pack-perks-inline-callout p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--halo-color-text-primary, #071826);
}
.pack-perks-inline-callout a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 14px;
  border-radius: var(--halo-component-button-radius, 999px);
  background: var(--halo-color-action-primary, #fcd62d);
  color: var(--halo-color-action-primary-text, #071826);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.pack-perks-inline-callout a:hover {
  background: var(--halo-color-action-primary-hover, #e5c229);
  text-decoration: none;
}
.pack-perks-inline-callout a:focus-visible {
  outline: 2px solid var(--halo-color-focus, #2f93f3);
  outline-offset: 3px;
  box-shadow: var(--halo-shadow-focus, 0 0 0 4px rgba(47,147,243,0.32));
}
@media (max-width: 640px) {
  .pack-perks-inline-callout {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .pack-perks-inline-callout a {
    width: 100%;
  }
}

.edit-plan-row { display: flex; gap: 10px; margin-top: 10px; }
.need-break {
  font-size: 12px;
  color: var(--halo-muted);
  text-align: center;
  margin: 12px 0 0;
}
.need-break a { color: var(--link-blue); text-decoration: underline; }

/* =========================================
   Pack Perks list page
   ========================================= */
.perks-head {
  text-align: left;
  margin: 0 0 22px;
}
.perks-head h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--halo-ink);
}
.perks-head p {
  font-size: 15px;
  color: var(--halo-muted);
  margin: 0;
  max-width: 540px;
}

/* ── Pack Perks List — Breadcrumbs ── */
.page > .crumbs {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--halo-muted);
}
.page > .crumbs a {
  color: var(--halo-muted);
  text-decoration: none;
}
.page > .crumbs a:hover { text-decoration: underline; }

/* ── Pack Perks List — Hero Banner ── */
.ppl-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2522 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.ppl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(252,214,45,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.ppl-hero-content {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}
.ppl-hero-left {
  flex: 1;
  padding: 40px 32px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ppl-hero-left .tier-pill {
  margin-bottom: 16px;
}
.ppl-hero h1 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.15;
}
.ppl-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 22px;
  max-width: 480px;
  line-height: 1.55;
}
.ppl-hero-cta {
  display: inline-block;
  background: var(--halo-yellow);
  color: var(--halo-ink);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}
.ppl-hero-cta:hover { background: var(--halo-yellow-hover); text-decoration: none; }
.ppl-hero-img {
  flex: 0 0 42%;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
@media (min-width: 1025px) {
  .ppl-hero-img { flex: 0 0 50%; }
}
.ppl-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* ── Pack Perks filter bar (search + category pills) ── */
.ppl-filter {
  position: sticky;
  top: 70px;
  z-index: 40;
  background: var(--halo-bg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 0 18px;
  margin: 4px 0 18px;
  border-bottom: 1px solid var(--halo-line);
}
.ppl-filter-search {
  position: relative;
  flex: 1 1 280px;
  min-width: 240px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius-pill);
  padding: 0 14px;
  height: 42px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ppl-filter-search:focus-within {
  border-color: var(--halo-blue);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.18);
}
.ppl-filter-search svg {
  flex: 0 0 auto;
  color: var(--halo-muted);
  margin-right: 8px;
}
.ppl-filter-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: var(--halo-text);
  height: 100%;
}
.ppl-filter-search input::placeholder { color: var(--halo-label); }
.ppl-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ppl-filter-pill {
  appearance: none;
  border: 1px solid var(--halo-line);
  background: #FFFFFF;
  color: var(--halo-text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.ppl-filter-pill:hover { border-color: #B6BEC9; }
.ppl-filter-pill.is-active {
  background: var(--halo-ink);
  border-color: var(--halo-ink);
  color: #FFFFFF;
}
.ppl-filter-empty {
  flex: 1 1 100%;
  margin: 8px 0 0;
  color: var(--halo-muted);
  font-size: 14px;
}
@media (max-width: 720px) {
  .ppl-filter { top: 0; }
  .ppl-filter-pills { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
  .ppl-filter-pill { white-space: nowrap; }
}

/* Promo code lives only in the offer modal — hide it on cards. */
.perk-card .code-line { display: none; }

/* ── Featured Benefits — 3-card grid with images ── */
.ppl-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 8px;
}
.ppl-feat-card {
  background: #FFFFFF;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--halo-text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ppl-feat-card:hover {
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
/* Image area — full-width colored background with centered logo */
.ppl-feat-img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ppl-feat-img > img:not(.brand-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ppl-feat-text {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ppl-feat-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--halo-ink-soft);
  display: block;
  margin-bottom: 8px;
}
.ppl-feat-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--halo-ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.ppl-feat-card p {
  font-size: 16px;
  color: var(--halo-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ppl-feat-value {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--halo-ink);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(17,17,17,0.12);
}
.ppl-feat-cta {
  display: block;
  background: var(--halo-yellow);
  color: var(--halo-ink);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  margin-top: 18px;
  transition: background 0.15s ease;
}
.ppl-feat-cta:hover {
  background: var(--halo-yellow-hover);
  text-decoration: none;
}

.perks-greet-banner {
  background: var(--halo-gradient-band, linear-gradient(180deg, #3F5A6C 0%, #2C4252 100%));
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 22px;
  position: relative;
  overflow: hidden;
}
.perks-greet-banner::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}
.perks-greet-banner h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
}
.perks-greet-banner p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.tier-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,200,106,0.35);
  padding: 5px 14px 5px 5px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  position: relative;
  z-index: 1;
}
.tier-pill .tier-chip {
  background: linear-gradient(135deg, #F5D77A 0%, #D9B14A 100%);
  color: #1A1A1A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.section-h {
  font-size: 22px;
  font-weight: 800;
  color: var(--halo-ink);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.featured-vet {
  background: var(--vet-bg);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  margin-bottom: 24px;
  color: #FFFFFF;
  min-height: 220px;
}
.featured-vet .copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-vet .vet-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 12px;
}
.featured-vet .vet-pill {
  background: rgba(255,255,255,0.18);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.4);
}
.featured-vet h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #FFFFFF;
  line-height: 1.2;
}
.featured-vet p {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  margin: 0 0 16px;
  max-width: 360px;
}
.featured-vet .feat-img {
  background: linear-gradient(135deg, #6FAEE5 0%, #4581C7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
}
.featured-vet .feat-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Premium Perk Cards (Exclusive Partnerships) ── */
.premium-perks-sub {
  font-size: 14px;
  color: var(--halo-muted);
  margin: -8px 0 20px;
}
.premium-perk-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 240px;
  box-shadow: var(--shadow-lg);
}
.premium-perk-card .ppc-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.premium-perk-card h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  line-height: 1.2;
}
.premium-perk-card .ppc-partner {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.75;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.premium-perk-card .ppc-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
  opacity: 0.9;
  max-width: 400px;
}
.ppc-exclusive-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
}
.ppc-value-pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  width: fit-content;
}
.premium-perk-card .ppc-img {
  overflow: hidden;
}
.premium-perk-card .ppc-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dutch (Vet) */
.ppc-dutch {
  background: linear-gradient(160deg, #FF8200 0%, #D46800 100%);
  color: #FFFFFF;
}
.ppc-dutch .ppc-value-pill { background: #FFFFFF; color: #B85700; }
.ppc-dutch .pp-cta-btn { background: #FFFFFF; color: #B85700; }

/* The Pets Table (Food) */
.ppc-pets-table {
  background: linear-gradient(160deg, #1E3A2A 0%, #15281D 100%);
  color: #FFE9C7;
}
.ppc-pets-table h2 { color: #FFE9C7; }
.ppc-pets-table .ppc-value-pill { background: var(--halo-yellow); color: #1E3A2A; }
.ppc-pets-table .pp-cta-btn { background: var(--halo-yellow); color: #1E3A2A; }

/* Travel + Leisure */
.ppc-travel {
  background: linear-gradient(160deg, #0E2C4F 0%, #07172B 100%);
  color: #FFFFFF;
}
.ppc-travel h2 { color: #F5C97A; }
.ppc-travel .ppc-value-pill { background: #F5C97A; color: #0E2C4F; }
.ppc-travel .pp-cta-btn { background: #F5C97A; color: #0E2C4F; }

/* Divider between premium and standard */
.perks-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 24px;
}
.perks-divider::before,
.perks-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--halo-line);
}
.perks-divider span {
  font-size: 13px;
  font-weight: 700;
  color: var(--halo-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.perk-card {
  background: #FFFFFF;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.perk-card:hover {
  box-shadow: var(--shadow-md);
}
.perk-card:focus-visible,
.ppl-feat-card:focus-visible {
  outline: 2px solid var(--halo-blue);
  outline-offset: 3px;
}
.ppl-feat-card { cursor: pointer; }
.perk-card .perk-img {
  aspect-ratio: 4/3;
  background: var(--halo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.perk-card .perk-img > img:not(.brand-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-logo-wrap {
  position: absolute;
  bottom: 10px;
  left: 10px;
  height: 63px;
  width: 63px;
  border-radius: 13px;
  overflow: hidden;
  z-index: 3;
  display: block;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.brand-logo,
.pp-pillar-logo,
.lose-icon img,
.lose-brand img,
.modal-brand > img,
.rh-spot__logo {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.brand-logo-wrap .brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  outline: none;
  border-radius: 0;
}
.brand-logo.brand-logo--wordmark {
  position: absolute;
  bottom: 14px;
  left: 14px;
  height: 80px;
  width: 80px;
  margin: 0;
  object-fit: contain;
  background: #FFFFFF;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.ppl-feat-img .brand-logo-wrap {
  height: 112px;
  width: 112px;
  bottom: 16px;
  left: 16px;
  border-radius: 20px;
  background: #FFFFFF;
}
/* Pets Table chip — brand teal background, wordmark contained with padding
   so the cursive reads at glance instead of getting cropped */
.brand-logo-wrap--pets-table,
.ppl-feat-img .brand-logo-wrap--pets-table { background: #CFE8E5; }
.brand-logo-wrap--pets-table .brand-logo,
.ppl-feat-img .brand-logo-wrap--pets-table .brand-logo {
  object-fit: contain !important;
  padding: 16px;
  box-sizing: border-box;
}
/* Pawp app-icon chip — square logo fills the chip, no white frame */
.brand-logo-wrap--pawp,
.ppl-feat-img .brand-logo-wrap--pawp { padding: 0; }
.brand-logo-wrap--pawp .brand-logo,
.ppl-feat-img .brand-logo-wrap--pawp .brand-logo {
  object-fit: cover !important;
  padding: 0;
}
/* Blank Halo-yellow chip — placeholder for cards without a hosted logo asset */
.brand-logo-wrap--blank,
.ppl-feat-img .brand-logo-wrap--blank { background: var(--halo-yellow); padding: 0; }
.perk-card .perk-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.perk-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--halo-ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.perk-card p {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--halo-muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.perk-card .redeem {
  background: var(--halo-yellow);
  color: var(--halo-ink);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
  font-family: inherit;
  transition: background 0.15s ease;
}
.perk-card .redeem:hover { background: var(--halo-yellow-hover); text-decoration: none; }

/* Brand placeholder colors for offer card images */
.bg-ollie { background: #FFC629; color: #6B2D2D; }
.bg-petmeds { background: #00B6A9; }
.bg-farmers { background: #C72C3A; }
.bg-rover { background: #1AB87A; }
.bg-bark { background: #00A6E1; }
.bg-spot { background: #FFB400; color: #2D2D2D; }
.bg-embark { background: #7B5BB6; }
.bg-outdoorsy { background: #2A6E58; }
.bg-pets-table { background: #E8773A; }
.bg-tnl { background: #1F4E78; }
.bg-wag { background: #6BBF59; color: #2D3D2D; }
.bg-bbox { background: #4A2F8E; }
.bg-kurgo { background: #C84B2E; }
.bg-westpaw { background: #2BA46F; }
.bg-joyfull { background: #E36BA2; }

/* =========================================
   Offer detail (modal style)
   ========================================= */
/* In-page offer modal (used by perks list) */
.offer-modal,
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 16px;
  opacity: 0;
  transition: opacity 0.18s ease;
}
@media (max-width: 720px) {
  .offer-modal,
  .app-modal { align-items: flex-start; padding-top: 24px; }
}
.offer-modal[hidden],
.app-modal[hidden] { display: none !important; }
.offer-modal.is-open,
.app-modal.is-open { opacity: 1; }
.offer-modal__backdrop,
.app-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--halo-color-drawer-scrim, rgba(7,24,38,0.48));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.offer-modal__shell,
.app-modal__shell {
  position: relative;
  margin: 0 auto !important;
  transform: translateY(8px);
  transition: transform 0.2s ease;
}
.offer-modal.is-open .offer-modal__shell,
.app-modal.is-open .app-modal__shell { transform: translateY(0); }
/* When .cancel-shell renders inside the modal, give it the close button room */
.app-modal .cancel-shell {
  position: relative;
  width: min(100%, 580px);
  max-width: 580px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.app-modal .cancel-shell .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-radius-pill, 999px);
  background: var(--halo-color-card-background, #ffffff);
  color: var(--halo-color-text-secondary, #526777);
  box-shadow: var(--halo-shadow-card, 0 4px 14px rgba(7,24,38,0.06));
}
.app-modal .cancel-shell .modal-close:hover {
  color: var(--halo-color-text-primary, #071826);
  border-color: var(--halo-color-border-strong, #aec1cf);
}

.modal-shell {
  max-width: 460px;
  margin: 60px auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  border: 1px solid var(--halo-line);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--halo-ink);
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-brand {
  width: 100%;
  max-width: 220px;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.modal-shell h1 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--halo-ink);
  letter-spacing: -0.01em;
}
.modal-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #FFD68C 0%, #E8773A 100%);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.5);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow: hidden;
}
.modal-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-brand > img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.modal-shell .blurb {
  text-align: center;
  font-size: 14px;
  color: var(--halo-text);
  margin: 0 0 22px;
  line-height: 1.5;
}
.code-block {
  text-align: center;
  margin-bottom: 18px;
}
.code-block .code-instr {
  font-size: 12px;
  color: var(--halo-muted);
  margin: 0 0 8px;
}
.code-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft-blue-bg);
  color: var(--link-blue);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.code-pill .copy-icon {
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.code-pill .copy-icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  background: var(--soft-blue-bg);
}
.disclaim {
  text-align: center;
  font-size: 11px;
  color: var(--halo-muted);
  margin: 8px 0 18px;
}
.modal-shell .btn-primary { width: 100%; padding: 14px; font-size: 14px; }
.modal-shell .ext-link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 13px;
}

/* =========================================
   Membership selection (pre-login)
   ========================================= */
.plan-shell {
  max-width: 1080px;
  margin: 0 auto;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 0;
  align-items: stretch;
}
.plan-card {
  background: #FFFFFF;
  border: 1.5px solid var(--halo-line);
  border-radius: var(--radius);
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.is-featured {
  border-color: var(--current-blue);
  border-width: 2px;
  box-shadow: 0 6px 24px rgba(33,150,243,0.10);
}
.plan-card .ribbon {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--current-blue);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.plan-tier-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
}
.plan-tier-row .tier-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}
.plan-card.tier-bronze .tier-badge { background: var(--bronze-bg); color: var(--bronze-fg); }
.plan-card.tier-silver .tier-badge { background: var(--silver-bg); color: var(--silver-fg); }
.plan-card.tier-gold   .tier-badge { background: var(--gold-bg);   color: var(--gold-fg); }
.plan-tier-row .level-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--halo-text);
}
.plan-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--halo-ink);
  letter-spacing: -0.01em;
}
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 0 0 4px; }
.plan-price .amt { font-size: 30px; font-weight: 800; color: var(--halo-ink); letter-spacing: -0.02em; }
.plan-price .per { font-size: 13px; color: var(--halo-muted); }
.plan-card .extra {
  font-size: 12px;
  color: var(--halo-muted);
  margin: 0 0 18px;
}
.plan-feat {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.plan-feat li {
  font-size: 13px;
  color: var(--halo-text);
  padding: 5px 0 5px 22px;
  position: relative;
}
.plan-feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--halo-yellow);
}
.plan-feat li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid #FFFFFF;
  border-bottom: 1.5px solid #FFFFFF;
  transform: rotate(-45deg);
}

.plan-pp-strip {
  background: var(--halo-bg);
  border-radius: var(--radius);
  padding: 14px;
  margin: 0 0 18px;
}
.plan-pp-strip .head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--halo-ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.plan-pp-strip .head .dot {
  width: 8px; height: 8px;
  background: var(--halo-yellow);
  border-radius: 50%;
}
.plan-pp-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.plan-pp-strip li {
  font-size: 12px;
  color: var(--halo-text);
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.4;
}
.plan-pp-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--halo-muted);
}
.plan-card .cta { margin-top: auto; }

/* =========================================
   Cancellation flow
   ========================================= */
.cancel-shell {
  max-width: 580px;
  margin: 0 auto;
  background: var(--halo-color-card-background, #ffffff);
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-component-card-radius, 12px);
  padding: 26px 28px 24px;
  box-shadow: var(--halo-shadow-card-lg, 0 12px 28px rgba(7,24,38,0.1));
}
.cancel-shell .step {
  font-size: var(--halo-type-caption, 0.75rem);
  font-weight: 700;
  color: var(--halo-color-text-secondary, #526777);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 42px 8px 0;
}
.cancel-shell h1 {
  max-width: 100%;
  font-size: var(--halo-type-subsection, 1.75rem);
  font-weight: 650;
  margin: 0 0 8px;
  color: var(--halo-color-text-primary, #071826);
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}
.cancel-shell .lede {
  font-size: var(--halo-type-body, 1rem);
  color: var(--halo-color-text-secondary, #526777);
  margin: 0 42px 18px 0;
  line-height: 1.55;
  max-width: 100%;
}
.lose-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  background: var(--halo-color-surface-subtle, #fbfcfd);
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-component-card-radius, 12px);
  padding: 14px;
  margin: 0 0 16px;
}
.lose-list h3 {
  grid-column: 1 / -1;
  font-size: var(--halo-type-caption, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--halo-color-text-primary, #071826);
  margin: 0 0 2px;
}
.lose-list .lose-item:last-of-type {
  grid-column: 1 / -1;
}
.lose-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-radius-md, 8px);
  background: var(--halo-color-card-background, #ffffff);
  align-items: start;
}
.lose-item:first-of-type {
  border-top: 1px solid var(--halo-color-card-border, #e2e9ee);
  padding-top: 12px;
}
.lose-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--halo-radius-md, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--halo-color-text-primary, #071826);
  background: var(--halo-color-card-background, #ffffff);
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  overflow: hidden;
  box-shadow: var(--halo-shadow-card, 0 4px 14px rgba(7,24,38,0.06));
}
.lose-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lose-icon.deals {
  background: var(--halo-color-surface-dark, #071826);
  color: #FFFFFF;
  border-color: var(--halo-color-surface-dark, #071826);
  letter-spacing: 0.02em;
  font-size: 22px;
}
/* Pawp app icon — square logo fills the chip via cover */
.lose-icon.vet img { object-fit: cover; padding: 0; }
/* Pets Table — teal chip, wordmark contained with padding */
.lose-icon.food { background: #CFE8E5; }
.lose-icon.food img { object-fit: contain; padding: 10px; box-sizing: border-box; }
/* Rover — square brand logo fills the chip via cover */
.lose-icon.walking { background: #FFFFFF; border-color: var(--halo-color-card-border, #e2e9ee); }
.lose-icon.walking img { object-fit: cover; padding: 0; }
/* T+L Go — square black logo fills the chip via cover (default) */
.lose-item h4 {
  margin: 0 0 4px;
  font-size: var(--halo-type-small, 0.875rem);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--halo-color-text-primary, #071826);
}
.lose-item p {
  margin: 0;
  font-size: var(--halo-type-small, 0.875rem);
  color: var(--halo-color-text-secondary, #526777);
  line-height: 1.45;
}

.lose-brands {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.lose-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 4px 6px;
  background: transparent;
  border: none;
  border-radius: var(--halo-radius-sm, 6px);
}
.lose-brand img {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: var(--halo-radius-sm, 6px);
  box-sizing: border-box;
  display: block;
}
.lose-brand__name {
  font-size: var(--halo-type-small, 0.875rem);
  font-weight: 650;
  color: var(--halo-color-text-primary, #071826);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lose-brand--more {
  justify-content: flex-start;
  padding: 4px 6px;
  font-size: var(--halo-type-small, 0.875rem);
  font-weight: 650;
  color: var(--halo-color-text-secondary, #526777);
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .app-modal .cancel-shell { max-height: calc(100vh - 32px); }
  .cancel-shell { padding: 48px 18px 22px; }
  .cancel-shell h1 { font-size: 1.5rem; line-height: 1.12; }
  .cancel-shell .step,
  .cancel-shell .lede { margin-right: 0; }
  .lose-list {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  .lose-item {
    grid-template-columns: 52px 1fr;
    gap: 10px;
    padding: 12px;
    align-items: start;
  }
  .lose-icon {
    width: 52px;
    height: 52px;
    padding: 0;
  }
  .lose-icon.vet img { padding: 0; }
  .lose-icon.food img { padding: 10px; }
  .lose-icon.deals { width: 52px; height: 52px; padding: 0; }
  .lose-item h4 { font-size: 0.875rem; line-height: 1.3; }
  .lose-item p { font-size: 0.8125rem; }
  .lose-brands { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 8px; }
}

.value-callout {
  font-size: var(--halo-type-small, 0.875rem);
  line-height: 1.45;
  color: var(--halo-color-text-primary, #071826);
  margin: 0 0 16px;
  text-align: center;
  padding: 12px 14px;
  background: var(--halo-color-sale-surface, #fff3df);
  border: 1px solid var(--halo-color-card-border, #e2e9ee);
  border-radius: var(--halo-component-card-radius, 12px);
}
.value-callout strong { font-weight: 650; color: var(--halo-color-text-primary, #071826); }

.cancel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.cancel-actions .btn {
  width: 100%;
  min-height: 44px;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}
.cancel-actions .btn-ghost {
  grid-column: 1 / -1;
  min-height: 34px;
}
.cancel-foot {
  font-size: var(--halo-type-small, 0.875rem);
  color: var(--halo-color-text-secondary, #526777);
  text-align: center;
  margin: 0;
}
.cancel-foot a { color: var(--halo-color-link, #2f93f3); }

@media (max-width: 640px) {
  .cancel-actions {
    grid-template-columns: 1fr;
  }
  .cancel-actions .btn-ghost {
    grid-column: auto;
  }
}

/* =========================================
   Marketing landing
   ========================================= */
.mkt-hero {
  text-align: center;
  padding: 56px 24px 36px;
  max-width: 820px;
  margin: 0 auto;
}
.mkt-hero .eyebrow {
  display: inline-block;
  background: var(--halo-yellow);
  color: var(--halo-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.mkt-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--halo-ink);
  line-height: 1.1;
}
.mkt-hero p {
  font-size: 17px;
  color: var(--halo-muted);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.mkt-hero .actions { display: inline-flex; gap: 10px; }

.mkt-strip {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 18px 28px;
  background: #FFFFFF;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.mkt-strip > div {
  font-size: 13px;
  color: var(--halo-muted);
}
.mkt-strip strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--halo-ink);
  margin-bottom: 4px;
}

.mkt-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px 72px;
}
.mkt-section h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--halo-ink);
}
.mkt-section .lede {
  font-size: 15px;
  color: var(--halo-muted);
  margin: 0 0 26px;
  max-width: 620px;
  line-height: 1.5;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.core-card {
  background: #FFFFFF;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.core-card .cat-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #ECEEF2;
  color: var(--halo-text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.core-card.cat-vet .cat-pill { background: var(--soft-blue-bg); color: var(--vet-bg); }
.core-card.cat-food .cat-pill { background: #FBE7D6; color: var(--food-bg); }
.core-card.cat-travel .cat-pill { background: #DEF1E5; color: var(--travel-bg); }
.core-card .brand {
  font-size: 11px;
  color: var(--halo-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.core-card h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--halo-ink);
}
.core-card .blurb {
  font-size: 14px;
  color: var(--halo-muted);
  margin: 0 0 14px;
  line-height: 1.5;
}
.core-card .bullets {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  flex: 1;
}
.core-card .bullets li {
  font-size: 13px;
  color: var(--halo-text);
  padding: 4px 0 4px 16px;
  position: relative;
}
.core-card .bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--halo-yellow);
  border-radius: 50%;
}
.core-card .included-tag {
  font-size: 11px;
  color: var(--halo-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--halo-line-soft);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.brand-tile {
  aspect-ratio: 1.4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #FFFFFF;
  text-align: center;
  padding: 8px;
  line-height: 1.1;
  overflow: hidden;
}
.brand-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.cta-band {
  background: var(--halo-ink);
  color: #FFFFFF;
  text-align: center;
  padding: 56px 28px;
  margin: 0 auto;
  max-width: 1080px;
  border-radius: var(--radius);
}
.cta-band h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #FFFFFF;
}
.cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 22px;
}

.foot {
  text-align: center;
  font-size: 12px;
  color: var(--halo-muted);
  padding: 32px 24px;
}
.foot a { color: var(--halo-muted); }

/* =========================================
   Index hub
   ========================================= */
.hub-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 32px;
}
.hub-shell h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--halo-ink);
}
.hub-shell > p {
  font-size: 15px;
  color: var(--halo-muted);
  margin: 0 0 28px;
  max-width: 620px;
  line-height: 1.5;
}
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.hub-card {
  background: #FFFFFF;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--halo-text);
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.hub-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #B7BFCB;
  text-decoration: none;
}
.hub-card .num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--halo-ink);
  background: var(--halo-yellow);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.hub-card h3 { margin: 0 0 4px; font-size: 17px; font-weight: 800; color: var(--halo-ink); }
.hub-card p { margin: 0; color: var(--halo-muted); font-size: 13px; line-height: 1.45; }

.hub-changes {
  background: #FFFFFF;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.hub-changes h3 { margin: 0 0 12px; font-size: 16px; font-weight: 800; color: var(--halo-ink); }
.hub-changes ul { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.7; color: var(--halo-text); }

/* =========================================
   Category sections (Pack Perks list page)
   ========================================= */
.cat-block {
  margin-top: 36px;
  scroll-margin-top: 100px;
}
.cat-block + .cat-block { margin-top: 44px; }

.cat-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.cat-block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--halo-ink);
}
.cat-block-icon.cat-vet-accent {
  background: rgba(33, 150, 243, 0.12);
  color: #1976D2;
}
.cat-block-icon.cat-food-accent {
  background: rgba(255, 198, 41, 0.18);
  color: #B7860C;
}
.cat-block-icon.cat-travel-accent {
  background: rgba(167, 139, 250, 0.16);
  color: #6D45D8;
}
.cat-block-text {
  flex: 1;
  min-width: 0;
}
.cat-block-text h2 {
  margin: 0 0 4px;
  font-size: 30px;
  font-weight: 800;
  color: var(--halo-ink);
  letter-spacing: -0.015em;
}
.cat-block-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--halo-muted);
}
.cat-block-count {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--halo-muted);
  background: #F4F4F2;
  border: 1px solid var(--halo-line);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 980px) {
  .pp-banner { grid-template-columns: 1fr; gap: 18px; }
  .pp-col { border-left: none; padding: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; }
  .pp-col:first-child { border-top: none; padding-top: 0; }
  .account-cols { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .core-grid { grid-template-columns: 1fr; }
  .featured-vet { grid-template-columns: 1fr; }
  .premium-perk-card { grid-template-columns: 1fr; min-height: auto; }
  .premium-perk-card .ppc-img { min-height: 200px; }
  .premium-perk-card .ppc-content { padding: 24px; }
  .ppl-featured-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .mkt-strip { grid-template-columns: 1fr; gap: 12px; }
  .mkt-hero h1 { font-size: 32px; }
  .topnav-links { display: none; }
  .hub-grid { grid-template-columns: 1fr; }
  .cat-block-text h2 { font-size: 19px; }
}
@media (max-width: 600px) {
  .perks-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .page { padding: 18px 16px 64px; }
  .ppl-hero { border-radius: var(--radius-lg); overflow: hidden; }
  .ppl-hero-content { flex-direction: column; gap: 0; }
  .ppl-hero-left { padding: 28px 22px 24px; }
  .ppl-hero h1 { font-size: 24px; line-height: 1.18; }
  .ppl-hero-sub { font-size: 14px; }
  .ppl-hero-img {
    flex: none;
    width: 100%;
    padding: 0;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .ppl-hero-img img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 0;
    display: block;
  }
  .ppl-featured-grid { grid-template-columns: 1fr; gap: 12px; }
  .ppl-feat-img { aspect-ratio: 3 / 2; }
  .ppl-feat-img { aspect-ratio: 3 / 2; }
  .ppl-feat-text { padding: 14px 16px 16px; }
  .ppl-feat-card h3 { font-size: 16px; }
  .cat-block-head { flex-wrap: wrap; gap: 10px; }
  .cat-block-count { order: 3; margin-left: 54px; }
}

/* =========================================
   Pack Perks list — Halo style-guide modernization
   Scoped to the account-style browsing page only.
   ========================================= */
body.pack-perks-list-page {
  --ppl-page-bg: #ffffff;
  --ppl-surface: var(--halo-color-surface-raised, #ffffff);
  --ppl-surface-muted: var(--halo-color-surface-muted, #f2f6f8);
  --ppl-ink: var(--halo-color-text-primary, #071826);
  --ppl-muted: var(--halo-color-text-secondary, #526777);
  --ppl-line: var(--halo-color-border-subtle, #e2e9ee);
  --ppl-line-strong: var(--halo-color-border-strong, #aec1cf);
  --ppl-blue: var(--halo-color-link, #2f93f3);
  --ppl-blue-dark: var(--halo-blue-950, #071826);
  --ppl-blue-mid: var(--halo-blue-900, #0b2235);
  --ppl-sale-surface: var(--halo-color-sale-surface, #fff3df);
  --ppl-yellow: var(--halo-color-action-primary, #fcd62d);
  --ppl-yellow-hover: var(--halo-color-action-primary-hover, #e5c229);
  --ppl-radius-card: var(--halo-component-card-radius, 12px);
  --ppl-radius-panel: var(--halo-radius-xl, 16px);
  --ppl-shadow-card: var(--halo-shadow-card, 0 4px 14px rgba(7, 24, 38, 0.06));
  --ppl-shadow-raised: var(--halo-shadow-card-lg, 0 12px 28px rgba(7, 24, 38, 0.1));
  background: var(--ppl-page-bg);
  color: var(--ppl-ink);
}

.pack-perks-list-page .ppl-page {
  width: min(var(--halo-container-live, 1240px), calc(100% - 40px));
  max-width: none;
  padding: 28px 0 88px;
}

.pack-perks-list-page .page > .crumbs {
  margin-bottom: 14px;
  color: var(--ppl-muted);
  font-size: var(--halo-type-small, 14px);
}

.pack-perks-list-page .page > .crumbs a {
  color: var(--ppl-muted);
}

.pack-perks-list-page .ppl-hero {
  margin-bottom: clamp(32px, 4vw, 48px);
  border: 1px solid var(--halo-color-card-border, var(--ppl-line));
  border-radius: var(--ppl-radius-panel);
  background: var(--ppl-sale-surface);
  box-shadow: var(--ppl-shadow-card);
}

.pack-perks-list-page .ppl-hero::before {
  display: none;
}

.pack-perks-list-page .ppl-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 360px;
}

.pack-perks-list-page .ppl-hero-left {
  min-width: 0;
  padding: clamp(32px, 5vw, 56px);
}

.pack-perks-list-page .tier-pill {
  margin-bottom: 16px;
  border-color: var(--halo-color-card-border, var(--ppl-line));
  background: var(--halo-color-card-background, #ffffff);
  color: var(--ppl-ink);
}

.pack-perks-list-page .tier-pill .tier-chip {
  background: var(--ppl-yellow);
  color: var(--ppl-ink);
}

.pack-perks-list-page .ppl-hero h1 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--ppl-ink);
  font-size: var(--halo-type-page, 3rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.pack-perks-list-page .ppl-hero-sub {
  max-width: 590px;
  margin-bottom: 22px;
  color: var(--ppl-muted);
  font-size: var(--halo-type-body, 1rem);
  line-height: 1.55;
}

.pack-perks-list-page .ppl-hero-cta,
.pack-perks-list-page .ppl-feat-cta,
.pack-perks-list-page .perk-card .redeem {
  border: 1px solid var(--ppl-yellow);
  border-radius: var(--halo-component-button-radius, 999px);
  background: var(--ppl-yellow);
  color: var(--ppl-ink);
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
  transition:
    background var(--halo-duration-base, 220ms) var(--halo-ease-out, ease),
    border-color var(--halo-duration-base, 220ms) var(--halo-ease-out, ease),
    transform var(--halo-duration-fast, 140ms) var(--halo-ease-out, ease);
}

.pack-perks-list-page .ppl-hero-cta {
  min-height: 44px;
  padding: 11px 18px;
  font-size: var(--halo-type-body, 1rem);
}

.pack-perks-list-page .ppl-hero-cta:hover,
.pack-perks-list-page .ppl-feat-cta:hover,
.pack-perks-list-page .perk-card .redeem:hover {
  border-color: var(--ppl-yellow-hover);
  background: var(--ppl-yellow-hover);
  text-decoration: none;
}

.pack-perks-list-page .ppl-hero-img {
  min-height: 360px;
  border-left: 1px solid var(--halo-color-card-border, var(--ppl-line));
}

.pack-perks-list-page .ppl-hero-img img {
  object-position: center 42%;
}

.pack-perks-list-page .cat-block {
  margin-top: 44px;
  scroll-margin-top: 154px;
}

.pack-perks-list-page .cat-block-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ppl-line);
}

.pack-perks-list-page .cat-block-text h2 {
  margin-bottom: 8px;
  color: var(--ppl-ink);
  font-size: var(--halo-type-section, 2.5rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.pack-perks-list-page .cat-block-text p {
  max-width: 720px;
  color: var(--ppl-muted);
  font-size: var(--halo-type-body, 1rem);
  line-height: 1.65;
}

.pack-perks-list-page .cat-block-count {
  border-color: var(--ppl-line);
  background: var(--ppl-surface);
  color: var(--ppl-muted);
}

.pack-perks-list-page .ppl-featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 16px;
}

.pack-perks-list-page .perks-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pack-perks-list-page .ppl-feat-card,
.pack-perks-list-page .perk-card {
  min-width: 0;
  border-color: var(--ppl-line);
  border-radius: var(--ppl-radius-card);
  background: var(--ppl-surface);
  box-shadow: var(--ppl-shadow-card);
  transition:
    border-color var(--halo-duration-base, 220ms) var(--halo-ease-out, ease),
    box-shadow var(--halo-duration-base, 220ms) var(--halo-ease-out, ease),
    transform var(--halo-duration-fast, 140ms) var(--halo-ease-out, ease);
}

.pack-perks-list-page .ppl-feat-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(380px, 32vw, 460px);
  border: 0;
  background: var(--ppl-blue-dark);
  color: var(--halo-color-text-inverse, #ffffff);
  display: grid;
  align-items: end;
}

.pack-perks-list-page .ppl-feat-card:hover,
.pack-perks-list-page .perk-card:hover {
  border-color: var(--ppl-line-strong);
  box-shadow: var(--ppl-shadow-raised);
}

.pack-perks-list-page .ppl-feat-card:hover {
  border-color: transparent;
}

.pack-perks-list-page .ppl-feat-img,
.pack-perks-list-page .perk-card .perk-img {
  aspect-ratio: 16 / 10;
  background: var(--ppl-surface-muted);
}

.pack-perks-list-page .ppl-feat-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  aspect-ratio: auto;
}

.pack-perks-list-page .ppl-feat-img > img:not(.brand-logo) {
  transform: scale(1.01);
  transition: transform var(--halo-duration-slow, 320ms) var(--halo-ease-out, ease);
}

.pack-perks-list-page .ppl-feat-card:hover .ppl-feat-img > img:not(.brand-logo) {
  transform: scale(1.045);
}

.pack-perks-list-page .ppl-feat-img::after,
.pack-perks-list-page .perk-card .perk-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(7, 24, 38, 0.42));
  pointer-events: none;
}

.pack-perks-list-page .ppl-feat-img::after {
  inset: 0;
  height: auto;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 24, 38, 0.04) 0%, rgba(7, 24, 38, 0.18) 38%, rgba(7, 24, 38, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 24, 38, 0.54) 0%, transparent 46%);
}

.pack-perks-list-page .brand-logo-wrap {
  bottom: 12px;
  left: 12px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(7, 24, 38, 0.08);
  border-radius: var(--halo-radius-md, 8px);
  box-shadow: 0 8px 18px rgba(7, 24, 38, 0.14);
}

.pack-perks-list-page .ppl-feat-text .brand-logo-wrap {
  position: relative;
  inset: auto;
  display: block;
  width: 70px;
  height: 70px;
  margin: 10px 0 14px;
  border-radius: var(--halo-radius-lg, 12px);
  box-shadow: 0 14px 32px rgba(7, 24, 38, 0.26);
}

.pack-perks-list-page .ppl-feat-value {
  position: static;
  align-self: flex-start;
  margin-bottom: 12px;
  color: var(--ppl-ink);
  background: rgba(255, 255, 255, 0.96);
  font-size: var(--halo-type-caption, 0.75rem);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(7, 24, 38, 0.12);
}

.pack-perks-list-page .perk-card .perk-body {
  padding: 18px;
}

.pack-perks-list-page .ppl-feat-text {
  position: relative;
  z-index: 2;
  min-height: 190px;
  padding: 26px 20px;
  justify-content: end;
  border-top: 0;
  background: linear-gradient(180deg, rgba(7, 24, 38, 0), rgba(7, 24, 38, 0.24));
}

.pack-perks-list-page .ppl-feat-eyebrow {
  color: var(--ppl-yellow);
  font-size: var(--halo-type-caption, 0.75rem);
  letter-spacing: 0.08em;
}

.pack-perks-list-page .perk-card h4 {
  color: var(--ppl-ink);
  font-size: var(--halo-type-card-title, 1.125rem);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0;
}

.pack-perks-list-page .perk-card p {
  color: var(--ppl-muted);
  font-size: var(--halo-type-small, 0.875rem);
  line-height: 1.45;
}

.pack-perks-list-page .ppl-feat-card h3 {
  color: var(--halo-color-text-inverse, #ffffff);
  font-size: clamp(1.2rem, 1.7vw, 1.375rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: nowrap;
  white-space: nowrap;
}

.pack-perks-list-page .ppl-feat-card p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--halo-type-small, 0.875rem);
  line-height: 1.45;
}

.pack-perks-list-page .ppl-feat-card h3 {
  min-height: 0;
}

.pack-perks-list-page .perk-card h4 {
  min-height: 2.5em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.pack-perks-list-page .perk-card p {
  min-height: 3.1em;
}

.pack-perks-list-page .perk-card .redeem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 11px 18px;
  font-size: var(--halo-type-small, 0.875rem);
}

.pack-perks-list-page .ppl-feat-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 18px;
  padding: 9px 16px;
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ppl-ink);
  font-size: var(--halo-type-small, 0.875rem);
}

.pack-perks-list-page .ppl-feat-cta:hover {
  border-color: var(--ppl-yellow);
  background: var(--ppl-yellow);
}

@media (max-width: 1100px) {
  .pack-perks-list-page .perks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pack-perks-list-page .ppl-hero-content {
    grid-template-columns: 1fr;
  }

  .pack-perks-list-page .ppl-hero-img {
    min-height: 260px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .pack-perks-list-page .ppl-featured-grid,
  .pack-perks-list-page .perks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pack-perks-list-page .ppl-featured-grid {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    padding: 0 20px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pack-perks-list-page .ppl-featured-grid::-webkit-scrollbar {
    display: none;
  }

  .pack-perks-list-page .ppl-feat-card {
    flex: 0 0 min(560px, 72vw);
    min-height: 420px;
    scroll-snap-align: start;
  }

  .pack-perks-list-page .ppl-feat-card h3 {
    font-size: 1.25rem;
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 720px) {
  .pack-perks-list-page .ppl-page {
    width: min(100% - 32px, var(--halo-container-live, 1240px));
    padding-top: 18px;
  }

  .pack-perks-list-page .ppl-hero {
    margin-bottom: 32px;
  }

  .pack-perks-list-page .ppl-hero-left {
    padding: 28px 22px;
  }

  .pack-perks-list-page .ppl-hero h1 {
    font-size: var(--halo-type-page, 2rem);
    line-height: 1.08;
  }

  .pack-perks-list-page .ppl-hero-sub {
    font-size: var(--halo-type-body, 1rem);
  }

  .pack-perks-list-page .ppl-hero-img {
    display: none;
  }

  .pack-perks-list-page .ppl-hero-cta {
    justify-content: center;
    text-align: center;
  }

  .pack-perks-list-page .cat-block {
    margin-top: 34px;
    scroll-margin-top: 96px;
  }

  .pack-perks-list-page .cat-block-head {
    align-items: flex-start;
  }

  .pack-perks-list-page .cat-block-count {
    order: 0;
    margin-left: 0;
  }

  .pack-perks-list-page .perks-grid {
    grid-template-columns: 1fr;
  }

  .pack-perks-list-page .ppl-featured-grid {
    margin-inline: 0 -16px;
    padding: 0 16px 10px 0;
  }

  .pack-perks-list-page .ppl-feat-card {
    flex-basis: min(330px, 86vw);
    min-height: 430px;
  }

  .pack-perks-list-page .ppl-feat-text {
    min-height: 188px;
    padding: 22px;
  }

  .pack-perks-list-page .ppl-feat-text .brand-logo-wrap {
    width: 62px;
    height: 62px;
  }

  .pack-perks-list-page .ppl-feat-card h3,
  .pack-perks-list-page .perk-card h4,
  .pack-perks-list-page .ppl-feat-card p,
  .pack-perks-list-page .perk-card p {
    min-height: 0;
  }
}

/* ============================================================================
   MARKETING PREMIUM (mktp-*) — Robinhood-inspired Pack Perks landing page
   Used by: marketing.html
   ============================================================================ */

:root {
  /* Dark canvas */
  --mktp-d-canvas: #0A0A0A;
  --mktp-d-elev-1: #121212;
  --mktp-d-elev-2: #1A1A1A;
  --mktp-d-elev-3: #242424;
  --mktp-d-line: rgba(255,255,255,0.08);
  --mktp-d-line-strong: rgba(255,255,255,0.16);
  --mktp-d-text: #FFFFFF;
  --mktp-d-text-mute: rgba(255,255,255,0.66);
  --mktp-d-text-soft: rgba(255,255,255,0.42);

  /* Light canvas */
  --mktp-l-canvas: #FFFFFF;
  --mktp-l-elev-1: #FAFAFA;
  --mktp-l-line: #E5E7EB;
  --mktp-l-line-strong: #0A0A0A;
  --mktp-l-text: #0A0A0A;
  --mktp-l-text-mute: #6B7280;
  --mktp-l-text-soft: #9CA3AF;

  /* Accent */
  --mktp-gold: #FCD62D;
  --mktp-gold-hover: #FFE05A;
  --mktp-gold-glow: rgba(252,214,45,0.20);

  /* Tier accents */
  --mktp-bronze: #C49669;
  --mktp-silver: #BFC4C9;
  --mktp-gold-tier: #E8C94A;
}

/* The marketing page is white-first. */
body.mktp-body {
  background: var(--mktp-l-canvas);
  color: var(--mktp-l-text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mktp-body .foot {
  background: var(--mktp-l-canvas);
  color: var(--mktp-l-text-mute);
  border-top: 1px solid var(--mktp-l-line);
}
.mktp-body .foot a { color: var(--mktp-l-text); }

/* Section backgrounds */
.mktp-section { position: relative; }
.mktp-dark { background: var(--mktp-d-canvas); color: var(--mktp-d-text); }
.mktp-light { background: var(--mktp-l-canvas); color: var(--mktp-l-text); }

.mktp-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ Type ============ */
.mktp-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mktp-d-text-soft);
  margin: 0;
}
.mktp-light .mktp-eyebrow { color: var(--mktp-l-text-mute); }
.mktp-eyebrow-gold { color: var(--mktp-gold); }

.mktp-h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.75rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 18px 0 24px;
}
.mktp-h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.032em;
  margin: 12px 0 20px;
}
.mktp-h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: 0 0 14px;
}
.mktp-lead {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.6;
  color: var(--mktp-d-text-mute);
  max-width: 560px;
  margin: 0 0 32px;
}
.mktp-light .mktp-lead { color: var(--mktp-l-text-mute); }

.mktp-gold-text { color: var(--mktp-gold); }
.mktp-soft-d { color: var(--mktp-d-text-soft); }
.mktp-soft-l { color: var(--mktp-l-text-soft); }

/* ============ Buttons ============ */
.mktp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.mktp-btn-primary {
  background: var(--mktp-gold);
  color: #0A0A0A;
  box-shadow: 0 10px 36px var(--mktp-gold-glow);
}
.mktp-btn-primary:hover {
  background: var(--mktp-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 42px var(--mktp-gold-glow);
}
.mktp-btn-ghost-d {
  background: transparent;
  color: var(--mktp-d-text);
  border: 1px solid var(--mktp-d-line-strong);
}
.mktp-btn-ghost-d:hover { border-color: var(--mktp-d-text); background: rgba(255,255,255,0.04); }
.mktp-btn-arrow { font-size: 18px; line-height: 1; transition: transform 0.2s ease; }
.mktp-btn:hover .mktp-btn-arrow { transform: translateX(3px); }

/* ============ HERO ============ */
.mktp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vh, 110px) 0 clamp(80px, 11vh, 140px);
}
.mktp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mktp-hero-text { max-width: 620px; }
.mktp-hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero product panel (light, simple, no labels) */
.mktp-hero-card {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  background: var(--mktp-l-elev-1);
  border: 1px solid var(--mktp-l-line);
  border-radius: 24px;
  overflow: hidden;
}
.mktp-hero-card-img {
  position: absolute;
  inset: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mktp-hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============ PORTFOLIO (Spotlights) ============ */
.mktp-portfolio {
  padding: clamp(80px, 11vh, 140px) 0;
  border-top: 1px solid var(--mktp-l-line);
}
.mktp-section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 56px;
}
.mktp-spotlights { display: flex; flex-direction: column; }
.mktp-spotlight {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--mktp-l-line);
}
.mktp-spotlight:last-child { border-bottom: 1px solid var(--mktp-l-line); }
.mktp-spotlight.is-rev { grid-template-columns: 420px 1fr; }
.mktp-spotlight.is-rev .mktp-spot-art  { grid-column: 1; grid-row: 1; }
.mktp-spotlight.is-rev .mktp-spot-body { grid-column: 2; grid-row: 1; }

.mktp-spot-body { max-width: 560px; }
.mktp-spot-body .mktp-eyebrow {
  color: var(--mktp-l-text-mute);
  margin-bottom: 14px;
  display: block;
}
.mktp-spot-body h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 14px;
  color: var(--mktp-l-text);
}
.mktp-spot-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mktp-l-text-mute);
  margin: 0;
}

/* Spotlight art tiles — flat solid color placeholders.
   Consistent size, identical treatment across all 5 perks. */
.mktp-spot-art {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--mktp-l-elev-1);
}
.mktp-spot-art-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mktp-l-text);
}
.mktp-spot-art-figure {
  position: absolute;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  z-index: 2;
}
.mktp-spot-art-num {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: rgba(255,255,255,0.95);
  font-feature-settings: "tnum";
}
.mktp-spot-art-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* Per-perk flat color placeholders */
.mktp-art-cellular  { background: #2C5BD9; }   /* blue */
.mktp-art-vet       { background: #1F8A55; }   /* green */
.mktp-art-food      { background: #E07A3A; }   /* orange */
.mktp-art-travel    { background: #0E5C7A; }   /* deep teal */
.mktp-art-lifestyle { background: #6E4FB8; }   /* purple */

/* ============ ROI Summary (light, statement-style) ============ */
.mktp-roi {
  padding: clamp(80px, 11vh, 140px) 0;
}
.mktp-roi .mktp-section-head { margin-bottom: 48px; }
.mktp-statement {
  max-width: 920px;
  margin: 0 auto;
  border-top: 2px solid var(--mktp-l-line-strong);
}
.mktp-statement-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 26px 8px;
  border-bottom: 1px solid var(--mktp-l-line);
}
.mktp-statement-row .lbl {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mktp-statement-row .lbl-name {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--mktp-l-text);
}
.mktp-statement-row .lbl-partner {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mktp-l-text-soft);
}
.mktp-statement-row .val {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--mktp-l-text);
  font-feature-settings: "tnum";
  white-space: nowrap;
}
.mktp-statement-row .val .val-tag {
  display: block;
  text-align: right;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mktp-l-text-soft);
  margin-top: 4px;
}
.mktp-statement-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 8px;
  border-bottom: 2px solid var(--mktp-l-line-strong);
}
.mktp-statement-total .ttl {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mktp-l-text);
}
.mktp-statement-total .grand {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--mktp-l-text);
  font-feature-settings: "tnum";
}
.mktp-statement-total .grand small {
  font-size: 0.36em;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mktp-l-text-mute);
  margin-left: 8px;
}
.mktp-roi-foot {
  max-width: 920px;
  margin: 32px auto 0;
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--mktp-l-text-mute);
}
.mktp-roi-foot strong { color: var(--mktp-l-text); font-weight: 700; }

/* ============ Tier Matrix (light) ============ */
.mktp-tiers {
  padding: clamp(80px, 11vh, 140px) 0;
  background: var(--mktp-l-elev-1);
  border-top: 1px solid var(--mktp-l-line);
}
.mktp-tier-table {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-top: 2px solid var(--mktp-l-line-strong);
  background: var(--mktp-l-canvas);
}
.mktp-tier-cell {
  padding: 22px 22px;
  border-bottom: 1px solid var(--mktp-l-line);
  font-size: 15px;
  color: var(--mktp-l-text-mute);
  display: flex;
  align-items: center;
}
.mktp-tier-th {
  padding: 22px 22px;
  border-bottom: 1px solid var(--mktp-l-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mktp-l-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mktp-tier-th::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mktp-tier-th.is-corner::before { display: none; }
.mktp-tier-th.is-bronze::before { background: var(--mktp-bronze); }
.mktp-tier-th.is-silver::before { background: var(--mktp-silver); }
.mktp-tier-th.is-gold::before { background: var(--mktp-gold-tier); box-shadow: 0 0 0 4px rgba(232,201,74,0.18); }

.mktp-tier-row-label {
  padding: 22px 22px;
  border-bottom: 1px solid var(--mktp-l-line);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--mktp-l-text);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mktp-tier-row-label small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mktp-l-text-mute);
  text-transform: none;
}
.mktp-tier-cell.is-strong { color: var(--mktp-l-text); font-weight: 600; }
.mktp-tier-total-row .mktp-tier-cell,
.mktp-tier-total-row .mktp-tier-row-label {
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--mktp-l-line-strong);
}
.mktp-tier-total-row .mktp-tier-cell {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--mktp-l-text);
  font-feature-settings: "tnum";
}
.mktp-tier-total-row .mktp-tier-cell.is-gold { color: #8A6B14; }

/* ============ Final CTA ============ */
.mktp-final {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vh, 160px) 0;
  border-top: 1px solid var(--mktp-l-line);
  text-align: center;
}
.mktp-final-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.mktp-final h2 {
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.032em;
  margin: 14px 0 18px;
  color: var(--mktp-l-text);
}
.mktp-final p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--mktp-l-text-mute);
  margin: 0 0 36px;
}

/* ============ Reveal animation ============ */
.mktp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.mktp-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .mktp-reveal { opacity: 1; transform: none; transition: none; }
  .mktp-hero-card-img img { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .mktp-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .mktp-hero-card { max-width: 480px; margin: 0 auto; }
  .mktp-spotlight,
  .mktp-spotlight.is-rev {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }
  .mktp-tier-table { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .mktp-container { padding: 0 20px; }
  .mktp-hero { padding: 56px 0 64px; }
  .mktp-spotlight,
  .mktp-spotlight.is-rev {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .mktp-spotlight.is-rev .mktp-spot-art { order: -1; grid-column: auto; grid-row: auto; }
  .mktp-spotlight.is-rev .mktp-spot-body { grid-column: auto; grid-row: auto; }
  .mktp-spot-art { max-width: 100%; }
  .mktp-statement-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 4px;
  }
  .mktp-statement-row .val { font-size: 1.875rem; }
  .mktp-statement-row .val .val-tag { text-align: left; }
  .mktp-statement-total {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 28px 4px;
  }
  .mktp-tier-table {
    display: block;
  }
  .mktp-tier-table > .mktp-tier-th,
  .mktp-tier-table > .mktp-tier-cell,
  .mktp-tier-table > .mktp-tier-row-label {
    display: block;
    width: 100%;
  }
  .mktp-tier-table > .mktp-tier-th.is-corner { display: none; }
  .mktp-tier-row-label {
    background: var(--mktp-l-elev-1);
    padding-top: 28px;
    padding-bottom: 14px;
    border-bottom: 0;
  }
  .mktp-tier-cell {
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .mktp-tier-cell::before {
    content: attr(data-tier);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mktp-l-text);
  }
  .mktp-tier-table > .mktp-tier-th.is-bronze,
  .mktp-tier-table > .mktp-tier-th.is-silver,
  .mktp-tier-table > .mktp-tier-th.is-gold { display: none; }
}