/* ===== TOKENS ===== */
body.lightrow{
  --lr-navy:#0B0D10;
  --lr-steel:#1B2932;
  --lr-aqua:#00AEEF;
  --lr-red:#E23636;
  --lr-gold:#F6B20E;
  --white:#fff;
  --muted:#A7B0B8;
  --radius:20px;
  --shadow:0 14px 40px rgba(0,0,0,.35);
  background: linear-gradient(180deg, #0b0d10 0%, #101820 40%, #0b0d10 100%);
  color:var(--white);
}

/* ===== HERO ===== */
.lr-hero{
  --img: var(--hero);
  min-height:72vh;
  display:grid; place-items:center;
  text-align:center;
  background: var(--lr-navy) no-repeat center/cover;
  background-image: var(--img);
  position:relative; overflow:hidden;
}
.lr-hero::after{
  /* stage light sweep */
  content:""; position:absolute; inset:-10% -30%;
  background: radial-gradient(60% 60% at 50% 20%, rgba(0,174,239,.25), transparent 70%);
  mix-blend-mode: screen; animation: sweep 10s linear infinite;
}
@keyframes sweep{ 0%{transform:translateX(-30%)} 50%{transform:translateX(30%)} 100%{transform:translateX(-30%)} }

.lr-hero-inner{
  display:grid; gap:12px; padding:0 16px;
  text-shadow: 0 6px 26px rgba(0,0,0,.6);
}

.lr-hero p {
  color: #fff;                     /* make text white */
  margin-top: 410px;                /* push it further below the hero image */
  font-size: clamp(1rem, 1.3vw + 0.6rem, 1.5rem);
  font-weight: 500;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.lr-section h2,
.center {
  color: #fff; 
  padding-bottom: 20px;                    /* force white on all section titles */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Just in case h2 was inheriting from a parent color */
.lr-text h2 {
  color: #fff;
}


/* CTA button (no green on hover) */
.lr-cta{
  display:inline-block; margin:10px auto 0;
  padding:12px 22px; border-radius:999px;
  background:var(--white); color:#000; text-decoration:none; font-weight:700;
  border:2px solid var(--white);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.lr-cta:hover{
  background:transparent; color:var(--white);
  box-shadow:0 0 0 4px rgba(255,255,255,.12);
  transform:translateY(-2px);
}

/* ===== LAYOUT ===== */
.lr-section{ max-width:1200px; margin:0 auto; padding:70px 20px; }
.center{text-align:center}

.lr-two{ display:grid; grid-template-columns:1.05fr .95fr; gap:38px; align-items:center; }
.lr-text p{ color:var(--muted); }
.lr-media img{ width:100%; height:auto; border-radius:var(--radius); box-shadow:var(--shadow); }

/* Pills */
.lr-pills{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.pill{ padding:8px 12px; border-radius:999px; font-weight:700; font-size:.9rem;
  background:linear-gradient(90deg, var(--lr-aqua), var(--lr-red)); color:#0b0d10; }

/* ===== UNIFORM CARDS ===== */
.lr-card-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.lr-card{
  background:linear-gradient(180deg, #121a22 0%, #0d141a 100%);
  border:1px solid #1e2b35;
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lr-card:hover{ transform:translateY(-6px); border-color:rgba(0,174,239,.35); box-shadow:0 20px 50px rgba(0,174,239,.15); }

/* SAME size media across all cards */
.card-media{
  aspect-ratio: 4 / 5;            /* << consistent frame */
  background:#0f1620;
  overflow:hidden;
}
.card-media img{
  width:100%; height:100%;
  object-fit:cover;               /* << same image behaviour */
  display:block;
  transform:scale(1.02);
}
.card-body{ padding:14px 16px 18px; }
.card-body h3{ margin:0 0 6px; font-size:1.1rem; }
.card-body p{ margin:0; color:var(--muted); }

/* ===== BRAND IN ACTION GRID ===== */
.lr-grid{
  display:grid; gap:18px;
  grid-template-columns:repeat(12, 1fr);
}
.lr-grid img{
  width:100%; height:100%; object-fit:cover; display:block; border-radius:var(--radius);
  box-shadow: var(--shadow);
}
/* Larger hero-like items */
.lr-grid img:nth-child(1){ grid-column:span 12; aspect-ratio: 16/6; }
.lr-grid img:nth-child(2){ grid-column:span 4; aspect-ratio: 4/3; }
.lr-grid img:nth-child(3){ grid-column:span 4; aspect-ratio: 4/3; }
.lr-grid img:nth-child(4){ grid-column:span 4; aspect-ratio: 4/3; }
.lr-grid img:nth-child(5){ grid-column:span 12; aspect-ratio: 16/6; }

/* CTA strip */
.lr-cta-section{ text-align:center; }
.lr-cta-section h2{ margin-bottom:14px; }

/* ===== FADE + SLIDE ===== */
.fade-section{ opacity:0; transform:translateY(22px); will-change:opacity, transform; }
.fade-section.in-view{ opacity:1; transform:none; transition:opacity .7s ease, transform .7s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px){
  .lr-two{ grid-template-columns:1fr; }
  .lr-card-grid{ grid-template-columns:repeat(2,1fr); }
  .lr-grid img:nth-child(1), .lr-grid img:nth-child(5){ aspect-ratio: 16/9; }
}
@media (max-width:680px){
  .lr-card-grid{ grid-template-columns:1fr; }
  .lr-grid{ grid-template-columns:1fr; }
  .lr-grid img{ grid-column:span 1 !important; aspect-ratio: 16/10 !important; }
}


