/* ─────────────────────────────────────────────────────────────
   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:        100svh;
  --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);
}

::-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: 72px 0 60px;
  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(5, 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;
  }

  .rg-footer-brand {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
  }

  .rg-footer-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
}

/* ─────────────────────────────────────────────────────────────
   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;
  }

  /* ── Footer ── */
  .rg-footer-top {
    grid-template-columns: 1fr;
    padding: 48px 0 40px;
    gap: 40px;
  }

  .rg-footer-brand {
    flex-direction: column;
    gap: 16px;
  }

  .rg-footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .rg-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ─────────────────────────────────────────────────────────────
   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;
  }
}

/* ─────────────────────────────────────────────────────────────
   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(48px, 6vw, 80px);
  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
══════════════════════════════════════════════════════ */
.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: clamp(64px, 9vw, 120px) 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(40px, 6vw, 96px);
  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(24px, 6vw, 100px) 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(16px, 3vw, 40px);
  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: 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: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 100px);
}

.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.6rem, 6.5vw, 5.5rem);
  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 3rem;
}

/* 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);
  }
}
@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; }
}






















/* 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: 600px;
  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;
}

.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
══════════════════════════════════════════ */
.rg-about-mission {
  background: var(--rg-white);
  padding-block: var(--rg-about-section-py);
}

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

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

.rg-about-mission__pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rg-about-mission__pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.rg-about-mission__pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--rg-accent-muted);
  border: 1px solid rgba(14,165,233,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.rg-about-mission__pillar-title {
  font-family: var(--rg-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--rg-black);
  margin: 0 0 8px;
}

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

/* Year card */
.rg-about-mission__year-card {
  position: relative;
  border-radius: var(--rg-card-radius);
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(14,165,233,0.07), rgba(14,165,233,0.02));
  border: 1px solid rgba(14,165,233,0.18);
  overflow: hidden;
  transition: box-shadow var(--rg-trans-mid) var(--rg-ease),
              border-color var(--rg-trans-mid) var(--rg-ease);
}

.rg-about-mission__year-card:hover {
  box-shadow: 0 0 60px rgba(14,165,233,0.15), 0 0 0 1px rgba(14,165,233,0.35);
  border-color: rgba(14,165,233,0.45);
}

/* animated border top */
.rg-about-mission__year-card-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--rg-accent),
    transparent
  );
  background-size: 200% 100%;
  animation: rg-border-slide 3s linear infinite;
}

@keyframes rg-border-slide {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.rg-about-mission__year-number {
  display: block;
  font-family: var(--rg-font-display);
  font-size: clamp(72px, 10vw, 110px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--rg-black);
  -webkit-text-stroke: 1px rgba(14,165,233,0.4);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

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

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

.rg-about-mission__year-stats {
  display: flex;
  gap: 32px;
}

.rg-about-mission__year-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rg-about-mission__stat-n {
  font-family: var(--rg-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--rg-black);
  line-height: 1;
}

.rg-about-mission__stat-l {
  font-family: var(--rg-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rg-black-40);
}


/* ══════════════════════════════════════════
   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;
}

.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: 52px;
  height: 52px;
  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;
}


/* ══════════════════════════════════════════
   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: 150px;
  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
══════════════════════════════════════════ */
.rg-about-leadership {
  background: var(--rg-white);
  padding-block: clamp(100px, 12vw, 160px);
  overflow: hidden;
}

.rg-about-leadership__content {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  padding-inline: clamp(20px, 5vw, 60px);
  position: relative;
}

.rg-about-leadership__quote-mark {
  font-family: var(--rg-font-display);
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 700;
  color: var(--rg-accent);
  opacity: 0.07;
  line-height: 0.7;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.rg-about-leadership__quote {
  font-family: var(--rg-font-display);
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--rg-black);
  margin: 0 0 40px;
  position: relative;
}

.rg-about-leadership__attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rg-about-leadership__attr-line {
  width: 40px;
  height: 1px;
  background: var(--rg-accent);
  margin-bottom: 8px;
}

.rg-about-leadership__attr-name {
  font-family: var(--rg-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--rg-black);
  letter-spacing: 0.06em;
}

.rg-about-leadership__attr-role {
  font-family: var(--rg-font-body);
  font-size: 12px;
  color: var(--rg-black-40);
  letter-spacing: 0.06em;
}


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

.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(36px, 6vw, 72px);
  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;
  }
}

@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-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: var(--rg-biz-vision-bg);
  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(20px, 5vw, 72px);
}

/* ── 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;
}

.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: 4rem 0;
  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 {
  /* width: 100%; */
  max-width: 100%;
  overflow: hidden;
  padding: 100px;
  background: var(--rg-white);
}

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

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

/* Tall image cells (col 1 row-top, col 2 row-bottom) */
.rg-cell--span-tall {
  min-height: 300px;
}

/* ══════════════════════════════════════════
   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(28px, 4vw, 48px) 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;
  }
}

@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;
  }
}