/* ===== Ravu Landing — styles.css ===== */

/* ---------- Tokens ---------- */
:root {
  --cobalt: #2D6BF0;
  --cobalt2: #5A8CFF;
  --cobalt-deep: #1E50CC;
  --ink: #141A2E;
  --amber: #F5A623;
  --cream: #F4EFE3;
  --paper: #FBF7EE;
  --muted: #5C6478;
  --muted-warm: #5a5648;
  --line-ink: rgba(20, 26, 46, 0.14);
  --green: #1F8A5B;
  --display: 'Schibsted Grotesk', system-ui, sans-serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
  --pad-x: clamp(18px, 4vw, 56px);
  --sec-y: clamp(56px, 8vw, 104px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
a { color: var(--cobalt); text-decoration: none; }
a:hover { color: var(--cobalt-deep); }
::selection { background: var(--amber); color: var(--ink); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
.u-hidden { display: none !important; }

/* ---------- Keyframes ---------- */
@keyframes rvMarq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes rvTickUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes rvTickDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@keyframes rvFloat { 0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-16px) rotate(var(--r, 0deg)); } }
@keyframes rvFloat2 { 0%, 100% { transform: translate(0, 0) rotate(var(--r, 0deg)); } 50% { transform: translate(9px, -14px) rotate(calc(var(--r, 0deg) + 8deg)); } }
@keyframes rvSpin { to { transform: rotate(360deg); } }
@keyframes rvShine { 0% { transform: translateX(-130%) skewX(-16deg); } 55%, 100% { transform: translateX(360%) skewX(-16deg); } }
@keyframes rvDrift { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-2.4%, -2%) rotate(-3deg); } }
@keyframes rvCardB { 0%, 100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(-15px) rotate(4deg); } }
@keyframes rvCardC { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-11px) rotate(-2deg); } }
@keyframes rvBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ---------- Shared interactions ---------- */
.lift { transition: transform .28s cubic-bezier(.2, .75, .3, 1), box-shadow .28s ease; }
.lift:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: 12px 12px 0 var(--ink); }
.lift-soft { transition: transform .3s cubic-bezier(.2, .75, .3, 1), box-shadow .3s ease; }
.lift-soft:hover { transform: translateY(-7px); box-shadow: 0 28px 52px -26px rgba(45, 107, 240, .5); }
[data-cta] { transition: transform .18s cubic-bezier(.2, 1.5, .4, 1), box-shadow .18s ease; }
[data-cta]:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 30px -12px rgba(20, 26, 46, .5); }
[data-float] { will-change: transform; }

/* ---------- Logo tile ---------- */
.rv-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: linear-gradient(150deg, var(--cobalt2), var(--cobalt));
  box-shadow: 0 4px 9px rgba(45, 107, 240, .4);
}
.rv-tile svg { width: 66%; height: 66%; }
.rv-tile--nav { width: 36px; height: 36px; border-radius: 10px; }
.rv-tile--foot { width: 32px; height: 32px; border-radius: 9px; box-shadow: none; }
.rv-tile--cta { width: 58px; height: 58px; border-radius: 16px; background: rgba(255, 255, 255, .15); box-shadow: none; }

/* ---------- Offer bar ---------- */
.rv-offerbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: var(--amber);
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.rv-offerbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 9px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px 16px;
  flex-wrap: wrap;
  font-family: var(--display);
}
.rv-offerbar__msg { font-weight: 700; font-size: 13px; letter-spacing: -.01em; white-space: nowrap; }
.rv-offerbar__timer { display: inline-flex; gap: 6px; }
.rv-offerbar__unit {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: rgba(20, 26, 46, .12);
  border-radius: 7px;
  padding: 3px 7px;
  font-weight: 800;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}
.rv-offerbar__unit small { font-weight: 600; font-size: 10px; opacity: .7; text-transform: uppercase; }
.rv-offerbar__cta {
  font-weight: 800;
  font-size: 13px;
  background: var(--ink);
  color: var(--cream);
  padding: 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.rv-offerbar__cta:hover { color: var(--cream); }
.rv-offerbar.is-urgent { background: #FF5A5F; color: #fff; animation: rvPulseBar 1s ease-in-out infinite; }
.rv-offerbar.is-urgent .rv-offerbar__unit { background: rgba(255, 255, 255, .22); }
.rv-offerbar.is-urgent .rv-offerbar__cta { background: #fff; color: #FF5A5F; }
@keyframes rvPulseBar { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.1); } }
@media (prefers-reduced-motion: reduce) { .rv-offerbar.is-urgent { animation: none; } }

/* ---------- Nav ---------- */
.rv-nav {
  position: sticky;
  top: var(--offerbar-h, 0px);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px var(--pad-x);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 2px solid var(--ink);
}
.rv-brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.rv-brand:hover { color: var(--ink); }
.rv-brand__word { font-family: var(--display); font-weight: 800; font-size: 23px; letter-spacing: -.035em; }
.rv-nav__links { display: flex; align-items: center; gap: 26px; }
.rv-nav__link { color: var(--ink); font-weight: 600; font-size: 15px; opacity: .7; transition: opacity .15s; }
.rv-nav__link:hover { color: var(--ink); opacity: 1; }
.rv-nav__cta {
  color: var(--cream);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 100px;
  background: var(--ink);
}
.rv-nav__cta:hover { color: var(--cream); }

/* ---------- Hero ---------- */
.rv-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, #3B78FF 0%, var(--cobalt) 46%, #1B47B0 100%);
}
.rv-hero__quote {
  position: absolute;
  bottom: -14%;
  right: -3%;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: clamp(340px, 46vw, 720px);
  line-height: .7;
  color: rgba(255, 255, 255, .07);
  pointer-events: none;
  user-select: none;
  animation: rvDrift 16s ease-in-out infinite;
}
.rv-hero__square {
  position: absolute;
  top: 13%;
  left: 4.5%;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .09);
  border: 2px solid rgba(255, 255, 255, .26);
  --r: 6deg;
  animation: rvFloat2 8.5s ease-in-out infinite;
}
.rv-hero__spark { position: absolute; top: 70%; left: 8%; width: 30px; height: 30px; animation: rvFloat 6.6s ease-in-out infinite .3s; }
.rv-hero__ring {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .3);
  animation: rvSpin 26s linear infinite;
}
.rv-hero__grid {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 80px) var(--pad-x) clamp(48px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.rv-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  padding: 7px 15px;
  border-radius: 100px;
}
.rv-badge__shine {
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .85), transparent);
  animation: rvShine 3.8s ease-in-out infinite;
  pointer-events: none;
}
.rv-badge__inner { position: relative; display: inline-flex; align-items: center; gap: 7px; }
.rv-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

.rv-hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 90px);
  line-height: .95;
  letter-spacing: -.045em;
  margin: 22px 0 0;
  text-wrap: balance;
}
.rv-cycle { display: inline-block; position: relative; color: var(--amber); min-width: 4ch; }
.rv-hero__sub {
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .85);
  max-width: 44ch;
  margin: 24px 0 0;
  text-wrap: pretty;
}
.rv-hero__form-wrap { margin-top: 30px; }
.rv-hero__note { margin-top: 13px; font-size: 14px; color: rgba(255, 255, 255, .75); }
.rv-hero__note s { color: rgba(255, 255, 255, .55); }
.rv-hero__note strong { color: #fff; }

.rv-hero__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 100px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 30px -12px rgba(20, 26, 46, .5);
}
.rv-hero__cta:hover { color: var(--ink); }

/* ---------- Phone demo ---------- */
.rv-hero__demo { display: flex; justify-content: center; }
.rv-phone-stage { position: relative; }
.rv-fcard {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, .4);
}
.rv-fcard--rating {
  top: -20px;
  left: -54px;
  border-radius: 100px;
  padding: 9px 15px;
  animation: rvCardC 6.2s ease-in-out infinite .5s;
}
.rv-fcard--rating strong { font-family: var(--display); font-weight: 800; font-size: 14px; }
.rv-fcard__unit { font-size: 12px; color: var(--muted); }
.rv-fcard--views {
  top: 40px;
  right: -40px;
  border-radius: 14px;
  padding: 11px 14px;
  gap: 9px;
  animation: rvCardB 6.8s ease-in-out infinite .3s;
}
.rv-fcard__num { display: block; font-family: var(--display); font-weight: 800; font-size: 15px; font-variant-numeric: tabular-nums; }
.rv-fcard__label { display: block; font-size: 10.5px; color: var(--muted); margin-top: -2px; }
.rv-stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; }
.rv-stars--lg { font-size: 16px; letter-spacing: 2px; }

.rv-tryhint {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.rv-phone {
  position: relative;
  z-index: 2;
  width: 306px;
  max-width: 76vw;
  margin-top: 36px;
  border-radius: 40px;
  background: var(--ink);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
}
.rv-phone__notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  background: var(--ink);
  border-radius: 100px;
  z-index: 5;
}
/* The hero sets color:#fff — the phone is a light surface, so reset it here. */
.rv-phone__screen { background: var(--paper); color: var(--ink); border-radius: 31px; overflow: hidden; height: 592px; }
.rv-app__bar { padding: 36px 18px 15px; background: #fff; border-bottom: 1px solid var(--line-ink); display: flex; align-items: center; gap: 11px; }
.rv-app__avatar {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--cobalt2), var(--cobalt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  flex: none;
}
.rv-app__name { font-family: var(--display); font-weight: 700; font-size: 15.5px; }
.rv-app__meta { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--muted); }
.rv-app__body { padding: 18px; }
.rv-app__q { font-family: var(--display); font-weight: 700; font-size: 17px; }
.rv-app__hint { font-size: 13px; color: var(--muted); margin-top: 3px; }
.rv-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.rv-chip {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 100px;
  border: 1.5px solid var(--line-ink);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.rv-chip:hover { border-color: var(--cobalt); color: var(--cobalt); }
.rv-chip.is-on { background: #EBF1FE; color: var(--cobalt); border-color: var(--cobalt); transform: translateY(-1px); }
.rv-review {
  margin-top: 16px;
  background: #fff;
  border: 1.5px solid var(--cobalt);
  border-radius: 16px;
  padding: 15px;
  min-height: 116px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
  box-shadow: 0 10px 26px -14px rgba(45, 107, 240, .4);
}
.rv-review.is-on { opacity: 1; transform: none; }
.rv-review__tag { font-size: 10.5px; font-weight: 800; letter-spacing: .12em; color: var(--cobalt); text-transform: uppercase; }
.rv-review__text { font-size: 13.5px; line-height: 1.55; color: var(--ink); margin: 9px 0 0; min-height: 54px; }
.rv-gen {
  margin-top: 12px;
  width: 100%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px;
  border-radius: 100px;
  border: none;
  color: #fff;
  background: linear-gradient(150deg, var(--cobalt2), var(--cobalt));
  cursor: pointer;
  transition: background .3s ease, transform .15s ease;
}
.rv-gen:hover { transform: translateY(-1px); }
.rv-gen.is-copy { background: var(--ink); }
.rv-gen.is-copied { background: var(--green); }

/* ---------- Hero marquee strip ---------- */
.rv-strip { position: relative; border-top: 1px solid rgba(255, 255, 255, .2); background: rgba(0, 0, 0, .06); }
.rv-strip__inner { max-width: 1240px; margin: 0 auto; padding: 16px var(--pad-x); display: flex; align-items: center; gap: 28px; }
.rv-strip__label {
  flex: none;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}
.rv-strip__track-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.rv-strip__track { display: flex; width: max-content; gap: 14px; animation: rvMarq 42s linear infinite; will-change: transform; }
.rv-mtag {
  white-space: nowrap;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
}

/* ---------- Section shells ---------- */
.rv-sec { position: relative; overflow: hidden; }
.rv-sec--cream { background: var(--cream); }
.rv-sec--paper { background: var(--paper); }
.rv-sec--ink { background: var(--ink); color: #fff; }
.rv-sec--ruled { border-bottom: 2px solid var(--ink); }
.rv-wrap { position: relative; max-width: 1240px; margin: 0 auto; padding: var(--sec-y) var(--pad-x); }
.rv-sec__quote {
  position: absolute;
  top: 6%;
  right: 4%;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 320px;
  line-height: 1;
  color: rgba(90, 140, 255, .06);
  pointer-events: none;
  animation: rvDrift 18s ease-in-out infinite;
}
.rv-head { max-width: 760px; }
.rv-head--narrow { max-width: 680px; }
.rv-eyebrow { font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.rv-eyebrow--cobalt { color: var(--cobalt); }
.rv-eyebrow--amber { color: var(--amber); }
.rv-h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 16px 0 0;
  text-wrap: balance;
}
.rv-h2--sm { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.02; margin-top: 14px; }
.rv-h2 em { font-style: normal; color: var(--cobalt); }
.rv-lede {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .62);
  margin: 18px 0 0;
  max-width: 52ch;
  text-wrap: pretty;
}
.rv-lede--dark { color: var(--muted-warm); }
.rv-lede--muted { color: var(--muted); font-size: clamp(16px, 1.8vw, 19px); max-width: 42ch; margin-top: 16px; }
.rv-footnote { margin-top: 16px; font-size: 13px; color: #8a8578; }
.rv-footnote--dark { margin-top: 18px; color: rgba(255, 255, 255, .4); }
.rv-amber { color: var(--amber); }
.rv-cobalt { color: var(--cobalt); }

.rv-grid { display: grid; gap: 20px; }
.rv-grid--3 { grid-template-columns: repeat(3, 1fr); margin-top: 46px; }
.rv-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.rv-grid--tight { margin-top: 20px; }

/* ---------- Stats ---------- */
.rv-statbig { margin-top: 50px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: stretch; }
.rv-stat-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}
.rv-stat-hero__glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 140, 255, .3), transparent 66%);
}
.rv-stat-hero__label {
  position: relative;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.rv-stat-hero__num {
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(96px, 16vw, 200px);
  line-height: .8;
  letter-spacing: -.06em;
}
.rv-stat-hero__copy {
  position: relative;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.4;
  color: rgba(255, 255, 255, .82);
  margin: 26px 0 0;
  max-width: 30ch;
  text-wrap: pretty;
}
.rv-stat-hero__copy strong { color: #fff; font-weight: 700; }
.rv-stat-col { display: flex; flex-direction: column; gap: 20px; }
.rv-stat {
  border-radius: 24px;
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rv-stat--amber { background: var(--amber); color: var(--ink); }
.rv-stat--white { background: #fff; color: var(--ink); border: 2px solid var(--ink); }
.rv-stat--cobalt { background: var(--cobalt); color: #fff; border: 2px solid var(--ink); border-radius: 22px; padding: 34px 30px; }
.rv-stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(44px, 6vw, 64px); line-height: .9; letter-spacing: -.04em; }
.rv-stat--cobalt .rv-stat__num { font-size: clamp(40px, 5vw, 54px); }
.rv-stat__copy { font-size: 15.5px; line-height: 1.45; margin: 12px 0 0; font-weight: 500; text-wrap: pretty; }
.rv-stat--white .rv-stat__copy { color: var(--muted); }
.rv-stat--white .rv-stat__copy strong { color: var(--ink); font-weight: 700; }
.rv-stat--cobalt .rv-stat__copy { margin-top: 14px; color: rgba(255, 255, 255, .9); }
.rv-stat--cobalt .rv-stat__copy strong { color: #fff; font-weight: 700; }
.rv-stat__copy strong { font-weight: 700; }

/* ---------- The gap ---------- */
.rv-gap { border: 1px solid rgba(255, 255, 255, .16); border-radius: 20px; padding: 34px 30px; }
.rv-gap__n { font-family: var(--display); font-weight: 800; font-size: 44px; color: var(--amber); letter-spacing: -.03em; line-height: 1; }
.rv-gap__h { font-family: var(--display); font-weight: 700; font-size: 23px; letter-spacing: -.02em; margin: 18px 0 0; }
.rv-gap__demo {
  margin: 14px 0 0;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
}
.rv-gap__demo--flow {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}
.rv-gap__demo--bare { background: none; border: none; padding: 0; display: flex; align-items: baseline; gap: 8px; }
.rv-gap__demo--bare strong { font-family: var(--display); font-weight: 800; font-size: 30px; color: #fff; }
.rv-gap__demo--bare span { font-size: 13px; color: rgba(255, 255, 255, .55); }
.rv-step { padding: 4px 9px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 100px; }
.rv-step--dead { border-color: rgba(255, 120, 90, .4); color: #FF9E85; }
.rv-caret {
  display: inline-block;
  width: 2px;
  height: 15px;
  background: var(--amber);
  margin-left: 2px;
  vertical-align: -2px;
  animation: rvBlink 1.1s step-end infinite;
}
.rv-gap__p { font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, .65); margin: 12px 0 0; text-wrap: pretty; }

/* ---------- How it works ---------- */
.rv-step-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.rv-step-card--hi { background: var(--cobalt); color: #fff; }
.rv-step-card__top { display: flex; align-items: center; justify-content: space-between; }
.rv-step-card__n { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--cobalt); }
.rv-step-card__h { font-family: var(--display); font-weight: 700; font-size: 19px; margin: 22px 0 0; letter-spacing: -.01em; }
.rv-step-card__p { font-size: 14.5px; line-height: 1.55; color: var(--muted-warm); margin: 8px 0 0; }
.rv-step-card--hi .rv-step-card__p { color: rgba(255, 255, 255, .9); }
.rv-callout {
  margin-top: 22px;
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.rv-callout strong { font-family: var(--display); color: var(--ink); font-weight: 800; font-size: 17px; }
.rv-callout span { font-size: 15.5px; line-height: 1.5; color: var(--ink); font-weight: 500; }

/* ---------- Live ticker ---------- */
.rv-ticker-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.rv-kpis { display: flex; gap: 26px; margin-top: 28px; flex-wrap: wrap; }
.rv-kpi__n { font-family: var(--display); font-weight: 800; font-size: 40px; letter-spacing: -.03em; line-height: 1; }
.rv-kpi__n span { font-size: 24px; }
.rv-kpi__l { font-size: 13px; color: var(--muted); margin-top: 4px; }
.rv-ticker {
  position: relative;
  height: 460px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.rv-ticker__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; height: 100%; }
.rv-ticker__col { overflow: hidden; }
.rv-ticker__lane { display: flex; flex-direction: column; gap: 14px; will-change: transform; }
.rv-ticker__lane[data-anim="up"] { animation: rvTickUp 34s linear infinite; }
.rv-ticker__lane[data-anim="down"] { animation: rvTickDown 34s linear infinite; }
.rv-rcard {
  background: #fff;
  border: 1px solid var(--line-ink);
  border-radius: 16px;
  padding: 16px 17px;
  box-shadow: 0 8px 22px -14px rgba(20, 26, 46, .3);
}
.rv-rcard__t { margin: 9px 0 12px; font-size: 13.5px; line-height: 1.5; color: var(--ink); }
.rv-rcard__foot { display: flex; align-items: center; gap: 8px; }
.rv-rcard__av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--cobalt2), var(--cobalt));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
}
.rv-rcard__n { font-weight: 700; font-size: 12.5px; }
.rv-rcard__src { font-size: 11px; color: var(--muted); margin-left: auto; }

/* ---------- Comparison ---------- */
.rv-cmp { margin-top: 44px; border: 2px solid var(--ink); border-radius: 22px; overflow: hidden; background: #fff; }
.rv-cmp__head { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 2px solid var(--ink); }
.rv-cmp__th {
  padding: 18px 24px;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.rv-cmp__th + .rv-cmp__th { border-left: 1px solid var(--line-ink); }
.rv-cmp__th--hi { color: #fff; background: var(--cobalt); border-left: none !important; }
.rv-cmp__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.rv-cmp__row + .rv-cmp__row { border-top: 1px solid var(--line-ink); }
.rv-cmp__cell { padding: 22px 24px; }
.rv-cmp__cell + .rv-cmp__cell { border-left: 1px solid var(--line-ink); }
.rv-cmp__cell--hi { background: color-mix(in srgb, var(--cobalt) 7%, transparent); box-shadow: inset 3px 0 0 var(--cobalt); }
.rv-cmp__lab {
  display: none;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}
.rv-cmp__lab--hi { color: var(--cobalt); }
.rv-cmp__p { margin: 0; font-size: 15px; line-height: 1.5; }
.rv-cmp__p--strong { color: var(--ink); font-weight: 600; }
.rv-cmp__p--dim { color: #7a766c; }
.rv-cmp__win { font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: -.01em; color: var(--green); }
.rv-cmp__winsub { font-size: 13px; color: #7a766c; margin-top: 3px; }

/* ---------- Testimonials ---------- */
.rv-quote {
  margin: 0;
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.rv-quote--hi { background: var(--cobalt); color: #fff; }
.rv-quote blockquote { font-size: 16.5px; line-height: 1.55; margin: 16px 0 22px; flex: 1; font-weight: 500; text-wrap: pretty; }
.rv-who { display: flex; align-items: center; gap: 11px; }
.rv-who__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--cobalt2), var(--cobalt));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  flex: none;
}
.rv-who__av--amber { background: var(--amber); color: var(--ink); }
.rv-who__n { display: block; font-weight: 700; font-size: 14.5px; }
.rv-who__r { display: block; font-size: 13px; color: var(--muted); }
.rv-quote--hi .rv-who__r { color: rgba(255, 255, 255, .8); }

/* ---------- Final CTA ---------- */
.rv-final {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(150deg, #3B78FF 0%, var(--cobalt) 48%, #1B47B0 100%);
}
.rv-final__star {
  position: absolute;
  top: -20%;
  left: -4%;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(200px, 30vw, 480px);
  line-height: .8;
  letter-spacing: -.06em;
  color: rgba(255, 255, 255, .08);
  pointer-events: none;
  animation: rvSpin 44s linear infinite;
}
.rv-final__inner { position: relative; max-width: 1000px; margin: 0 auto; padding: clamp(60px, 9vw, 128px) var(--pad-x); text-align: center; }
.rv-final__tile { display: flex; justify-content: center; margin-bottom: 22px; }
.rv-final__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 6.5vw, 84px);
  line-height: .95;
  letter-spacing: -.045em;
  margin: 0;
  text-wrap: balance;
}
.rv-final__h em { font-style: normal; color: var(--amber); }
.rv-final__p { font-size: clamp(17px, 2vw, 21px); line-height: 1.5; color: rgba(255, 255, 255, .85); margin: 22px auto 0; max-width: 48ch; text-wrap: pretty; }
.rv-final__action { margin-top: 36px; display: flex; flex-direction: column; align-items: center; }
.rv-final__note { font-size: 13.5px; color: rgba(255, 255, 255, .75); margin-top: 14px; }
.rv-final__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  padding: 17px 38px;
  border-radius: 100px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .35);
}
.rv-final__cta:hover { color: var(--ink); }

/* ---------- Countdown ---------- */
.rv-countdown {
  margin: 40px auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  padding: 26px 34px;
}
.rv-countdown__label { font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.rv-countdown__grid { display: flex; gap: 12px; }
.rv-countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  background: rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 12px 8px 10px;
}
.rv-countdown__cell span { font-family: var(--display); font-weight: 800; font-size: clamp(24px, 4vw, 34px); font-variant-numeric: tabular-nums; line-height: 1; color: #fff; }
.rv-countdown__cell small { margin-top: 5px; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.rv-countdown__price { font-size: 15px; color: rgba(255, 255, 255, .9); }
.rv-countdown__price s { color: rgba(255, 255, 255, .55); margin-right: 6px; }
.rv-countdown__price strong { color: var(--amber); font-size: 17px; }
.rv-countdown.is-urgent .rv-countdown__cell { background: rgba(255, 90, 95, .28); }
.rv-countdown.is-urgent .rv-countdown__label { color: #FF9FA2; }

/* ---------- Footer ---------- */
.rv-footer { background: var(--ink); color: rgba(255, 255, 255, .6); }
.rv-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.rv-footer__brand { display: flex; align-items: center; gap: 11px; }
.rv-footer__word { font-family: var(--display); font-weight: 800; font-size: 19px; color: #fff; }
.rv-footer__tag { font-size: 14px; margin-left: 6px; }
.rv-footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.rv-footer__links a { color: rgba(255, 255, 255, .72); }
.rv-footer__links a:hover { color: #fff; }
.rv-footer__legal { font-size: 13px; color: rgba(255, 255, 255, .4); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .rv-hero__grid { grid-template-columns: 1fr; }
  .rv-grid--3 { grid-template-columns: 1fr; }
  .rv-grid--4 { grid-template-columns: 1fr 1fr; }
  .rv-ticker-wrap { grid-template-columns: 1fr; }
  .rv-ticker__cols { grid-template-columns: 1fr; }
  .rv-ticker__col:nth-child(2) { display: none; }
  .rv-cmp__head { display: none; }
  .rv-cmp__row { grid-template-columns: 1fr; }
  .rv-cmp__cell + .rv-cmp__cell { border-left: none; border-top: 1px solid var(--line-ink); }
  .rv-cmp__lab { display: block; }
  [data-float][data-hide-sm] { display: none !important; }
}
@media (max-width: 720px) {
  .rv-nav__links { gap: 16px; }
  .rv-nav__link { display: none; }
  .rv-strip__inner { gap: 16px; }
}
@media (max-width: 620px) {
  .rv-grid--4 { grid-template-columns: 1fr; }
  .rv-statbig { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: .01ms !important; }
  [data-float], [data-shine] { display: none !important; }
}
