/* ==========================================================================
   Rensora — GLOBAL stylesheet
   Shared by every page on the site. Do NOT add page-specific rules here.
   Page-specific rules belong in css/rensora-<page>.css.

   Contents
     1. Font faces + font swap block
     2. Design tokens (colour, type scale, spacing, radii, shadow, motion)
     3. Base / reset
     4. Typography classes
     5. Layout: container, section, light-ray
     6. Buttons + controls
     7. Cards
     8. Logo strip (marquee)
     9. Carousel + tabbed-showcase primitives
    10. Dashboard chrome + status pills
    11. Ordinary WordPress content (index / page / single fallbacks)
    12. Site header + navigation
    13. Site footer
    14. Reduced motion
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONT FACES
   Inter is used because Aptos is licensed for desktop/Office use and may not
   be self-hosted on a public server. Inter is the fallback named in the
   Rensora Visual Language System, so this is a sanctioned substitution.

   >>> FONT SWAP BLOCK <<<
   To move back to Aptos after buying a web licence, this is the only edit:
     a) replace the two @font-face rules below with the Aptos web files
     b) change --font-primary / --font-display in section 2
   Nothing else in the codebase names a font family directly.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2-variations"),
       url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable-Italic.woff2") format("woff2-variations"),
       url("../fonts/InterVariable-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Rensora Mono";
  src: url("../fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rensora Mono";
  src: url("../fonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Font stacks — see FONT SWAP BLOCK above */
  --font-primary: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Rensora Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Brand colour — role before mood */
  --navy: #0B1020;
  --blue: #0077FF;
  --blue-dark: #0060d6;
  --blue-deep: #0043DD;
  --blue-action: #0058EE;
  --blue-action-dark: #0050d8;
  --cyan: #35C8FF;
  --indigo: #6366F1;
  --indigo-dark: #4f52e0;
  --teal: #00C2B2;
  --teal-dark: #03a598;
  --teal-ink: #0a857b;
  --orange: #FF8A00;

  /* Ink */
  --ink: #24314b;
  --ink-strong: #0B1020;
  --ink-muted: #6b7a93;
  --ink-soft: #4c596e;
  --ink-faint: #93a1b8;
  --ink-inverse: #ffffff;
  --ink-inverse-muted: #aab6cc;
  --ink-inverse-soft: rgba(255, 255, 255, .82);

  /* Surfaces */
  --surface: #ffffff;
  --surface-alt: #F9F9FB;
  --surface-sunken: #EEF2F8;
  --surface-neutral: #FAFAFA;
  --surface-teal: #EFFAF8;
  --surface-indigo: #F4F3FF;
  --surface-navy: #00102D;

  /* Borders */
  --border-subtle: #EDF1F7;
  --border-default: #E9EEF6;
  --border-strong: #D6DEEA;
  /* Hairlines inside data panels. Same values as the pale surfaces above, but
     named for their role so border and background intent stay readable. */
  --border-panel: #EEF2F8;
  --border-row: #F2F5F9;
  --border-divider: #E4EAF3;
  --surface-panel: #FAFBFD;
  --surface-card: #FBFBFD;
  --surface-quote: #F1F2F8;
  --border-quote: #C9CFDD;

  /* Status tints. Used by .r-pill and any state chip in a data panel. */
  --status-neutral-bg: #F1F4F9;
  --status-neutral-ink: #4c596e;
  --status-teal-bg: #E4FAF7;
  --status-teal-ink: #0a857b;
  --status-indigo-bg: #EEF0FE;
  --status-indigo-ink: #4f52e0;

  /* Inactive outline-icon stroke inside dashboard chrome. */
  --icon-inactive: #bcc7d8;

  /* Radii — precise and geometric, never pill-soft by default */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 18px;
  --radius-pill: 999px;

  /* Shadow — restrained, cool-tinted */
  --shadow-xs: 0 6px 18px rgba(0, 119, 255, .22);
  --shadow-sm: 0 8px 24px rgba(11, 16, 32, .06);
  --shadow-md: 0 12px 30px rgba(11, 16, 32, .08);
  --shadow-lg: 0 14px 40px rgba(11, 16, 32, .07);
  --shadow-menu: 0 16px 40px rgba(11, 16, 32, .12);
  --shadow-action: 0 10px 26px rgba(0, 119, 255, .26);

  /* Spacing rhythm */
  --gutter: clamp(20px, 5vw, 48px);
  --measure: 1200px;
  --measure-wide: 1240px;
  --measure-narrow: 1000px;
  --section-y: clamp(72px, 9vw, 112px);
  --section-y-tight: clamp(48px, 6vw, 76px);
  --stack-sm: 12px;
  --stack: clamp(20px, 2.4vw, 30px);
  --stack-lg: clamp(28px, 3.5vw, 44px);

  /* Motion — directed and calm */
  --ease-standard: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 120ms;
  --dur: 220ms;
  --dur-slow: 340ms;
}

/* --------------------------------------------------------------------------
   3. BASE
   -------------------------------------------------------------------------- */
.rensora-site * { box-sizing: border-box; }

/* Base element rules are all scoped `.rensora-site <el>` (0,1,1). A block
   parent (Twenty Twenty-Four / Five and similar) turns its theme.json into
   `:root :where(body) {font-family:…}`, `:root :where(p) {margin-top:…}` and
   `:root :where(button) {font-family:…}`, which land at 0,1,0. A bare element
   selector here would sit at 0,0,1 and lose — that hijacked body copy to the
   parent's serif, pushed 2rem margins onto every paragraph, and left Inter
   headings sitting over parent-theme text.

   Every component class in this file is likewise scoped `.rensora-site .r-*`
   (0,2,0) for the same reason. The link defaults further down sit between the
   two at 0,1,1 — see the note there. */
body.rensora-site {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  line-height: normal;
}

.rensora-site h1,
.rensora-site h2,
.rensora-site h3,
.rensora-site h4,
.rensora-site h5,
.rensora-site h6,
.rensora-site p,
.rensora-site figure,
.rensora-site blockquote { margin: 0; text-wrap: pretty; }

.rensora-site ul,
.rensora-site ol { margin: 0; padding-left: 0; }

.rensora-site li { margin: 0; }

.rensora-site img { max-width: 100%; }
.rensora-site button { font-family: inherit; }
.rensora-site hr { box-sizing: content-box; }

/* Link defaults sit at 0,1,1. That is above the parent theme's
   `:root :where(a:where(:not(.wp-element-button))) {color;text-decoration}`
   (0,1,0), and below every component class, which are all scoped
   `.rensora-site .r-*` (0,2,0) — so .r-btn--primary, .r-navlink and
   .r-footlink still win their own colour without !important. Verified: the
   primary button stays white on #0077FF and footer links stay white on navy.

   Do not drop the `.rensora-site` prefix from either side of that balance.
   Bare `a` ties with the parent and loses on load order; bare `.r-btn`
   ties with this rule and loses the same way. */
.rensora-site a { color: var(--blue); text-decoration: none; }
.rensora-site a:hover { color: var(--blue-dark); }

.rensora-site :focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

/* Screen-reader-only utility. Stays hidden even when focused — it is for text
   that should never be seen. Anything that must appear on focus (a skip link)
   uses .r-skiplink below instead. */
.rensora-site .r-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Skip link: off-screen until focused, then a real, visible target. z-index
   clears the sticky header (60) so it is never covered. */
.rensora-site .r-skiplink {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
}
.rensora-site .r-skiplink:focus {
  left: clamp(16px, 4vw, 48px);
  top: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink-strong);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   Clarity outranks drama. Sentence case throughout; uppercase only on labels.

   Selectors are scoped `.rensora-site .r-*` (specificity 0,2,0) so they beat
   a parent block theme's `:root :where(h2) {font-size:…}` from theme.json,
   which lands at 0,1,0 and would otherwise win on source order. Keep the
   prefix when you add a step.

   THE TYPE SCALE LIVES HERE AND ONLY HERE.
   Markup carries .r-display / .r-h1 … .r-h6 and never its own font-size,
   font-weight, letter-spacing or colour. Changing a step below changes it on
   every page in the site at once — that is the whole point of this section.
   Page stylesheets may set measure (max-width) and rhythm (margin), which are
   layout decisions, but must not restate the scale.
   -------------------------------------------------------------------------- */
.rensora-site .r-display,
.rensora-site .r-h1,
.rensora-site .r-h2,
.rensora-site .r-h3,
.rensora-site .r-h4,
.rensora-site .r-h5,
.rensora-site .r-h6 {
  font-family: var(--font-display);
  color: var(--ink-strong);
}

/* Hero statement. One per page, at most. */
.rensora-site .r-display { font-size: clamp(38px, 6.4vw, 76px); font-weight: 800; line-height: 1.05; letter-spacing: -.025em; }

/* Closing / full-width statement heading. */
.rensora-site .r-h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 800; line-height: 1.08; letter-spacing: -.025em; }

/* Standard section heading. The workhorse. */
.rensora-site .r-h2 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; }

/* Sub-section heading, e.g. a product showcase inside a section. */
.rensora-site .r-h3 { font-size: clamp(28px, 4.1vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; }

/* Secondary section heading, and headings on dark fields. */
.rensora-site .r-h4 { font-size: clamp(26px, 3.6vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }

/* Card and story headline. */
.rensora-site .r-h5 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }

/* Small heading — pillar cards, band headings. */
.rensora-site .r-h6 { font-size: clamp(20px, 2.1vw, 27px); font-weight: 700; line-height: 1.3; letter-spacing: -.02em; }

/* Heading colour modifier for dark fields. */
.rensora-site .r-h--inverse { color: var(--ink-inverse); }

/* Uppercase label above a heading. Modest tracking, never a sentence. */
.rensora-site .r-eyebrow {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.rensora-site .r-eyebrow--inverse { color: var(--ink-inverse-soft); }

/* Sentence-case label above a heading. Product-tinted variants below. */
.rensora-site .r-kicker { font-family: var(--font-primary); font-size: clamp(15px, 1.3vw, 17px); font-weight: 700; color: var(--blue); margin: 0; }
.rensora-site .r-kicker--mz { color: var(--teal-ink); }
.rensora-site .r-kicker--ev { color: var(--indigo-dark); }
.rensora-site .r-kicker--sm { font-size: 15px; }

/* Lead paragraph directly under a heading. */
.rensora-site .r-lead { font-family: var(--font-primary); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--ink); }
.rensora-site .r-lead--lg { font-size: clamp(16px, 1.35vw, 19px); }
.rensora-site .r-lead--muted { color: var(--ink-muted); }

/* Body copy. --relaxed for long measures, --sm inside cards and panels.
   font-family is restated on the body-copy classes below so a parent theme's
   theme.json cannot reach them through inheritance. */
.rensora-site .r-body { font-family: var(--font-primary); font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; color: var(--ink); }
.rensora-site .r-body--relaxed { line-height: 1.75; }
.rensora-site .r-body--tight { font-size: clamp(15px, 1.25vw, 17px); line-height: 1.6; }
.rensora-site .r-body--sm { font-size: clamp(15px, 1.2vw, 16px); line-height: 1.65; }
.rensora-site .r-body--soft { color: var(--ink-soft); }
.rensora-site .r-body--muted { color: var(--ink-muted); }

/* Statement line that resolves a section. Brand blue by default. */
.rensora-site .r-statement { font-family: var(--font-primary); font-size: clamp(19px, 1.8vw, 25px); font-weight: 700; color: var(--blue); }
.rensora-site .r-statement--lg { font-size: clamp(20px, 2.2vw, 29px); }
.rensora-site .r-statement--sm { font-size: clamp(18px, 1.6vw, 23px); color: var(--ink-strong); }

/* Supporting label / caption pairs used beside metrics. */
.rensora-site .r-label { font-family: var(--font-primary); font-size: 16px; font-weight: 700; color: var(--ink-strong); }
.rensora-site .r-label--lg { font-size: clamp(16px, 1.4vw, 19px); }
.rensora-site .r-caption { font-family: var(--font-primary); font-size: 14.5px; color: var(--ink-muted); }

/* Utilities */
.rensora-site .r-center { text-align: center; }
.rensora-site .r-measure { max-width: 62ch; margin-left: auto; margin-right: auto; }

/* Card type. Used by any card that pairs a category label with a headline. */
.rensora-site .r-card__eyebrow {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}
.rensora-site .r-card__eyebrow--cyan { color: var(--cyan); }
.rensora-site .r-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink-strong);
}
.rensora-site .r-card__title--lg { font-size: clamp(19px, 2vw, 26px); }

/* Trailing action inside a card, pinned to the bottom of a flex column. */
.rensora-site .r-cardlink {
  font-family: var(--font-primary);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}
.rensora-site .r-cardlink--inverse { color: var(--ink-inverse); }
.rensora-site .r-cardlink--cyan { color: var(--cyan); }

/* Feature-list item title inside a tabbed showcase. */
.rensora-site .r-feat__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  color: var(--ink-strong);
}

/* Client-logo wordmark set in brand type, and its sector label. */
.rensora-site .r-wordmark {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--ink-strong);
}
.rensora-site .r-wordmark__sector {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-strong);
}

/* Figure overlaid on a story photograph. */
.rensora-site .r-storystat {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink-inverse);
}
.rensora-site .r-storystat__label {
  font-family: var(--font-primary);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.4;
  color: var(--ink-inverse);
}

/* Sector / region line above a story headline. */
.rensora-site .r-storymeta { font-family: var(--font-primary); font-size: 16px; font-weight: 600; color: var(--blue); }

/* Founder-review placeholder notes. Delete the note with the placeholder. */
.rensora-site .r-note { font-family: var(--font-primary); font-size: 13.5px; color: var(--ink-muted); }
.rensora-site .r-note--center { text-align: center; }
.rensora-site .r-note--sm { font-size: 13px; }
.rensora-site .r-note--inverse { color: var(--ink-inverse-soft); }

/* --------------------------------------------------------------------------
   5. LAYOUT
   -------------------------------------------------------------------------- */
.rensora-site .r-container {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.rensora-site .r-container--wide { max-width: var(--measure-wide); }
.rensora-site .r-container--narrow { max-width: var(--measure-narrow); }

.rensora-site .r-section { padding: var(--section-y) 0; }
.rensora-site .r-section--tight { padding: var(--section-y-tight) 0; }
.rensora-site .r-section--white { background: var(--surface); }
.rensora-site .r-section--alt { background: var(--surface-alt); }
.rensora-site .r-section--sunken { background: var(--surface-sunken); }
.rensora-site .r-section--neutral { background: var(--surface-neutral); }
.rensora-site .r-section--teal { background: var(--surface-teal); }
.rensora-site .r-section--indigo { background: var(--surface-indigo); }
.rensora-site .r-section--deep { background: var(--blue-deep); color: var(--ink-inverse); }

/* Light-ray: one dominant direction, low opacity, brightest area kept small
   and never behind text. Apply to a positioned section. */
.rensora-site .r-ray { position: relative; overflow: hidden; }
.rensora-site .r-ray > * { position: relative; z-index: 1; }
.rensora-site .r-ray::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -20% -10% auto -10%;
  height: 130%;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(53, 200, 255, .16) 0%, rgba(0, 119, 255, .07) 34%, rgba(0, 119, 255, 0) 62%);
}
.rensora-site .r-ray--soft::before { opacity: .6; }
.rensora-site .r-ray--reverse::before { transform: scaleX(-1); }

/* --------------------------------------------------------------------------
   6. BUTTONS + CONTROLS
   -------------------------------------------------------------------------- */
.rensora-site .r-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 26px;
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
}
.rensora-site .r-btn:active { transform: translateY(1px); }

.rensora-site .r-btn--sm { min-height: 48px; padding: 13px 24px; font-size: 15px; }
.rensora-site .r-btn--lg { padding: 14px 30px; font-size: 17px; }
.rensora-site .r-btn--xl { min-height: 56px; padding: 16px 32px; font-size: 18px; }

.rensora-site .r-btn--primary { background: var(--blue); color: var(--ink-inverse); box-shadow: var(--shadow-xs); }
.rensora-site .r-btn--primary:hover { background: var(--blue-dark); color: var(--ink-inverse); }
.rensora-site .r-btn--primary.r-btn--lg { box-shadow: var(--shadow-action); }
.rensora-site .r-btn--primary.r-btn--xl { box-shadow: 0 12px 30px rgba(0, 119, 255, .26); }
.rensora-site .r-btn--primary.r-btn--sm { box-shadow: none; }

.rensora-site .r-btn--secondary {
  background: var(--surface);
  color: var(--ink-strong);
  border: 1px solid var(--border-strong);
}
.rensora-site .r-btn--secondary:hover { background: #F7F9FC; color: var(--ink-strong); }

.rensora-site .r-btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-weight: 600;
}
.rensora-site .r-btn--outline:hover { background: rgba(0, 119, 255, .06); color: var(--blue); }

.rensora-site .r-btn--teal { background: var(--teal); color: var(--ink-inverse); }
.rensora-site .r-btn--teal:hover { background: var(--teal-dark); color: var(--ink-inverse); }

.rensora-site .r-btn--indigo { background: var(--indigo); color: var(--ink-inverse); }
.rensora-site .r-btn--indigo:hover { background: var(--indigo-dark); color: var(--ink-inverse); }

/* Inline text action with trailing arrow */
.rensora-site .r-link {
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}
.rensora-site .r-link--underline { border-bottom: 1.5px solid var(--blue); padding-bottom: 6px; }

/* 44px square icon control on a dark field (carousel arrows, play/pause) */
.rensora-site .r-ctrl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .4);
  background: transparent;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard);
}
.rensora-site .r-ctrl:hover { background: rgba(255, 255, 255, .14); }

/* Same control on a light field */
.rensora-site .r-ctrl--light { border-color: var(--border-strong); background: var(--surface); }
.rensora-site .r-ctrl--light:hover { background: #F1F5FB; }

/* --------------------------------------------------------------------------
   7. CARDS
   White surface, hairline border, soft cool-tinted shadow.
   -------------------------------------------------------------------------- */
.rensora-site .r-card {
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.2vw, 26px);
  background: var(--surface);
  border: 1px solid var(--border-default);
}
.rensora-site .r-card--md { padding: clamp(22px, 2.6vw, 32px); }
.rensora-site .r-card--lg { padding: clamp(24px, 3vw, 38px); }
.rensora-site .r-card--band { padding: clamp(22px, 2.8vw, 34px) clamp(22px, 3vw, 40px); }
.rensora-site .r-card--stack { display: flex; flex-direction: column; }

/* Surface tints */
.rensora-site .r-card--plain { background: var(--surface);  border-color: var(--border-default); }
.rensora-site .r-card--cyan { background: #EFF9FD; border-color: #DCEEF8; }
.rensora-site .r-card--violet { background: #F8F8FE; border-color: #E4E4F4; }
.rensora-site .r-card--sky { background: #F3FAFE; border-color: #DFEDF7; }
.rensora-site .r-card--teal { background: #F4F8FA; border-color: rgba(0, 194, 178, .35); }
.rensora-site .r-card--indigo { background: #F5F5FA; border-color: rgba(99, 102, 241, .35); }
.rensora-site .r-card--action { background: var(--blue-action); border-color: transparent; }
.rensora-site .r-card--navy { background: var(--surface-navy); border-color: transparent; }
.rensora-site .r-card--elevated { background: var(--surface); border-color: var(--border-default); box-shadow: var(--shadow-lg); }

/* Clickable card: lifts to --shadow-md */
.rensora-site .r-card--link {
  text-decoration: none;
  transition: box-shadow var(--dur) var(--ease-standard),
              transform var(--dur) var(--ease-standard),
              background var(--dur) var(--ease-standard);
}
.rensora-site .r-card--link:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.rensora-site .r-card--action.r-card--link:hover { background: var(--blue-action-dark); transform: none; box-shadow: none; }
.rensora-site .r-card--navy.r-card--link:hover { background: #0a1a3c; transform: none; box-shadow: none; }

/* Accent rule along the top edge */
.rensora-site .r-card--accent-top { position: relative; overflow: hidden; }
.rensora-site .r-card--accent-top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

/* --------------------------------------------------------------------------
   8. LOGO STRIP (marquee)
   -------------------------------------------------------------------------- */
@keyframes rensora-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rensora-site .r-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rensora-site .r-mtrack {
  display: flex;
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  width: max-content;
  padding-left: clamp(48px, 7vw, 104px);
  animation: rensora-marquee 46s linear infinite;
}
.rensora-site .r-marquee:hover .r-mtrack,
.rensora-site .r-marquee:focus-within .r-mtrack { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   9. CAROUSEL + TABBED SHOWCASE PRIMITIVES
   Reused by any page that pairs a feature list with a visual panel.
   -------------------------------------------------------------------------- */
.rensora-site .r-feat {
  background: transparent;
  border-top: 1px solid rgba(11, 16, 32, .10);
  padding: 14px 4px;
  margin-bottom: 2px;
  transition: background var(--dur) var(--ease-standard),
              box-shadow var(--dur) var(--ease-standard);
}
.rensora-site .r-feat[data-active] {
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: 4px var(--radius-md) var(--radius-md) 4px;
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
}
.rensora-site .r-feat--mz[data-active] { border-left: 3px solid var(--teal); }
.rensora-site .r-feat--ev[data-active] { border-left: 3px solid var(--indigo); }

.rensora-site .r-chev { display: inline-flex; align-items: center; }
.rensora-site .r-feat[data-active] .r-chev { display: none; }

.rensora-site .r-fd { display: none; }
.rensora-site .r-feat[data-active] .r-fd { display: block; }

/* Stacked panes: all occupy one grid cell so height never jumps */
.rensora-site .r-panes { display: grid; align-items: start; }
.rensora-site .r-pane {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-standard);
}
.rensora-site .r-pane[data-active] { visibility: visible; opacity: 1; pointer-events: auto; }

/* Swappable full-width panes (client stories) */
.rensora-site .r-cspane { display: none; flex-wrap: wrap; width: 100%; }
.rensora-site .r-cspane[data-active] { display: flex; }

.rensora-site .r-dot {
  width: 14px; height: 14px;
  border-radius: var(--radius-pill);
  border: 0; padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .42);
  outline-offset: 3px;
  transition: background var(--dur-fast) var(--ease-standard);
}
.rensora-site .r-dot[data-active] { background: var(--ink-inverse); }

.rensora-site .r-progress {
  height: 3px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .24);
  overflow: hidden;
}
.rensora-site .r-progress__fill { height: 100%; width: 0%; background: var(--ink-inverse); border-radius: var(--radius-pill); }

/* Play/pause icon swap, driven by [data-playing] on the button */
.rensora-site .r-ico { display: none; align-items: center; }
.rensora-site button[data-playing] .r-ico--pause { display: inline-flex; }
.rensora-site button:not([data-playing]) .r-ico--play { display: inline-flex; }

/* --------------------------------------------------------------------------
   10. DASHBOARD CHROME + STATUS PILLS
   Product-preview UI shell. Reused on product pages.
   -------------------------------------------------------------------------- */
.rensora-site .r-dash {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* Product-tinted frame */
.rensora-site .r-dash--mz { border-color: #E4EFEC; }
.rensora-site .r-dash--ev { border-color: #E7E7F6; }
.rensora-site .r-dash__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-panel);
}
.rensora-site .r-dash__body { display: flex; flex-wrap: wrap; }
.rensora-site .r-dash__side {
  flex: 1 1 132px;
  max-width: 180px;
  border-right: 1px solid var(--border-panel);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rensora-site .r-dash__main { flex: 1 1 300px; min-width: 0; padding: clamp(14px, 1.6vw, 20px); }
.rensora-site .r-pill {
  font-family: var(--font-primary);
  display: inline-block;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  font-size: 9.5px;
  font-weight: 600;
  background: var(--status-neutral-bg);
  color: var(--status-neutral-ink);
}
.rensora-site .r-pill--teal { background: var(--status-teal-bg); color: var(--status-teal-ink); }
.rensora-site .r-pill--indigo { background: var(--status-indigo-bg); color: var(--status-indigo-ink); }

/* Dashboard micro-type. Kept in the global layer so product pages inherit the
   same panel voice rather than re-inventing 10px labels. */
.rensora-site .r-dash__eyebrow {
  font-family: var(--font-primary);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.rensora-site .r-dash__eyebrow--faint { color: var(--ink-faint); font-size: 9.5px; }
.rensora-site .r-dash__title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink-strong); }
.rensora-site .r-dash__sub { font-family: var(--font-primary); font-size: 11.5px; color: var(--ink-muted); }
.rensora-site .r-dash__panel-title { font-family: var(--font-primary); font-size: 12px; font-weight: 700; color: var(--ink-strong); }
.rensora-site .r-dash__panel-title--lg { font-size: 12.5px; }
.rensora-site .r-dash__row { font-family: var(--font-primary); font-size: 11px; color: var(--ink); }
.rensora-site .r-dash__key { font-family: var(--font-primary); font-size: 11px; font-weight: 700; color: var(--ink-strong); }
.rensora-site .r-dash__key--lg { font-size: 11.5px; }
.rensora-site .r-dash__stat-label { font-family: var(--font-primary); font-size: 11px; color: var(--ink-muted); }
.rensora-site .r-dash__stat-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink-strong); line-height: 1.2; }
.rensora-site .r-dash__stat-note { font-family: var(--font-primary); font-size: 10px; color: var(--ink-faint); }
.rensora-site .r-dash__stat-note--sm { font-size: 9.5px; }
.rensora-site .r-dash__meta { font-family: var(--font-primary); font-size: 10.5px; color: var(--ink-faint); }
.rensora-site .r-dash__th { font-family: var(--font-primary); font-size: 10px; color: var(--ink-faint); }
.rensora-site .r-dash__axis { font-family: var(--font-primary); font-size: 9px; color: var(--ink-faint); }
.rensora-site .r-dash__switch { font-family: var(--font-primary); font-size: 12.5px; color: var(--ink-soft); }
.rensora-site .r-dash__avatar {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
}
.rensora-site .r-dash__avatar--mz { background: #E4FAF7; color: var(--teal-ink); }
.rensora-site .r-dash__avatar--ev { background: #EEF0FE; color: var(--indigo-dark); }
.rensora-site .r-dash__inline {
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink);
}
.rensora-site .r-dash__link { font-family: var(--font-primary); font-size: 10.5px; font-weight: 600; }
.rensora-site .r-dash__link--mz { color: var(--teal-ink); }
.rensora-site .r-dash__link--ev { color: var(--indigo-dark); }
.rensora-site .r-dash__nav { font-family: var(--font-primary); display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius-sm); font-size: 12px; color: var(--ink-soft); }
.rensora-site .r-dash__nav[data-current] { font-weight: 600; }
.rensora-site .r-dash__nav--mz[data-current] { background: #E9F8F5; color: var(--teal-ink); }
.rensora-site .r-dash__nav--ev[data-current] { background: #EEF0FE; color: var(--indigo-dark); }
.rensora-site .r-dash__code {
  margin: 6px 0 0;
  background: var(--surface-panel);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.55;
  color: #33405a;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

/* Data panel inside a dashboard: hairline box holding stats or a table. */
.rensora-site .r-dash__box {
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-md);
}
.rensora-site .r-dash__box--pad { padding: 11px 13px; }
.rensora-site .r-dash__box--clip { overflow: hidden; }
.rensora-site .r-dash__th--bg { background: var(--surface-panel); }
.rensora-site .r-dash__row--sep { border-top: 1px solid var(--border-row); }

/* Search form. Used by searchform.php on 404 and search results. */
.rensora-site .r-searchform {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.rensora-site .r-field {
  flex: 1 1 200px;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--ink-strong);
  background: var(--ink-inverse);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.rensora-site .r-field::placeholder { color: var(--ink-faint); }
.rensora-site .r-field:hover { border-color: var(--ink-faint); }
.rensora-site .r-field:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 119, 255, .28); }

/* Visually hidden, still read by screen readers. */
.rensora-site .r-screenreader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   11. ORDINARY WORDPRESS CONTENT

   Used by index.php / page.php / single.php — the fallbacks that render posts
   and any page not using a Rensora page template. Deliberately plain: it
   inherits the brand type and colour so nothing looks unstyled, without
   trying to be a designed page.
   -------------------------------------------------------------------------- */
.rensora-site .r-content { padding: clamp(48px, 6vw, 88px) 0; }
.rensora-site .r-content__inner { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }

.rensora-site .r-content__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink-strong);
}
.rensora-site .r-content__meta { font-family: var(--font-primary); margin-top: 10px; font-size: 14px; color: var(--ink-muted); }

.rensora-site .r-prose { font-family: var(--font-primary); font-size: 17px; line-height: 1.7; color: var(--ink); }
.rensora-site .r-prose > * + * { margin-top: 1.1em; }
.rensora-site .r-prose h1,
.rensora-site .r-prose h2,
.rensora-site .r-prose h3,
.rensora-site .r-prose h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink-strong);
  margin-top: 1.8em;
}
.rensora-site .r-prose h1 { font-size: clamp(26px, 3.4vw, 36px); }
.rensora-site .r-prose h2 { font-size: clamp(23px, 2.8vw, 30px); }
.rensora-site .r-prose h3 { font-size: clamp(20px, 2.2vw, 24px); }
.rensora-site .r-prose h4 { font-size: 18px; }
.rensora-site .r-prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.rensora-site .r-prose ul,
.rensora-site .r-prose ol { padding-left: 1.4em; }
.rensora-site .r-prose li + li { margin-top: .4em; }
.rensora-site .r-prose img { height: auto; border-radius: var(--radius-md); }
.rensora-site .r-prose blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--blue);
  color: var(--ink-soft);
}
.rensora-site .r-prose code {
  font-family: var(--font-mono);
  font-size: .9em;
  background: var(--surface-panel);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-xs);
  padding: 2px 6px;
}
.rensora-site .r-prose pre {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  background: var(--surface-panel);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-md);
  padding: 16px;
  overflow-x: auto;
}
.rensora-site .r-prose pre code { background: none; border: 0; padding: 0; }
.rensora-site .r-prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.rensora-site .r-prose th,
.rensora-site .r-prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border-panel); }
.rensora-site .r-prose hr { border: 0; border-top: 1px solid var(--border-default); margin: 2em 0; }

.rensora-site .r-postlist { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 32px); }
.rensora-site .r-postlist__item { padding-bottom: clamp(20px, 3vw, 32px); border-bottom: 1px solid var(--border-default); }
.rensora-site .r-postlist__item:last-child { border-bottom: 0; }
.rensora-site .r-postlist__title {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.rensora-site .r-postlist__title a { color: var(--ink-strong); }
.rensora-site .r-postlist__title a:hover { color: var(--blue); }
.rensora-site .r-postlist__excerpt { font-family: var(--font-primary); margin-top: 10px; font-size: 16px; line-height: 1.65; color: var(--ink); }

.rensora-site .r-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid var(--border-default);
  font-size: 15px;
  font-weight: 600;
}
.rensora-site .r-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-default);
  color: var(--ink-strong);
}
.rensora-site .r-pagination .page-numbers:hover { background: var(--surface-sunken); }
.rensora-site .r-pagination .page-numbers.current { background: var(--blue); border-color: var(--blue); color: var(--ink-inverse); }

/* --------------------------------------------------------------------------
   12. SITE HEADER + NAVIGATION
   Markup lives in header.php. Menu comes from Appearance > Menus.
   -------------------------------------------------------------------------- */
.rensora-site .r-header {
  position: sticky;
  top: 0;
  z-index: 60;
  /* Solid white, not translucent. The nav sits over the pale hero field, and
     any transparency lets that tint through — which reads as the wrong colour
     before the visitor scrolls and makes any opaque logo look pasted on. */
  background: var(--surface);
  border-bottom: 1px solid var(--border-subtle);
}
.rensora-site .r-headrow {
  width: 100%;
  max-width: var(--measure-wide);
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
  column-gap: clamp(12px, 2vw, 28px);
}
.rensora-site .r-brand { display: flex; align-items: center; flex: 0 0 auto; }
.rensora-site .r-brand img { height: clamp(24px, 2.6vw, 30px); width: auto; display: block; }

.rensora-site .r-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-left: auto;
  border-radius: var(--radius);
  border: 1px solid #E0E6F0;
  background: var(--surface);
  cursor: pointer;
}
.rensora-site .r-burger[data-open] { background: #F1F5FB; }

.rensora-site .r-nav {
  flex: 1 1 min(100%, 430px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: clamp(12px, 2vw, 30px);
  row-gap: 6px;
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 600;
  color: var(--ink-strong);
  list-style: none;
  margin: 0;
  padding: 0;
}
.rensora-site .r-navitem { position: relative; list-style: none; }

.rensora-site .r-navlink,
.rensora-site .r-navtoggle {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 2px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: var(--ink-strong);
  cursor: pointer;
}
.rensora-site .r-navlink:hover,
.rensora-site .r-navtoggle:hover { color: var(--blue); }
.rensora-site .r-navlink[aria-current="page"] { color: var(--blue); }

.rensora-site .r-navtoggle svg { transition: transform var(--dur-fast) var(--ease-standard); }
.rensora-site .r-navtoggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.rensora-site .r-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 70;
  min-width: 196px;
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-menu);
  padding: 8px;
  list-style: none;
  margin: 0;
}
.rensora-site .r-menu[data-open] { display: block; }
.rensora-site .r-menu li { list-style: none; }
.rensora-site .r-menulink {
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink-strong);
  font-weight: 600;
}
.rensora-site .r-menulink:hover { background: #F1F5FB; color: var(--blue); }

.rensora-site .r-headcta {
  font-family: var(--font-primary);
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--ink-inverse);
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 15px);
  padding: 11px 20px;
  border-radius: var(--radius);
  min-height: 44px;
  box-shadow: var(--shadow-xs);
  transition: background var(--dur-fast) var(--ease-standard);
}
.rensora-site .r-headcta:hover { background: var(--blue-dark); }

/* Mobile drawer */
@media (max-width: 899px) {
  .rensora-site .r-headrow { row-gap: 0; }
  .rensora-site .r-burger { display: inline-flex; }
  .rensora-site .r-nav {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 0 4px;
    margin-top: 8px;
    border-top: 1px solid var(--border-subtle);
    font-size: 16px;
  }
  .rensora-site .r-nav[data-open] { display: flex; }
  .rensora-site .r-headcta { font-family: var(--font-primary); display: none; }
  .rensora-site .r-nav[data-open] ~ .r-headcta {
  font-family: var(--font-primary);
    display: inline-flex;
    flex: 1 1 100%;
    font-size: 16px;
    padding: 14px 20px;
    margin: 4px 0 10px;
    min-height: 52px;
  }
  .rensora-site .r-menu {
    position: static;
    width: 100%;
    background: #F7F9FC;
    border-radius: var(--radius);
    padding: 6px;
    margin-top: 6px;
    box-shadow: none;
  }
}

/* --------------------------------------------------------------------------
   13. SITE FOOTER
   Markup lives in footer.php.
   -------------------------------------------------------------------------- */
.rensora-site .r-footer {
  background: var(--navy);
  color: var(--ink-inverse);
  padding: clamp(56px, 7vw, 88px) 0 clamp(28px, 3vw, 40px);
}
.rensora-site .r-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 64px);
  align-items: flex-start;
}
.rensora-site .r-footer__brand { flex: 1 1 260px; min-width: 0; }
.rensora-site .r-footer__brand img { height: 32px; width: auto; display: block; }
.rensora-site .r-footer__tagline {
  font-family: var(--font-primary);
  margin-top: clamp(18px, 2.2vw, 26px);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink-inverse);
  max-width: 24ch;
}
.rensora-site .r-footer__nav {
  flex: 2.2 1 520px;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.rensora-site .r-footcol { list-style: none; margin: 0; padding: 0; }
.rensora-site .r-foothead {
  font-family: var(--font-primary);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-inverse-muted);
}
.rensora-site .r-footlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  list-style: none;
  padding: 0;
}
.rensora-site .r-footlist li { list-style: none; }
.rensora-site .r-footlink { font-family: var(--font-primary); font-size: 15px; color: var(--ink-inverse); min-height: 24px; display: inline-block; }
.rensora-site .r-footlink:hover { color: var(--cyan); }
.rensora-site .r-footnote { font-family: var(--font-primary); font-size: 13.5px; line-height: 1.5; color: var(--ink-inverse-muted); margin: 0; }

.rensora-site .r-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: clamp(36px, 4.5vw, 56px);
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.rensora-site .r-socials { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.rensora-site .r-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .2);
  transition: background var(--dur-fast) var(--ease-standard);
}
.rensora-site .r-social:hover { background: rgba(255, 255, 255, .1); }
.rensora-site .r-copyright { font-family: var(--font-primary); flex: 1 1 220px; font-size: 13.5px; color: var(--ink-inverse-muted); margin: 0; }
.rensora-site .r-legals { display: flex; flex-wrap: wrap; gap: clamp(14px, 2vw, 26px); margin-left: auto; list-style: none; padding: 0; }
.rensora-site .r-legals li { list-style: none; }
.rensora-site .r-legal { font-family: var(--font-primary); font-size: 13.5px; color: var(--ink-inverse-muted); }
.rensora-site .r-legal:hover { color: var(--ink-inverse); }
.rensora-site .r-footer__meta { font-family: var(--font-primary); margin: clamp(18px, 2vw, 24px) 0 0; font-size: 13px; color: var(--ink-inverse-muted); }

/* --------------------------------------------------------------------------
   14. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .rensora-site .r-mtrack {
    animation: none;
    width: auto;
    padding-left: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(28px, 5vw, 64px);
  }
  .rensora-site .r-pane,
.rensora-site .r-feat,
.rensora-site .r-btn,
.rensora-site .r-card--link,
.rensora-site .r-navtoggle svg { transition: none; }
  .rensora-site .r-card--link:hover { transform: none; }
  .rensora-site * { scroll-behavior: auto !important; }
}
