/* ─────────────────────────────────────────────────────────────
   0. CSS CUSTOM PROPERTIES (Design Tokens)
───────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --rg-black:            #000000;
  --rg-black-90:         rgba(0, 0, 0, 0.90);
  --rg-black-80:         rgba(0, 0, 0, 0.80);
  --rg-drawer-bg:        #0a0a0a;
  --rg-drawer-border:    rgba(255, 255, 255, 0.07);
  --rg-white:            #ffffff;
  --rg-white-60:         rgba(255, 255, 255, 0.60);
  --rg-white-40:         rgba(255, 255, 255, 0.40);
  --rg-white-10:         rgba(255, 255, 255, 0.10);
  --rg-white-05:         rgba(255, 255, 255, 0.05);
  --rg-accent:           #0ea5e9;       /* sky-500 */
  --rg-accent-hover:     #38bdf8;       /* sky-400 */
  --rg-accent-muted:     rgba(14, 165, 233, 0.15);
  --rg-footer-bg:        #040f1a;
  --rg-footer-border:    rgba(14, 165, 233, 0.15);
  --rg-footer-text:      rgba(255, 255, 255, 0.55);
  --rg-footer-heading:   rgba(255, 255, 255, 0.90);

  /* Typography */
  --rg-font-display:     'Syne', sans-serif;
  --rg-font-body:        'DM Sans', sans-serif;

  /* Sizing */
  --rg-navbar-h:         72px;
  --rg-navbar-h-mob:     60px;
  --rg-drawer-max:       1400px;

  /* Transitions */
  --rg-ease:             cubic-bezier(0.16, 1, 0.3, 1);
  --rg-ease-out:         cubic-bezier(0.0, 0.0, 0.2, 1);
  --rg-trans-fast:       0.18s;
  --rg-trans-mid:        0.30s;
  --rg-trans-slow:       0.45s;

  /* Z-index stack */
  --rg-z-navbar:         1000;
  --rg-z-drawer:         999;
  --rg-z-overlay:        998;
  --rg-z-mobile:         1001;

    /* rg-about */
  --rg-home-about-bg:  #ffffff;
  --rg-home-about-fg:  #0a0f1e;
  --rg-home-about-muted: rgba(10,15,30,0.55);
  --rg-stat-border:    rgba(14,165,233,0.20);
  --rg-ls-blue:        #051525;
  --rg-ls-teal:        #021c1c;
  --rg-ls-slate:       #080c14;
  --rg-values-bg:      #ffffff;
  --rg-cta-bg:         #ffffff;
  --rg-cta-fg:         #04090f;
  --rg-cta-muted:      rgba(4,9,15,0.55);
  --rg-card-radius:    16px;
  --rg-section-gap:    clamp(80px, 10vw, 140px);

  --rg-about-hero-h:        110svh;
  --rg-about-section-py:    clamp(80px, 10vw, 140px);
  --rg-timeline-dot-size:   18px;
  --rg-timeline-line-color: rgba(14, 165, 233, 0.25);


  /* rg-bussiness */
  --rg-biz-hero-h:        100svh;
  --rg-biz-section-py:    clamp(80px, 10vw, 140px);
  --rg-biz-card-radius:   4px;
  --rg-biz-units-bg:      #ffffff;
  --rg-biz-card-overlay:  rgba(0, 0, 0, 0.52);
  --rg-biz-card-hover-ov: rgba(0, 0, 0, 0.18);
  --rg-biz-stat-bg:       #f7f8fa;
  --rg-biz-stat-border:   rgba(14, 165, 233, 0.18);
  --rg-biz-vision-bg:     #ffffff;
  --rg-biz-vision-fg:     #09090b;
  --rg-biz-vision-muted:  rgba(9, 9, 11, 0.52);
  --rg-biz-cta-bg:        #f0f8ff;
  --rg-biz-cta-fg:        #060c14;
  --rg-biz-cta-muted:     rgba(6, 12, 20, 0.55);
  --rg-biz-eyebrow-dark:  rgba(14, 165, 233, 0.90);


  /* ── Component-local tokens ── */
  --rp-section-bg:      #03080f;
  --rp-pillar-bg:       rgba(255, 255, 255, 0.03);
  --rp-pillar-border:   rgba(255, 255, 255, 0.07);
  --rp-pillar-hover-bg: rgba(14, 165, 233, 0.05);
  --rp-pillar-radius:   2px;
  --rp-band-bg:         rgba(14, 165, 233, 0.04);
  --rp-band-border:     rgba(14, 165, 233, 0.18);
  --rp-marquee-color:   rgba(255, 255, 255, 0.12);
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Optional: hide track & thumb completely */
::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}

body {
    margin: 0;
    background: var(--rg-white);
    color: var(--rg-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none !important;
}

/* ─────────────────────────────────────────────────────────────
   1. GLOBAL RESETS (scoped to rg elements)
───────────────────────────────────────────────────────────── */
.rg-header *,
.rg-footer *,
.rg-mobile-drawer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rg-header a,
.rg-footer a,
.rg-mobile-drawer a {
  text-decoration: none;
  color: var(--rg-white);
}

.rg-header ul,
.rg-footer ul {
  list-style: none;
}

.rg-no-scroll {
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────
   2. HEADER SHELL
───────────────────────────────────────────────────────────── */
.rg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--rg-z-navbar);
  font-family: var(--rg-font-body);
}

/* ─────────────────────────────────────────────────────────────
   3. NAVBAR
───────────────────────────────────────────────────────────── */
.rg-navbar {
  position: relative;
  z-index: var(--rg-z-navbar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--rg-navbar-h);
  padding: 0 clamp(20px, 4vw, 60px);
  background: transparent;
  /* background: var(--rg-black); */
  transition:
    background var(--rg-trans-mid) var(--rg-ease),
    box-shadow var(--rg-trans-mid) var(--rg-ease);
}


.rg-navbar--contact .rg-nav-link,
.rg-navbar--contact .rg-logo-text,
.rg-navbar--contact .rg-hb-line {
  color: var(--rg-black);
}

.rg-navbar--contact .rg-cta-btn{
  color: var(--rg-black);
  border: 1px solid var(--rg-black);
}

/* Solid state (scrolled OR drawer open) */
.rg-navbar--solid {
  background: #040f1a;
  box-shadow: 0 1px 0 var(--rg-white-10);
  
}


.rg-navbar--solid .rg-nav-link,
.rg-navbar--solid .rg-logo-text,
.rg-navbar--solid .rg-cta-btn,
.rg-navbar--solid .rg-hb-line {
  color: var(--rg-white);
}




/* ── Logo ──────────────────────────────────────────────────── */
.rg-nav-logo {
  flex: 0 0 auto;
}

.rg-logo-link {
  display: inline-flex;
  align-items: center;
}

.rg-logo-text {
  font-family: var(--rg-font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--rg-white);
  line-height: 1;
  transition: opacity var(--rg-trans-fast) ease;
}

.rg-logo-link:hover .rg-logo-text {
  opacity: 0.75;
}

/* ── Center nav links ──────────────────────────────────────── */
.rg-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.rg-nav-item {
  position: relative;
}

.rg-nav-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--rg-font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--rg-white-60);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color var(--rg-trans-fast) ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.rg-nav-link:hover,
.rg-nav-item--active > .rg-nav-link,
.rg-nav-link.rg-active {
  color: var(--rg-accent);
}

/* Animated underline bar */
.rg-nav-link-bar {
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--rg-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--rg-trans-mid) var(--rg-ease);
}

.rg-nav-link:hover .rg-nav-link-bar,
.rg-nav-item--active > .rg-nav-link .rg-nav-link-bar,
.rg-nav-link.rg-active .rg-nav-link-bar {
  transform: scaleX(1);
}

/* ── Right CTA ─────────────────────────────────────────────── */
.rg-nav-cta {
  flex: 0 0 auto;
}

.rg-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rg-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rg-white);
  background: transparent;
  border: 1px solid var(--rg-white-40);
  border-radius: 2px;
  padding: 8px 22px;
  transition:
    background var(--rg-trans-fast) ease,
    border-color var(--rg-trans-fast) ease,
    color var(--rg-trans-fast) ease;
}

.rg-cta-btn:hover,
.rg-cta-btn.rg-active {
  background: var(--rg-white);
  /* border-color: var(--rg-white); */
  color: var(--rg-black);
}

/* ── Hamburger (hidden desktop) ────────────────────────────── */
.rg-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.rg-hb-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--rg-white);
  transition:
    transform var(--rg-trans-mid) var(--rg-ease),
    opacity var(--rg-trans-fast) ease,
    width var(--rg-trans-mid) var(--rg-ease);
  transform-origin: center;
}

/* Hamburger → X animation */
.rg-hamburger--active .rg-hb-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.rg-hamburger--active .rg-hb-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.rg-hamburger--active .rg-hb-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────
   4. MEGA DRAWER (Desktop)
───────────────────────────────────────────────────────────── */
.rg-mega-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: var(--rg-z-drawer);
  background: var(--rg-drawer-bg);
  border-bottom: 1px solid var(--rg-drawer-border);
  overflow: hidden;

  /* Closed state */
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height var(--rg-trans-slow) var(--rg-ease),
    opacity var(--rg-trans-mid) ease,
    transform var(--rg-trans-slow) var(--rg-ease);
}

.rg-mega-drawer.rg-drawer--open {
  max-height: 420px;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.rg-mega-inner {
  max-width: var(--rg-drawer-max);
  margin: 0 auto;
  padding: 52px clamp(20px, 4vw, 60px) 48px;
  position: relative;
}

/* ── Panels ─────────────────────────────────────────────────── */
.rg-mega-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
}

.rg-mega-panel.rg-panel--active {
  display: grid;
  animation: rgPanelIn var(--rg-trans-mid) var(--rg-ease) both;
}

@keyframes rgPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* ── Columns ────────────────────────────────────────────────── */
.rg-mega-col {
  border-left: 1px solid var(--rg-drawer-border);
  padding-left: 32px;
}

.rg-mega-col:first-child {
  border-left: none;
  padding-left: 0;
}

.rg-mega-heading {
  display: block;
  font-family: var(--rg-font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 20px;
}

.rg-mega-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rg-mega-list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rg-font-body);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--rg-white-60);
  padding: 7px 0;
  transition: color var(--rg-trans-fast) ease;
  position: relative;
}

.rg-mega-list li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--rg-accent);
  transition: width var(--rg-trans-mid) var(--rg-ease);
  vertical-align: middle;
}

.rg-mega-list li a:hover {
  color: var(--rg-white);
}

.rg-mega-list li a:hover::before {
  width: 16px;
}

/* ─────────────────────────────────────────────────────────────
   5. MOBILE OVERLAY
───────────────────────────────────────────────────────────── */
.rg-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--rg-z-overlay);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--rg-trans-mid) ease;
}

.rg-mob-overlay--active {
  opacity: 1;
  pointer-events: all;
}

/* ─────────────────────────────────────────────────────────────
   6. MOBILE DRAWER
───────────────────────────────────────────────────────────── */
.rg-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: var(--rg-z-mobile);
  width: min(380px, 88vw);
  background: var(--rg-black);
  border-left: 1px solid var(--rg-white-10);
  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Closed: slide right */
  transform: translateX(100%);
  transition: transform var(--rg-trans-slow) var(--rg-ease);
}

.rg-mob-drawer--open {
  transform: translateX(0);
}

/* ── Drawer header ────────────────────────────────────────── */
.rg-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--rg-navbar-h-mob);
  border-bottom: 1px solid var(--rg-white-10);
  flex-shrink: 0;
}

.rg-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--rg-white-05);
  border: 1px solid var(--rg-white-10);
  border-radius: 50%;
  color: var(--rg-white);
  cursor: pointer;
  transition:
    background var(--rg-trans-fast) ease,
    border-color var(--rg-trans-fast) ease;
}

.rg-mobile-close:hover {
  background: var(--rg-white-10);
  border-color: var(--rg-white-40);
}

/* ── Mobile nav ────────────────────────────────────────────── */
.rg-mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--rg-white-10) transparent;
}

.rg-mobile-nav::-webkit-scrollbar {
  width: 4px;
}
.rg-mobile-nav::-webkit-scrollbar-track {
  background: transparent;
}
.rg-mobile-nav::-webkit-scrollbar-thumb {
  background: var(--rg-white-10);
  border-radius: 2px;
}

.rg-mob-item {
  border-bottom: 1px solid var(--rg-white-05);
}

.rg-mob-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 24px;
  font-family: var(--rg-font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--rg-white-60);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--rg-trans-fast) ease;
}

.rg-mob-trigger:hover,
.rg-mob-trigger.rg-active,
.rg-mob-trigger--open {
  color: var(--rg-white);
}

.rg-mob-trigger.rg-mob-direct {
  /* no chevron, just a link-like button */
  pointer-events: auto;
}

.rg-mob-chevron {
  flex-shrink: 0;
  color: var(--rg-white-40);
  transition: transform var(--rg-trans-mid) var(--rg-ease);
}

.rg-mob-trigger--open .rg-mob-chevron {
  transform: rotate(180deg);
}

/* ── Accordion submenu ──────────────────────────────────────── */
.rg-mob-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--rg-trans-slow) var(--rg-ease);
  background: var(--rg-white-05);
}

.rg-mob-submenu a {
  display: block;
  font-family: var(--rg-font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--rg-white-40);
  padding: 12px 24px 12px 36px;
  border-bottom: 1px solid var(--rg-white-05);
  transition: color var(--rg-trans-fast) ease, padding-left var(--rg-trans-fast) ease;
}

.rg-mob-submenu a:last-child {
  border-bottom: none;
}

.rg-mob-submenu a:hover {
  color: var(--rg-white);
  padding-left: 42px;
}

/* ─────────────────────────────────────────────────────────────
   7. FOOTER
───────────────────────────────────────────────────────────── */
.rg-footer {
  background: var(--rg-footer-bg);
  border-top: 1px solid var(--rg-footer-border);
  font-family: var(--rg-font-body);
  color: var(--rg-footer-text);
}

.rg-footer-inner {
  max-width: var(--rg-drawer-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ── Footer Top ─────────────────────────────────────────────── */
.rg-footer-top {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 64px;
  padding: 22px 0 20px;
  align-items: start;
}

/* ── Brand block ─────────────────────────────────────────────── */
.rg-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rg-footer-logo {
  display: inline-flex;
}

.rg-footer-logo-text {
  font-family: var(--rg-font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--rg-white);
}

.rg-footer-tagline {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--rg-white-40);
  letter-spacing: 0.02em;
}

.rg-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.rg-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rg-white-10);
  color: var(--rg-white-40);
  transition:
    color var(--rg-trans-fast) ease,
    border-color var(--rg-trans-fast) ease,
    background var(--rg-trans-fast) ease;
}

.rg-social-link:hover {
  color: var(--rg-white);
  border-color: var(--rg-accent);
  background: var(--rg-accent-muted);
}

/* ── Footer columns ─────────────────────────────────────────── */
.rg-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.rg-footer-col-heading {
  font-family: var(--rg-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rg-footer-heading);
  margin-bottom: 20px;
}

.rg-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rg-footer-col-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--rg-footer-text);
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  transition:
    color var(--rg-trans-fast) ease,
    border-color var(--rg-trans-fast) ease;
  display: inline-block;
}

.rg-footer-col-links a:hover {
  color: var(--rg-white);
  border-bottom-color: var(--rg-accent);
}

/* ── Subscribe block ────────────────────────────────────────── */
.rg-footer-subscribe {
  min-width: 240px;
}

.rg-footer-sub-text {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--rg-white-40);
  line-height: 1.6;
  margin-bottom: 18px;
  margin-top: -2px;
}

.rg-footer-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--rg-white-10);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color var(--rg-trans-fast) ease;
}

.rg-footer-form:focus-within {
  border-color: var(--rg-accent);
}

.rg-footer-email-input {
  flex: 1;
  background: var(--rg-white-05);
  border: none;
  outline: none;
  padding: 10px 14px;
  font-family: var(--rg-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--rg-white);
  min-width: 0;
}

.rg-footer-email-input::placeholder {
  color: var(--rg-white-40);
}

.rg-footer-sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  background: var(--rg-accent);
  border: none;
  color: var(--rg-white);
  cursor: pointer;
  transition:
    background var(--rg-trans-fast) ease;
}

.rg-footer-sub-btn:hover {
  background: var(--rg-accent-hover);
}

/* ── Divider ────────────────────────────────────────────────── */
.rg-footer-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--rg-footer-border) 15%,
    var(--rg-footer-border) 85%,
    transparent
  );
}

/* ── Footer bottom ──────────────────────────────────────────── */
.rg-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.rg-footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--rg-white-40);
  letter-spacing: 0.02em;
}

.rg-footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rg-footer-legal a {
  font-size: 12px;
  font-weight: 300;
  color: var(--rg-white-40);
  transition: color var(--rg-trans-fast) ease;
}

.rg-footer-legal a:hover {
  color: var(--rg-white);
}

.rg-footer-legal span {
  color: var(--rg-white-10);
}

/* ─────────────────────────────────────────────────────────────
   8. RESPONSIVE — Tablet (<1100px): compress footer cols
───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .rg-footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 0 48px;

  }
  
}

/* ─────────────────────────────────────────────────────────────
   9. RESPONSIVE — Mobile (<900px): swap to mobile nav
───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* ── Navbar tweaks ── */
  .rg-navbar {
    height: var(--rg-navbar-h-mob);
    padding: 0 20px;
    background: var(--rg-black); /* always solid on mobile */
  }

  .rg-navbar--solid {
    background: var(--rg-black);
  }

  .rg-nav-links,
  .rg-nav-cta {
    display: none;
  }

  .rg-hamburger {
    display: flex;
  }

  /* ── Mega drawer hidden on mobile ── */
  .rg-mega-drawer {
    display: none;
  }

   .rg-footer-brand{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* ─────────────────────────────────────────────────────────────
   10. RESPONSIVE — Small mobile (<480px)
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .rg-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .rg-footer-legal {
    gap: 8px;
  }
  .rg-footer-col{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .rg-footer-subscribe{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .rg-footer-bottom{
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────
   11. ACCESSIBILITY — Reduced motion
───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   12. FOCUS STYLES (keyboard nav)
───────────────────────────────────────────────────────────── */
.rg-nav-link:focus-visible,
.rg-cta-btn:focus-visible,
.rg-hamburger:focus-visible,
.rg-mobile-close:focus-visible,
.rg-mob-trigger:focus-visible,
.rg-mob-submenu a:focus-visible,
.rg-mega-list li a:focus-visible,
.rg-footer-col-links a:focus-visible,
.rg-social-link:focus-visible,
.rg-footer-sub-btn:focus-visible {
  outline: 2px solid var(--rg-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────────
   13. PAGE BODY OFFSET (so content isn't hidden under navbar)
───────────────────────────────────────────────────────────── */
body {
  padding-top: var(--rg-navbar-h);
}

@media (max-width: 900px) {
  body {
    padding-top: var(--rg-navbar-h-mob);
  }
}

















/* Below is the index.html css */

/* ══════════════════════════════════════════════════════
   GLOBAL UTILITIES
══════════════════════════════════════════════════════ */
.rg-label-line {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--rg-accent);
  vertical-align: middle;
  margin-right: 10px;
  flex-shrink: 0;
}
.rg-label-line-dark {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--rg-accent);
  vertical-align: middle;
  margin-right: 10px;
  flex-shrink: 0;
}

/* ── SHARED BUTTON SYSTEM ────────────────────────────── */
.rg-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rg-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid currentColor;
  padding: 14px 28px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: color var(--rg-trans-mid) var(--rg-ease),
              border-color var(--rg-trans-mid) var(--rg-ease);
}
.rg-btn__fill {
  position: absolute;
  inset: 0;
  background: var(--rg-accent);
  transform: translateX(-101%);
  transition: transform 0.45s var(--rg-ease);
  z-index: 0;
  border-radius: 2px;
}
.rg-btn:hover .rg-btn__fill { transform: translateX(0); }
.rg-btn__text,
.rg-btn__arrow { position: relative; z-index: 1; }
.rg-btn__arrow { display: flex; align-items: center; }
.rg-btn__arrow svg {
  transition: transform 0.3s var(--rg-ease);
}
.rg-btn:hover .rg-btn__arrow svg { transform: translateX(4px); }

/* Hero button */
.rg-btn--hero {
  color: var(--rg-white);
  border-color: var(--rg-white-60);
}
.rg-btn--hero:hover { color: var(--rg-white); border-color: var(--rg-accent); }

/* Outline (dark bg) */
.rg-btn--outline {
  color: var(--rg-home-about-fg, #0a0f1e);
  border-color: rgba(10,15,30,0.25);
  margin-top: 2.5rem;
}
.rg-btn--outline:hover { color: var(--rg-white); border-color: var(--rg-accent); }

/* CTA button */
.rg-btn--cta {
  color: var(--rg-cta-fg, #04090f);
  border-color: rgba(4,9,15,0.20);
}
.rg-btn--cta:hover { color: var(--rg-white); border-color: var(--rg-accent); }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.rg-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--rg-ease), transform 0.75s var(--rg-ease);
}
.rg-reveal--delay-1 { transition-delay: 0.12s; }
.rg-reveal--delay-2 { transition-delay: 0.24s; }
.rg-reveal--delay-3 { transition-delay: 0.36s; }
.rg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════
   SECTION 1 · HERO
══════════════════════════════════════════════════════ */
.rg-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--rg-black);
  /* stacking / overlap handled by next section */
  z-index: 1;
  margin-top: -100px;
  padding-top: 100px;
}

/* Slider */
.rg-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rg-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--rg-ease), transform 6s linear;
}
.rg-hero__slide--active {
  opacity: 1;
  transform: scale(1.00);
}
.rg-hero__slide--leaving {
  opacity: 0;
  transform: scale(1.04);
}

.rg-hero__slide:nth-child(1) { background-image: url('/static/images/rg/slide1.jpg'); }
.rg-hero__slide:nth-child(2) { background-image: url('/static/images/rg/slide2.jpg'); }
.rg-hero__slide:nth-child(3) { background-image: url('/static/images/rg/slide3.jpg'); }
.rg-hero__slide:nth-child(4) { background-image: url('/static/images/rg/slide4.jpg'); }

/* Parallax wrapper */
.rg-hero__parallax {
  position: absolute;
  inset: 0;
  will-change: transform;
  z-index: 1;
}

/* Overlays */
.rg-hero__overlay { position: absolute; inset: 0; pointer-events: none; }
.rg-hero__overlay--base {
  background: rgba(0,0,0,0.52);
}
.rg-hero__overlay--bottom {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.45) 35%,
    transparent 65%
  );
}
.rg-hero__overlay--left {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    transparent 55%
  );
}

/* Inner */
.rg-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 6vw, 100px) clamp(80px, 12vh, 140px);
}
.rg-hero__content { max-width: 780px; padding-bottom: 100px; }

/* Eyebrow */
.rg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--rg-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: rgFadeUp 0.9s 0.2s var(--rg-ease) forwards;
}
.rg-hero__eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--rg-accent);
  margin-right: 12px;
}

/* Title */
.rg-hero__title {
  font-family: var(--rg-font-display);
  font-size: clamp(2.2rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--rg-white);
  margin: 0 0 1.75rem;
  letter-spacing: -0.02em;
}
.rg-hero__title-line {
  display: block;
  overflow: hidden;
}
.rg-hero__title-line::after {
  content: attr(data-text);
}
/* Each line animates in */
.rg-hero__title-line { opacity: 0; transform: translateY(40px); animation: rgFadeUp 1s var(--rg-ease) forwards; }
.rg-hero__title-line[data-delay="0"] { animation-delay: 0.35s; }
.rg-hero__title-line[data-delay="1"] { animation-delay: 0.50s; }
.rg-hero__title-line[data-delay="2"] { animation-delay: 0.65s; }
.rg-hero__title-line--accent { color: var(--rg-accent); }

/* Desc */
.rg-hero__desc {
  font-family: var(--rg-font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: var(--rg-white-60);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: rgFadeUp 0.9s 0.75s var(--rg-ease) forwards;
}

/* Actions */
.rg-hero__actions {
  opacity: 0;
  animation: rgFadeUp 0.9s 0.9s var(--rg-ease) forwards;
}

/* Dots */
.rg-hero__dots {
  position: absolute;
  bottom: clamp(28px, 5vh, 52px);
  right: clamp(24px, 5vw, 64px);
  display: flex;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: rgFadeIn 1s 1.2s var(--rg-ease) forwards;
}
.rg-hero__dot {
  position: relative;
  width: 32px;
  height: 2px;
  background: var(--rg-white-10);
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  border-radius: 2px;
  transition: width 0.3s var(--rg-ease);
}
.rg-hero__dot--active { width: 56px; }
.rg-hero__dot-progress {
  position: absolute;
  inset: 0;
  background: var(--rg-accent);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}
.rg-hero__dot--active .rg-hero__dot-progress {
  animation: rgDotProgress 4.5s linear forwards;
}

/* Scroll cue */
.rg-hero__scroll-cue {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 5vh, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: rgFadeIn 1s 1.4s var(--rg-ease) forwards;
}
.rg-hero__scroll-label {
  font-family: var(--rg-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-white-40);
  writing-mode: vertical-rl;
}
.rg-hero__scroll-bar {
  width: 1px;
  height: 48px;
  background: var(--rg-white-10);
  overflow: hidden;
  border-radius: 1px;
}
.rg-hero__scroll-bar-inner {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rg-accent);
  transform: translateY(-100%);
  animation: rgScrollBar 2s 1.6s var(--rg-ease) infinite;
}


/* ══════════════════════════════════════════════════════
   SECTION 2 · HOME ABOUT
══════════════════════════════════════════════════════ */
.rg-home-about {
  position: relative;
  background: #ffffff;
  z-index: 2; /* overlaps hero */
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 100px);
}

.rg-home-about__container { max-width: 1240px; margin: 0 auto; }

.rg-home-about__label {
  display: inline-flex;
  align-items: center;
  font-family: var(--rg-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 2rem;
}

.rg-home-about__heading {
  font-family: var(--rg-font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 clamp(24px, 3vw, 40px);
  max-width: 820px;
}

.rg-home-about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 768px) {
  .rg-home-about__body { grid-template-columns: 1fr; }
}

.rg-home-about__copy p {
  font-family: var(--rg-font-body);
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  color: rgba(10,15,30,0.65);
  line-height: 1.82;
  font-weight: 300;
  margin: 0 0 1.4rem;
}

/* Stats */
.rg-home-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.12);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .rg-home-about__stats { grid-template-columns: 1fr; }
}
.rg-stat {
  background: #ffffff;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  text-align: center;
}
.rg-stat__num {
  font-family: var(--rg-font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1;
  letter-spacing: -0.03em;
}
.rg-stat__unit {
  font-family: var(--rg-font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--rg-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rg-stat__label {
  display: block;
  font-family: var(--rg-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(10,15,30,0.45);
  margin-top: 8px;
}


/* ══════════════════════════════════════════════════════
   SECTION 3 · LEGACY SLIDER
══════════════════════════════════════════════════════ */
.header-slider{
  padding: 0 clamp(44px, 9vw, 150px);
}
.rg-legacy-slider {
  position: relative;
  z-index: 2;
  overflow: hidden;
  user-select: none;
  background: white;
}

.rg-legacy-slider__track {
  display: flex;
  transition: none; /* JS handles transitions */
}

/* Each slide fills viewport */
.rg-legacy-slider__slide {
  min-width: 100%;
  padding: 0 clamp(24px, 6vw, 100px) clamp(24px, 6vw, 100px);
  box-sizing: border-box;
  transition: background 0.6s var(--rg-ease);
}
.rg-ls-slide--blue  { background: #051525; }
.rg-ls-slide--teal  { background: #021c1c; }
.rg-ls-slide--slate { background: #080c14; }

.rg-ls-slide__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 126px);
  align-items: center;
}
@media (max-width: 768px) {
  .rg-ls-slide__inner { grid-template-columns: 1fr; }
  .rg-ls-slide__right { order: -1; }
}

.rg-ls-slide__index {
  font-family: var(--rg-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--rg-accent);
  margin-bottom: 1.5rem;
  display: block;
}
.rg-ls-slide__title {
  font-family: var(--rg-font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--rg-black);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.rg-ls-slide__desc {
  font-family: var(--rg-font-body);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: var(--rg-black-60);
  line-height: 1.8;
  font-weight: 300;
  margin: 0 0 2.5rem;
  max-width: 440px;
}
.rg-ls-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rg-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--rg-accent);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(14,165,233,0.35);
  transition: gap 0.3s var(--rg-ease), border-color 0.3s;
}
.rg-ls-slide__cta:hover { gap: 14px; border-color: var(--rg-accent); }
.rg-ls-slide__cta svg { transition: transform 0.3s var(--rg-ease); }
.rg-ls-slide__cta:hover svg { transform: translateX(3px); }

/* Image right side */
.rg-ls-slide__right { }
.rg-ls-slide__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.rg-ls-slide__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.rg-ls-slide__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.0);
  transition: transform 0.6s var(--rg-ease);
}
.rg-legacy-slider__slide.is-active .rg-ls-slide__img-wrap img { transform: scale(1.04); }

/* Controls */
.rg-legacy-slider__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(44px, 7vw, 130px) clamp(40px, 5vw, 64px);
  background: #ffffff; /* defaults, JS updates */
  transition: background 0.6s var(--rg-ease);
}
.rg-ls-ctrl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--rg-black);
  background: transparent;
  color: var(--rg-black-60);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.rg-ls-ctrl:hover {
  border-color: var(--rg-accent);
  color: var(--rg-accent);
  background: var(--rg-accent-muted);
}
.rg-ls-counter {
  font-family: var(--rg-font-display);
  font-size: 0.8rem;
  color: var(--rg-black-60);
  letter-spacing: 0.06em;
  min-width: 56px;
  text-align: center;
}
.rg-ls-counter__sep { margin: 0 4px; color: var(--rg-black); }
.rg-ls-counter__total { color: var(--rg-black); }

.rg-ls-progress {
  flex: 1;
  height: 1px;
  background: var(--rg-black);
  border-radius: 1px;
  overflow: hidden;
  margin-left: 8px;
}
.rg-ls-progress__bar {
  height: 100%;
  background: var(--rg-accent);
  border-radius: 1px;
  width: 33.33%;
  transform-origin: left;
  transition: width 0.6s var(--rg-ease);
}


/* ══════════════════════════════════════════════════════
   SECTION 4 · VALUES GRID
══════════════════════════════════════════════════════ */
.rg-values {
  background: white;
  padding: clamp(40px, 10vw, 70px) clamp(24px, 5vw, 40px);
  z-index: 2;
  position: relative;
}

.rg-values__header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(8px, 1vw, 20px);
  max-width: 1240px;
  margin: 0 auto clamp(10px, 2vw, 12px);
  flex-wrap: wrap;
}
.rg-values__header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 0.5em;
}

.rg-values__eyebrow {
  font-family: var(--rg-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-accent);
}
.rg-values__heading {
  font-family: var(--rg-font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--rg-black);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  margin-top: 0;
}

/* Asymmetric masonry grid */
.rg-values__grid {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
@media (max-width: 900px) {
  .rg-values__grid { grid-template-columns: 1fr 1fr; }
  .rg-values__card--tall { grid-row: span 1; }
  .rg-values__card--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  /* .rg-values__grid { grid-template-columns: 1fr; } */
  .rg-values__card--wide { grid-column: span 1; }
}

/* Cards */
.rg-values__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  cursor: pointer;
  background: #111;
  border: 1px solid rgba(128, 128, 128, 0.385);
}
.rg-values__card--tall { grid-row: span 2; min-height: 520px; }
.rg-values__card--wide { grid-column: span 2; min-height: 280px; }

/* Video background */
.rg-values__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--rg-ease), filter 0.65s;
  transform: scale(1.0);
  filter: brightness(0.6) saturate(0.8);
}
.rg-values__card:hover .rg-values__video {
  transform: scale(1.06);
  filter: brightness(0.75) saturate(1.0);
}

/* Overlay */
.rg-values__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.10) 100%
  );
  transition: opacity 0.4s;
  z-index: 1;
  opacity: 0;
}
.rg-values__card:hover .rg-values__card-overlay { opacity: 0.80; }

/* Card body */
.rg-values__card-body {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 32px);
}
.rg-values__card-tag {
  display: inline-block;
  font-family: var(--rg-font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 10px;
}
.rg-values__card-title {
  font-family: var(--rg-font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--rg-white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  transition: color 0.3s;
}
.rg-values__card:hover .rg-values__card-title { color: var(--rg-accent-hover); }
.rg-values__card-text {
  font-family: var(--rg-font-body);
  font-size: 0.85rem;
  color: var(--rg-white-60);
  line-height: 1.7;
  font-weight: 300;
  margin: 0 0 16px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--rg-ease), transform 0.4s var(--rg-ease);
}
.rg-values__card:hover .rg-values__card-text { opacity: 1; transform: translateY(0); }
.rg-values__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--rg-white-10);
  border-radius: 50%;
  color: var(--rg-white-60);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--rg-ease);
}
.rg-values__card:hover .rg-values__card-arrow {
  border-color: var(--rg-accent);
  color: var(--rg-accent);
  transform: rotate(45deg);
}


/* ══════════════════════════════════════════════════════
   SECTION 5 · CTA
══════════════════════════════════════════════════════ */
.rg-cta {
  position: relative;
  background: #ffffff;
  z-index: 2;
  overflow: hidden;
}
.rg-cta__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px;
}

.rg-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--rg-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 2rem;
}
.rg-cta__heading {
  font-family: var(--rg-font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  color: #04090f;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  max-width: 720px;
}
.rg-cta__subtext {
  font-family: var(--rg-font-body);
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  color: rgba(4,9,15,0.55);
  line-height: 1.8;
  font-weight: 300;
  max-width: 480px;
  margin: 0 0 1rem;
}

/* Decorative grid lines */
.rg-cta__grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.rg-cta__grid-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(14,165,233,0.06);
}
.rg-cta__grid-lines span:nth-child(1) { left: 25%; }
.rg-cta__grid-lines span:nth-child(2) { left: 50%; }
.rg-cta__grid-lines span:nth-child(3) { left: 75%; }
.rg-cta__grid-lines span:nth-child(4) { right: 12%; }


/* ══════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════ */
@keyframes rgFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rgDotProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes rgScrollBar {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rg-hero__inner {
    padding-bottom: clamp(60px, 10vh, 100px);
  }
  .rg-values__card-text { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .rg-hero__scroll-cue { display: none; }
  .rg-hero__dots { bottom: 20px; right: 20px; }
  .rg-legacy-slider__controls { flex-wrap: wrap; }
  .rg-ls-progress { display: none; }
  .rg-values__card{
    min-height: 200px;
    
  }
  .rg-values__card-body{
    padding-top: 5px;
    padding-bottom: 0px;
  }
  .rg-values__grid{
    gap: 6px;
  }
  .rg-values{
    padding-left: 5px;
    padding-right: 5px;
  }
  .rg-values__header{
    padding-left: 20px;
  }
  
}






















/* Below is the about page css */



/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.rg-container {
  /* width: 100%; */
  max-width: var(--rg-drawer-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.rg-label {
  display: inline-block;
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 16px;
}

.rg-label--light { color: var(--rg-accent-hover); }
.rg-label--dark  { color: var(--rg-accent); }

/* Ghost button */
.rg-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 12px 24px;
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: 4px;
  font-family: var(--rg-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--rg-accent);
  text-decoration: none;
  transition: border-color var(--rg-trans-mid) var(--rg-ease),
              color       var(--rg-trans-mid) var(--rg-ease),
              background  var(--rg-trans-mid) var(--rg-ease);
}
.rg-btn-ghost:hover {
  background: var(--rg-accent-muted);
  border-color: var(--rg-accent);
}


/* ══════════════════════════════════════════
   SCROLL REVEAL SYSTEM
══════════════════════════════════════════ */
.rg-reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s var(--rg-ease), transform 0.75s var(--rg-ease);
}
.rg-reveal-left {
  opacity: 0;
  transform: translateX(-64px);
  transition: opacity 0.80s var(--rg-ease), transform 0.80s var(--rg-ease);
}
.rg-reveal-right {
  opacity: 0;
  transform: translateX(64px);
  transition: opacity 0.80s var(--rg-ease), transform 0.80s var(--rg-ease);
}
.rg-timeline-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--rg-ease), transform 0.65s var(--rg-ease);
}

.rg-in-view {
  opacity: 1 !important;
  transform: none !important;
}

/* staggered delay helpers */
.rg-anim-delay-1 { transition-delay: 0.10s; }
.rg-anim-delay-2 { transition-delay: 0.22s; }
.rg-anim-delay-3 { transition-delay: 0.38s; }
.rg-anim-delay-4 { transition-delay: 0.48s; }

/* hero fade-up */
.rg-anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--rg-ease), transform 0.9s var(--rg-ease);
}
.rg-anim-fade-up.rg-anim-fired {
  opacity: 1;
  transform: none;
}
.rg-anim-delay-1.rg-anim-fade-up { transition-delay: 0.15s; }
.rg-anim-delay-2.rg-anim-fade-up { transition-delay: 0.32s; }
.rg-anim-delay-3.rg-anim-fade-up { transition-delay: 0.52s; }

/* ══════════════════════════════════════════
   SECTION 1 · HERO
══════════════════════════════════════════ */
.rg-about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.75; /* control visibility */
  filter: brightness(0.7) contrast(1.1);
}

.rg-about-hero {
  position: relative;
  height: var(--rg-about-hero-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background: var(--rg-black); */
  background: transparent;
  margin-top: -100px;
  padding-top: 50px;
}

/* Stacked scroll: next section slides up over hero */
.rg-about-story {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.rg-about-hero__parallax-bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%,
      rgba(14, 165, 233, 0.12) 0%,
      transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 80%,
      rgba(5, 21, 37, 0.8) 0%,
      transparent 70%),
    linear-gradient(135deg, #020d1a 0%, #040f1a 50%, #000 100%);
  will-change: transform;
}

/* Noise grain overlay */
.rg-about-hero__parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
  opacity: 0.5;
}

/* Grid lines decoration */
.rg-about-hero__parallax-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.rg-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events: none;
}

.rg-about-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding-inline: clamp(20px, 5vw, 60px);
}

.rg-about-hero__subtitle {
  display: inline-block;
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 20px;
}

.rg-about-hero__title {
  font-family: var(--rg-font-display);
  font-size: clamp(38px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--rg-white);
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.rg-about-hero__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.55);
  background: linear-gradient(90deg, var(--rg-accent), var(--rg-accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rg-about-hero__desc {
  font-family: var(--rg-font-body);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
  color: var(--rg-white-60);
  max-width: 560px;
  margin-inline: auto;
}

.rg-about-hero__scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 52px;
  color: var(--rg-white-40);
  font-family: var(--rg-font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rg-about-hero__scroll-cue span {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--rg-accent), transparent);
  animation: rg-pulse-line 2s var(--rg-ease) infinite;
}

@keyframes rg-pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

.rg-about-hero__parallax-bg {
  z-index: 1;
}

.rg-about-hero__overlay {
  z-index: 2;
}

.rg-about-hero__content {
  z-index: 3;
}


/* ══════════════════════════════════════════
   SECTION 2 · STORY
══════════════════════════════════════════ */
.rg-about-story {
  background: var(--rg-home-about-bg);
  padding-block: var(--rg-about-section-py);
}

.rg-about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.rg-about-story__text { }

.rg-about-story__heading {
  font-family: var(--rg-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--rg-home-about-fg);
  margin: 0 0 24px;
}

.rg-about-story__body {
  font-family: var(--rg-font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
  color: var(--rg-home-about-muted);
  max-width: 480px;
}

/* Visual grid */
.rg-about-story__img-wrap {
  position: relative;
}

.rg-about-story__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.rg-about-story__img-card {
  border-radius: var(--rg-card-radius);
  overflow: hidden;
  position: relative;
}

.rg-about-story__img-card--a {
  grid-column: 1;
  grid-row: 1;
  /* background: linear-gradient(135deg, var(--rg-ls-blue), #0a2a40); */
  background-image: url('/static/images/about1.jpeg');
  background-size: cover;
  background-position: center;
}
.rg-about-story__img-card--b {
  grid-column: 2;
  grid-row: 1 / 3;
  /* background: linear-gradient(135deg, #030e1c, var(--rg-ls-teal)); */
  background-image: url('/static/images/work.jpeg');
  background-size: cover;
  background-position: center;
}
.rg-about-story__img-card--c {
  grid-column: 1;
  grid-row: 2;
  /* background: linear-gradient(135deg, var(--rg-ls-slate), #0d1829); */
  background-image: url('/static/images/about4.avif');
  background-size: cover;
  background-position: center;
}

.rg-about-story__img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
}



.rg-about-story__img-label {
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rg-white-60);
}

/* Accent ring decoration */
.rg-about-story__accent-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--rg-accent);
  opacity: 0.15;
  bottom: -30px;
  right: -30px;
  pointer-events: none;
}
.rg-about-story__accent-ring::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid var(--rg-accent);
  opacity: 0.5;
}


/* ══════════════════════════════════════════
   SECTION 3 ·  MISSION & PHILOSOPHY
══════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   2. SECTION SHELL
───────────────────────────────────────────────────────────── */
.rp-philosophy {
  position: relative;
  background: var(--rg-white);
  overflow: hidden;
  padding: clamp(50px, 3vw, 60px) 0 clamp(30px, 2vw, 40px);
}

/* ─────────────────────────────────────────────────────────────
   3. BACKGROUND LAYER
───────────────────────────────────────────────────────────── */
.rp-philosophy__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.rp-philosophy__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.rp-philosophy__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.rp-philosophy__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.rp-philosophy__gradient-orb--1 {
  width: clamp(400px, 55vw, 800px);
  height: clamp(400px, 55vw, 800px);
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  animation: rp-orb-drift-1 18s ease-in-out infinite alternate;
}

.rp-philosophy__gradient-orb--2 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  bottom: 10%;
  right: -10%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  animation: rp-orb-drift-2 22s ease-in-out infinite alternate;
}

.rp-philosophy__gradient-orb--3 {
  width: clamp(200px, 30vw, 450px);
  height: clamp(200px, 30vw, 450px);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(56,189,248,0.05) 0%, transparent 70%);
  animation: rp-orb-drift-3 14s ease-in-out infinite alternate;
}

@keyframes rp-orb-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5%, 8%) scale(1.08); }
}
@keyframes rp-orb-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-6%, -5%) scale(1.06); }
}
@keyframes rp-orb-drift-3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -50%) scale(1.2); }
}

/* ─────────────────────────────────────────────────────────────
   4. INNER WRAPPER
───────────────────────────────────────────────────────────── */
.rp-philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─────────────────────────────────────────────────────────────
   5. EYEBROW
───────────────────────────────────────────────────────────── */
.rp-philosophy__eyebrow-wrap {
  margin-bottom: 28px;
  text-align: center;
}

.rp-philosophy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rg-accent);
}

.rp-philosophy__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rg-accent);
  opacity: 0.8;
}

/* ─────────────────────────────────────────────────────────────
   6. HEADLINE
───────────────────────────────────────────────────────────── */
.rp-philosophy__headline-wrap {
  margin-bottom: 48px;
  overflow: hidden;
}

.rp-philosophy__headline {
  font-family: var(--rg-font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rp-philosophy__headline-line {
  display: block;
  color: var(--rg-black);
}

.rp-philosophy__headline-line--accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--rg-white-40);
  background: linear-gradient(90deg, var(--rg-accent) 0%, var(--rg-accent-hover) 60%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* override text-stroke via fill */
  -webkit-text-stroke: 0;
}

/* ─────────────────────────────────────────────────────────────
   7. RULE
───────────────────────────────────────────────────────────── */
.rp-philosophy__rule {
  display: none;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(60px, 8vw, 96px);
}

.rp-philosophy__rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.35), transparent);
}

.rp-philosophy__rule-diamond {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--rg-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  animation: rp-diamond-pulse 3s ease-in-out infinite;
}

@keyframes rp-diamond-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(14,165,233,0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 6px rgba(14,165,233,0); }
}

/* ─────────────────────────────────────────────────────────────
   8. PILLARS GRID
───────────────────────────────────────────────────────────── */
.rp-philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rp-pillar-border);
  border: 1px solid var(--rp-pillar-border);
  border-radius: var(--rp-pillar-radius);
  overflow: hidden;
  margin-bottom: clamp(8px, 1vw, 10px);
}

/* ── Single pillar card ── */
.rp-pillar {
  position: relative;
  background: var(--rg-accent);
  padding: clamp(36px, 4.5vw, 60px) clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: default;
  transition:
    background var(--rg-trans-mid) var(--rg-ease),
    transform  var(--rg-trans-mid) var(--rg-ease);
  outline: none;
  overflow: hidden;
}

.rp-pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rg-accent-muted) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--rg-trans-mid) var(--rg-ease);
  pointer-events: none;
}

.rp-pillar:hover,
.rp-pillar:focus-visible {
  background: var(--rp-pillar-hover-bg);
  transform: translateY(-2px);
}

.rp-pillar:hover::before,
.rp-pillar:focus-visible::before { opacity: 1; }

/* Index */
.rp-pillar__index {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--rg-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rg-accent);
  opacity: 0.4;
  transition: opacity var(--rg-trans-mid);
}

.rp-pillar:hover .rp-pillar__index { opacity: 0.9; }

.rp-pillar:hover .rp-pillar__desc{
  color: var(--rg-black);
}

/* Icon */
.rp-pillar__icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rg-white);
  transition:
    border-color var(--rg-trans-mid),
    color        var(--rg-trans-mid),
    box-shadow   var(--rg-trans-mid);
  background: rgba(14,165,233,0.04);
}

.rp-pillar:hover .rp-pillar__icon-wrap {
  border-color: var(--rg-accent);
  color: var(--rg-accent-hover);
  box-shadow: 0 0 20px rgba(14,165,233,0.18);
}

.rp-pillar__icon {
  width: 28px;
  height: 28px;
}

/* Body */
.rp-pillar__body { display: flex; flex-direction: column; gap: 12px; }

.rp-pillar__title {
  font-family: var(--rg-font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--rg-white);
  letter-spacing: -0.02em;
  transition: color var(--rg-trans-mid);
}

.rp-pillar:hover .rp-pillar__title { color: var(--rg-accent-hover); }

.rp-pillar__desc {
  font-family: var(--rg-font-body);
  font-size: clamp(13.5px, 1.1vw, 15.5px);
  line-height: 1.7;
  color: var(--rg-white-60);
  font-weight: 300;
}

/* Hover line */
.rp-pillar__hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--rg-accent), var(--rg-accent-hover));
  transition: width 0.4s var(--rg-ease);
}

.rp-pillar:hover .rp-pillar__hover-line,
.rp-pillar:focus-visible .rp-pillar__hover-line { width: 100%; }

/* ─────────────────────────────────────────────────────────────
   9. STATS BAND
───────────────────────────────────────────────────────────── */
.rp-philosophy__band {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.rp-stat-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--rp-band-bg);
  border: 1px solid var(--rp-band-border);
  border-radius: 2px;
  padding: 20px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.rp-stat-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,165,233,0.03) 0%, transparent 100%);
  pointer-events: none;
}

.rp-stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--rp-band-border);
  margin: 0 clamp(20px, 3vw, 48px);
  flex-shrink: 0;
}

.rp-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.rp-stat-item__value {
  font-family: var(--rg-font-display);
  font-size: clamp(22px, 2.5vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--rg-black);
  display: block;
}

.rp-stat-item__value--infinity {
  color: var(--rg-accent);
  animation: rp-infinity-glow 4s ease-in-out infinite;
  font-size: clamp(50px, 6.5vw, 88px);
}

@keyframes rp-infinity-glow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50%       { text-shadow: 0 0 30px rgba(14,165,233,0.5); }
}

.rp-stat-item__label {
  font-family: var(--rg-font-display);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rg-accent);
  display: block;
}

.rp-stat-item__sub {
  font-family: var(--rg-font-body);
  font-size: clamp(12px, 0.95vw, 13.5px);
  color: var(--rg-black-40);
  line-height: 1.5;
  font-weight: 300;
  display: block;
  max-width: 22ch;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   10. MARQUEE STRIP
───────────────────────────────────────────────────────────── */
.rp-philosophy__marquee-wrap {
  overflow: hidden;
  position: relative;
}

.rp-philosophy__marquee-wrap::before,
.rp-philosophy__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.rp-philosophy__marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--rp-section-bg), transparent);
}

.rp-philosophy__marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--rp-section-bg), transparent);
}

.rp-marquee {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  overflow: hidden;
  background: rgb(0, 229, 255);
}

.rp-marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: rp-marquee-scroll 28s linear infinite;
  font-family: var(--rg-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rg-black);
}

.rp-marquee__track span {
  white-space: nowrap;
  padding: 0 24px;
}

.rp-marquee__dot {
  color: var(--rg-accent);
  opacity: 0.5;
}

@keyframes rp-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────
   11. REVEAL ANIMATIONS
───────────────────────────────────────────────────────────── */
[data-rp-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.75s var(--rg-ease),
    transform 0.75s var(--rg-ease);
}

[data-rp-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   12. RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .rp-philosophy__pillars {
    grid-template-columns: 1fr;
  }

  .rp-stat-band {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rp-stat-divider {
    width: auto;
    height: 1px;
    align-self: auto;
    margin: 28px 0;
  }
  .rg-about-hero{
    margin-top: 0px;
  }
}

@media (max-width: 600px) {
  .rp-philosophy__headline {
    font-size: clamp(42px, 12vw, 62px);
  }

  .rp-stat-band {
    padding: 28px 20px;
  }
}

/* ─────────────────────────────────────────────────────────────
   13. REDUCED MOTION
───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .rp-philosophy__gradient-orb,
  .rp-philosophy__rule-diamond,
  .rp-stat-item__value--infinity,
  .rp-marquee__track { animation: none; }

  [data-rp-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ══════════════════════════════════════════
   SECTION 4 · VALUES
══════════════════════════════════════════ */
.rg-about-values {
  background: var(--rg-values-bg);
  padding-block: var(--rg-about-section-py);
}

.rg-about-values__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.rg-about-values__heading {
  font-family: var(--rg-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rg-black);
  margin: 0;
}

.rg-about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rg-about-values__card {
  position: relative;
  border-radius: var(--rg-card-radius);
  padding: 36px 28px 40px;
  /* background: #040f1a; */
  /* background: (135deg, rgba(14, 164, 233, 0.437), rgba(14, 164, 233, 0.979)); */
  /* border: 1px solid rgba(60, 60, 60, 0.07); */
  overflow: hidden;
  transition:
    transform     var(--rg-trans-mid) var(--rg-ease),
    border-color  var(--rg-trans-mid) var(--rg-ease),
    box-shadow    var(--rg-trans-mid) var(--rg-ease);
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rg-about-values__card:hover {
  transform: translateY(-6px);
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 40px rgba(14,165,233,0.10);
}

.rg-about-values__card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    rgba(14,165,233,0.08),
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--rg-trans-mid) var(--rg-ease);
  pointer-events: none;
}

.rg-about-values__card:hover .rg-about-values__card-glow {
  opacity: 1;
}

.rg-about-values__card-icon {
  width: 152px;
  height: 152px;
  border-radius: 12px;
  background: var(--rg-accent-muted);
  /* border: 1px solid rgba(14,165,233,0.2); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--rg-trans-mid) var(--rg-ease);
}

.rg-about-values__card:hover .rg-about-values__card-icon {
  background: #e7feff;
}

.rg-about-values__card-title {
  font-family: var(--rg-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--rg-black);
  margin: 0 0 12px;
}

.rg-about-values__card-desc {
  font-family: var(--rg-font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--rg-black-60);
  margin: 0;
  text-align: center;
}


/* ══════════════════════════════════════════
   SECTION 5 · TIMELINE
══════════════════════════════════════════ */
.rg-about-timeline {
  background: var(--rg-white);
  padding-block: var(--rg-about-section-py);
}

.rg-about-timeline__header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 88px);
}

.rg-about-timeline__heading {
  font-family: var(--rg-font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rg-black);
  margin: 0;
}

.rg-about-timeline__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 40px;
}

/* Horizontal line */
.rg-about-timeline__line {
  position: absolute;
  top: 50px;
  left: calc(12.5% - var(--rg-timeline-dot-size) / 2);
  right: calc(12.5% - var(--rg-timeline-dot-size) / 2);
  height: 1px;
  background: var(--rg-timeline-line-color);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.6s var(--rg-ease);
}

.rg-about-timeline__line.rg-line-draw {
  transform: scaleX(1);
}

.rg-about-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* Stagger timeline items */
.rg-about-timeline__item[data-index="0"] { transition-delay: 0.10s; }
.rg-about-timeline__item[data-index="1"] { transition-delay: 0.28s; }
.rg-about-timeline__item[data-index="2"] { transition-delay: 0.46s; }
.rg-about-timeline__item[data-index="3"] { transition-delay: 0.64s; }

.rg-about-timeline__dot {
  width: var(--rg-timeline-dot-size);
  height: var(--rg-timeline-dot-size);
  border-radius: 50%;
  border: 2px solid var(--rg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--rg-white);
  position: relative;
  z-index: 1;
}

.rg-about-timeline__dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rg-accent);
}

.rg-about-timeline__dot--future {
  border-color: rgba(14,165,233,0.30);
}
.rg-about-timeline__dot--future span {
  background: rgba(14,165,233,0.30);
}

.rg-about-timeline__card {
  padding: 24px 5px;
  min-height: 200px;
  border-radius: var(--rg-card-radius);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.07);
  width: 100%;
  transition: border-color var(--rg-trans-mid) var(--rg-ease),
              box-shadow   var(--rg-trans-mid) var(--rg-ease);
}

.rg-about-timeline__card:hover {
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 0 30px rgba(14,165,233,0.08);
}

.rg-about-timeline__card--future {
  opacity: 1;
  border-style: dashed;
}

.rg-about-timeline__year {
  display: block;
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 8px;
}

.rg-about-timeline__event {
  font-family: var(--rg-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--rg-black);
  margin: 0 0 10px;
}

.rg-about-timeline__detail {
  font-family: var(--rg-font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--rg-black-60);
  margin: 0;
}


/* ══════════════════════════════════════════
   SECTION 6 · LEADERSHIP QUOTE
══════════════════════════════════════════ */
/* ================================================
   vision-quote.css
   Premium Editorial Quote Component
   Sky-blue / deep-blue system
   ================================================ */

/* ── Variables ──────────────────────────────────── */
:root {
  --vq-accent:          #0ea5e9;        /* sky-500      */
  --vq-accent-hover:    #38bdf8;        /* sky-400      */
  --vq-accent-deep:     #0369a1;        /* sky-700      */
  --vq-accent-dark:     #0c4a6e;        /* sky-900      */
  --vq-accent-muted:    rgba(14,165,233,0.12);
  --vq-accent-muted2:   rgba(14,165,233,0.06);
  --vq-white:           #ffffff;
  --vq-bg:              #ffffff;        /* soft blue-tinted off-white */
  --vq-text:            #09090b;
  --vq-text-muted:      rgba(9,9,11,0.50);
  --vq-card-bg:         rgba(255,255,255,0.72);
  --vq-card-border:     rgba(14,165,233,0.18);
  --vq-shadow-sm:       0 2px 12px rgba(14,165,233,0.08);
  --vq-shadow-md:       0 8px 40px rgba(14,165,233,0.14), 0 2px 8px rgba(0,0,0,0.06);
  --vq-shadow-lg:       0 20px 60px rgba(14,165,233,0.20), 0 4px 16px rgba(0,0,0,0.08);
  --vq-font-display:    'Syne', sans-serif;
  --vq-font-body:       'DM Sans', sans-serif;
  --vq-ease:            cubic-bezier(0.16, 1, 0.3, 1);
  --vq-radius:          20px;
}

/* ── Reset scoped to component ──────────────────── */
.vq *, .vq *::before, .vq *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Section ────────────────────────────────────── */
.vq {
  position: relative;
  background: var(--vq-bg);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px);
  overflow: hidden;
  isolation: isolate;
}

/* ── Background decoration ──────────────────────── */
.vq__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.vq__bg-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.vq__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.vq__bg-shape--1 {
  width: 500px; height: 500px;
  top: -160px; right: -80px;
  background: radial-gradient(circle,
    rgba(14,165,233,0.10) 0%,
    transparent 70%);
}

.vq__bg-shape--2 {
  width: 380px; height: 380px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle,
    rgba(3,105,161,0.09) 0%,
    transparent 70%);
}

.vq__bg-shape--3 {
  width: 240px; height: 240px;
  top: 40%; left: 44%;
  background: radial-gradient(circle,
    rgba(14,165,233,0.06) 0%,
    transparent 70%);
}

/* ── Inner grid ─────────────────────────────────── */
.vq__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

/* ═══════════════════════════════════════════════
   LEFT — Media / Comma shape
   ═══════════════════════════════════════════════ */
.vq__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* entrance state (JS reveals) */
  opacity: 0;
  transform: translateX(-32px);
}

/* Geometric accent block */
.vq__accent-block {
  position: absolute;
  width: 55%;
  height: 62%;
  top: 6%;
  left: -4%;
  background: linear-gradient(135deg, var(--vq-accent-deep), var(--vq-accent));
  border-radius: 4px 18px 18px 4px;
  z-index: 0;
  opacity: 0.88;
}

/* Comma wrap — positions everything */
.vq__comma-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 0.82;
}


/*
  THE COMMA SHAPE
  ───────────────
  Built with clip-path:
  - Top 80% = rounded rectangle (the "body" of the quotation mark / comma)
  - Bottom-left tail = the descending curve of the comma
  We use a polygon + border-radius on a pseudo-element for the tail.
  Primary shape uses clip-path with a custom polygon approximating a comma.
*/
.vq__comma-shape {
  position: absolute;
  inset: 0;
  /*
    Clip path that mimics a comma / opening quote mark:
    Rectangle body with a bottom-left curved tail.
    Defined as: top-left rounded → top-right rounded → right side down
    → sweeps out to a tail at bottom-left.
    We approximate curves with many polygon points.
  */
  clip-path: url(#vqComma);
  overflow: hidden;
  border-radius: 0 0 0 0; /* softens the top corners */
  transition: transform 0.5s var(--vq-ease);
}

/* Comma overlay — blue tint + gradient */
.vq__comma-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,165,233,0.08) 0%,
    rgba(3,105,161,0.14) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

/* Portrait image — grayscale */
.vq__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.05) brightness(1.02);
  display: block;
  transition: transform 0.7s var(--vq-ease), filter 0.4s;
}

/* Ring decoration around the comma */
.vq__comma-ring {
  position: absolute;
  inset: -10px 0 20% -10px;
  border: 1.5px solid rgba(14,165,233,0.22);
  border-radius: 22px 22px 0 0;
  clip-path: polygon(
    10% 0%, 90% 0%, 100% 0%, 100% 5%,
    100% 72%, 100% 80%, 90% 80%,
    68% 80%, 62% 83%, 56% 88%, 48% 93%,
    38% 97%, 26% 100%, 16% 100%,
    10% 98%, 6% 94%, 6% 90%,
    10% 87%, 18% 85%, 28% 84%,
    30% 80%, 10% 80%, 0% 80%, 0% 72%,
    0% 8%, 0% 0%
  );
  pointer-events: none;
  z-index: 3;
}


/* Floating dots */
.vq__dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.vq__dot--1 {
  width: 10px; height: 10px;
  bottom: 18%;
  right: 4%;
  background: var(--vq-accent);
  box-shadow: 0 0 16px rgba(14,165,233,0.5);
  animation: vq-dot-pulse 3s ease-in-out infinite;
}

.vq__dot--2 {
  width: 6px; height: 6px;
  top: 12%;
  right: 8%;
  background: var(--vq-accent-deep);
  opacity: 0.7;
  animation: vq-dot-pulse 4s ease-in-out infinite 1s;
}

@keyframes vq-dot-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.35); }
}

/* ── Hover — media ──────────────────────────────── */
.vq__media:hover .vq__portrait {
  transform: scale(1.03);
}

.vq__media:hover .vq__comma-shape {
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════
   RIGHT — Quote card
   ═══════════════════════════════════════════════ */
.vq__card-wrap {
  /* entrance state */
  opacity: 0;
  transform: translateX(32px);
}

.vq__card {
  position: relative;
  background: var(--vq-card-bg);
  border: 1px solid var(--vq-card-border);
  border-radius: var(--vq-radius);
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 44px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--vq-shadow-md);
  overflow: hidden;
  transition:
    transform 0.45s var(--vq-ease),
    box-shadow 0.45s var(--vq-ease);
}

.vq__card:hover {
  transform: translateY(-7px);
  box-shadow: var(--vq-shadow-lg);
}

/* Animated top border */
.vq__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--vq-accent),
    var(--vq-accent-hover),
    transparent
  );
  background-size: 200% 100%;
  animation: vq-top-border 4s linear infinite;
}

@keyframes vq-top-border {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Corner accent */
.vq__card-corner {
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg,
    transparent 50%,
    rgba(14,165,233,0.07) 50%
  );
  border-radius: 0 0 var(--vq-radius) 0;
  pointer-events: none;
}

/* ── Quotation marks ────────────────────────────── */
.vq__mark {
  font-family: 'Georgia', serif;
  font-size: clamp(80px, 12vw, 120px);
  line-height: 0.7;
  font-weight: 700;
  color: var(--vq-accent);
  opacity: 0.18;
  user-select: none;
  pointer-events: none;
  display: block;
  position: absolute;
}

.vq__mark--open {
  top: 12px;
  left: 24px;
}

.vq__mark--close {
  bottom: 48px;
  right: 24px;
  transform: rotate(180deg);
}

/* ── Quote text ─────────────────────────────────── */
.vq__quote {
  position: relative;
  z-index: 1;
  margin: 24px 0 28px;
}

.vq__quote-text {
  font-family: var(--vq-font-display);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--vq-text);
}

/* ── Divider ────────────────────────────────────── */
.vq__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--vq-accent), var(--vq-accent-hover));
  border-radius: 2px;
  margin-bottom: 22px;
}

/* ── Author ─────────────────────────────────────── */
.vq__author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
}

.vq__author-line {
  width: 24px;
  height: 2px;
  background: var(--vq-accent);
  opacity: 0.4;
  margin-bottom: 2px;
}

.vq__author-name {
  font-family: var(--vq-font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vq-accent);
}

.vq__author-role {
  font-family: var(--vq-font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vq-text-muted);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 900px) {
  .vq__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile — stack */
@media (max-width: 640px) {
  .vq {
    padding-block: 60px;
  }

  .vq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vq__media {
    max-width: 300px;
    margin: 0 auto;
  }

  .vq__comma-wrap {
    max-width: 280px;
  }

  .vq__accent-block {
    width: 52%;
    height: 58%;
    left: 0;
  }

  .vq__card-wrap {
    width: 100%;
  }

  .vq__mark--open { font-size: 70px; }
  .vq__mark--close { font-size: 70px; bottom: 36px; }
}


/* ══════════════════════════════════════════
   SECTION 7 · CTA
══════════════════════════════════════════ */
.rg-about-cta {
  background: var(--rg-cta-bg);
  padding-block: 20px 10px;
}

.rg-about-cta__inner {
  display: flex;
  justify-content: center;
}

.rg-about-cta__content {
  text-align: center;
  max-width: 600px;
}

.rg-about-cta__heading {
  font-family: var(--rg-font-display);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--rg-cta-fg);
  margin: 0 0 20px;
}

.rg-about-cta__sub {
  font-family: var(--rg-font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--rg-cta-muted);
  margin: 0 0 44px;
}

/* CTA button with fill-slide animation */
.rg-btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 2px solid var(--rg-cta-fg);
  border-radius: 8px;
  font-family: var(--rg-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--rg-cta-fg);
  text-decoration: none;
  overflow: hidden;
  transition: color var(--rg-trans-mid) var(--rg-ease);
}

.rg-btn-cta__fill {
  position: absolute;
  inset: 0;
  background: var(--rg-accent);
  transform: translateX(-101%);
  transition: transform 0.38s var(--rg-ease);
  z-index: 0;
}

.rg-btn-cta:hover .rg-btn-cta__fill {
  transform: translateX(0);
}

.rg-btn-cta:hover {
  color: var(--rg-white);
  border-color: var(--rg-accent);
}

.rg-btn-cta__label,
.rg-btn-cta svg {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rg-about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-about-timeline__track {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-about-timeline__line {
    display: none;
  }
  .rg-about-timeline__dot{
    display: none;
  }
}

@media (max-width: 768px) {
  .rg-about-story__inner,
  .rg-about-mission__inner {
    grid-template-columns: 1fr;
  }

  .rg-about-story__visual {
    order: -1;
  }

  .rg-about-story__img-grid {
    grid-template-rows: 160px 160px;
  }

  .rg-about-mission__right {
    order: -1;
  }

  .rg-about-mission__year-number {
    font-size: 72px;
  }
  .rg-about-timeline__card{
    padding: 24px 24px;
  }

  .rg-about-values__grid {
    grid-template-columns: 1fr;
  }

  .rg-about-timeline__track {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .rg-about-timeline__item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .rg-about-timeline__dot {
    flex-shrink: 0;
    margin-top: 6px;
  }

  .rg-about-leadership__quote {
    font-size: clamp(20px, 5vw, 30px);
  }
}

@media (max-width: 480px) {
  .rg-about-hero__title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .rg-about-cta__heading {
    font-size: 36px;
  }

  .rg-about-mission__year-stats {
    gap: 20px;
  }
}




































/* below is the business page css */

/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATION SYSTEM
───────────────────────────────────────────────────────────── */
.rg-biz-reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.85s var(--rg-ease),
    transform 0.95s var(--rg-ease);
}

.rg-biz-reveal[data-reveal="fade-up"]   { transform: translateY(40px); }
.rg-biz-reveal[data-reveal="fade-right"]{ transform: translateX(-40px); }
.rg-biz-reveal[data-reveal="fade-left"] { transform: translateX(40px); }

.rg-biz-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─────────────────────────────────────────────────────────────
   SHARED COMPONENTS
───────────────────────────────────────────────────────────── */
.rg-biz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rg-biz-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.rg-biz-eyebrow--dark  { color: var(--rg-biz-eyebrow-dark); }
.rg-biz-eyebrow--light { color: var(--rg-accent); }
.rg-biz-eyebrow--center {
  display: flex;
  justify-content: center;
}
.rg-biz-eyebrow--center::before { display: none; }

/* ─────────────────────────────────────────────────────────────
   SECTION 1: HERO
───────────────────────────────────────────────────────────── */
.rg-biz-hero {
  position: relative;
  height: var(--rg-biz-hero-h);
  min-height: 110vh;
  overflow: hidden;
  /* Negative margin so hero starts behind navbar */
  margin-top: calc(-1 * var(--rg-navbar-h));
  /* Stacking: next section overlaps hero */
  z-index: 0;
}

/* ── Video ─────────────────────────────────────────────────── */
.rg-biz-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rg-biz-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Fallback poster when video isn't loading */
.rg-biz-hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rg-black);
}

.rg-biz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.50) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

/* Subtle cinematic grain */
.rg-biz-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ── Hero content ──────────────────────────────────────────── */
.rg-biz-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform, opacity;
}

.rg-biz-hero-inner {
  max-width: var(--rg-drawer-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
  /* padding-top: var(--rg-navbar-h); */
}

.rg-biz-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rg-white-60);
  margin-bottom: 36px;
}

.rg-biz-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rg-accent);
  display: inline-block;
}

/* ── Heading split container ───────────────────────────────── */
.rg-biz-hero-heading-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(24px, 4vw, 56px);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.rg-biz-hero-split {
  will-change: transform;
  transition: transform 0.08s linear;
}

.rg-biz-hero-h1 {
  font-family: var(--rg-font-display);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--rg-white);
  margin: 0;
}

.rg-biz-hero-h1--right {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}

.rg-biz-hero-desc {
  font-family: var(--rg-font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--rg-white-60);
  max-width: 560px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.rg-biz-br-desk {
  display: none;
}

@media (min-width: 700px) {
  .rg-biz-br-desk { display: block; }
}

/* ── Hero CTA ──────────────────────────────────────────────── */
.rg-biz-hero-cta-wrap {
  display: flex;
  align-items: center;
}

.rg-biz-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rg-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rg-white);
  border: 1px solid var(--rg-white-40);
  border-radius: 2px;
  padding: 13px 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--rg-trans-mid) ease,
    color var(--rg-trans-mid) ease;
}

.rg-biz-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rg-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--rg-trans-mid) var(--rg-ease);
  z-index: 0;
}

.rg-biz-hero-cta:hover::before {
  transform: scaleX(1);
}

.rg-biz-hero-cta:hover {
  color: var(--rg-black);
  border-color: var(--rg-white);
}

.rg-biz-hero-cta-label,
.rg-biz-hero-cta-icon {
  position: relative;
  z-index: 1;
}

/* ── Scroll hint ───────────────────────────────────────────── */
.rg-biz-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.rg-biz-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--rg-accent), transparent);
  animation: rgScrollPulse 2s ease-in-out infinite;
}

@keyframes rgScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   }
}

.rg-biz-scroll-label {
  font-family: var(--rg-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-white-40);
  writing-mode: vertical-rl;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 2: VISION
───────────────────────────────────────────────────────────── */
.rg-biz-vision {
  position: relative;
  z-index: 2; /* overlaps hero */
  background: transparent;
  padding: var(--rg-biz-section-py) 0;
  /* Stacking: use margin to overlap hero slightly */
  margin-top: -80px;
  border-radius: 0;
}

.rg-biz-vision-inner {
  max-width: var(--rg-drawer-max);
  margin: 0 auto;
  padding: 0 clamp(40px, 10vw, 140px);
}

/* ── Header ─────────────────────────────────────────────────── */
.rg-biz-vision-header {
  margin-bottom: clamp(56px, 8vw, 96px);
}

.rg-biz-vision-title-wrap {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.rg-biz-vision-title {
  font-family: var(--rg-font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--rg-biz-vision-fg);
  margin: 0;
}

.rg-biz-vision-accent-line {
  flex: 1;
  min-width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--rg-accent), transparent);
  margin-bottom: 10px;
}

/* ── Body grid ─────────────────────────────────────────────── */
.rg-biz-vision-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

/* ── Text ───────────────────────────────────────────────────── */
.rg-biz-vision-lead {
  font-family: var(--rg-font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--rg-biz-vision-fg);
  margin-bottom: 24px;
}

.rg-biz-vision-para {
  font-family: var(--rg-font-body);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--rg-biz-vision-muted);
  margin-bottom: 20px;
}

.rg-biz-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rg-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rg-accent);
  margin-top: 16px;
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rg-accent);
  transition:
    color var(--rg-trans-fast) ease,
    gap var(--rg-trans-fast) ease;
}

.rg-biz-text-link:hover {
  gap: 14px;
  color: var(--rg-biz-vision-fg);
  border-bottom-color: var(--rg-biz-vision-fg);
}

/* ── Stats: ladder layout ───────────────────────────────────── */
.rg-biz-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 50px;
}

.rg-biz-stat-card {
  position: relative;
  padding: 28px 28px 28px 32px;
  border: 1px solid var(--rg-biz-stat-border);
  border-bottom: none;
  background: var(--rg-biz-stat-bg);
  cursor: default;
  transition:
    transform var(--rg-trans-mid) var(--rg-ease),
    box-shadow var(--rg-trans-mid) ease,
    background var(--rg-trans-fast) ease;
  overflow: hidden;
}

.rg-biz-stat-card:last-child {
  border-bottom: 1px solid var(--rg-biz-stat-border);
}

/* Ladder step offset */
.rg-biz-stat-card:nth-child(1) { margin-left: 0; }
.rg-biz-stat-card:nth-child(2) { margin-left: 16px; }
.rg-biz-stat-card:nth-child(3) { margin-left: 32px; }
.rg-biz-stat-card:nth-child(4) { margin-left: 48px; }

.rg-biz-stat-card:hover {
  transform: translateY(-4px) translateX(-6px);
  box-shadow: 6px 8px 32px rgba(14, 165, 233, 0.10);
  background: var(--rg-white);
}

.rg-biz-stat-num {
  font-family: var(--rg-font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--rg-biz-vision-fg);
  line-height: 1;
  margin-bottom: 6px;
}

.rg-biz-stat-sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--rg-accent);
  font-weight: 700;
}

.rg-biz-stat-label {
  font-family: var(--rg-font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rg-biz-vision-muted);
}

.rg-biz-stat-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rg-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--rg-trans-slow) var(--rg-ease);
}

.rg-biz-stat-card:hover .rg-biz-stat-bar {
  transform: scaleY(1);
}

/* ─────────────────────────────────────────────────────────────
   SECTION 3: BUSINESS UNITS
───────────────────────────────────────────────────────────── */
.rg-biz-units {
  position: relative;
  z-index: 3;
  background: var(--rg-biz-units-bg);
  padding: var(--rg-biz-section-py) 0;
}

.rg-biz-units-inner {
  max-width: var(--rg-drawer-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.rg-biz-units-header {
  margin-bottom: clamp(48px, 6vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rg-biz-units-title {
  font-family: var(--rg-font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--rg-black);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.05;
}

/* ── Cards grid ─────────────────────────────────────────────── */
.rg-biz-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Card ───────────────────────────────────────────────────── */
.rg-biz-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--rg-biz-card-radius);
  overflow: hidden;
  /* Tilt will be applied via JS transform */
  transition: transform var(--rg-trans-slow) var(--rg-ease),
              box-shadow var(--rg-trans-slow) ease;
  will-change: transform;
  border: 1px solid rgba(255, 255, 255, 0.273);
}

.rg-biz-card:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

/* ── Card media ─────────────────────────────────────────────── */
.rg-biz-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rg-biz-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform var(--rg-trans-slow) var(--rg-ease);
  filter: saturate(0.7);
}

.rg-biz-card:hover .rg-biz-card-img {
  transform: scale(1.08);
  filter: saturate(1);
}

.rg-biz-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.40) 50%,
    var(--rg-biz-card-hover-ov) 100%
  );
  transition: opacity var(--rg-trans-mid) ease;
}

.rg-biz-card:hover .rg-biz-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.62) 60%,
    rgba(0,0,0,0.20) 100%
  );
}

/* ── Card content ───────────────────────────────────────────── */
.rg-biz-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 40px);
}

.rg-biz-card-tag {
  font-family: var(--rg-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--rg-trans-mid) var(--rg-ease),
    transform var(--rg-trans-mid) var(--rg-ease);
  transition-delay: 0.04s;
}

.rg-biz-card-title {
  font-family: var(--rg-font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--rg-white);
  margin: 0 0 14px;
  transform: translateY(8px);
  transition:
    transform var(--rg-trans-mid) var(--rg-ease);
  transition-delay: 0s;
}

.rg-biz-card-desc {
  font-family: var(--rg-font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--rg-white-60);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--rg-trans-mid) var(--rg-ease),
    transform var(--rg-trans-mid) var(--rg-ease);
  transition-delay: 0.08s;
}

.rg-biz-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rg-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rg-accent);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--rg-trans-mid) var(--rg-ease),
    transform var(--rg-trans-mid) var(--rg-ease),
    gap var(--rg-trans-fast) ease,
    color var(--rg-trans-fast) ease;
  transition-delay: 0.12s;
}

.rg-biz-card-cta:hover {
  gap: 14px;
  color: var(--rg-white);
}

/* ── Card hover: reveal hidden elements ─────────────────────── */
.rg-biz-card:hover .rg-biz-card-tag,
.rg-biz-card:hover .rg-biz-card-desc,
.rg-biz-card:hover .rg-biz-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.rg-biz-card:hover .rg-biz-card-title {
  transform: translateY(0);
}

/* ── Decorative number ──────────────────────────────────────── */
.rg-biz-card-num {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  font-family: var(--rg-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rg-white-40);
  transition: color var(--rg-trans-mid) ease;
}

.rg-biz-card:hover .rg-biz-card-num {
  color: var(--rg-accent);
}

/* ─────────────────────────────────────────────────────────────
   SECTION 4: CTA
───────────────────────────────────────────────────────────── */
.rg-biz-cta-section {
  position: relative;
  z-index: 4;
  background: var(--rg-biz-cta-bg);
  padding: 2rem 0 4rem;
  overflow: hidden;
  text-align: center;
}

.rg-biz-cta-inner {
  max-width: var(--rg-drawer-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
  position: relative;
  z-index: 1;
}

/* ── Decorative rings ───────────────────────────────────────── */
.rg-biz-cta-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.rg-biz-cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rgRingPulse 6s ease-in-out infinite;
}

.rg-biz-cta-ring--1 {
  width: 480px;
  height: 480px;
  animation-delay: 0s;
}

.rg-biz-cta-ring--2 {
  width: 720px;
  height: 720px;
  animation-delay: 1.5s;
  opacity: 0.7;
}

.rg-biz-cta-ring--3 {
  width: 960px;
  height: 960px;
  animation-delay: 3s;
  opacity: 0.4;
}

@keyframes rgRingPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: var(--op, 1); }
  50%       { transform: translate(-50%, -50%) scale(1.04); opacity: calc(var(--op, 1) * 0.6); }
}

/* ── CTA content ────────────────────────────────────────────── */
.rg-biz-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.rg-biz-cta-heading {
  font-family: var(--rg-font-display);
  font-size: clamp(40px, 6.5vw, 44px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--rg-biz-cta-fg);
  margin: 20px 0 28px;
}

.rg-biz-cta-sub {
  font-family: var(--rg-font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--rg-biz-cta-muted);
  max-width: 500px;
  margin: 0 auto 16px;
}

/* ── CTA Button (slide-fill effect) ────────────────────────── */
.rg-biz-cta-btn-wrap {
  display: flex;
  justify-content: center;
}

.rg-biz-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rg-font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rg-biz-cta-fg);
  background: transparent;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  padding: 16px 36px;
  overflow: hidden;
  cursor: pointer;
  transition:
    color var(--rg-trans-mid) ease,
    border-color var(--rg-trans-mid) ease,
    gap var(--rg-trans-fast) ease;
}

/* The sliding fill BG */
.rg-biz-cta-btn-bg {
  position: absolute;
  inset: 0;
  background: var(--rg-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--rg-trans-slow) var(--rg-ease);
  z-index: 0;
}

.rg-biz-cta-btn-bg--active {
  transform: scaleX(1);
}

.rg-biz-cta-btn-label,
.rg-biz-cta-btn-icon {
  position: relative;
  z-index: 1;
}

.rg-biz-cta-btn:hover {
  color: var(--rg-white);
  border-color: var(--rg-accent);
  gap: 20px;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet (<1024px)
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rg-biz-vision-body {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .rg-biz-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .rg-biz-stat-card {
    flex: 1 1 calc(50% - 8px);
  }

  .rg-biz-stat-card:nth-child(1),
  .rg-biz-stat-card:nth-child(2),
  .rg-biz-stat-card:nth-child(3),
  .rg-biz-stat-card:nth-child(4) {
    margin-left: 0;
  }

  .rg-biz-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-biz-card:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 7;
  }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile (<700px)
───────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .rg-biz-hero-heading-wrap {
    flex-direction: column;
    gap: 4px;
  }

  .rg-biz-hero-h1 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .rg-biz-hero-h1--right {
    -webkit-text-stroke-width: 1px;
  }

  .rg-biz-scroll-hint {
    display: none;
  }

  .rg-biz-vision-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .rg-biz-vision-accent-line {
    width: 80px;
    min-width: unset;
  }

  .rg-biz-stats {
    flex-direction: column;
  }

  .rg-biz-stat-card {
    flex: none;
    /* width: 100%; */
    border-bottom: none;
  }

  .rg-biz-stat-card:last-child {
    border-bottom: 1px solid var(--rg-biz-stat-border);
  }

  .rg-biz-cards-grid {
    grid-template-columns: 1fr;
  }

  .rg-biz-card {
    aspect-ratio: 4 / 3;
  }

  .rg-biz-card:last-child {
    grid-column: unset;
    aspect-ratio: 4 / 3;
  }

  /* On touch: always show card content */
  .rg-biz-card-tag,
  .rg-biz-card-desc,
  .rg-biz-card-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .rg-biz-card-title {
    transform: translateY(0);
  }

  .rg-biz-cta-ring--2,
  .rg-biz-cta-ring--3 {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   ACCESSIBILITY — Reduced motion
───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .rg-biz-reveal,
  .rg-biz-hero-content,
  .rg-biz-hero-split,
  .rg-biz-hero-video,
  .rg-biz-card-img,
  .rg-biz-scroll-line,
  .rg-biz-cta-ring {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .rg-biz-reveal {
    opacity: 1;
  }
}















/* ═══════════════════════════════════════════════════════
   RG EDITORIAL GRID  –  editorial-grid.css
   Matches the Tata-style 3-column × 2-row magazine grid.
   Uses only the design tokens from :root (see main CSS).
   ═══════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════ */
.rg-editorial-grid {
  height: 80vh;
  max-width: 100%;
  overflow: hidden;
  padding:100px;
  background: linear-gradient(var(--rg-white) 10%, aliceblue 100%);
}

/* ══════════════════════════════════════════
   GRID ROWS  –  3 equal columns
══════════════════════════════════════════ */
.rg-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 50%;
  /* max-height: 300px; */
  /* overflow: hidden; */
  /* no gap → flush editorial tiles */
}

/* ══════════════════════════════════════════
   BASE CELL
══════════════════════════════════════════ */
.rg-cell {
  position: relative;
  min-height: unset;
  overflow: hidden;
  cursor: pointer;
}


/* ══════════════════════════════════════════
   MEDIA CELLS  (pure image, no text)
══════════════════════════════════════════ */

.rg-cell--image .rg-cell__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rg-cell--image .rg-cell__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--rg-ease, cubic-bezier(0.16,1,0.3,1));
  will-change: transform;
}

.rg-cell--image:hover .rg-cell__media img {
  transform: scale(1.045);
}

/* ── fog / vignette ── */
.rg-cell__media-fog {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.22) 100%
  );
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.rg-cell__media-fog--heavy {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.68) 55%,
    rgba(0,0,0,0.82) 100%
  );
}

/* ══════════════════════════════════════════
   DARK TEXT CARDS
══════════════════════════════════════════ */
.rg-cell--dark {
  background: #1e2024;   /* slightly lighter than pure black for depth */
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2vw, 32px) clamp(24px, 3.5vw, 42px);
  justify-content: flex-end;
  gap: 0;

  /* reveal start state */
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s var(--rg-ease, cubic-bezier(0.16,1,0.3,1)),
    transform 0.55s var(--rg-ease, cubic-bezier(0.16,1,0.3,1)),
    background 0.3s ease;
}

.rg-cell--dark.rg--visible {
  opacity: 1;
  transform: translateY(0);
}

.rg-cell--dark:hover {
  background: #23272d;
}

/* ══════════════════════════════════════════
   IMAGE + OVERLAY CARDS
══════════════════════════════════════════ */
.rg-cell--overlay {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s var(--rg-ease, cubic-bezier(0.16,1,0.3,1)),
    transform 0.55s var(--rg-ease, cubic-bezier(0.16,1,0.3,1));
}

.rg-cell--overlay.rg--visible {
  opacity: 1;
  transform: translateY(0);
}

.rg-cell--overlay .rg-cell__media {
  position: absolute;
  inset: 0;
}

.rg-cell--overlay .rg-cell__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) brightness(0.72);
  transition:
    transform 0.75s var(--rg-ease, cubic-bezier(0.16,1,0.3,1)),
    filter 0.5s ease;
  will-change: transform;
}

.rg-cell--overlay:hover .rg-cell__media img {
  transform: scale(1.04);
  filter: grayscale(10%) brightness(0.6);
}

.rg-cell__overlay-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 42px);
  gap: 0;
}

/* ══════════════════════════════════════════
   STAMP / WATERMARK (overlay card top-right)
══════════════════════════════════════════ */
.rg-cell__overlay-stamp {
  position: absolute;
  top: clamp(16px, 2.5vw, 28px);
  right: clamp(16px, 2.5vw, 28px);
  font-family: var(--rg-font-display, 'Syne', sans-serif);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.35;
  text-align: right;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 10px 14px;
  letter-spacing: 0.01em;
}

.rg-cell__overlay-stamp em {
  font-style: italic;
  font-family: var(--rg-font-display, 'Syne', sans-serif);
}

/* ══════════════════════════════════════════
   EYEBROW
══════════════════════════════════════════ */
.rg-cell__eyebrow {
  display: block;
  font-family: var(--rg-font-body, 'DM Sans', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-accent, #0ea5e9);
  margin-bottom: 18px;
}

.rg-cell__eyebrow--light {
  color: var(--rg-accent, #0ea5e9);
}

/* ══════════════════════════════════════════
   TITLE
══════════════════════════════════════════ */
.rg-cell__title {
  font-family: var(--rg-font-display, 'Syne', sans-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--rg-white, #fff);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  transition: color 0.25s ease;
}

.rg-cell--dark:hover .rg-cell__title,
.rg-cell--overlay:hover .rg-cell__title {
  color: var(--rg-accent-hover, #38bdf8);
}

.rg-cell__title--light {
  color: var(--rg-white, #fff);
}

/* ══════════════════════════════════════════
   HORIZONTAL RULE (left-border accent)
══════════════════════════════════════════ */
.rg-cell__rule {
  width: 40px;
  height: 0;
  border: none;
  border-top: 2px solid var(--rg-accent, #0ea5e9);
  margin: 20px 0 18px;
  transition: width 0.4s var(--rg-ease, cubic-bezier(0.16,1,0.3,1));
}

.rg-cell:hover .rg-cell__rule {
  width: 64px;
}

/* ══════════════════════════════════════════
   BODY TEXT
══════════════════════════════════════════ */
.rg-cell__body {
  font-family: var(--rg-font-body, 'DM Sans', sans-serif);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--rg-white-60, rgba(255,255,255,0.60));
  border-left: 2.5px solid var(--rg-accent, #0ea5e9);
  padding-left: 14px;
  margin-bottom: 0;
}

.rg-cell__body--light {
  color: rgba(255,255,255,0.72);
  border-left-color: var(--rg-accent, #0ea5e9);
}

/* ══════════════════════════════════════════
   ARROW CTA
══════════════════════════════════════════ */
.rg-cell__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  color: var(--rg-accent, #0ea5e9);
  text-decoration: none;
  align-self: flex-start;
  transition:
    color 0.25s ease,
    transform 0.3s var(--rg-ease, cubic-bezier(0.16,1,0.3,1));
}

.rg-cell__arrow svg {
  width: 22px;
  height: 22px;
  transition: transform 0.35s var(--rg-ease, cubic-bezier(0.16,1,0.3,1));
}

.rg-cell:hover .rg-cell__arrow {
  color: var(--rg-accent-hover, #38bdf8);
}

.rg-cell:hover .rg-cell__arrow svg {
  transform: translateX(6px);
}

.rg-cell__arrow--light {
  color: var(--rg-accent, #0ea5e9);
}

/* ══════════════════════════════════════════
   CELL BORDER LINES (editorial dividers)
══════════════════════════════════════════ */
.rg-grid-row .rg-cell + .rg-cell {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.rg-row-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════════
   FOCUS / ACCESSIBILITY
══════════════════════════════════════════ */
.rg-cell__arrow:focus-visible {
  outline: 2px solid var(--rg-accent, #0ea5e9);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .rg-grid-row {
    grid-template-columns: 1fr 1fr;
  }

  .rg-cell--span-tall {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .rg-row-bottom .rg-cell--span-tall {
    order: -1;
  }
  .rg-editorial-grid{
    height: fit-content;
  }
}

@media (max-width: 600px) {
  .rg-grid-row {
    grid-template-columns: 1fr;
  }

  .rg-cell--span-tall {
    grid-column: 1;
    min-height: 260px;
  }

  .rg-cell--dark,
  .rg-cell__overlay-content {
    padding: 32px 24px;
  }

  .rg-cell__overlay-stamp {
    display: none;
  }
  .rg-editorial-grid{
    padding: 10px;
  }
}
































/* ═══════════════════════════════════════════════════════════
   RG-RE-HERO
═══════════════════════════════════════════════════════════ */

/* ── Shell ─────────────────────────────────────────────────── */
.rg-re-hero {
  position: relative;
  height: var(--rg-biz-hero-h);
  min-height: 110vh;
  overflow: hidden;
  margin-top: calc(-1 * var(--rg-navbar-h));
  z-index: 0;
}

/* ── Video ─────────────────────────────────────────────────── */
.rg-re-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rg-re-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.rg-re-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.50) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.rg-re-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ── Content ───────────────────────────────────────────────── */
.rg-re-hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform, opacity;
}

.rg-re-hero__inner {
  max-width: var(--rg-drawer-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

/* ── Eyebrow ───────────────────────────────────────────────── */
.rg-re-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rg-white-60);
  margin-bottom: 36px;
}

.rg-re-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rg-accent);
  display: inline-block;
}

/* ── Heading split ─────────────────────────────────────────── */
.rg-re-hero__heading-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(24px, 4vw, 56px);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.rg-re-hero__split {
  will-change: transform;
  transition: transform 0.08s linear;
}

.rg-re-hero__h1 {
  font-family: var(--rg-font-display);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--rg-white);
  margin: 0;
}

.rg-re-hero__h1--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}

/* ── Description ───────────────────────────────────────────── */
.rg-re-hero__desc {
  font-family: var(--rg-font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--rg-white-60);
  max-width: 560px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.rg-re-hero__br-desk {
  display: none;
}

@media (min-width: 700px) {
  .rg-re-hero__br-desk { display: block; }
}

/* ── CTA ───────────────────────────────────────────────────── */
.rg-re-hero__cta-wrap {
  display: flex;
  align-items: center;
}

.rg-re-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rg-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rg-white);
  border: 1px solid var(--rg-white-40);
  border-radius: 2px;
  padding: 13px 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--rg-trans-mid) ease,
    color var(--rg-trans-mid) ease;
}

.rg-re-hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rg-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--rg-trans-mid) var(--rg-ease);
  z-index: 0;
}

.rg-re-hero__cta:hover::before { transform: scaleX(1); }
.rg-re-hero__cta:hover {
  color: var(--rg-black);
  border-color: var(--rg-white);
}

.rg-re-hero__cta-label,
.rg-re-hero__cta-icon {
  position: relative;
  z-index: 1;
}

/* ── Scroll hint ───────────────────────────────────────────── */
.rg-re-hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.rg-re-hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--rg-accent), transparent);
  animation: rgReScrollPulse 2s ease-in-out infinite;
}

@keyframes rgReScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1); }
}

.rg-re-hero__scroll-label {
  font-family: var(--rg-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-white-40);
  writing-mode: vertical-rl;
}





/* ════════════════════════════════════════════════
   styles.css — Rohindia Editorial Tile Gallery
   ════════════════════════════════════════════════ */

/* ── Section ─────────────────────────────────── */
.rg-gallery {
  background: var(--rg-white);
  padding: var(--rg-section-py) clamp(16px, 4vw, 56px);
  overflow: hidden;
  margin: 15px;
}

/* ── Grid ────────────────────────────────────── */
/*
  5-column asymmetric grid:
  Row 1: [HERO 2×2] [TALL 1×2] [SQUARE 1×1] [ACCENT 1×1]
  Row 2: (HERO continues) (TALL continues) [WIDE 2×1]
  Row 3: [PORTRAIT 1×1] [BANNER 3×1]

  Column template: 2fr 1fr 1.5fr 1fr 1.5fr  → 5 cols
*/
.rg-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr 1.5fr;
  grid-template-rows: auto;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ── Card base ───────────────────────────────── */
.rg-gallery__card {
  position: relative;
  border-radius: var(--rg-card-radius);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  /* scroll reveal start state */
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--rg-trans-slow) var(--rg-ease),
    transform var(--rg-trans-slow) var(--rg-ease),
    box-shadow var(--rg-trans-mid) var(--rg-ease);
  will-change: transform, opacity;
}

.rg-gallery__card.rg-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card hover lift */
.rg-gallery__card:hover {
  box-shadow:
    0 20px 60px rgba(0,0,0,0.16),
    0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.rg-gallery__card.rg-visible:hover {
  transform: translateY(-4px);
}

/* ── Grid placement (desktop) ────────────────── */

/* HERO: col 1–3, row 1–3 */
.rg-gallery__card--hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  min-height: 420px;
}

/* TALL: col 3, row 1–2 */
.rg-gallery__card--tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  min-height: 420px;
}

/* SQUARE: col 4–5, row 1 */
.rg-gallery__card--square {
  grid-column: 4 / 6;
  grid-row: 1 / 2;
  min-height: 200px;
}

/* ACCENT: col 4, row 2 */
.rg-gallery__card--accent {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
  min-height: 200px;
}

/* PORTRAIT: col 5, row 2 */
.rg-gallery__card--portrait {
  grid-column: 5 / 6;
  grid-row: 2 / 3;
  min-height: 200px;
}

/* WIDE BOTTOM: col 1–4, row 3 */
.rg-gallery__card--wide {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
  min-height: 210px;
}

/* BANNER: col 4–6, row 3 */
.rg-gallery__card--banner {
  grid-column: 4 / 6;
  grid-row: 3 / 4;
  min-height: 210px;
}

/* ── Media (image container) ─────────────────── */
.rg-gallery__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.rg-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--rg-trans-slow) var(--rg-ease);
  will-change: transform;
}

.rg-gallery__card:hover .rg-gallery__img {
  transform: scale(1.06);
}

/* ── Overlay ─────────────────────────────────── */
.rg-gallery__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.28) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--rg-trans-mid) var(--rg-ease);
}

.rg-gallery__card:hover .rg-gallery__overlay {
  opacity: 1;
}

/* Always-on subtle vignette for title legibility */
.rg-gallery__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.38) 0%,
    transparent 45%
  );
  pointer-events: none;
}

/* ── Content block ───────────────────────────── */
.rg-gallery__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: clamp(16px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Tag ─────────────────────────────────────── */
.rg-gallery__tag {
  font-family: var(--rg-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rg-accent);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--rg-trans-fast) var(--rg-ease) 0.05s,
    transform var(--rg-trans-mid) var(--rg-ease) 0.05s;
  display: block;
  margin-bottom: 2px;
}

.rg-gallery__card:hover .rg-gallery__tag {
  opacity: 1;
  transform: translateY(0);
}

/* ── Title ───────────────────────────────────── */
.rg-gallery__title {
  font-family: var(--rg-font-display);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--rg-white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  transform: translateY(0);
  transition: transform var(--rg-trans-mid) var(--rg-ease);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.rg-gallery__card:hover .rg-gallery__title {
  transform: translateY(-4px);
}

/* ── Description ─────────────────────────────── */
.rg-gallery__desc {
  font-family: var(--rg-font-body);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--rg-trans-mid) var(--rg-ease) 0.08s,
    transform var(--rg-trans-mid) var(--rg-ease) 0.08s;
  max-width: 36ch;
}

.rg-gallery__card:hover .rg-gallery__desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── Accent glow (hero card only) ────────────── */
.rg-gallery__accent {
  position: absolute;
  top: 24px; right: 24px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rg-accent);
  box-shadow: 0 0 16px 4px rgba(14,165,233,0.5);
  z-index: 4;
  animation: rg-dot-breathe 3s ease-in-out infinite;
}

@keyframes rg-dot-breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.5); }
}

/* ── Counter (banner tile) ───────────────────── */
.rg-gallery__counter {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--rg-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.25);
  z-index: 4;
  user-select: none;
  transition: color var(--rg-trans-mid);
}

.rg-gallery__card--banner:hover .rg-gallery__counter {
  color: var(--rg-accent);
}

/* ── Staggered reveal delays ─────────────────── */
.rg-gallery__card[data-index="0"] { transition-delay: 0ms; }
.rg-gallery__card[data-index="1"] { transition-delay: 80ms; }
.rg-gallery__card[data-index="2"] { transition-delay: 140ms; }
.rg-gallery__card[data-index="3"] { transition-delay: 100ms; }
.rg-gallery__card[data-index="4"] { transition-delay: 180ms; }
.rg-gallery__card[data-index="5"] { transition-delay: 220ms; }
.rg-gallery__card[data-index="6"] { transition-delay: 160ms; }

/* Once visible, remove delay so hover is instant */
.rg-gallery__card.rg-visible {
  transition-delay: 0ms !important;
  opacity: 1;
  transform: translateY(0);
}

/* ── Tilt effect (applied by JS) ─────────────── */
.rg-gallery__card.rg-tilt-active {
  transition:
    transform 0.12s linear,
    box-shadow var(--rg-trans-mid) var(--rg-ease);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rg-gallery__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .rg-gallery__card--hero     { grid-column: 1 / 3; grid-row: 1 / 2; min-height: 380px; }
  .rg-gallery__card--tall     { grid-column: 3 / 4; grid-row: 1 / 3; min-height: 560px; }
  .rg-gallery__card--square   { grid-column: 1 / 2; grid-row: 2 / 3; min-height: 260px; }
  .rg-gallery__card--accent   { grid-column: 2 / 3; grid-row: 2 / 3; min-height: 260px; }
  .rg-gallery__card--portrait { grid-column: 1 / 2; grid-row: 3 / 4; min-height: 260px; }
  .rg-gallery__card--wide     { grid-column: 2 / 4; grid-row: 3 / 4; min-height: 260px; }
  .rg-gallery__card--banner   { grid-column: 1 / 4; grid-row: 4 / 5; min-height: 240px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
   ══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .rg-gallery {
    padding-block: 40px;
    padding-inline: 14px;
  }

  .rg-gallery__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Reset all spans to single column */
  .rg-gallery__card,
  .rg-gallery__card--hero,
  .rg-gallery__card--tall,
  .rg-gallery__card--square,
  .rg-gallery__card--accent,
  .rg-gallery__card--portrait,
  .rg-gallery__card--wide,
  .rg-gallery__card--banner {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 260px;
  }

  .rg-gallery__card--hero,
  .rg-gallery__card--wide,
  .rg-gallery__card--banner {
    min-height: 320px;
  }

  /* Touch: overlay always slightly visible on mobile */
  .rg-gallery__overlay {
    opacity: 0.6;
  }

  .rg-gallery__tag {
    opacity: 1;
    transform: translateY(0);
  }

  .rg-gallery__desc {
    opacity: 1;
    transform: translateY(0);
    font-size: 12px;
  }

  /* Disable tilt on touch */
  .rg-gallery__card.rg-tilt-active {
    transform: none !important;
  }

  .rg-gallery__card:hover {
    transform: none;
  }
  .rg-re-hero__eyebrow {
  
  gap: 5px;
  
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.10em;
  
  margin-bottom: 20px;
}
}

/* ── Reduced motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .rg-gallery__card,
  .rg-gallery__img,
  .rg-gallery__overlay,
  .rg-gallery__title,
  .rg-gallery__tag,
  .rg-gallery__desc {
    transition: none !important;
    animation: none !important;
  }

  .rg-gallery__card {
    opacity: 1;
    transform: none;
  }
}