/* ============================================================
   ReceiptRadar — Homepage (Direction B "Money-forward")
   Static recreation of the homepage design prototype.
   Relies on tokens + semantic classes from colors_and_type.css.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; }
body { background: var(--rr-mist); }
a { color: inherit; text-decoration: none; }

.rr-ico { display: inline-flex; line-height: 0; }
.rr-ico svg { width: 1em; height: 1em; display: block; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- Layout container ---------- */
.hp-container { max-width: 1120px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 760px) { .hp-container { padding: 0 22px; } }

/* ---------- Section labels & eyebrows ---------- */
.hp-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--rr-green);
}
.hp-section-label::before {
  content: ""; width: 18px; height: 1.5px; background: currentColor; opacity: 0.6;
}
.hp-section-label--lime { color: var(--rr-sprout); }

.hp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px;
  border-radius: 999px; background: var(--rr-sprout-soft); color: var(--rr-green);
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.06em;
}
.hp-eyebrow-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--rr-sprout); }

/* ---------- Buttons ---------- */
.hp-btn {
  font-family: var(--rr-font-body); font-weight: 700; border: none; cursor: pointer;
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  white-space: nowrap; text-decoration: none;
  transition: background var(--rr-dur) var(--rr-ease), transform var(--rr-dur-fast) var(--rr-ease),
              box-shadow var(--rr-dur) var(--rr-ease);
}
.hp-btn--sm { font-size: 13px; padding: 8px 14px; }
.hp-btn--md { font-size: 15px; padding: 12px 22px; }
.hp-btn--lg { font-size: 16.5px; padding: 15px 28px; }
.hp-btn--full { width: 100%; }

.hp-btn--primary { background: var(--rr-sprout); color: var(--rr-fg-on-lime); }
.hp-btn--primary:hover { background: var(--rr-sprout-hover); box-shadow: var(--rr-shadow-md); transform: translateY(-1px); }

.hp-btn--secondary { background: var(--rr-pine); color: var(--rr-fg-inverse); }
.hp-btn--secondary:hover { background: #1d3a2b; transform: translateY(-1px); }

.hp-btn--ghost { background: transparent; color: var(--rr-green); box-shadow: inset 0 0 0 1.5px var(--rr-border-strong); }
.hp-btn--ghost:hover { background: var(--rr-surface-2); }

/* ---------- Radar rings ---------- */
.hp-rings { position: absolute; pointer-events: none; }
.hp-rings--hero    { left: 50%; top: -120px; transform: translateX(-50%); width: 720px; height: 720px; }
.hp-rings--closing { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 820px; height: 820px; }
.hp-rings--footer  { right: -160px; bottom: -200px; width: 520px; height: 520px; }
.hp-rings--plan    { right: -120px; top: -110px; width: 320px; height: 320px; }

/* ---------- Header ---------- */
.hp-header {
  display: flex; align-items: center; justify-content: space-between; padding: 22px 64px;
  max-width: 1120px; margin: 0 auto;
}
.hp-wordmark { display: inline-flex; align-items: center; gap: 10px; }
.hp-wordmark img { display: block; }
.hp-wordmark-text {
  font-family: var(--rr-font-display); font-weight: 800; font-size: 21px;
  letter-spacing: -0.025em; color: var(--rr-fg-1);
}
.hp-wordmark-accent { color: var(--rr-green); }
.hp-wordmark--reversed .hp-wordmark-text { color: var(--rr-fg-inverse); }
.hp-wordmark--reversed .hp-wordmark-accent { color: var(--rr-sprout); }

.hp-nav { display: flex; align-items: center; gap: 30px; }
.hp-nav a { font-family: var(--rr-font-body); font-weight: 600; font-size: 14.5px; color: var(--rr-fg-2); }
.hp-nav a:hover { color: var(--rr-fg-1); }
.hp-header-right { display: flex; align-items: center; gap: 14px; }
.hp-login { font-family: var(--rr-font-body); font-weight: 700; font-size: 14.5px; color: var(--rr-fg-1); }

/* ---------- Hero ---------- */
.hp-hero { padding: 64px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hp-hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hp-hero h1 {
  font-family: var(--rr-font-display); font-weight: 800; font-size: 52px; line-height: 1.08;
  letter-spacing: -0.03em; margin: 20px 0 0; white-space: nowrap;
}
.hp-hero .rr-lead { font-size: 19.5px; margin: 20px 0 30px; max-width: 560px; }
.hp-hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; }
.hp-hero-cta-row { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }

.hp-trustline { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; justify-content: center; }
.hp-trustline span {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px;
  color: var(--rr-fg-3); font-weight: 500; white-space: nowrap;
}
.hp-trustline span .rr-ico { color: var(--rr-green); }
.hp-trustline--dark span { color: rgba(244, 244, 241, 0.7); }

/* ---------- Supported stores ---------- */
.hp-stores { background: var(--rr-mist); padding: 8px 0 56px; }
.hp-stores-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hp-stores-label {
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--rr-fg-3);
}
.hp-stores-list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px 34px; max-width: 960px;
}
.hp-store {
  font-family: var(--rr-font-display); font-weight: 700; font-size: 23px;
  letter-spacing: -0.02em; color: var(--rr-fg-2); white-space: nowrap;
}
.hp-store--more { color: var(--rr-fg-3); }
.hp-stores-note { margin: 0; font-size: 14px; color: var(--rr-fg-3); text-align: center; }

/* ---------- What we watch ---------- */
.hp-watch { background: var(--rr-mist); padding: 76px 0; }
.hp-watch-inner { display: flex; flex-direction: column; align-items: center; }
.hp-watch-label {
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--rr-fg-3);
}
.hp-watch .rr-h2 { margin: 14px 0 0; text-align: center; max-width: 620px; font-size: 38px; }
.hp-watch-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; width: 100%; margin-top: 44px;
}
.hp-watch-card {
  background: var(--rr-card); border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-xl); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.hp-watch-card-icon {
  width: 46px; height: 46px; border-radius: var(--rr-radius-md);
  display: inline-flex; align-items: center; justify-content: center;
}
.hp-watch-card-icon--positive { background: var(--rr-positive-bg); color: var(--rr-green); }
.hp-watch-card-icon--warning  { background: var(--rr-warning-bg); color: var(--rr-warning); }
.hp-watch-card-icon--alert    { background: var(--rr-alert-bg); color: var(--rr-alert-text); }
.hp-watch-card h3 {
  font-family: var(--rr-font-display); font-weight: 700; font-size: 21px;
  letter-spacing: -0.01em; margin: 0; color: var(--rr-fg-1);
}
.hp-watch-card .rr-body { margin: 0; font-size: 15.5px; line-height: 1.55; }

/* ---------- How it works (deep) ---------- */
.hp-how { background: var(--rr-card); padding: 100px 0; }
.hp-how-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 80px; }
.hp-how-head .rr-h2 { max-width: 640px; }
.hp-how-head .rr-lead { max-width: 540px; margin: 0; }
.hp-how-rows { display: flex; flex-direction: column; gap: 96px; }

.hp-deep-row { display: flex; gap: 72px; align-items: center; flex-wrap: wrap; }
.hp-deep-text { flex: 1 1 0; min-width: 320px; max-width: 480px; }
.hp-deep-visual { flex: 1 1 0; min-width: 0; display: flex; justify-content: center; }
@media (min-width: 761px) {
  .hp-deep-row--flip .hp-deep-text { order: 2; }
  .hp-deep-row--flip .hp-deep-visual { order: 1; }
}
.hp-deep-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hp-deep-eyebrow-label {
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--rr-fg-3);
}
.hp-stepbadge {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 999px; background: var(--rr-sprout); color: var(--rr-fg-on-lime);
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 13px; flex: none;
}
.hp-deep-text h3 {
  font-family: var(--rr-font-display); font-weight: 800; font-size: 30px;
  letter-spacing: -0.025em; line-height: 1.12; margin: 0 0 14px;
}
.hp-deep-text .rr-lead { margin: 0 0 22px; max-width: 440px; }
.hp-bullets { display: flex; flex-direction: column; gap: 12px; }
.hp-bullet { display: flex; align-items: flex-start; gap: 11px; }
.hp-bullet-check {
  flex: none; margin-top: 1px; width: 22px; height: 22px; border-radius: 999px;
  background: var(--rr-sprout-soft); display: flex; align-items: center; justify-content: center;
  color: var(--rr-green);
}
.hp-bullet-check svg { stroke-width: 3; }
.hp-bullet-text { font-size: 15px; color: var(--rr-fg-2); font-weight: 500; line-height: 1.45; }

/* ---------- Mock cards (ShellCard) ---------- */
.hp-shell {
  background: var(--rr-card); border: 1px solid var(--rr-border); border-radius: 22px;
  box-shadow: var(--rr-shadow-lg); padding: 22px; max-width: 440px; width: 100%;
}
.hp-shell--flush { padding: 0; overflow: hidden; }

/* Forward mock */
.hp-forward-head {
  display: flex; align-items: center; gap: 8px; padding: 13px 18px;
  background: var(--rr-surface-2); border-bottom: 1px solid var(--rr-border); color: var(--rr-green);
}
.hp-forward-head-label {
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.06em; color: var(--rr-fg-2);
}
.hp-forward-rows { padding: 4px 18px; }
.hp-forward-row { display: flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--rr-border); }
.hp-forward-row-label { font-family: var(--rr-font-mono); font-size: 12px; color: var(--rr-fg-3); width: 38px; }
.hp-forward-chip {
  display: inline-flex; align-items: center; gap: 7px; background: var(--rr-sprout-soft);
  color: var(--rr-green); border-radius: 999px; padding: 5px 12px;
  font-family: var(--rr-font-mono); font-size: 12.5px; font-weight: 700;
}
.hp-forward-chip-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--rr-sprout); }
.hp-forward-subj { font-size: 13.5px; color: var(--rr-fg-1); font-weight: 600; }
.hp-forward-body { padding: 16px 18px 18px; }
.hp-forward-item {
  display: flex; gap: 12px; align-items: center; background: var(--rr-mist);
  border: 1px solid var(--rr-border); border-radius: 14px; padding: 13px 14px;
}
.hp-forward-item-icon {
  width: 40px; height: 40px; border-radius: 11px; background: var(--rr-surface-2);
  display: flex; align-items: center; justify-content: center; color: var(--rr-green); flex: none;
}
.hp-forward-item-info { min-width: 0; }
.hp-forward-item-title { font-family: var(--rr-font-display); font-weight: 700; font-size: 14px; color: var(--rr-fg-1); }
.hp-forward-item-meta { font-family: var(--rr-font-mono); font-size: 11px; color: var(--rr-fg-3); margin-top: 2px; }
.hp-forward-item-clip { margin-left: auto; color: var(--rr-fg-3); }
.hp-mock-action {
  margin-top: 14px; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--rr-font-body); font-weight: 700; font-size: 14px; background: var(--rr-sprout);
  color: var(--rr-fg-on-lime); border: none; border-radius: 999px; padding: 12px; cursor: pointer;
}

/* Watch mock */
.hp-watch-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.hp-watch-title { display: inline-flex; align-items: center; gap: 9px; }
.hp-watch-title-icon { color: var(--rr-green); }
.hp-watch-title-text { font-family: var(--rr-font-display); font-weight: 800; font-size: 15.5px; letter-spacing: -0.02em; }
.hp-watch-live {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--rr-font-mono);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--rr-green);
}
.hp-watch-live-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--rr-sprout); }
.hp-watch-rows { display: flex; flex-direction: column; gap: 9px; }
.hp-watch-row {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 12px;
  background: var(--rr-mist); border: 1px solid var(--rr-border); border-radius: 14px; padding: 12px 14px 12px 16px;
}
.hp-watch-rail { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.hp-watch-rail--positive { background: var(--rr-positive); }
.hp-watch-rail--warning  { background: var(--rr-warning); }
.hp-watch-rail--neutral  { background: var(--rr-border-strong); }
.hp-watch-row-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--rr-surface-2);
  display: flex; align-items: center; justify-content: center; color: var(--rr-green); flex: none;
}
.hp-watch-row-main { min-width: 0; flex: 1; }
.hp-watch-row-name {
  font-family: var(--rr-font-display); font-weight: 700; font-size: 13.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hp-watch-row-meta { font-family: var(--rr-font-mono); font-size: 10.5px; color: var(--rr-fg-3); margin-top: 2px; }

/* Pills */
.hp-pill {
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.04em;
  padding: 6px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; flex: none;
}
.hp-pill-dot { width: 7px; height: 7px; border-radius: 999px; flex: none; }
.hp-pill--positive { background: var(--rr-positive-bg); color: var(--rr-positive); }
.hp-pill--positive .hp-pill-dot { background: var(--rr-positive); }
.hp-pill--warning { background: var(--rr-warning-bg); color: var(--rr-warning); }
.hp-pill--warning .hp-pill-dot { background: var(--rr-warning); }
.hp-pill--neutral { background: var(--rr-surface-2); color: var(--rr-fg-2); }
.hp-pill--lime { background: var(--rr-sprout); color: var(--rr-fg-on-lime); }

/* Claim mock */
.hp-claim-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hp-claim-head-icon {
  width: 44px; height: 44px; border-radius: 13px; background: var(--rr-surface-2);
  display: flex; align-items: center; justify-content: center; color: var(--rr-green); flex: none;
}
.hp-claim-head-title { font-family: var(--rr-font-display); font-weight: 700; font-size: 15px; }
.hp-claim-head-meta { font-family: var(--rr-font-mono); font-size: 11px; color: var(--rr-fg-3); margin-top: 2px; }
.hp-claim-head .hp-pill { margin-left: auto; }
.hp-claim-numbers {
  display: flex; align-items: center; gap: 18px; background: var(--rr-mist);
  border: 1px solid var(--rr-border); border-radius: 14px; padding: 15px 18px;
}
.hp-claim-num-label { font-family: var(--rr-font-mono); font-size: 9.5px; letter-spacing: 0.06em; color: var(--rr-fg-3); }
.hp-claim-num-val {
  font-family: var(--rr-font-display); font-weight: 800; font-size: 24px;
  font-variant-numeric: tabular-nums; margin-top: 2px;
}
.hp-claim-num-val--green { color: var(--rr-green); }
.hp-claim-arrow { color: var(--rr-fg-3); }
.hp-claim-num--right { margin-left: auto; text-align: right; }

/* ---------- Pricing ---------- */
.hp-pricing { padding: 100px 0; }
.hp-pricing-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 52px; }
.hp-pricing-head .rr-h2 { max-width: 560px; }
.hp-pricing-head .rr-lead { max-width: 520px; margin: 0; }
.hp-plans { display: flex; gap: 26px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.hp-plan {
  flex: 1 1 340px; max-width: 420px; position: relative; background: var(--rr-card);
  border: 1px solid var(--rr-border); border-radius: 26px; padding: 38px 34px;
  box-shadow: var(--rr-shadow-sm); overflow: hidden;
}
.hp-plan--featured { background: var(--rr-pine); border: none; box-shadow: var(--rr-shadow-lg); }
.hp-plan-inner { position: relative; }
.hp-plan-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.hp-plan-name { font-family: var(--rr-font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--rr-fg-1); }
.hp-plan--featured .hp-plan-name { color: var(--rr-fg-inverse); }
.hp-plan-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.hp-plan-price { font-family: var(--rr-font-display); font-weight: 800; font-size: 48px; letter-spacing: -0.03em; line-height: 1; color: var(--rr-fg-1); }
.hp-plan--featured .hp-plan-price { color: var(--rr-sprout); }
.hp-plan-cadence { font-family: var(--rr-font-mono); font-size: 12.5px; color: var(--rr-fg-3); }
.hp-plan--featured .hp-plan-cadence { color: rgba(244, 244, 241, 0.6); }
.hp-plan-price-note {
  font-family: var(--rr-font-mono); font-size: 12px; letter-spacing: 0.01em;
  color: var(--rr-fg-3); margin-bottom: 14px;
}
.hp-plan--featured .hp-plan-price-note { color: var(--rr-sprout); }
.hp-plan-tagline { margin: 0 0 24px; font-size: 15px; line-height: 1.5; color: var(--rr-fg-2); min-height: 46px; }
.hp-plan--featured .hp-plan-tagline { color: rgba(244, 244, 241, 0.78); }
.hp-plan-divider { height: 1px; background: var(--rr-border); margin: 26px 0 22px; }
.hp-plan--featured .hp-plan-divider { background: rgba(244, 244, 241, 0.14); }
.hp-plan-features { display: flex; flex-direction: column; gap: 13px; }
.hp-plan-feature { display: flex; align-items: flex-start; gap: 11px; }
.hp-plan-feature--off { opacity: 0.45; }
.hp-plan-feature-check {
  flex: none; margin-top: 1px; width: 21px; height: 21px; border-radius: 999px;
  background: var(--rr-sprout-soft); display: flex; align-items: center; justify-content: center; color: var(--rr-sprout);
}
.hp-plan-feature-check svg { stroke-width: 3.2; }
.hp-plan-feature--off .hp-plan-feature-check { background: var(--rr-surface-2); color: var(--rr-fg-3); }
.hp-plan--featured .hp-plan-feature-check { background: rgba(166, 203, 126, 0.18); }
.hp-plan--featured .hp-plan-feature--off .hp-plan-feature-check { background: rgba(244, 244, 241, 0.1); color: rgba(244, 244, 241, 0.6); }
.hp-plan-feature-text { font-size: 14.5px; font-weight: 500; line-height: 1.4; color: var(--rr-fg-1); }
.hp-plan--featured .hp-plan-feature-text { color: var(--rr-fg-inverse); }
.hp-plan-feature--off .hp-plan-feature-text { text-decoration: line-through; }
.hp-pricing-note { text-align: center; font-size: 13.5px; color: var(--rr-fg-3); margin: 28px 0 0; }

/* ---------- FAQ ---------- */
.hp-faq { background: var(--rr-card); padding: 88px 0; }
.hp-faq-inner { max-width: 860px; }
.hp-faq-head { text-align: center; margin-bottom: 44px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hp-faq-item { border-bottom: 1px solid var(--rr-border); }
.hp-faq-summary {
  list-style: none; cursor: pointer; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--rr-font-display); font-weight: 700; font-size: 19px; color: var(--rr-fg-1); letter-spacing: -0.01em;
}
.hp-faq-summary::-webkit-details-marker { display: none; }
.hp-faq-toggle {
  flex: none; width: 34px; height: 34px; border-radius: 999px; background: var(--rr-surface-2);
  color: var(--rr-fg-2); display: flex; align-items: center; justify-content: center;
  transition: all var(--rr-dur) var(--rr-ease);
}
.hp-faq-item[open] .hp-faq-toggle { background: var(--rr-sprout); color: var(--rr-fg-on-lime); }
.hp-faq-toggle .hp-ico-minus { display: none; }
.hp-faq-item[open] .hp-faq-toggle .hp-ico-plus { display: none; }
.hp-faq-item[open] .hp-faq-toggle .hp-ico-minus { display: inline-flex; }
.hp-faq-answer { margin: 0 4px 26px; max-width: 720px; font-size: 15.5px; }

/* ---------- Closing CTA ---------- */
.hp-closing { background: var(--rr-pine); padding: 72px 0; position: relative; overflow: hidden; }
.hp-closing-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hp-closing-eyebrow {
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.12em;
  color: rgba(166, 203, 126, 0.9); margin-bottom: 18px;
}
.hp-closing .rr-h2 { color: var(--rr-fg-inverse); max-width: 640px; font-size: 38px; }
.hp-closing-sub {
  font-family: var(--rr-font-body); font-size: 18.5px; line-height: 1.6;
  color: rgba(244, 244, 241, 0.78); max-width: 500px; margin: 14px 0 22px;
}
.hp-closing-form { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }

/* Email capture */
.hp-capture { display: flex; flex-direction: column; gap: 10px; max-width: 460px; width: 100%; }
.hp-capture-field {
  display: flex; align-items: center; gap: 8px; background: var(--rr-card);
  border: 1px solid var(--rr-border-strong); border-radius: 999px; padding: 6px 6px 6px 18px;
  box-shadow: var(--rr-shadow-sm); transition: box-shadow var(--rr-dur) var(--rr-ease);
}
.hp-capture-field:focus-within { box-shadow: var(--rr-shadow-focus); }
.hp-capture-field .rr-ico { color: var(--rr-fg-3); }
.hp-capture-field input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--rr-font-body); font-size: 15px; color: var(--rr-fg-1); min-width: 0;
}

/* ---------- Legal and contact pages ---------- */
.rr-legal-hero {
  padding: 64px 0 72px; text-align: center; position: relative; overflow: hidden;
}
.rr-legal-hero-inner {
  position: relative; display: flex; flex-direction: column; align-items: center;
}
.rr-legal-hero h1 {
  font-family: var(--rr-font-display); font-weight: 800; font-size: 48px; line-height: 1.08;
  letter-spacing: -0.03em; margin: 20px 0 0; max-width: 740px;
}
.rr-legal-hero .rr-lead { margin: 20px 0 0; max-width: 660px; }

.rr-legal-section { padding: 18px 0 96px; }
.rr-legal-section .hp-container { max-width: 920px; }
.rr-legal-list {
  background: var(--rr-card); border: 1px solid var(--rr-border); border-radius: 26px;
  box-shadow: var(--rr-shadow-sm); overflow: hidden;
}
.rr-legal-item { padding: 28px 34px; border-bottom: 1px solid var(--rr-border); }
.rr-legal-item:last-child { border-bottom: none; }
.rr-legal-item h2 {
  font-family: var(--rr-font-display); font-weight: 800; font-size: 20px; line-height: 1.18;
  letter-spacing: -0.015em; color: var(--rr-fg-1); margin: 0 0 10px;
}
.rr-legal-item p {
  margin: 0; color: var(--rr-fg-2); font-size: 15.5px; line-height: 1.65;
}
.rr-legal-item a, .rr-contact-note a {
  color: var(--rr-green); font-weight: 700; text-decoration: none;
}
.rr-legal-item a:hover, .rr-contact-note a:hover { color: var(--rr-green-hover); text-decoration: underline; }
.rr-legal-updated {
  margin: 22px 0 0; color: var(--rr-fg-3); font-family: var(--rr-font-mono);
  font-size: 12.5px; text-align: center;
}

.rr-contact-section { padding: 18px 0 96px; }
.rr-contact-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 30px; align-items: start; max-width: 960px;
}
.rr-contact-form {
  display: grid; gap: 18px; background: var(--rr-card); border: 1px solid var(--rr-border);
  border-radius: 26px; box-shadow: var(--rr-shadow-lg); padding: 32px;
}
.rr-contact-form label {
  display: block; margin: 0 0 8px; font-family: var(--rr-font-body); font-weight: 800;
  font-size: 13.5px; color: var(--rr-fg-1);
}
.rr-contact-form input, .rr-contact-form textarea {
  width: 100%; border: 1px solid var(--rr-border-strong); border-radius: 16px;
  background: var(--rr-mist); color: var(--rr-fg-1); font-family: var(--rr-font-body);
  font-size: 15px; line-height: 1.5; padding: 13px 15px; outline: none;
  transition: border-color var(--rr-dur) var(--rr-ease), box-shadow var(--rr-dur) var(--rr-ease), background var(--rr-dur) var(--rr-ease);
}
.rr-contact-form input { min-height: 50px; }
.rr-contact-form textarea { resize: vertical; min-height: 150px; }
.rr-contact-form input:focus, .rr-contact-form textarea:focus {
  background: var(--rr-card); border-color: var(--rr-sprout-hover); box-shadow: var(--rr-shadow-focus);
}
.rr-contact-form ::placeholder { color: var(--rr-fg-3); }
.rr-contact-note {
  background: var(--rr-sprout-soft); border: 1px solid rgba(166, 203, 126, 0.5);
  border-radius: 24px; padding: 28px; color: var(--rr-fg-2);
}
.rr-contact-note p { margin: 18px 0 0; font-size: 15.5px; line-height: 1.62; }

/* ---------- Footer ---------- */
.hp-footer { background: var(--rr-pine); padding: 72px 0 40px; position: relative; overflow: hidden; }
.hp-footer-inner { position: relative; }
.hp-footer-top {
  display: flex; gap: 56px; flex-wrap: wrap; justify-content: space-between;
  padding-bottom: 48px; border-bottom: 1px solid rgba(244, 244, 241, 0.14);
}
.hp-footer-brand { max-width: 320px; }
.hp-footer-tagline {
  font-family: var(--rr-font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
  color: var(--rr-fg-inverse); margin: 22px 0 18px; line-height: 1.2;
}
.hp-footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.hp-footer-col-head {
  font-family: var(--rr-font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(166, 203, 126, 0.9); margin-bottom: 16px;
}
.hp-footer-links { display: flex; flex-direction: column; gap: 12px; }
.hp-footer-links a { font-size: 14px; line-height: 1.35; color: rgba(244, 244, 241, 0.72); font-weight: 500; }
.hp-footer-links a:hover { color: var(--rr-fg-inverse); }
.hp-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; }
.hp-footer-bottom span { font-family: var(--rr-font-mono); font-size: 12px; color: rgba(244, 244, 241, 0.5); }

/* ============================================================
   Responsive — phones & small tablets
   ============================================================ */
@media (max-width: 760px) {
  .hp-header { padding: 22px; }
  .hp-nav, .hp-login { display: none; }
  .hp-wordmark-text { font-size: 18px; }

  .hp-hero { padding: 36px 0 52px; }
  .hp-hero h1 { font-size: 33px; line-height: 1.12; white-space: normal; text-wrap: balance; }
  .hp-hero .rr-lead { font-size: 16.5px; }
  .hp-hero-cta-row { flex-direction: column; width: 100%; }
  .hp-hero-cta-row .hp-btn { width: 100%; }

  .hp-stores { padding: 0 0 44px; }
  .hp-stores-inner { gap: 16px; }
  .hp-stores-list { gap: 12px 20px; }
  .hp-store { font-size: 18px; }

  .hp-watch { padding: 52px 0; }
  .hp-watch .rr-h2 { font-size: 28px; }
  .hp-watch-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .hp-watch-card { padding: 24px 22px; }

  .hp-how { padding: 60px 0; }
  .hp-how-head { margin-bottom: 48px; }
  .hp-how-rows { gap: 56px; }
  .hp-deep-row { gap: 30px; }
  .hp-deep-text { min-width: 0; }
  .hp-deep-text h3 { font-size: 25px; }
  .hp-deep-visual { width: 100%; }

  .hp-pricing { padding: 60px 0; }
  .hp-pricing-head { margin-bottom: 36px; }
  .hp-plans { gap: 18px; }
  .hp-plan { padding: 30px 26px; }
  .hp-plan-tagline { min-height: 0; }

  .hp-faq { padding: 56px 0; }
  .hp-faq-head { margin-bottom: 32px; }

  .hp-closing { padding: 44px 0; }
  .hp-closing .rr-h2 { font-size: 30px; }
  .hp-closing-sub { font-size: 16px; }

  .rr-legal-hero { padding: 36px 0 48px; }
  .rr-legal-hero h1 { font-size: 33px; line-height: 1.12; }
  .rr-legal-section, .rr-contact-section { padding: 8px 0 64px; }
  .rr-legal-list { border-radius: 20px; }
  .rr-legal-item { padding: 24px 22px; }
  .rr-contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .rr-contact-form { border-radius: 20px; padding: 24px 20px; }
  .rr-contact-note { border-radius: 20px; padding: 24px 20px; }

  .hp-footer { padding: 52px 0 36px; }
  .hp-footer-top { gap: 40px; padding-bottom: 36px; }
  .hp-footer-cols { gap: 32px 24px; width: 100%; }
}
