/* ============================================================
   REALIVO — Homepage v3  |  home.css
   Brand: midnight/bone/brass  |  Fonts: Playfair + Inter + JetBrains Mono
   Prefix: rv2-
   ============================================================ */

/* ---- 0. Design Tokens ---- */
:root {
  --midnight:    #0A0E1A;
  --midnight-2:  #14181F;
  --bone:        #F4EFE6;
  --bone-2:      #EAE3D5;
  --brass:       #C9A961;
  --brass-deep:  #A88947;
  --text-dark:   #E8E2D3;
  --text-light:  #1A1D24;
  --muted-dark:  #9A9385;
  --muted-light: #5A5E68;
  --rule:        rgba(201,169,97,0.18);
  --rule-light:  rgba(168,137,71,0.22);

  --ff-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --ff-mono:  'JetBrains Mono', 'Courier New', monospace;

  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:    700ms;
  --dur-h:  900ms;
  --dur-hv: 300ms;
}

/* ---- 0b. Page wrapper ---- */
.rv2-page {
  font-family: var(--ff-sans);
  background: var(--midnight);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.rv2-page * { box-sizing: border-box; }
.rv2-page a { color: inherit; text-decoration: none; }
.rv2-page img { display: block; max-width: 100%; }

/* ---- 0c. Layout utilities ---- */
.rv2-wrap { max-width: 1280px; margin: 0 auto; padding: 0 52px; }
.rv2-sec  { padding: 120px 0; }
.rv2-sec--sm { padding: 80px 0; }

/* ---- 0d. Type utilities ---- */
.rv2-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 20px;
}
.rv2-kicker::before {
  content: ''; width: 20px; height: 1px; background: currentColor; flex-shrink: 0;
}
.rv2-kicker--muted { color: var(--muted-dark); }
.rv2-kicker--light { color: var(--brass-deep); }
.rv2-kicker--light::before { background: var(--brass-deep); }

.rv2-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.rv2-h2--light { color: var(--text-dark); }
.rv2-h2--dark  { color: var(--text-light); }

.rv2-sh { margin-bottom: 72px; }
.rv2-sh__sub {
  font-family: var(--ff-sans); font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.72; color: var(--muted-dark); max-width: 58ch; margin-top: 12px;
}
.rv2-sh__sub--dark { color: var(--muted-light); }

/* ---- 0e. Buttons — FIXED for contrast ---- */
.rv2-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; font-family: var(--ff-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; line-height: 1; white-space: nowrap;
  transition: background var(--dur-hv), color var(--dur-hv), border-color var(--dur-hv);
  text-decoration: none; border: 1.5px solid transparent;
  width: auto; align-self: flex-start;
}
/* Brass-filled CTA */
.rv2-btn--brass       { background: var(--brass); color: var(--midnight); border-color: var(--brass); }
.rv2-btn--brass:hover { background: var(--brass-deep); border-color: var(--brass-deep); color: var(--midnight); }
/* Ghost on dark backgrounds (brass outline + brass text → 9:1 contrast on midnight) */
.rv2-btn--ghost       { background: transparent; color: var(--brass); border-color: var(--brass); }
.rv2-btn--ghost:hover { background: rgba(201,169,97,0.14); color: var(--text-dark); border-color: var(--brass); }
/* Ghost on light backgrounds — brass-deep text for clear visibility on bone (R5) */
.rv2-btn--ghost-light  { background: transparent; color: var(--brass-deep); border-color: var(--brass-deep); }
.rv2-btn--ghost-light:hover { background: var(--brass-deep); color: var(--bone); border-color: var(--brass-deep); }
/* Focus ring — accessibility */
.rv2-btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---- 0f. Scroll reveal — opacity only, no transform (R3) ---- */
.rv2-reveal {
  opacity: 0.01;
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.rv2-reveal.rv2-in { opacity: 1; }
/* Critical sections — never hidden */
.rv2-svcs .rv2-reveal,
.rv2-beyond .rv2-reveal,
.rv2-proc .rv2-reveal,
.rv2-tiers .rv2-reveal,
.rv2-markets .rv2-reveal {
  opacity: 1 !important;
  transition: none !important;
}
.rv2-d1 { transition-delay: 0.05s; }
.rv2-d2 { transition-delay: 0.08s; }
.rv2-d3 { transition-delay: 0.10s; }
.rv2-d4 { transition-delay: 0.10s; }
/* R2: Hero content always fully visible — never hidden by reveal */
.rv2-hero .rv2-reveal,
.rv2-hero__body .rv2-reveal {
  opacity: 1 !important;
  transition: none !important;
}

/* ---- 0g. Custom cursor (desktop only) ---- */
.rv2-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; border-radius: 50%; background: var(--brass);
  transform: translate(-50%, -50%);
  transition: width var(--dur-hv) var(--ease-spring), height var(--dur-hv) var(--ease-spring),
              background var(--dur-hv), border var(--dur-hv), opacity 0.4s;
  border: 1.5px solid transparent; opacity: 0;
}
.rv2-cursor.rv2-cursor--ready { opacity: 1; }
.rv2-cursor.rv2-cursor--ring  {
  width: 26px; height: 26px; background: transparent; border-color: var(--brass);
}
@media (hover: none), (pointer: coarse) { .rv2-cursor { display: none !important; } }

/* ---- 0h. Header scrolled polish ---- */
.rv-header.is-scrolled {
  background: rgba(10,14,26,0.86) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  border-bottom: 1px solid var(--rule) !important;
}

/* ---- 0i. Skip to content (accessibility) ---- */
.rv2-skip {
  position: absolute; top: -100px; left: 24px; z-index: 10000;
  background: var(--brass); color: var(--midnight);
  padding: 10px 20px; font-family: var(--ff-mono); font-size: 12px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: top 0.2s;
}
.rv2-skip:focus { top: 24px; }

/* ============================================================
   1. HERO
   ============================================================ */
.rv2-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--midnight);
}
.rv2-hero__media { position: absolute; inset: 0; z-index: 0; }
.rv2-hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.5) brightness(0.6);
}
.rv2-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,14,26,0.97) 0%, rgba(10,14,26,0.75) 46%, rgba(10,14,26,0.15) 100%),
    linear-gradient(to top, rgba(10,14,26,0.95) 0%, transparent 55%);
}
.rv2-hero__particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(201,169,97,0.11) 1px, transparent 1px);
  background-size: 68px 68px;
  animation: rv2-particles 120s linear infinite;
}
@keyframes rv2-particles { to { background-position: 68px 68px; } }
@media (prefers-reduced-motion: reduce) { .rv2-hero__particles { animation: none; } }

.rv2-hero__body {
  position: relative; z-index: 2;
  padding: 80px 0 0; max-width: 62%;
}
.rv2-hero__eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
}
.rv2-hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex-shrink: 0;
}
.rv2-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.025em;
  color: var(--text-dark); margin: 0 0 28px;
  word-break: normal; overflow-wrap: normal; hyphens: none; -webkit-hyphens: none;
}
.rv2-h1 em { font-style: normal; color: inherit; }
.rv2-nobreak { white-space: nowrap; }
.rv2-h1 .rv2-nobreak,
.rv2-h1 span {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-style: inherit !important;
  letter-spacing: inherit !important;
  color: inherit !important;
  white-space: nowrap;
  display: inline;
}
.rv2-hero__sub {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.72;
  color: rgba(232,226,211,0.68); max-width: 54ch; margin: 0 0 40px;
}
.rv2-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

/* KPI strip docked to hero bottom */
.rv2-hero__strip {
  position: relative; z-index: 2;
  background: rgba(8,11,20,0.78); backdrop-filter: blur(28px);
  border-top: 1px solid var(--rule);
}
.rv2-strip { display: flex; }
.rv2-strip__item {
  flex: 1; padding: 28px 32px; border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 7px;
}
.rv2-strip__item:last-child { border-right: none; }
.rv2-strip__n {
  font-family: var(--ff-serif); font-size: 44px; font-weight: 700;
  color: var(--brass); line-height: 1;
}
.rv2-strip__plus {
  font-family: var(--ff-mono); font-size: 0.4em; font-weight: 700;
  vertical-align: super; margin-left: 2px; color: var(--brass);
}
.rv2-strip__l {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-dark);
}

/* ============================================================
   2. CAPABILITIES BAND (NEW)
   ============================================================ */
.rv2-caps {
  background: var(--midnight-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.rv2-caps__kicker {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
  text-align: center; padding-top: 48px; display: block;
}
.rv2-caps__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule); margin-top: 28px;
}
.rv2-caps__col {
  padding: 44px 40px; border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
}
.rv2-caps__col:last-child { border-right: none; }
.rv2-caps__num {
  font-family: var(--ff-serif); font-size: clamp(44px, 4vw, 64px);
  font-weight: 700; color: var(--brass); line-height: 0.9;
  letter-spacing: -0.04em; display: block;
}
.rv2-caps__label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-dark);
  display: block; margin-bottom: 4px;
}
.rv2-caps__detail {
  font-size: 13px; line-height: 1.65; color: var(--muted-dark);
}

/* ============================================================
   3. TRUST STRIP (NEW — horizontal compliance band)
   ============================================================ */
.rv2-trust-strip {
  background: var(--midnight-2);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.rv2-trust-strip__inner {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; align-items: center;
}
.rv2-trust-strip__pill {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-dark); border: 1px solid var(--rule);
  border-radius: 2px; padding: 7px 14px; cursor: default;
  transition: border-color var(--dur-hv), color var(--dur-hv);
}
.rv2-trust-strip__pill:hover { border-color: var(--brass); color: var(--brass); }

/* ============================================================
   4. CITY TICKER
   ============================================================ */
.rv2-ticker {
  background: var(--midnight-2); overflow: hidden; white-space: nowrap;
  height: 40px; display: flex; align-items: center;
  border-bottom: 1px solid var(--rule);
}
.rv2-ticker__track {
  display: inline-flex; align-items: center;
  animation: rv2-ticker 60s linear infinite;
}
@keyframes rv2-ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .rv2-ticker__track { animation-play-state: paused; } }
.rv2-ticker__city {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-dark);
  padding: 0 22px;
}
.rv2-ticker__sep { color: var(--brass); opacity: 0.7; padding: 0 2px; }

/* ============================================================
   5. SERVICES (REBUILT — 60:40 dominant + 3-col grid)
   ============================================================ */
.rv2-svcs { background: var(--midnight); padding: 120px 0; }
.rv2-svcs__head { margin-bottom: 80px; }

/* 01 — Dominant block 60:40 */
.rv2-svc01 {
  display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start;
  padding-bottom: 88px; margin-bottom: 80px; border-bottom: 1px solid var(--rule);
}
.rv2-svc01__label {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.rv2-svc01__label::before {
  content: ''; width: 16px; height: 1px; background: var(--brass);
}
.rv2-svc01__num {
  font-family: var(--ff-serif); font-size: clamp(88px, 10vw, 144px);
  font-weight: 700; color: var(--brass); line-height: 0.82;
  letter-spacing: -0.04em; display: block; margin-bottom: 20px;
}
.rv2-svc01__title {
  font-family: var(--ff-serif); font-size: clamp(30px, 4vw, 56px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--text-dark); margin-bottom: 28px;
}
.rv2-svc01__body {
  font-size: 16px; line-height: 1.78; color: rgba(232,226,211,0.68);
  max-width: 58ch; margin-bottom: 36px;
}
.rv2-svc01__body p + p { margin-top: 14px; }
.rv2-svc01__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.rv2-svc01__media {
  position: relative; border-radius: 2px; overflow: hidden;
  border: 1px solid var(--rule); align-self: start; top: 60px;
}
.rv2-svc01__media img {
  width: 100%; height: 520px; object-fit: cover;
  filter: saturate(0.55) brightness(0.65);
  transition: filter 0.6s var(--ease-spring), transform 0.6s var(--ease-spring);
}
.rv2-svc01__media:hover img { filter: saturate(0.72) brightness(0.78); transform: scale(1.02); }
.rv2-svc01__media-tag {
  position: absolute; bottom: 22px; left: 22px;
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass); border: 1px solid var(--brass);
  padding: 5px 12px; border-radius: 1px; background: rgba(10,14,26,0.82);
}

/* 02-04 — Secondary grid */
.rv2-svcs__secondary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.rv2-svc {
  padding: 52px 44px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden; transition: background var(--dur-hv);
  display: flex; flex-direction: column;
}
.rv2-svc:hover { background: rgba(201,169,97,0.028); }
.rv2-svc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-hv) var(--ease-spring);
}
.rv2-svc:hover::before { transform: scaleX(1); }
.rv2-svc__adj {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark);
  margin-bottom: 16px; display: block;
}
.rv2-svc__num {
  font-family: var(--ff-serif); font-size: clamp(44px, 4vw, 56px);
  font-weight: 700; color: var(--brass); line-height: 0.82;
  letter-spacing: -0.04em; display: block; margin-bottom: 18px;
}
.rv2-svc__title {
  font-family: var(--ff-serif); font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--text-dark); margin-bottom: 14px;
}
.rv2-svc__body {
  font-size: 14px; line-height: 1.75; color: rgba(232,226,211,0.62);
  margin-bottom: 12px; flex: 1;
}
.rv2-svc__markets {
  font-family: var(--ff-mono); font-size: 10px; line-height: 1.7;
  color: var(--muted-dark); margin-bottom: 20px;
}
.rv2-svc__markets strong {
  display: block; color: rgba(232,226,211,0.5); margin-bottom: 4px;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 9px;
}
.rv2-svc__link {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--dur-hv); margin-top: auto;
}
.rv2-svc:hover .rv2-svc__link { gap: 10px; }

/* Footer note below services grid */
.rv2-svcs__footer {
  margin-top: 48px; font-family: var(--ff-mono); font-size: 11px;
  color: var(--muted-dark); letter-spacing: 0.04em; line-height: 1.7;
  border-top: 1px solid var(--rule); padding-top: 32px;
  text-align: center;
}

/* ============================================================
   6. BEYOND HOTELS (NEW — proof of non-hotel practices)
   ============================================================ */
.rv2-beyond { background: var(--bone); padding: 100px 0; }
.rv2-beyond__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--rule-light); margin-top: 64px; margin-bottom: 48px;
}
.rv2-case {
  padding: 44px 40px; border-right: 1px solid var(--rule-light);
  display: flex; flex-direction: column;
}
.rv2-case:last-child { border-right: none; }
.rv2-case__practice {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-deep);
  margin-bottom: 14px; display: block;
}
.rv2-case__title {
  font-family: var(--ff-serif); font-size: 18px; font-weight: 700;
  color: var(--text-light); margin-bottom: 14px; line-height: 1.25;
}
.rv2-case__detail {
  font-family: var(--ff-mono); font-size: 11px; line-height: 1.95;
  color: var(--muted-light); border-top: 1px solid rgba(168,137,71,0.2);
  padding-top: 14px; flex: 1;
}
.rv2-beyond__cta { text-align: center; }

/* ============================================================
   7. TRUST & PROOF (transaction cards)
   ============================================================ */
.rv2-trust { background: var(--bone); padding: 100px 0; }
.rv2-trust__label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-deep);
  display: block; margin-bottom: 18px;
}
.rv2-trust__pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-bottom: 56px; margin-bottom: 56px;
  border-bottom: 1px solid var(--rule-light);
}
.rv2-trust__pill {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light);
  border: 1px solid rgba(168,137,71,0.28); border-radius: 2px; padding: 8px 16px;
  background: transparent; cursor: default;
  transition: border-color var(--dur-hv), color var(--dur-hv);
}
.rv2-trust__pill:hover { border-color: var(--brass-deep); color: var(--brass-deep); }

.rv2-tx-label { margin-top: 0; margin-bottom: 18px; }
.rv2-tx-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--rule-light); margin-bottom: 56px;
}
.rv2-tx-card { padding: 40px 36px; border-right: 1px solid var(--rule-light); }
.rv2-tx-card:last-child { border-right: none; }
.rv2-tx-card__type {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-deep);
  display: block; margin-bottom: 12px;
}
.rv2-tx-card__name {
  font-family: var(--ff-serif); font-size: 17px; font-weight: 700;
  color: var(--text-light); margin-bottom: 10px; line-height: 1.2;
}
.rv2-tx-card__details {
  font-family: var(--ff-mono); font-size: 11px; line-height: 1.9;
  color: var(--muted-light); border-top: 1px solid rgba(168,137,71,0.18);
  padding-top: 14px; margin-top: 2px;
}
.rv2-trust__network {
  padding-top: 52px; border-top: 1px solid var(--rule-light);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.rv2-trust__network-text {
  font-size: 15px; line-height: 1.78; color: var(--muted-light); max-width: 60ch; flex: 1;
}

/* ============================================================
   8. PROCESS
   ============================================================ */
.rv2-proc { background: var(--midnight); padding: 120px 0; }
.rv2-proc__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border: 1px solid var(--rule); margin-top: 64px; position: relative;
}
.rv2-proc__line-wrap {
  position: absolute; top: -1px; left: -1px; right: -1px;
  height: 2px; overflow: hidden; z-index: 2;
}
.rv2-proc__line {
  width: 100%; height: 100%; background: var(--brass);
  transform-origin: left; transform: scaleX(0);
  transition: transform 1.4s var(--ease-spring);
}
.rv2-proc__line.rv2-in { transform: scaleX(1); }
.rv2-proc__step {
  padding: 44px 28px; border-right: 1px solid var(--rule);
  transition: background var(--dur-hv); position: relative;
}
.rv2-proc__step:last-child { border-right: none; }
.rv2-proc__step:hover { background: rgba(201,169,97,0.03); }
.rv2-proc__n {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--brass); display: block; margin-bottom: 18px;
}
.rv2-proc__h {
  font-family: var(--ff-sans); font-size: 13px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.3;
}
.rv2-proc__t { font-size: 13px; line-height: 1.65; color: var(--muted-dark); }
.rv2-proc__commitment {
  text-align: center; margin-top: 40px; font-family: var(--ff-mono);
  font-size: 12px; color: rgba(232,226,211,0.75); max-width: 600px;
  margin-left: auto; margin-right: auto; letter-spacing: 0.03em; line-height: 1.7;
}

/* ============================================================
   9. TRANSACTION RANGE — FIXED contrast
   ============================================================ */
.rv2-tiers { background: var(--bone-2); padding: 100px 0; }
.rv2-scale { margin-top: 56px; }
.rv2-scale__track { position: relative; padding: 16px 0 80px; }
.rv2-scale__line {
  position: absolute; top: 22px; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--brass) 0%, var(--brass-deep) 100%);
}
.rv2-scale__dots { display: flex; justify-content: space-between; position: relative; }
.rv2-scale__node { display: flex; flex-direction: column; align-items: center; position: relative; flex: 1; }
.rv2-scale__node:first-child { align-items: flex-start; }
.rv2-scale__node:last-child  { align-items: flex-end; }
.rv2-scale__dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--brass-deep);
  border: 2px solid var(--bone-2); position: relative; z-index: 1;
  transition: transform var(--dur-hv) var(--ease-spring), background var(--dur-hv);
  cursor: default; flex-shrink: 0;
}
.rv2-scale__node:hover .rv2-scale__dot { transform: scale(1.8); background: var(--midnight); }
.rv2-scale__tier { padding: 0 8px; text-align: center; }
.rv2-scale__node:first-child .rv2-scale__tier { text-align: left; padding: 0; }
.rv2-scale__node:last-child  .rv2-scale__tier { text-align: right; padding: 0; }
/* FIXED: full opacity, dark color for contrast on bone */
.rv2-scale__price {
  font-family: var(--ff-serif); font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700; color: var(--text-light); display: block; margin: 22px 0 6px;
  opacity: 1;
  transition: color var(--dur-hv);
}
.rv2-scale__node:hover .rv2-scale__price { color: var(--brass-deep); }
.rv2-scale__label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(26,29,36,0.70); /* --text-light at 70% — sufficient contrast on bone */
  display: block; line-height: 1.6;
}
.rv2-tiers__note {
  text-align: center; font-size: 15px; line-height: 1.75; color: var(--muted-light);
  max-width: 58ch; margin: 40px auto 0; font-style: italic;
}

/* ============================================================
   10. MARKETS
   ============================================================ */
.rv2-markets { background: var(--midnight); padding: 120px 0; }
.rv2-markets__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 56px; }
.rv2-mchip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dark); border: 1px solid var(--rule);
  padding: 13px 22px; border-radius: 2px;
  transition: border-color var(--dur-hv), color var(--dur-hv), background var(--dur-hv);
}
.rv2-mchip:hover { border-color: var(--brass); color: var(--brass); background: rgba(201,169,97,0.06); }
.rv2-mchip:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.rv2-markets__note {
  margin-top: 28px; font-family: var(--ff-mono); font-size: 11px;
  color: var(--muted-dark); letter-spacing: 0.04em; line-height: 1.8;
}
.rv2-markets__note a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }
.rv2-markets__extended {
  margin-top: 12px; font-size: 12px; color: var(--muted-dark); font-family: var(--ff-mono);
  letter-spacing: 0.04em; line-height: 1.7; max-width: 70ch;
}

/* ============================================================
   11. MANIFESTO
   ============================================================ */
.rv2-manifesto {
  background: var(--midnight-2); padding: 200px 0; position: relative; overflow: hidden;
}
.rv2-manifesto::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 100%, rgba(201,169,97,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.rv2-manifesto__inner { text-align: center; max-width: 940px; margin: 0 auto; position: relative; }
.rv2-manifesto__open-quote {
  font-family: var(--ff-serif); font-size: 96px; line-height: 0.6;
  color: var(--brass); opacity: 0.65; display: block;
  margin-bottom: 52px; user-select: none;
}
.rv2-manifesto__primary {
  font-family: var(--ff-serif); font-size: clamp(22px, 3.2vw, 52px);
  font-weight: 700; line-height: 1.2; color: var(--text-dark);
  letter-spacing: -0.015em; margin: 0 0 80px;
}
.rv2-manifesto__primary em { font-style: italic; color: var(--brass); }
.rv2-manifesto__secondary {
  font-family: var(--ff-serif); font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 400; line-height: 1.32; color: rgba(232,226,211,0.78); margin: 0 0 44px;
}
.rv2-manifesto__secondary em { font-style: italic; color: var(--brass); font-weight: 600; font-size: inherit; }
.rv2-manifesto__cite {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark);
}

/* ============================================================
   12. TEAM TEASER (NEW)
   ============================================================ */
.rv2-team { background: var(--midnight-2); padding: 100px 0; }
.rv2-team__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--rule); margin-top: 64px; margin-bottom: 48px;
}
.rv2-portrait {
  padding: 44px 36px; border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: background var(--dur-hv);
}
.rv2-portrait:last-child { border-right: none; }
.rv2-portrait:hover { background: rgba(201,169,97,0.025); }
.rv2-portrait__avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--rule); margin-bottom: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 22px; color: var(--brass); font-weight: 700;
  border: 1px solid var(--rule); position: relative; overflow: hidden;
}
.rv2-portrait__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; border-radius: 50%;
}
.rv2-portrait__initial { position: relative; z-index: 1; }
.rv2-portrait__name {
  font-family: var(--ff-serif); font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px; line-height: 1.2;
}
.rv2-portrait__role {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 12px; display: block;
}
.rv2-portrait__cred {
  font-size: 13px; line-height: 1.65; color: var(--muted-dark); flex: 1;
}
.rv2-portrait__linkedin {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark);
  text-decoration: none; transition: color var(--dur-hv);
}
.rv2-portrait__linkedin:hover { color: var(--brass); }

/* Hiring placeholder card */
.rv2-portrait--hire {
  background: rgba(201,169,97,0.03);
  justify-content: center; align-items: center; text-align: center; min-height: 220px;
}
.rv2-portrait--hire .rv2-portrait__avatar {
  background: transparent; border: 1px dashed rgba(201,169,97,0.3);
  font-size: 28px; color: rgba(201,169,97,0.4);
}
.rv2-portrait--hire .rv2-portrait__name { color: var(--brass); }
.rv2-portrait--hire .rv2-portrait__cred { color: var(--muted-dark); font-size: 12px; max-width: 24ch; }

/* ============================================================
   13. NETWORK / PARTNERS (NEW)
   ============================================================ */
.rv2-network {
  background: var(--midnight);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 64px 0;
}
.rv2-network__head {
  text-align: center; margin-bottom: 44px;
}
.rv2-network__sub {
  font-size: 14px; line-height: 1.7; color: var(--muted-dark);
  max-width: 52ch; margin: 8px auto 0; text-align: center;
}
.rv2-network__logos {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--rule);
}
.rv2-network__logo {
  flex: 1; min-width: 140px; padding: 28px 32px;
  border-right: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-hv);
}
.rv2-network__logo:last-child { border-right: none; }
.rv2-network__logo:hover { background: rgba(201,169,97,0.04); }
.rv2-network__logo-text {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(154,147,133,0.4); text-align: center; line-height: 1.5;
  transition: color var(--dur-hv);
}
.rv2-network__logo:hover .rv2-network__logo-text { color: var(--muted-dark); }
.rv2-network__logo-img {
  max-width: 120px; max-height: 46px; object-fit: contain;
  filter: grayscale(1) invert(1) opacity(0.5);
  transition: filter var(--dur-hv);
}
.rv2-network__logo:hover .rv2-network__logo-img {
  filter: grayscale(0) invert(0) opacity(0.95);
}

/* ============================================================
   14. INSIGHTS
   ============================================================ */
.rv2-insights { background: var(--bone); padding: 100px 0; }
.rv2-insights__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--rule-light); margin-top: 64px; margin-bottom: 52px;
}
.rv2-post {
  padding: 44px 40px; border-right: 1px solid var(--rule-light);
  display: flex; flex-direction: column;
  transition: background var(--dur-hv); color: inherit;
}
.rv2-post:last-child { border-right: none; }
.rv2-post:hover { background: rgba(201,169,97,0.04); }
.rv2-post__meta {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-deep);
  margin-bottom: 14px; display: block;
}
.rv2-post__title {
  font-family: var(--ff-serif); font-size: 20px; font-weight: 700;
  line-height: 1.25; color: var(--text-light); margin-bottom: 12px;
}
.rv2-post__excerpt { font-size: 14px; line-height: 1.72; color: var(--muted-light); flex: 1; margin-bottom: 20px; }
.rv2-post__link {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass-deep);
  align-self: flex-start;
}
.rv2-insights__cta { text-align: center; }

/* ============================================================
   15. FAQ
   ============================================================ */
.rv2-faq { background: var(--midnight); padding: 100px 0; }
.rv2-faq__list { margin-top: 64px; }
.rv2-faq__item { border-bottom: 1px solid var(--rule); }
.rv2-faq__item:first-child { border-top: 1px solid var(--rule); }
.rv2-faq__q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 26px 0; cursor: pointer; width: 100%;
  font-family: var(--ff-serif); font-size: clamp(16px, 1.6vw, 20px); font-weight: 700;
  color: var(--text-dark); line-height: 1.3; text-align: left;
  background: none; border: none; transition: color var(--dur-hv); user-select: none;
}
.rv2-faq__q:hover { color: var(--brass); }
.rv2-faq__q:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; border-radius: 2px; }
.rv2-faq__q-icon {
  font-size: 22px; color: var(--brass); flex-shrink: 0; line-height: 1.3;
  transition: transform var(--dur-hv) var(--ease-spring); font-family: var(--ff-sans);
}
.rv2-faq__item.rv2-open .rv2-faq__q-icon { transform: rotate(45deg); }
.rv2-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease-spring); }
.rv2-faq__item.rv2-open .rv2-faq__a { max-height: 400px; }
.rv2-faq__a-inner {
  padding: 0 0 28px; max-width: 68ch;
  font-size: 15px; line-height: 1.75; color: var(--muted-dark);
}

/* ============================================================
   16. CONTACT — FIXED buttons + enhanced form
   ============================================================ */
.rv2-contact { background: var(--midnight-2); padding: 100px 0; }
.rv2-contact__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); margin-bottom: 52px;
}
.rv2-col {
  background: var(--midnight-2); padding: 52px 44px;
  display: flex; flex-direction: column;
}
.rv2-col--primary { position: relative; overflow: hidden; }
.rv2-col--primary::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--brass);
}
.rv2-col__tag {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 16px; display: block;
}
.rv2-col__h {
  font-family: var(--ff-serif); font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700; color: var(--text-dark); margin-bottom: 14px; line-height: 1.2;
}
.rv2-col__t {
  font-size: 14px; line-height: 1.72; color: rgba(232,226,211,0.6);
  margin-bottom: 30px; flex: 1; max-width: 34ch;
}
/* BUG 4 FIX: buttons in cards — auto width, not full-width */
.rv2-col .rv2-btn {
  width: auto !important;
  align-self: flex-start !important;
}

.rv2-contact__promise {
  text-align: center; padding: 28px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
  font-family: var(--ff-mono); font-size: 12px; color: var(--muted-dark);
  letter-spacing: 0.04em;
}

/* Enhanced contact form */
.rv2-cform__head {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 32px; display: block;
}
/* Role selector */
.rv2-cform__role-group {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.rv2-cform__role-label {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-dark);
  margin-bottom: 10px; display: block;
}
.rv2-cform__role-btn {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px; border: 1px solid var(--rule); border-radius: 2px;
  background: transparent; color: var(--muted-dark); cursor: pointer;
  transition: border-color var(--dur-hv), color var(--dur-hv), background var(--dur-hv);
}
.rv2-cform__role-btn:hover,
.rv2-cform__role-btn.rv2-active {
  border-color: var(--brass); color: var(--brass); background: rgba(201,169,97,0.07);
}
.rv2-cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.rv2-cform__field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.rv2-cform__label {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-dark);
}
.rv2-cform__input {
  background: rgba(232,226,211,0.05); border: 1px solid var(--rule);
  border-radius: 2px; padding: 14px 16px; color: var(--text-dark);
  font-size: 15px; font-family: var(--ff-sans); outline: none; width: 100%;
  transition: border-color var(--dur-hv); -webkit-appearance: none;
}
.rv2-cform__input:focus { border-color: var(--brass); }
.rv2-cform__input::placeholder { color: rgba(154,147,133,0.35); }
/* Textarea */
.rv2-cform__textarea {
  background: rgba(232,226,211,0.05); border: 1px solid var(--rule);
  border-radius: 2px; padding: 14px 16px; color: var(--text-dark);
  font-size: 15px; font-family: var(--ff-sans); outline: none; width: 100%;
  transition: border-color var(--dur-hv); resize: vertical;
  min-height: 120px; line-height: 1.65;
}
.rv2-cform__textarea:focus { border-color: var(--brass); }
.rv2-cform__textarea::placeholder { color: rgba(154,147,133,0.35); }
/* Privacy checkbox */
.rv2-cform__check-wrap {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 24px; cursor: pointer;
}
.rv2-cform__check {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  appearance: none; -webkit-appearance: none;
  border: 1px solid var(--rule); border-radius: 2px; background: transparent;
  cursor: pointer; position: relative; transition: border-color var(--dur-hv);
}
.rv2-cform__check:checked { background: var(--brass); border-color: var(--brass); }
.rv2-cform__check:checked::after {
  content: '✓'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); font-size: 11px; color: var(--midnight); font-weight: 700;
}
.rv2-cform__check:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.rv2-cform__check-label {
  font-size: 13px; line-height: 1.5; color: var(--muted-dark);
}
.rv2-cform__check-label a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }
/* BUG 4 FIX: Submit button — max-width 320px, NOT full-width */
.rv2-cform__submit {
  max-width: 320px; width: auto; padding: 16px 40px; margin-top: 6px;
  display: block; margin-left: auto; margin-right: auto;
}

/* [4] Center contact form */
#sporim { max-width: 920px; margin: 0 auto; }
.rv2-cform__head { text-align: center; }
.rv2-cform__role-group { justify-content: center; }

/* [3] Center team block */
.hs-page .hs-sh { text-align: center; }
.hs-page .hs-team-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.hs-page .hs-tm__divider { display: none; }

/* [5] Ghost-light buttons — explicit hex to override any cascade issue */
.rv2-btn--ghost-light {
  background: transparent !important;
  color: #A88947 !important;
  border: 1.5px solid #A88947 !important;
}
.rv2-btn--ghost-light:hover {
  background: #A88947 !important;
  color: #F4EFE6 !important;
  border-color: #A88947 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .rv2-wrap { padding: 0 36px; }
  .rv2-svc01 { gap: 52px; }
  .rv2-proc__grid { grid-template-columns: repeat(3, 1fr); }
  .rv2-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .rv2-svc01 { grid-template-columns: 1fr; gap: 52px; }
  .rv2-svc01__media { top: 0; order: -1; }
  .rv2-svc01__media img { height: 400px; }
  .rv2-caps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .rv2-wrap { padding: 0 28px; }
  .rv2-sec { padding: 88px 0; }
  .rv2-svcs__secondary { grid-template-columns: repeat(2, 1fr); }
  .rv2-tx-grid { grid-template-columns: 1fr; }
  .rv2-contact__cols { grid-template-columns: 1fr; }
  .rv2-insights__grid { grid-template-columns: 1fr; }
  .rv2-manifesto { padding: 120px 0; }
  .rv2-proc__grid { grid-template-columns: repeat(2, 1fr); }
  .rv2-trust__network { flex-direction: column; gap: 32px; }
  .rv2-beyond__grid { grid-template-columns: 1fr; }
  .rv2-network__logos { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .rv2-wrap { padding: 0 20px; }
  .rv2-sec { padding: 72px 0; }
  .rv2-hero__body { max-width: 100%; }
  .rv2-h1 { letter-spacing: -0.02em; }
  .rv2-svc01__num { font-size: 80px; }
  .rv2-svc01__title { font-size: 32px; }
  .rv2-svc01__media img { height: 260px; }
  .rv2-svcs__secondary { grid-template-columns: 1fr; }
  .rv2-strip { flex-wrap: wrap; }
  .rv2-strip__item { min-width: 50%; border-bottom: 1px solid var(--rule); }
  .rv2-hero__ctas { flex-direction: column; }
  .rv2-hero__ctas .rv2-btn { width: 100% !important; max-width: 340px; justify-content: center; }
  .rv2-manifesto { padding: 80px 0; }
  .rv2-manifesto__open-quote { font-size: 64px; }
  .rv2-proc__grid { grid-template-columns: 1fr; border-left: 2px dotted rgba(201,169,97,0.4); border-top: none; }
  .rv2-proc__step { border-right: none; padding-left: 32px; }
  .rv2-cform__row { grid-template-columns: 1fr; }
  .rv2-scale__dot { width: 10px; height: 10px; }
  .rv2-scale__price { font-size: 14px; margin-top: 14px; }
  .rv2-scale__label { font-size: 8px; }
  .rv2-caps__grid { grid-template-columns: repeat(2, 1fr); }
  .rv2-team__grid { grid-template-columns: 1fr 1fr; }
  .rv2-cform__submit { width: 100% !important; max-width: 100% !important; }
}
@media (max-width: 480px) {
  .rv2-svc__num { font-size: 40px; }
  .rv2-trust__pills { gap: 8px; }
  .rv2-trust__pill { font-size: 9px; padding: 6px 12px; }
  .rv2-markets__chips { gap: 8px; }
  .rv2-mchip { font-size: 10px; padding: 10px 14px; }
  .rv2-strip__n { font-size: 36px; }
  .rv2-strip__item { padding: 22px 20px; }
  .rv2-svc01 { padding-bottom: 60px; margin-bottom: 60px; }
  .rv2-caps__grid { grid-template-columns: 1fr; }
  .rv2-team__grid { grid-template-columns: 1fr; }
  .rv2-cform__role-group { gap: 6px; }
}

/* ============================================================
   v10 DESIGN OVERRIDES — 2026-05-27
   All rules below supersede earlier declarations in this file.
   ============================================================ */

/* 1. Hide custom cursor on all devices */
.rv2-cursor { display: none !important; }

/* 2. Hero viewport: 100dvh prevents iOS Safari address-bar jump */
.rv2-hero { min-height: 100dvh; }

/* 3. Upgrade rv2-reveal: opacity + translateY (was opacity-only) */
.rv2-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
.rv2-reveal.rv2-in {
  opacity: 1;
  transform: translateY(0);
}

/* 4. Re-enable scroll reveals for sections (were forced opacity:1!important) */
.rv2-svcs .rv2-reveal,
.rv2-beyond .rv2-reveal,
.rv2-proc .rv2-reveal,
.rv2-tiers .rv2-reveal,
.rv2-markets .rv2-reveal {
  opacity: 0 !important;
  transform: translateY(16px) !important;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 650ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.rv2-svcs .rv2-reveal.rv2-in,
.rv2-beyond .rv2-reveal.rv2-in,
.rv2-proc .rv2-reveal.rv2-in,
.rv2-tiers .rv2-reveal.rv2-in,
.rv2-markets .rv2-reveal.rv2-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 5. Hero entrance — IntersectionObserver fires immediately for in-viewport elements */
.rv2-hero .rv2-reveal,
.rv2-hero__body .rv2-reveal {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 900ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.rv2-hero .rv2-reveal.rv2-in,
.rv2-hero__body .rv2-reveal.rv2-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 6. Staggered reveal delays (upgraded spacing) */
.rv2-d1 { transition-delay: 0.08s !important; }
.rv2-d2 { transition-delay: 0.16s !important; }
.rv2-d3 { transition-delay: 0.24s !important; }
.rv2-d4 { transition-delay: 0.32s !important; }

/* 7. Asymmetric services secondary grid — breaks 3-equal-col pattern */
@media (min-width: 769px) {
  .rv2-svcs__secondary {
    grid-template-columns: 1.35fr 1fr 1fr;
  }
  .rv2-svcs__secondary .rv2-svc:nth-child(2) { padding-top: 76px; }
  .rv2-svcs__secondary .rv2-svc:nth-child(3) { padding-top: 136px; }
}

/* 8. Button tactile micro-feedback */
.rv2-btn:active {
  transform: scale(0.97) !important;
  transition-duration: 80ms !important;
}

/* 9. Mobile: normalize staircase padding on small screens */
@media (max-width: 767px) {
  .rv2-svcs__secondary .rv2-svc:nth-child(n) {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* ============================================================
   BUGFIX PATCH — 2026-05-27
   Fixes: h1 mobile overflow, superscript alignment, days label
   ============================================================ */

/* BF-1: H1 font too large for mobile — clips against overflow:hidden on hero.
   clamp(48px, 6vw, 88px) → 48px on any screen < 800px.
   "Pan-European" at 48px Playfair (~360px wide) overflows 335px container. */
@media (max-width: 540px) {
  .rv2-h1 {
    font-size: clamp(34px, 8.5vw, 44px) !important;
  }
}

/* BF-2: Strip superscripts — vertical-align:super floats too high, looks broken.
   Switch to top-aligned inline-block with small top nudge. */
.rv2-strip__plus {
  vertical-align: top !important;
  display: inline-block !important;
  font-size: 0.46em !important;
  line-height: 1 !important;
  margin-top: 5px !important;
  margin-left: 1px !important;
}

/* BF-3: Caps section "25+" inline style has vertical-align:super — override */
.rv2-caps__num sup {
  vertical-align: top !important;
  display: inline-block !important;
  font-size: 0.4em !important;
  line-height: 1 !important;
  margin-top: 6px !important;
}

/* BF-4: Mobile hero body — ensure text container doesn't exceed safe area */
@media (max-width: 480px) {
  .rv2-hero__body {
    padding-right: 4px !important;
  }
  .rv2-hero__sub {
    font-size: 14px !important;
    max-width: 100% !important;
  }
  .rv2-hero__eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
  }
}

/* Strip unit label (replaces broken <sup> for text like "days/дней/Tage") */
.rv2-strip__unit {
  font-family: var(--ff-mono);
  font-size: 0.35em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  vertical-align: middle;
  margin-left: 4px;
  display: inline;
}

/* BUGFIX: Strip plus signs — replace display:inline-block approach
   (was creating separate line above number) with position:relative */
.rv2-strip__plus {
  font-size: 0.44em !important;
  line-height: 1 !important;
  vertical-align: baseline !important;
  display: inline !important;
  position: relative !important;
  top: -0.5em !important;
  margin-left: 1px !important;
  margin-top: 0 !important;
}
