/**
 * Renia — Elite design layer
 * Loaded AFTER renia-marketing.css. Pure monochrome, OpenAI / SpaceX grade restraint:
 * hairlines, ambient shadows, generous whitespace, precise type, quiet motion.
 */

:root {
  --e-ink: #0a0a0a;
  --e-body: #3f3f3f;
  --e-muted: #6e6e6e;
  --e-faint: #9b9b9b;
  --e-line: #eaeaea;
  --e-line-2: #dbdbdb;
  --e-soft: #fafafa;
  --e-r: 18px;
  --e-r-lg: 24px;
  --e-shadow-1: 0 1px 2px rgba(10, 10, 10, 0.04), 0 8px 28px rgba(10, 10, 10, 0.05);
  --e-shadow-2: 0 1px 2px rgba(10, 10, 10, 0.05), 0 20px 50px rgba(10, 10, 10, 0.09);
  --e-ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --e-font-mono: "Geist Mono", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

/* ————————————————— Global baseline (font, color, antialiasing) ————————————————— */
body.renia-mkt {
  font-family: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--e-body);
  background: #fff;
}
body.renia-mkt h1,
body.renia-mkt h2,
body.renia-mkt h3,
body.renia-mkt h4,
body.renia-mkt h5,
body.renia-mkt h6 {
  font-family: "Outfit", sans-serif;
  color: var(--e-ink);
  letter-spacing: -0.025em;
}
body.renia-mkt .font-sans { font-family: "Geist", "Inter", sans-serif; }
body.renia-mkt .font-display { font-family: "Outfit", sans-serif; }

/* ————————————————— Abstract art placement (CSS background-image, behind content) ————————————————— */
body.renia-mkt .hero-section {
  position: relative !important;
  overflow: hidden !important;
  background-image: url('https://reniadental.com/assets/art-orb.svg'), url('../assets/art-orb.svg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #ffffff !important;
}
body.renia-mkt .hero-section > .renia-hero__inner { position: relative; z-index: 1; }

body.renia-mkt .renia-section--art {
  position: relative !important;
  overflow: hidden !important;
  background-image: url('https://reniadental.com/assets/art-lattice.svg'), url('../assets/art-lattice.svg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
body.renia-mkt .renia-section--art > .renia-wrap { position: relative; z-index: 1; }

body.renia-mkt .renia-section--art-dark {
  position: relative !important;
  overflow: hidden !important;
  background-image: url('https://reniadental.com/assets/art-waves.svg'), url('../assets/art-waves.svg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
body.renia-mkt .renia-section--art-dark > * { position: relative; z-index: 1; }

body.renia-mkt .renia-logo__img,
.renia-logo__img {
  display: block !important;
  height: 22px !important;
  max-height: 24px !important;
  width: auto !important;
  max-width: 100px !important;
  object-fit: contain !important;
}

@media (max-width: 1024px) {
  body.renia-mkt .renia-logo__img,
  .renia-logo__img {
    height: 20px !important;
    max-height: 22px !important;
    max-width: 90px !important;
  }
}

@media (max-width: 640px) {
  body.renia-mkt .hero-section { background-size: cover !important; }
  body.renia-mkt .renia-section--art { background-size: cover !important; }
  body.renia-mkt .renia-logo__img,
  .renia-logo__img {
    height: 18px !important;
    max-height: 18px !important;
    max-width: 80px !important;
  }
}

/* ————————————————— Buttons ————————————————— */
body.renia-mkt .renia-btn {
  transition: transform 0.18s var(--e-ease), box-shadow 0.18s var(--e-ease),
    background-color 0.18s var(--e-ease), border-color 0.18s var(--e-ease), color 0.18s var(--e-ease);
  will-change: transform;
}
body.renia-mkt .renia-btn--primary {
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.16);
}
body.renia-mkt .renia-btn--primary:hover {
  background: #1d1d1d;
  border-color: #1d1d1d;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(10, 10, 10, 0.22);
}
body.renia-mkt .renia-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 10, 10, 0.18);
}
body.renia-mkt .renia-btn--secondary,
body.renia-mkt .renia-btn--ghost {
  border-color: var(--e-line-2);
}
body.renia-mkt .renia-btn--secondary:hover,
body.renia-mkt .renia-btn--ghost:hover {
  background: var(--e-soft);
  border-color: var(--e-ink);
  transform: translateY(-1px);
  box-shadow: var(--e-shadow-1);
}
body.renia-mkt .renia-btn--xl {
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
  border-radius: 999px;
}
body.renia-mkt .renia-btn--xl .material-symbols-outlined { font-size: 18px; }

/* Quiet links */
body.renia-mkt .renia-link-quiet { transition: color 0.15s var(--e-ease); }
body.renia-mkt .renia-link-quiet:hover { color: var(--e-ink); }

/* Focus */
body.renia-mkt a:focus-visible,
body.renia-mkt button:focus-visible {
  outline: 2px solid var(--e-ink);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ————————————————— Topbar + nav ————————————————— */
body.renia-mkt .renia-topbar {
  font-size: 12.5px;
  letter-spacing: 0.005em;
  padding: 10px 16px;
}
body.renia-mkt .renia-nav {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--e-line);
}
body.renia-mkt .renia-nav__inner { height: 62px; }
body.renia-mkt .renia-nav__links a { transition: color 0.15s var(--e-ease); }
body.renia-mkt .renia-nav__links a:hover { color: var(--e-ink); }

/* ————————————————— Hero ————————————————— */
body.renia-mkt .hero-section {
  min-height: 0 !important;
  display: block !important;
  border-bottom: none !important;
  background-color: #ffffff !important;
  position: relative !important;
  overflow: hidden;
  padding: 0 !important;
}
/* fine dot grid, fading downward */
body.renia-mkt .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(10, 10, 10, 0.085) 1px, transparent 1.3px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 92% 58% at 50% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 92% 58% at 50% 0%, #000 0%, transparent 72%);
  opacity: 0.55;
}
/* soft top glow */
body.renia-mkt .hero-section::after {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.045) 0%, transparent 65%);
}

.renia-hero__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.renia-mkt .hero-section p.renia-hero__chip {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid var(--e-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  color: var(--e-muted);
  letter-spacing: -0.005em;
  width: auto !important;
  max-width: 94% !important;
  align-self: center;
  text-align: center;
  white-space: nowrap !important;
}
.renia-hero__chip-short { display: none; }

.renia-hero__chip-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--e-ink);
  flex-shrink: 0;
}
.renia-hero__chip-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.4);
  animation: e-pulse 2.6s var(--e-ease) infinite;
}
@keyframes e-pulse {
  0% { transform: scale(0.55); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

body.renia-mkt .hero-section h1.renia-hero__title,
body.renia-mkt .renia-hero__title {
  font-size: clamp(2.85rem, 6.2vw, 5.2rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.05em !important;
  font-weight: 650 !important;
  color: var(--e-ink) !important;
  max-width: 880px !important;
  margin: 28px 0 0 !important;
  text-wrap: balance;
}

.renia-hero__sub {
  margin: 24px 0 0;
  max-width: 660px;
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  line-height: 1.62;
  color: #565656;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}
.renia-hero__sub strong { color: var(--e-ink); font-weight: 600; }

.renia-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

body.renia-mkt .hero-section p.renia-hero__micro {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--e-faint);
  font-weight: 450;
  text-wrap: wrap !important;
  max-width: none;
}
.renia-hero__micro a {
  color: var(--e-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #c9c9c9;
  transition: text-decoration-color 0.15s var(--e-ease);
}
.renia-hero__micro a:hover { text-decoration-color: var(--e-ink); }

/* hero art panel */
.renia-hero__art {
  margin: clamp(48px, 6vw, 72px) auto 0;
  width: 100%;
  max-width: 1060px;
  border: 1px solid var(--e-line);
  border-radius: var(--e-r-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  box-shadow: var(--e-shadow-2);
  padding: clamp(14px, 2.6vw, 34px);
}
.renia-hero__art img {
  display: block;
  width: 100%;
  height: auto;
}

/* naked stats — hairline, no boxes */
.renia-hero__stats {
  margin: clamp(44px, 5vw, 60px) auto 0;
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.renia-hero__stats > div {
  border-top: 1px solid var(--e-line);
  padding-top: 18px;
  text-align: left;
}
.renia-hero__stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--e-ink);
}
.renia-hero__stats span {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--e-muted);
}

body.renia-mkt .hero-section p.renia-hero__compliance {
  margin: 30px 0 0;
  padding-bottom: clamp(48px, 6vw, 72px);
  font-size: 12.5px;
  color: var(--e-faint);
  letter-spacing: 0.01em;
  text-wrap: wrap !important;
  max-width: none;
}

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .renia-hero__inner > * {
    animation: e-rise 0.75s var(--e-ease) both;
  }
  .renia-hero__inner > *:nth-child(1) { animation-delay: 0.02s; }
  .renia-hero__inner > *:nth-child(2) { animation-delay: 0.08s; }
  .renia-hero__inner > *:nth-child(3) { animation-delay: 0.14s; }
  .renia-hero__inner > *:nth-child(4) { animation-delay: 0.20s; }
  .renia-hero__inner > *:nth-child(5) { animation-delay: 0.26s; }
  .renia-hero__inner > *:nth-child(6) { animation-delay: 0.34s; }
  .renia-hero__inner > *:nth-child(7) { animation-delay: 0.42s; }
  .renia-hero__inner > *:nth-child(8) { animation-delay: 0.48s; }
}
@keyframes e-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ————————————————— Section rhythm + headers ————————————————— */
body.renia-mkt .renia-section {
  padding: clamp(84px, 9vw, 120px) 0;
  border-top: 1px solid var(--e-line);
}
body.renia-mkt .renia-section--soft { background: var(--e-soft); }

body.renia-mkt .renia-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--e-faint);
}
body.renia-mkt .renia-h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.038em;
  font-weight: 650;
}
body.renia-mkt .renia-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--e-muted);
}
body.renia-mkt .renia-kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--e-faint);
}

/* ————————————————— Cards ————————————————— */
body.renia-mkt .renia-calc__card {
  border: 1px solid var(--e-line) !important;
  border-radius: var(--e-r);
  box-shadow: var(--e-shadow-1);
}
body.renia-mkt .renia-calc__card--yes {
  border-color: var(--e-ink) !important;
}
body.renia-mkt .renia-demo {
  border-radius: var(--e-r-lg);
  border-color: var(--e-line);
  box-shadow: var(--e-shadow-1);
}
body.renia-mkt .renia-step {
  border-radius: var(--e-r);
  border: 1px solid var(--e-line);
  background: #fff;
  box-shadow: var(--e-shadow-1);
}
body.renia-mkt .renia-faq__item {
  border: 1px solid var(--e-line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.18s var(--e-ease), box-shadow 0.18s var(--e-ease);
}
body.renia-mkt .renia-faq__item:hover {
  border-color: var(--e-line-2);
  box-shadow: var(--e-shadow-1);
}
body.renia-mkt .renia-proof-bar {
  border: 1px solid var(--e-line);
  border-radius: var(--e-r);
  background: #fff;
  box-shadow: var(--e-shadow-1);
}

/* pricing */
body.renia-mkt .renia-pricing__card {
  border: 1px solid var(--e-line);
  border-radius: var(--e-r);
  box-shadow: var(--e-shadow-1);
  transition: transform 0.22s var(--e-ease), box-shadow 0.22s var(--e-ease), border-color 0.22s var(--e-ease);
}
body.renia-mkt .renia-pricing__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--e-shadow-2);
}
/* featured plan — inverted, SpaceX-bold */
body.renia-mkt .renia-pricing__card--popular {
  background: var(--e-ink) !important;
  border-color: var(--e-ink) !important;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.2), 0 24px 60px rgba(10, 10, 10, 0.28);
}
body.renia-mkt .renia-pricing__card--popular::before {
  background: #ffffff;
  color: var(--e-ink);
  border: 1px solid var(--e-ink);
}
body.renia-mkt .renia-pricing__card--popular .renia-pricing__name,
body.renia-mkt .renia-pricing__card--popular .renia-pricing__price strong,
body.renia-mkt .renia-pricing__card--popular .renia-pricing__price span,
body.renia-mkt .renia-pricing__card--popular .renia-pricing__features li,
body.renia-mkt .renia-pricing__card--popular .renia-pricing__features li strong {
  color: #ffffff !important;
}
body.renia-mkt .renia-pricing__card--popular .renia-pricing__features li {
  color: rgba(255, 255, 255, 0.72) !important;
}
body.renia-mkt .renia-pricing__card--popular .renia-pricing__billing {
  color: rgba(255, 255, 255, 0.5) !important;
}
body.renia-mkt .renia-pricing__card--popular .renia-pricing__divider {
  background: rgba(255, 255, 255, 0.16) !important;
}
body.renia-mkt .renia-pricing__card--popular .renia-btn--primary {
  background: #ffffff !important;
  color: var(--e-ink) !important;
  border-color: #ffffff !important;
}
body.renia-mkt .renia-pricing__card--popular .renia-btn--primary:hover {
  background: #e9e9e9 !important;
  border-color: #e9e9e9 !important;
  color: var(--e-ink) !important;
}
body.renia-mkt .renia-pricing__card--popular .renia-pricing__billing a {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* Force legibility on the black card — beats legacy #pricing ink rules (ID specificity) */
body.renia-mkt #pricing .renia-pricing__card--popular [id^="price-"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
body.renia-mkt #pricing .renia-pricing__card--popular .renia-pricing__price span {
  color: rgba(255, 255, 255, 0.6) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6) !important;
}
body.renia-mkt #pricing .renia-pricing__card--popular li {
  color: rgba(255, 255, 255, 0.75) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.75) !important;
}
body.renia-mkt #pricing .renia-pricing__card--popular li strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
body.renia-mkt #pricing .renia-pricing__card--popular li::before {
  border-color: rgba(255, 255, 255, 0.85) !important;
  background: transparent !important;
}
body.renia-mkt #pricing .renia-pricing__card--popular a,
body.renia-mkt #pricing .renia-pricing__card--popular a * {
  color: var(--e-ink) !important;
  -webkit-text-fill-color: var(--e-ink) !important;
}

/* compliance quote card — stack vertically, stay readable */
body.renia-mkt .renia-compliance__card {
  flex-direction: column;
  gap: 12px;
  border-radius: var(--e-r);
  border-color: var(--e-line);
  box-shadow: var(--e-shadow-1);
}
body.renia-mkt .renia-compliance__card blockquote { margin: 4px 0 0; }
body.renia-mkt .renia-compliance__card .renia-log { margin: 0; }

/* pills */
body.renia-mkt .renia-pill {
  border: 1px solid var(--e-line);
  background: #fff;
  color: var(--e-muted);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 550;
}
body.renia-mkt .renia-pill--dark {
  background: var(--e-ink);
  border-color: var(--e-ink);
  color: #fff;
}

/* integrations strip */
body.renia-mkt .renia-integrations {
  border-top: 1px solid var(--e-line);
  border-bottom: 1px solid var(--e-line);
  background: #fff;
}
body.renia-mkt .renia-integrations__pills span {
  border: 1px solid var(--e-line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--e-muted);
  transition: border-color 0.15s var(--e-ease), color 0.15s var(--e-ease);
}
body.renia-mkt .renia-integrations__pills span:hover {
  border-color: var(--e-ink);
  color: var(--e-ink);
}

/* ————————————————— Final CTA (dark) ————————————————— */
body.renia-mkt section.bg-slate-950 {
  background: var(--e-ink) !important;
  position: relative;
}
body.renia-mkt section.bg-slate-950::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
}
body.renia-mkt section.bg-slate-950 h2 {
  letter-spacing: -0.04em !important;
  font-weight: 650 !important;
}
body.renia-mkt section.bg-slate-950 a.bg-white {
  border-radius: 999px !important;
  font-weight: 600 !important;
  transition: transform 0.18s var(--e-ease), box-shadow 0.18s var(--e-ease), background-color 0.18s var(--e-ease) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
body.renia-mkt section.bg-slate-950 a.bg-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: #f0f0f0 !important;
}
body.renia-mkt section.bg-slate-950 a.border {
  border-radius: 999px !important;
  font-weight: 600 !important;
  transition: transform 0.18s var(--e-ease), background-color 0.18s var(--e-ease), border-color 0.18s var(--e-ease) !important;
}
body.renia-mkt section.bg-slate-950 a.border:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.65) !important;
}

/* ————————————————— Footer ————————————————— */
body.renia-mkt .renia-footer {
  border-top: 1px solid var(--e-line);
  background: #fff;
}
body.renia-mkt .renia-footer__col h4 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--e-faint);
}
body.renia-mkt .renia-footer__col a { transition: color 0.15s var(--e-ease); }
body.renia-mkt .renia-footer__col a:hover { color: var(--e-ink); }

/* ————————————————— Inner pages (compare / location / integration) ————————————————— */
body.renia-mkt .renia-section-inner {
  margin-top: 44px;
  margin-bottom: 12px;
}
body.renia-mkt .renia-section-inner h2 {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--e-ink);
  margin: 0 0 14px;
  line-height: 1.25;
}
body.renia-mkt .renia-section-inner h3 {
  font-size: 17px;
  font-weight: 650;
  color: var(--e-ink);
  margin: 20px 0 8px;
}
body.renia-mkt .renia-section-inner p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--e-body);
  margin: 0 0 16px;
}
body.renia-mkt .renia-section-inner strong { color: var(--e-ink); font-weight: 650; }
body.renia-mkt .renia-section-inner a {
  color: var(--e-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
body.renia-mkt .renia-section-inner a:hover { color: var(--e-muted); }
body.renia-mkt .renia-section-inner ul,
body.renia-mkt .renia-section-inner ol {
  margin: 0 0 20px 20px;
  padding: 0;
  color: var(--e-body);
  font-size: 16px;
  line-height: 1.72;
}
body.renia-mkt .renia-section-inner li {
  margin-bottom: 8px;
  padding-left: 4px;
}
body.renia-mkt .renia-page .renia-actions {
  margin-top: 40px;
  justify-content: center;
}
body.renia-mkt .renia-page .renia-card {
  border: 1px solid var(--e-line);
  border-radius: var(--e-r-lg);
  box-shadow: var(--e-shadow-1);
}
body.renia-mkt .renia-page .renia-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
body.renia-mkt .renia-page .renia-table th {
  background: var(--e-soft);
  font-weight: 650;
  color: var(--e-ink);
  text-align: left;
  padding: 13px 16px;
  border-bottom: 2px solid var(--e-line);
}
body.renia-mkt .renia-page .renia-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--e-line);
  color: var(--e-body);
  vertical-align: top;
}
body.renia-mkt .renia-page .renia-table tr:last-child td { border-bottom: none; }
body.renia-mkt .renia-page .renia-th-accent {
  background: var(--e-ink) !important;
  color: #fff !important;
}

/* ————————————————— Legal pages ————————————————— */
body.renia-mkt .renia-legal-main { padding-top: 80px; }
body.renia-mkt .renia-section--legal { padding: 72px 0 96px; }
body.renia-mkt .renia-legal-head {
  text-align: center;
  margin-bottom: 40px;
}
body.renia-mkt .renia-legal-head .renia-h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 12px 0 10px;
}
body.renia-mkt .renia-legal-date {
  font-family: var(--e-font-mono);
  font-size: 12px;
  color: var(--e-faint);
  margin: 0;
}
body.renia-mkt .renia-legal-banner {
  background: var(--e-soft);
  border-left: 4px solid var(--e-ink);
  border-radius: 0 var(--e-r) var(--e-r) 0;
  padding: 22px 24px;
  margin-bottom: 36px;
}
body.renia-mkt .renia-legal-banner__title {
  font-size: 15px;
  font-weight: 650;
  color: var(--e-ink);
  margin: 0 0 8px;
}
body.renia-mkt .renia-legal-banner p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--e-muted);
  margin: 0;
}
body.renia-mkt .renia-legal__content,
body.renia-mkt .legal-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--e-body);
}
body.renia-mkt .renia-legal__content h2,
body.renia-mkt .legal-content h2 {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--e-ink);
  margin: 42px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--e-line);
}
body.renia-mkt .renia-legal__content h3,
body.renia-mkt .legal-content h3 {
  font-size: 17px;
  font-weight: 650;
  color: var(--e-ink);
  margin: 28px 0 10px;
}
body.renia-mkt .renia-legal__content p,
body.renia-mkt .legal-content p {
  margin: 0 0 16px;
}
body.renia-mkt .renia-legal__content ul,
body.renia-mkt .legal-content ul,
body.renia-mkt .renia-legal__content ol,
body.renia-mkt .legal-content ol {
  margin: 0 0 20px 20px;
  padding: 0;
}
body.renia-mkt .renia-legal__content li,
body.renia-mkt .legal-content li {
  margin-bottom: 10px;
  padding-left: 6px;
}
body.renia-mkt .renia-legal__content a,
body.renia-mkt .legal-content a {
  color: var(--e-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
body.renia-mkt .renia-legal__content a:hover,
body.renia-mkt .legal-content a:hover {
  color: var(--e-muted);
}
body.renia-mkt .renia-legal__content strong,
body.renia-mkt .legal-content strong {
  font-weight: 650;
  color: var(--e-ink);
}
body.renia-mkt .renia-legal__content table,
body.renia-mkt .legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
body.renia-mkt .renia-legal__content th,
body.renia-mkt .legal-content th,
body.renia-mkt .renia-legal__content td,
body.renia-mkt .legal-content td {
  border: 1px solid var(--e-line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
body.renia-mkt .renia-legal__content th,
body.renia-mkt .legal-content th {
  background: var(--e-soft);
  font-weight: 650;
  color: var(--e-ink);
}

/* ————————————————— Mobile ————————————————— */
@media (max-width: 640px) {
  .renia-hero__stats { grid-template-columns: 1fr; gap: 20px; max-width: 420px; }
  .renia-hero__ctas { flex-direction: column; width: 100%; }
  .renia-hero__ctas .renia-btn { width: 100%; }
  .renia-hero__art { border-radius: var(--e-r); padding: 12px; }
  .renia-hero__art img { height: 210px; object-fit: cover; object-position: center; }
  body.renia-mkt .hero-section p.renia-hero__chip { font-size: 12.5px; padding: 8px 14px; }
  .renia-hero__chip-full { display: none; }
  .renia-hero__chip-short { display: inline; }
  body.renia-mkt .renia-section--legal { padding: 48px 0 72px; }
  body.renia-mkt .renia-legal-head .renia-h1 { font-size: 32px; }
  body.renia-mkt .renia-legal-banner { padding: 18px; }
  body.renia-mkt .renia-legal__content,
  body.renia-mkt .legal-content { font-size: 15px; }
  body.renia-mkt .renia-legal__content h2,
  body.renia-mkt .legal-content h2 { font-size: 20px; }

  /* Comparison table: stack as labeled cards on mobile */
  body.renia-mkt .renia-compare__head { display: none; }
  body.renia-mkt .renia-compare__row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--e-line);
    padding: 16px;
  }
  body.renia-mkt .renia-compare__topic {
    background: transparent;
    font-size: 14px;
    font-weight: 650;
    color: var(--e-ink);
    padding: 0 0 10px;
  }
  body.renia-mkt .renia-compare__cell {
    padding: 8px 0;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  body.renia-mkt .renia-compare__cell::before {
    content: "Without:";
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--e-faint);
    flex-shrink: 0;
    padding-top: 2px;
    min-width: 52px;
  }
  body.renia-mkt .renia-compare__cell--yes::before {
    content: "With Renia:";
    color: var(--e-ink);
  }
  body.renia-mkt .renia-compare__cell--yes::before { display: inline; }
  body.renia-mkt .renia-compare__cell--yes {
    background: transparent;
    border-left: none;
    padding-left: 0;
  }

  /* ROI calculator: compact on mobile */
  body.renia-mkt .renia-calc { grid-template-columns: 1fr; gap: 16px; }
  body.renia-mkt .renia-calc__controls { padding: 20px; }
  body.renia-mkt .renia-calc__results { grid-template-columns: 1fr; gap: 12px; }
  body.renia-mkt .renia-calc__card { padding: 20px; }
  body.renia-mkt .renia-calc__card h3 { font-size: 16px; }
  body.renia-mkt .renia-calc__card .renia-body { font-size: 13px; }
  body.renia-mkt .renia-calc__total { padding: 14px 16px; }
  body.renia-mkt .renia-calc__total strong { font-size: 20px; }
  body.renia-mkt .renia-calc__chart-wrap { display: none; }
  body.renia-mkt .renia-dl div { padding: 6px 0; }
  body.renia-mkt .renia-dl dt { font-size: 12px; }
  body.renia-mkt .renia-dl dd { font-size: 14px; }
  body.renia-mkt .renia-slider__top label { font-size: 13px; }
  body.renia-mkt .renia-slider__top span { font-size: 16px; }

  /* Simulator vector: smaller on mobile */
  body.renia-mkt .renia-demo__vector svg { width: 220px; height: 160px; }
  body.renia-mkt .renia-demo__vector { padding: 20px 12px; gap: 16px; }

  /* Demo side: hide on very small screens, show below */
  body.renia-mkt .renia-demo { grid-template-columns: 1fr; }

  /* Section heads: tighter on mobile */
  body.renia-mkt .renia-section-head { margin-bottom: 28px; }
  body.renia-mkt .renia-h2 { font-size: 24px; }
  body.renia-mkt .renia-lead { font-size: 15px; }
}
