/* ==========================================================================
   marketing.css — Marketing landing page styles
   Uses design system tokens from colors.css, typography.css, borders.css,
   layout.css, animation.css. Do NOT redefine tokens here.
   ========================================================================== */

.marketing-body {
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   Marketing Nav — fixed, full-width, hide-on-scroll
   ========================================================================== */

.mkt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-ivory);
  border-bottom: var(--border-brand);
  padding: 0 3rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s var(--ease-out);
}

.mkt-nav.mkt-nav--hidden {
  transform: translateY(-100%);
}

.mkt-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.mkt-nav__wordmark {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  line-height: 1;
}

.mkt-nav__ai {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--color-electric);
  margin-left: 1px;
}

.mkt-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mkt-nav__link {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-2);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 2px;
  transition: all var(--duration-fast);
  border: 1.5px solid transparent;
}

.mkt-nav__link:hover {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-ivory);
}

.mkt-nav__cta {
  background: var(--color-red);
  color: var(--color-ivory);
  border-color: var(--color-red);
  font-weight: 600;
}

.mkt-nav__cta:hover {
  background: var(--color-red-2);
  border-color: var(--color-red-2);
  color: var(--color-ivory);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.mkt-hero {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--color-ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mkt-hero__bg-circle {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 150, 12, 0.12), rgba(192, 48, 26, 0.06), transparent 70%);
  pointer-events: none;
}

.mkt-hero__halftone {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320px;
  height: 320px;
  opacity: 0.04;
  background-image: radial-gradient(circle, var(--color-ink) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  pointer-events: none;
}

.mkt-hero__left {
  padding: 5rem 3rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.mkt-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-ink);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: mkt-popIn 0.5s 0.1s var(--ease-brand) forwards;
}

.mkt-hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
  animation: mkt-blink 2s ease-in-out infinite;
}

.mkt-hero__pre {
  font-family: var(--font-display);
  font-size: var(--text-hero-lg);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--color-ink);
  display: block;
  opacity: 0;
  animation: mkt-slideRight 0.6s 0.2s var(--ease-brand) forwards;
}

.mkt-hero__main {
  font-family: var(--font-accent);
  font-size: var(--text-hero-xl);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.88;
  color: var(--color-red);
  display: block;
  opacity: 0;
  animation: mkt-slideRight 0.6s 0.32s var(--ease-brand) forwards;
}

.mkt-hero__period {
  color: var(--color-amber);
}

.mkt-hero__sub {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-ink-2);
  max-width: 440px;
  margin: 1.75rem 0 2.25rem;
  opacity: 0;
  animation: mkt-fadeUp 0.6s 0.5s ease forwards;
}

.mkt-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: mkt-fadeUp 0.6s 0.62s ease forwards;
}

.mkt-hero__right {
  position: relative;
  z-index: 2;
  padding: 7rem 4rem 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mkt-hero__mobile-visual {
  display: none;
  margin-top: 1.5rem;
}

.mkt-hero__mobile-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mkt-hero__mobile-badge {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4em 0.8em;
  background: rgba(26, 13, 8, 0.06);
  border: 1.5px solid var(--color-parch-2);
  border-radius: 6px;
  color: var(--color-ink);
}

/* ==========================================================================
   Card Fan (hero mockup cards)
   ========================================================================== */

.card-fan {
  position: relative;
  width: 300px;
  height: 420px;
  opacity: 0;
  animation: mkt-fanIn 0.9s 0.7s var(--ease-brand) forwards;
}

.app-card {
  position: absolute;
  width: 240px;
  height: 390px;
  border-radius: 16px;
  border: 2px solid rgba(26, 13, 8, 0.12);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 13, 8, 0.15), 0 2px 8px rgba(26, 13, 8, 0.1);
  transition: all 0.4s var(--ease-brand);
}

.app-card:nth-child(1) {
  left: 50px; top: 0;
  transform: rotate(-8deg) translateX(-30px);
  z-index: 1;
  animation: mkt-card1float 6s 1.5s ease-in-out infinite;
}

.app-card:nth-child(2) {
  left: 30px; top: 10px;
  transform: rotate(-2deg);
  z-index: 2;
  animation: mkt-card2float 7s 1.5s ease-in-out infinite;
}

.app-card:nth-child(3) {
  left: 10px; top: 20px;
  transform: rotate(5deg) translateX(30px);
  z-index: 3;
  animation: mkt-card3float 5.5s 1.5s ease-in-out infinite;
}

/* Card backgrounds */
.card-1-bg {
  background: linear-gradient(160deg, #0A1628, #0D2040, #122860);
  width: 100%; height: 100%; padding: 1.25rem;
  display: flex; flex-direction: column;
}

.card-2-bg {
  background: linear-gradient(160deg, #1C1000, #2A1A00, #3A2400);
  width: 100%; height: 100%; padding: 1.25rem;
  display: flex; flex-direction: column;
}

.card-3-bg {
  background: linear-gradient(160deg, var(--color-ivory), var(--color-parch));
  width: 100%; height: 100%; padding: 1.25rem;
  display: flex; flex-direction: column;
}

/* Mini-card UI components */
.mc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.mc-logo { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.12em; }
.mc-badge { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.1em; padding: 0.2rem 0.5rem; border-radius: 2px; text-transform: uppercase; }
.mc-val { font-family: var(--font-accent); font-size: 2rem; font-weight: 700; font-style: italic; line-height: 1; margin-bottom: 0.15rem; }
.mc-label { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; margin-bottom: 1rem; }
.mc-divider { height: 1px; opacity: 0.15; background: currentColor; margin-bottom: 0.75rem; }
.mc-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.mc-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; }
.mc-item-info { flex: 1; }
.mc-item-name { font-size: 0.57rem; font-weight: 500; letter-spacing: 0.02em; }
.mc-item-sub { font-size: 0.52rem; opacity: 0.6; margin-top: 1px; }
.mc-item-price { font-size: 0.58rem; font-weight: 600; text-align: right; }
.mc-scan-area {
  flex: 1; border-radius: 8px; border: 1.5px dashed rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.4rem;
  margin-top: auto; background: rgba(255, 255, 255, 0.04); position: relative; overflow: hidden;
}
.mc-scan-line {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-electric), transparent);
  animation: mkt-scanline 2.2s ease-in-out infinite; top: 0;
}
.mc-scan-text { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5; color: white; }
.mc-scan-icon { font-size: 1.5rem; }

/* Card 3 specific (front card) */
.c3-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.c3-logo { font-family: var(--font-display); font-size: 0.95rem; color: var(--color-red); letter-spacing: 0.1em; }
.c3-time { font-size: 0.52rem; color: var(--color-ink-2); opacity: 0.5; }
.c3-highlight-box { background: var(--color-red); border-radius: 8px; padding: 0.75rem; margin-bottom: 0.75rem; color: white; }
.c3-hl-label { font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.75; margin-bottom: 0.2rem; }
.c3-hl-val { font-family: var(--font-accent); font-size: 1.6rem; font-weight: 700; font-style: italic; line-height: 1; }
.c3-hl-sub { font-size: 0.55rem; opacity: 0.8; margin-top: 0.15rem; }
.c3-items { display: flex; flex-direction: column; gap: 0.4rem; }
.c3-item { display: flex; align-items: center; gap: 0.5rem; background: var(--color-parch); border-radius: 6px; padding: 0.5rem 0.6rem; }
.c3-item-ico { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.c3-item-n { font-size: 0.57rem; font-weight: 500; color: var(--color-ink); }
.c3-item-s { font-size: 0.52rem; color: var(--color-ink-2); opacity: 0.6; }
.c3-item-p { font-size: 0.57rem; font-weight: 600; color: var(--color-mint); margin-left: auto; }
.c3-trend-box {
  margin-top: 0.6rem; background: var(--color-ink); border-radius: 8px; padding: 0.65rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.c3-trend-icon { font-size: 1rem; }
.c3-trend-text { font-size: 0.55rem; color: rgba(255, 255, 255, 0.8); line-height: 1.4; }

/* Card fan color modifiers (extracted from inline styles) */
.mc-logo--blue { color: #6B94FF; }
.mc-logo--amber { color: var(--color-amber); }
.mc-badge--blue { background: rgba(107, 148, 255, .15); color: #6B94FF; }
.mc-badge--amber { background: rgba(232, 150, 12, .15); color: var(--color-amber); }
.mc-val--white { color: #fff; }
.mc-val--amber { color: var(--color-amber); }
.mc-label--white { color: #fff; }
.mc-label--faded { color: rgba(255, 255, 255, .5); }
.mc-divider--faded { opacity: .1; }
.mc-dot--blue { background: rgba(107, 148, 255, .2); color: #6B94FF; }
.mc-dot--amber { background: rgba(232, 150, 12, .2); color: var(--color-amber); }
.mc-dot--mint { background: rgba(0, 168, 107, .2); color: var(--color-mint); }
.mc-item-name--white { color: #fff; }
.mc-item-sub--faded { color: rgba(255, 255, 255, .5); }
.mc-item-sub--faded-alt { color: rgba(255, 255, 255, .45); }
.mc-item-price--blue { color: #6B94FF; }
.mc-item-price--amber { color: var(--color-amber); }
.mc-item-price--mint { color: var(--color-mint); }
.mc-scan-area { min-height: 80px; }
.mc-alert-box {
  margin-top: auto; background: rgba(232, 150, 12, .12);
  border: 1px solid rgba(232, 150, 12, .2); border-radius: 6px;
  padding: .6rem; display: flex; gap: .5rem; align-items: center;
}
.mc-alert-icon { font-size: .9rem; }
.mc-alert-text { font-size: .52rem; color: rgba(255, 255, 255, .65); line-height: 1.4; }
.mc-alert-highlight { color: var(--color-amber); }
.c3-item-ico--red { background: rgba(192, 48, 26, .12); }
.c3-item-ico--blue { background: rgba(26, 95, 255, .1); }
.c3-item-ico--purple { background: rgba(168, 85, 247, .1); }
.c3-trend-text strong { color: var(--color-amber); font-weight: 600; }

/* ==========================================================================
   Stats Bar (diagonal strip)
   ========================================================================== */

.mkt-stats {
  background: var(--color-ink);
  padding: 2.25rem 5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
}

.mkt-stats::before {
  content: '';
  position: absolute;
  left: -40px;
  top: -40px;
  width: 100px;
  height: 180px;
  background: var(--color-red);
  transform: rotate(12deg);
  opacity: 0.6;
}

.mkt-stats__item {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.mkt-stats__item + .mkt-stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1.5px;
  background: rgba(250, 246, 238, 0.12);
}

.mkt-stats__num {
  font-family: var(--font-display);
  font-size: var(--text-stat);
  letter-spacing: 0.04em;
  color: var(--color-ivory);
  line-height: 1;
}

.mkt-stats__num em {
  color: var(--color-amber);
  font-style: normal;
}

.mkt-stats__desc {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.45);
  margin-top: 0.2rem;
}

/* ==========================================================================
   Ticker (category marquee)
   ========================================================================== */

.mkt-ticker {
  background: var(--color-amber);
  border-top: var(--border-brand);
  border-bottom: var(--border-brand);
  overflow: hidden;
  padding: 0.7rem 0;
}

.mkt-ticker__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: mkt-marqueeLeft 20s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--color-ink);
}

.mkt-ticker__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.mkt-ticker__sep {
  color: var(--color-red);
  font-size: 1.3rem;
}

/* ==========================================================================
   Section base (shared heading styles for marketing sections)
   ========================================================================== */

.mkt-section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red);
  background: rgba(192, 48, 26, 0.08);
  border: 1.5px solid rgba(192, 48, 26, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.mkt-section-h {
  font-family: var(--font-display);
  font-size: var(--text-section);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--color-ink);
}

.mkt-section-h em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-red);
  font-size: 1.05em;
  letter-spacing: -0.01em;
}

.mkt-section-p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-ink-2);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 1.25rem;
}

/* ==========================================================================
   Obsession (brand soul)
   ========================================================================== */

.mkt-obsession {
  background: var(--color-parch);
  border-top: var(--border-brand);
  border-bottom: var(--border-brand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 5rem;
}

.mkt-obsession__left .mkt-section-h {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.mkt-obsession__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mkt-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--color-ivory);
  border: 1.5px solid rgba(26, 13, 8, 0.1);
  border-radius: 3px;
  transition: all 0.2s var(--ease-out);
}

.mkt-pillar:hover {
  border-color: var(--color-red);
  transform: translateX(4px);
}

.mkt-pillar__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-red);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}

.mkt-pillar__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.2rem;
}

.mkt-pillar__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-ink-2);
  line-height: 1.6;
}

.mkt-obsession__right {
  position: relative;
}

.mkt-big-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  color: var(--color-ink);
  border-left: 5px solid var(--color-red);
  padding-left: 1.75rem;
  margin-bottom: 2rem;
}

.mkt-big-quote em {
  color: var(--color-red);
  font-style: normal;
}

.mkt-attr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mkt-attr-box {
  background: var(--color-ink);
  color: var(--color-ivory);
  padding: 1.25rem;
  border-radius: 3px;
  text-align: center;
}

.mkt-attr-box--amber { background: var(--color-amber); }
.mkt-attr-box--red { background: var(--color-red); }
.mkt-attr-box--parch { background: var(--color-parch-2); color: var(--color-ink); }

.mkt-attr-box__icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.mkt-attr-box__label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }
.mkt-attr-box__word { font-family: var(--font-accent); font-size: 1.25rem; font-weight: 700; font-style: italic; margin-top: 0.15rem; }
.mkt-attr-box__word--ink { color: var(--color-ink); }

/* ==========================================================================
   Features grid
   ========================================================================== */

.mkt-features {
  background: var(--color-ivory);
  padding-bottom: 7rem;
}

.mkt-features__head {
  margin-bottom: 3rem;
}

.mkt-features__intro {
  max-width: 700px;
  margin-bottom: 4rem;
}

/* feat-card styles are in cards.css — these extend for marketing */
.mkt-feat-title {
  font-family: var(--font-accent);
  font-size: var(--text-feature);
  font-weight: 700;
  font-style: italic;
  color: var(--color-ink);
  margin-bottom: 0.6rem;
  transition: color var(--duration-medium) var(--ease-out);
  line-height: 1.2;
}

.feat-card:hover .mkt-feat-title { color: var(--color-ivory); }

.mkt-feat-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-ink-2);
  line-height: 1.72;
  transition: color var(--duration-medium) var(--ease-out);
}

.feat-card:hover .mkt-feat-desc { color: rgba(250, 246, 238, 0.65); }

/* Remove right border on last column, bottom border on last row */
.feat-card:nth-child(3n) { border-right: none; }
.feat-card:nth-child(n+4) { border-bottom: none; }

/* ==========================================================================
   How It Works
   ========================================================================== */

.mkt-how {
  background: var(--color-parch);
  border-top: var(--border-brand);
  padding: 7rem 5rem;
}

.mkt-how__grid {
  margin-top: 4rem;
}

.mkt-how-step {
  padding: 2.5rem 1.75rem;
  border-right: var(--border-inner);
  position: relative;
  overflow: hidden;
}

.mkt-how-step:last-child { border-right: none; }

.mkt-how-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-ink);
  transition: background 0.2s;
}

.mkt-how-step:nth-child(1)::before { background: var(--color-red); }
.mkt-how-step:nth-child(2)::before { background: var(--color-amber); }
.mkt-how-step:nth-child(3)::before { background: var(--color-electric); }
.mkt-how-step:nth-child(4)::before { background: var(--color-mint); }

.mkt-how-step__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: rgba(26, 13, 8, 0.08);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.mkt-how-step__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.mkt-how-step__title {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.mkt-how-step__desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--color-ink-2);
  line-height: 1.7;
}

/* ==========================================================================
   Social Proof (marquee)
   ========================================================================== */

.mkt-social {
  background: var(--color-ink);
  padding: 5rem 0;
  overflow: hidden;
}

.mkt-social__header {
  text-align: center;
  padding: 0 5rem 3rem;
  color: var(--color-ivory);
}

.mkt-social__header .mkt-section-tag {
  color: var(--color-amber);
  background: rgba(232, 150, 12, 0.1);
  border-color: rgba(232, 150, 12, 0.3);
}

.mkt-social__header .mkt-section-h {
  color: var(--color-ivory);
}

.mkt-social__header .mkt-section-h em {
  color: var(--color-amber);
}

.mkt-social__header .mkt-section-p {
  color: rgba(250, 246, 238, 0.5);
  margin: 1rem auto 0;
  text-align: center;
}

.mkt-marquee-wrap {
  overflow: hidden;
}

.mkt-marquee-row {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.mkt-marquee-row--left {
  animation: mkt-marqueeLeft 35s linear infinite;
  margin-bottom: 1.25rem;
}

.mkt-marquee-row--right {
  animation: mkt-marqueeLeft 45s linear infinite reverse;
}

.mkt-tweet-card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(250, 246, 238, 0.06);
  border: 1.5px solid rgba(250, 246, 238, 0.1);
  border-radius: 4px;
  padding: 1.25rem;
  transition: background var(--duration-fast), border-color var(--duration-fast);
}

.mkt-tweet-card:hover {
  background: rgba(250, 246, 238, 0.1);
  border-color: rgba(250, 246, 238, 0.2);
}

.mkt-tweet-card__top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.mkt-tweet-card__avi {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mkt-tweet-card__avi--red {
  background: rgba(192, 48, 26, 0.3);
  color: #FF8066;
}

.mkt-tweet-card__avi--amber {
  background: rgba(232, 150, 12, 0.25);
  color: #E8960C;
}

.mkt-tweet-card__avi--blue {
  background: rgba(26, 95, 255, 0.2);
  color: #6B94FF;
}

.mkt-tweet-card__avi--mint {
  background: rgba(0, 168, 107, 0.2);
  color: #00A86B;
}

.mkt-tweet-card__avi--purple {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.mkt-tweet-card__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-ivory);
}

.mkt-tweet-card__handle {
  font-size: 0.72rem;
  color: rgba(250, 246, 238, 0.4);
  margin-top: 0.05rem;
}

.mkt-tweet-card__body {
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(250, 246, 238, 0.75);
  font-style: italic;
}

.mkt-tweet-card__footer {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: rgba(250, 246, 238, 0.35);
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.mkt-pricing {
  background: var(--color-ivory);
  border-top: var(--border-brand);
}

.mkt-pricing__head {
  max-width: var(--max-prose);
  margin-bottom: 4rem;
}

/* Price card base */
.mkt-price-card {
  padding: 2.75rem 2.25rem;
  border-right: var(--border-inner);
  position: relative;
  overflow: hidden;
}

.mkt-price-card:last-child { border-right: none; }
.mkt-price-card--featured { background: var(--color-ink); color: var(--color-ivory); }

.mkt-price-tier-label {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.mkt-price-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}

.mkt-price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}

.mkt-price-dollar {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
}

.mkt-price-num {
  font-family: var(--font-display);
  font-size: 5rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.mkt-price-note {
  font-size: var(--text-label);
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.mkt-price-divider {
  height: 1.5px;
  background: currentColor;
  opacity: 0.12;
  margin: 1.5rem 0;
}

.mkt-price-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  padding: 0;
}

.mkt-price-ul li {
  font-size: 0.85rem;
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.mkt-price-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--color-red);
  transform: rotate(45deg);
}

.mkt-price-card--featured .mkt-price-ul li::before {
  background: var(--color-amber);
}

/* Price button */
.mkt-price-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid;
  transition: all 0.22s var(--ease-out);
}

.mkt-price-btn--outline-dark {
  border-color: var(--color-ink);
  color: var(--color-ink);
  background: transparent;
}

.mkt-price-btn--outline-dark:hover {
  background: var(--color-ink);
  color: var(--color-ivory);
}

.mkt-price-btn--fill-amber {
  border-color: var(--color-amber);
  background: var(--color-amber);
  color: var(--color-ink);
}

.mkt-price-btn--fill-amber:hover {
  background: var(--color-amber-2);
  border-color: var(--color-amber-2);
}

/* Featured banner (Most Popular ribbon) */
.mkt-featured-banner {
  position: absolute;
  top: 1.5rem;
  right: -2.5rem;
  background: var(--color-red);
  color: var(--color-ivory);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
  transform-origin: center;
}

/* Credit pack rows (Hobby tier) */
.mkt-pack-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.mkt-pack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  border: 1.5px solid rgba(250, 246, 238, 0.1);
  transition: border-color 0.2s;
}

.mkt-pack-row--featured {
  border-color: var(--color-amber);
  background: rgba(232, 150, 12, 0.1);
}

.mkt-pack-row__left {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.mkt-pack-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.07em;
  color: var(--color-ivory);
}

.mkt-pack-credits {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(250, 246, 238, 0.45);
  letter-spacing: 0.04em;
}

.mkt-pack-row--featured .mkt-pack-credits {
  color: rgba(232, 150, 12, 0.75);
}

.mkt-pack-price {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-ivory);
  white-space: nowrap;
}

.mkt-pack-row--featured .mkt-pack-price {
  color: var(--color-amber);
}

.mkt-pack-badge {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--color-amber);
  color: var(--color-ink);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.3rem;
}

.mkt-pack-note {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250, 246, 238, 0.35);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.mkt-pack-note em {
  font-style: normal;
  color: rgba(250, 246, 238, 0.55);
}

/* Pro billing toggle (static display) */
.mkt-pro-billing {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1.5px solid rgba(26, 13, 8, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.mkt-pro-billing__opt {
  flex: 1;
  padding: 0.85rem 0.75rem;
  text-align: center;
  border: none;
  background: transparent;
  cursor: default;
  transition: background var(--duration-fast);
}

.mkt-pro-billing__opt--active {
  background: var(--color-ink);
  color: var(--color-ivory);
}

.mkt-pro-billing__opt:not(.mkt-pro-billing__opt--active) {
  background: rgba(26, 13, 8, 0.04);
  color: var(--color-ink-2);
}

.mkt-pro-billing__label {
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

.mkt-pro-billing__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  display: block;
  margin-top: 0.1rem;
}

.mkt-pro-billing__sub {
  font-size: 0.62rem;
  font-weight: 300;
  opacity: 0.5;
  letter-spacing: 0.04em;
  display: block;
}

.mkt-pro-billing__opt--active .mkt-pro-billing__sub {
  opacity: 0.45;
}

.mkt-pro-save-pill {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--color-mint);
  color: #fff;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  margin-left: 0.3rem;
}

/* Pricing modifiers (extracted from inline styles) */
.mkt-price-tier-label--muted { color: var(--color-ink-2); opacity: .45; }
.mkt-price-tier-label--amber { color: var(--color-amber); }
.mkt-price-note--faded { color: rgba(250, 246, 238, .35); }
.mkt-price-ul--light { color: rgba(250, 246, 238, .8); }
.mkt-price-cta-wrap { margin-top: 1.5rem; }
.mkt-pro-billing__cents { font-size: .9rem; }
.mkt-pro-billing__opt--right { border-left: 1.5px solid rgba(26, 13, 8, .15); }

/* Credit legend */
.mkt-credit-legend {
  border-top: 1.5px solid rgba(26, 13, 8, 0.08);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.mkt-credit-legend__title {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 13, 8, 0.35);
  margin-bottom: 0.6rem;
}

.mkt-credit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-label);
  font-weight: 300;
  color: var(--color-ink-2);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(26, 13, 8, 0.06);
}

.mkt-credit-row:last-child { border-bottom: none; }

.mkt-credit-cost {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--color-red);
}

/* Featured card credit legend overrides */
.mkt-price-card--featured .mkt-credit-legend__title { color: rgba(250, 246, 238, 0.3); }
.mkt-price-card--featured .mkt-credit-row { color: rgba(250, 246, 238, 0.65); border-color: rgba(250, 246, 238, 0.08); }
.mkt-price-card--featured .mkt-credit-cost { color: var(--color-amber); }

/* Price sub-note */
.mkt-price-subnote {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--color-ink-2);
  opacity: 0.55;
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Hobby tagline */
.mkt-hobby-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(250, 246, 238, 0.5);
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   CTA (red section)
   ========================================================================== */

.mkt-cta {
  background: var(--color-red);
  padding: 8rem 5rem;
  position: relative;
  overflow: hidden;
}

.mkt-cta::before {
  content: 'GRAILSOME';
  font-family: var(--font-display);
  font-size: 22vw;
  letter-spacing: 0.05em;
  color: rgba(140, 31, 14, 0.35);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.mkt-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mkt-cta__tag {
  display: inline-block;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
  border: 1.5px solid rgba(250, 246, 238, 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.mkt-cta__h {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--color-ivory);
  margin-bottom: 0.5rem;
}

.mkt-cta__h em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-amber);
  display: block;
}

.mkt-cta__sub {
  font-size: var(--text-body-lg);
  font-weight: 300;
  color: rgba(250, 246, 238, 0.7);
  max-width: var(--max-narrow);
  margin: 1.5rem auto 3rem;
  line-height: 1.75;
}

.mkt-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mkt-cta__trust {
  margin-top: 2.5rem;
  font-size: var(--text-label);
  color: rgba(250, 246, 238, 0.45);
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.mkt-footer {
  background: var(--color-ink);
  padding: 5rem 5rem 3rem;
  border-top: var(--border-brand);
}

.mkt-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.mkt-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.mkt-footer__wordmark {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-ivory);
  line-height: 1;
  letter-spacing: -0.01em;
}

.mkt-footer__ai {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--color-electric);
}

.mkt-footer__tagline {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250, 246, 238, 0.45);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.mkt-footer__social {
  display: flex;
  gap: 0.5rem;
}

.mkt-social-pill {
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  border: 1.5px solid rgba(250, 246, 238, 0.15);
  color: rgba(250, 246, 238, 0.5);
  text-decoration: none;
  transition: all 0.2s;
  text-transform: uppercase;
}

.mkt-social-pill:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

.mkt-footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.3);
  margin-bottom: 1rem;
}

.mkt-footer__col a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250, 246, 238, 0.55);
  text-decoration: none;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.mkt-footer__col a:hover { color: var(--color-ivory); }

.mkt-footer__bottom {
  border-top: 1.5px solid rgba(250, 246, 238, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.mkt-footer__bottom p {
  font-size: var(--text-label);
  color: rgba(250, 246, 238, 0.3);
  margin: 0;
}

.mkt-footer__links {
  display: flex;
  gap: 1.5rem;
}

.mkt-footer__links a {
  font-size: var(--text-label);
  color: rgba(250, 246, 238, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.mkt-footer__links a:hover { color: rgba(250, 246, 238, 0.7); }

/* ==========================================================================
   Keyframes (marketing-specific)
   ========================================================================== */

@keyframes mkt-popIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes mkt-slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes mkt-fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes mkt-fanIn {
  from { opacity: 0; transform: scale(0.85) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes mkt-card1float {
  0%, 100% { transform: rotate(-8deg) translateX(-30px) translateY(0); }
  50%      { transform: rotate(-7deg) translateX(-30px) translateY(-8px); }
}

@keyframes mkt-card2float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-1.5deg) translateY(-12px); }
}

@keyframes mkt-card3float {
  0%, 100% { transform: rotate(5deg) translateX(30px) translateY(0); }
  50%      { transform: rotate(4.5deg) translateX(30px) translateY(-6px); }
}

@keyframes mkt-scanline {
  0%   { top: 0;    opacity: 1; }
  85%  { top: 100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes mkt-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

@keyframes mkt-marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Responsive — Mobile first (< 900px)
   ========================================================================== */

@media (max-width: 900px) {
  .mkt-nav {
    padding: 0 1.25rem;
  }

  .mkt-nav__link:not(.mkt-nav__cta) {
    display: none;
  }

  .mkt-hero {
    grid-template-columns: 1fr;
  }

  .mkt-hero__right {
    display: none;
  }

  .mkt-hero__mobile-visual {
    display: block;
  }

  .mkt-hero__left {
    padding: 5rem 2rem 4rem;
  }

  .mkt-obsession {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .feat-card:nth-child(3n) {
    border-right: var(--border-inner);
  }

  .feat-card:nth-child(n+4) {
    border-bottom: var(--border-inner);
  }

  .feat-card:last-child {
    border-bottom: none;
    border-right: none;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-how-step:nth-child(2) {
    border-right: none;
  }

  .mkt-how {
    padding: 5rem 2rem;
  }

  .mkt-price-card {
    border-right: none;
    border-bottom: var(--border-inner);
  }

  .mkt-price-card:last-child {
    border-bottom: none;
  }

  .mkt-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-stats {
    padding: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .mkt-cta {
    padding: 6rem 2rem;
  }

  .mkt-footer {
    padding: 5rem 2rem 3rem;
  }

  .mkt-social__header {
    padding: 0 2rem 3rem;
  }
}

@media (max-width: 600px) {
  .mkt-footer__top {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .mkt-how-step {
    border-right: none;
    border-bottom: var(--border-inner);
  }

  .mkt-how-step:last-child {
    border-bottom: none;
  }

  .mkt-stats {
    gap: 1rem;
  }

  .mkt-stats__item + .mkt-stats__item::before {
    display: none;
  }
}

/* ── Coming Soon badge ── */
.mkt-coming-soon {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-amber);
  background: rgba(232, 150, 12, 0.1);
  border: 1px solid rgba(232, 150, 12, 0.25);
  border-radius: 3px;
  padding: 0.15em 0.5em;
  margin-left: 0.35em;
  vertical-align: middle;
  white-space: nowrap;
}

/* ── Legal pages ── */
.mkt-legal {
  max-width: 640px;
  margin: 3rem auto 6rem;
  padding: 2rem;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-ink);
  line-height: 1.7;
}

/* Legal header — logo + nav */
.mkt-legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2.5px solid var(--color-ink);
}

.mkt-legal-header__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--color-ink);
}

.mkt-legal-header__wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.mkt-legal-header__ai {
  color: var(--color-red);
}

.mkt-legal-nav {
  display: flex;
  gap: 0.15rem;
}

.mkt-legal-nav__link {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-ink-2);
  text-decoration: none;
  padding: 0.4em 0.75em;
  border: 1.5px solid transparent;
  border-radius: 3px;
  transition: border-color var(--duration-fast) ease, color var(--duration-fast) ease;
}

.mkt-legal-nav__link:hover {
  border-color: var(--color-parch-2);
  color: var(--color-ink);
}

.mkt-legal-nav__link.mkt-legal-nav__link--active {
  background: var(--color-red);
  color: var(--color-ivory);
  border-color: var(--color-red);
}

.mkt-legal-nav__link.mkt-legal-nav__link--active:hover {
  background: var(--color-red-2);
  color: var(--color-ivory);
  border-color: var(--color-red-2);
}

/* Page title — Bebas + Fraunces composition */
.mkt-legal__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.mkt-legal__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.mkt-legal__subtitle .amber-dot {
  color: var(--color-amber);
}

.mkt-legal__updated {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 2.5rem;
}

/* Legal intro text */
.mkt-legal__intro {
  font-size: var(--text-body-lg);
  font-weight: 300;
  color: var(--color-ink-2);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Section headings in legal content */
.mkt-legal h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.mkt-legal p {
  margin-bottom: 1rem;
  color: var(--color-ink-2);
}

.mkt-legal ul {
  margin: 0 0 1rem 0;
  padding: 0;
  list-style: none;
  color: var(--color-ink-2);
}

.mkt-legal li {
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.mkt-legal li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--color-amber);
  font-size: 0.7em;
  top: 0.25em;
}

.mkt-legal a {
  color: var(--color-red);
  text-decoration: none;
}

.mkt-legal a:hover {
  color: var(--color-red-2);
}

.mkt-legal__contact {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2.5px solid var(--color-ink);
}

/* Policy index cards */
.mkt-policy-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  border: 2.5px solid var(--color-ink);
}

a.mkt-policy-card {
  display: block;
  padding: 1.75rem;
  background: var(--color-cream-card);
  text-decoration: none;
  color: var(--color-ink);
  transition: background var(--duration-fast) ease;
}

.mkt-policy-card + .mkt-policy-card {
  border-top: 2px solid var(--color-ink);
}

.mkt-policy-card:hover {
  background: var(--color-parch);
}

.mkt-policy-card__icon {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.mkt-policy-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.mkt-policy-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 300;
  color: var(--color-ink-2);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .mkt-legal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mkt-legal-nav {
    flex-wrap: wrap;
  }
}

.mkt-legal__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.mkt-legal__updated {
  font-size: 0.85rem;
  color: var(--color-ink-2);
  margin-bottom: 2.5rem;
}

.mkt-legal h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--color-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

