
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: var(--fb);
}
.container {
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
}
.section {
  padding: var(--spy) 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
}
.section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.section--off {
  background: var(--off);
}
h1,
h2,
h3,
h4 {
  font-family: var(--fd);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.t-disp {
  font-size: clamp(44px, 7vw, 70px);
  font-weight: 600;
}
.t-sec {
  font-size: clamp(25px, 3.5vw, 44px);
  font-weight: 700;
}
.t-card {
  font-size: 18px;
  font-weight: 700;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow--lt {
  color: rgba(255, 255, 255, 0.45);
}
.lead {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.75;
}
.lead--lt {
  color: rgba(255, 255, 255, 0.6);
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--red-glow);
}
.btn-out {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn-out:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn-outd {
  border: 1px solid rgba(17, 17, 17, 0.2);
  color: var(--ink);
}
.btn-outd:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-wh {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn-wh:hover {
  background: var(--off);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}
/* App/login */
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  transition: all var(--t);
}
.app-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.abl {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.abl span:first-child {
  font-size: 9.5px;
  opacity: 0.55;
  margin-bottom: 2px;
}
.abl span:last-child {
  font-size: 13px;
  font-weight: 700;
}
.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r);
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition: all var(--t);
}
.login-btn:hover {
  background: var(--red-dark);
}
/* Placeholders */
.ph {
  background: linear-gradient(135deg, #ebebeb 0%, #d8d8d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: #aaa;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--r);
  overflow: hidden;
}
.ph svg {
  opacity: 0.35;
}
.vid-ph {
  background: #111;
  border-radius: var(--rl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  cursor: pointer;
}
.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t);
}
.vid-ph:hover .play-btn {
  transform: scale(1.08);
}
/* Topbar */
.topbar {
  background: var(--black);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 200;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__msg {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}
.topbar__msg strong {
  color: rgba(255, 255, 255, 0.85);
}
.topbar__r {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.header.scrolled {
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.2);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header.scrolled .nav__logo img {
  content: url("../images/logo-white.png");
}
.header.scrolled .nav__link {
  color: rgba(255, 255, 255, 0.7);
}
.header.scrolled .nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.header.scrolled .nav__link.active {
  color: var(--red);
}
.header.scrolled .hamburger span {
  background: var(--white);
}
.nav {
  display: flex;
  align-items: center;
  height: 66px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-word {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
}
.logo-word em {
  color: var(--red);
  font-style: normal;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 20px;
}
.nav__link {
  padding: 7px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  border-radius: var(--r);
  transition: all var(--t);
  position: relative;
}
.nav__link:hover {
  color: var(--ink);
  background: var(--off);
}
.nav__link.active {
  color: var(--red);
}
.nav__item {
  position: relative;
}
.nav__drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  padding: 8px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t);
}
.nav__item:hover .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__drop a {
  display: block;
  padding: 10px 13px;
  font-size: 13px;
  color: var(--mid);
  border-radius: var(--r);
  transition: all var(--t);
}
.nav__drop a:hover {
  background: var(--off);
  color: var(--red);
}
.nav__drop a strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.nav__drop a span {
  font-size: 11.5px;
  color: var(--muted);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 10px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 140;
  padding: 110px 6% 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mob-nav.open {
  display: flex;
}
.mob-nav a {
  padding: 13px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--r);
  transition: all var(--t);
}
.mob-nav a:hover {
  background: var(--off);
  color: var(--red);
}
.mob-hr {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}
.mob-apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}
.mob-apps .app-btn {
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
/* Page nav */
.page-nav {
  background: var(--red);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.page-nav::-webkit-scrollbar {
  display: none;
}
.page-nav__in {
  display: flex;
}
.page-nav a {
  display: inline-block;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--t);
  border-bottom: 2px solid transparent;
}
.page-nav a:hover,
.page-nav a.active {
  color: var(--white);
  border-bottom-color: var(--white);
}
/* Hero */
.hero {
  background: var(--grey);
  min-height: 91vh;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204, 26, 20, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 26, 20, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(204, 26, 20, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero__in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(204, 26, 20, 0.4);
  background: rgba(204, 26, 20, 0.1);
  color: #ff7370;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.pdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero__sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 600px;
  font-weight: 100;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__cta .btn {
  padding: 16px 32px;
  font-size: 15.5px;
}
.hero__sliders {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45vw;
  max-width: none;
  margin: 0;
  height: 100%;
  display: flex;
  gap: 24px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  z-index: 1;
}

.hero__slider-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero__slider-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__slider-col--down .hero__slider-track {
  animation: slideDown 30s linear infinite;
}

.hero__slider-col--up .hero__slider-track {
  transform: translateY(-50%);
  animation: slideUp 30s linear infinite;
}

.hero__slider-track .ripple-image {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-position: center;
}
.hero__slider-track .ripple-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.hero__slider-track .ripple-image canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__slider-track:hover {
  animation-play-state: paused;
}

@keyframes slideDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes slideUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.hero__badge {
  position: absolute;
  bottom: 80px;
  left: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--rl);
  padding: 14px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatBadge 9s ease-in-out infinite alternate;
}
.hero__badge-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(211, 47, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.hero__badge strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.hero__badge span {
  font-size: 11.5px;
  color: var(--muted);
}
@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.35; }
}
@keyframes floatMain {
  0%, 100% { transform: translate(-50%, 0) rotate(0deg); }
  50% { transform: translate(-50%, -12px) rotate(1.5deg); }
}
@keyframes floatFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-3deg); }
}
@keyframes floatFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}
@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
/* Ticker */
.ticker {
  background: var(--red);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 10;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: scroll-ticker 30s linear infinite;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker__content {
  display: flex;
}
.ticker__item {
  font-family: 'Halyard Display', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}
.ticker__item::after {
  content: "*";
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 1.5em;
  transform: translateY(12%);
}
/* Who we are */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.who-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-template-rows: 210px 210px;
}
.who-img-main {
  grid-row: 1/3;
  border-radius: var(--rl);
  overflow: hidden;
}
.who-img-sub {
  border-radius: var(--r);
  overflow: hidden;
}
.who-img-main .ph,
.who-img-sub .ph {
  height: 100%;
  border-radius: 0;
}
.impact-chips {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--t);
}
.chip::before {
  content: "→";
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--t);
}
.chip p {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.chip:hover {
  border-color: rgba(204, 26, 20, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transform: translateX(4px);
}
.chip:hover::before {
  transform: translateX(4px);
}
.div-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.div-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t);
}
.div-row:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(204, 26, 20, 0.06);
}
.div-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 5px;
}
.div-row strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.div-row span {
  font-size: 13px;
  color: var(--muted);
}
.vision-block {
  margin-top: 56px;
  padding: 36px 40px;
  border-radius: var(--rl);
  background: var(--charcoal);
  color: var(--white);
  border-left: 4px solid var(--red);
}
.vision-block .eyebrow {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.vision-block p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}
/* Stats */
.stats-band {
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat fixed;
  padding: 80px 0;
  position: relative;
  z-index: 10;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-num {
  font-family: "Halyard Display", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-num em {
  color: var(--red);
  font-style: normal;
}
.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}
/* CTA band */
.cta-band {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.cta-band::before {
  content: "FEDIRONICS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fd);
  font-size: 200px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(26px, 3.5vw, 42px);
  max-width: 560px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 34px;
  font-size: 15px;
  position: relative;
  z-index: 2;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
/* About */
.about-band {
  background: linear-gradient(135deg, var(--red), #111, var(--red));
  background-size: 200% 200%;
  animation: redBlackPulse 10s ease infinite;
  padding: 64px 0;
}
@keyframes redBlackPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.about-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-band__grid {
    grid-template-columns: 1fr;
  }
}
.about-band__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.about-band__images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}
.spin-border-wrap {
  position: relative;
  border-radius: 14px;
  padding: 2px;
  overflow: hidden;
  z-index: 1;
}
.spin-border-wrap.delay-2 {
  margin-top: 40px;
}
.spin-border-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.08);
  z-index: -2;
}
.spin-border-wrap::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  background: conic-gradient(transparent 0deg, transparent 330deg, rgba(255,255,255,1) 360deg);
  z-index: -1;
  animation: spinBorder 6s linear infinite;
}
.spin-border-wrap.delay-2::before {
  animation-delay: -3s;
}
@keyframes spinBorder {
  0% { transform: rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: rotate(360deg); opacity: 1; }
  60% { transform: rotate(360deg); opacity: 0; }
  100% { transform: rotate(360deg); opacity: 0; }
}
.spin-border-wrap img, .spin-border-wrap > a {
  display: block;
  border-radius: 12px;
  z-index: 2;
  position: relative;
  width: 100%;
}
.video-overlay-wrap {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.video-overlay-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}
.video-overlay-wrap:hover::after {
  background: rgba(0,0,0,0.5);
}
.video-overlay-wrap img {
  margin-top: 0 !important;
  transition: transform 0.4s ease;
  display: block;
}
.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
  z-index: 5;
}
.video-overlay-play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}
.video-overlay-wrap:hover .video-overlay-play {
  background: var(--red);
  color: white;
}
.about-band h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.about-band p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
}
.mission-block {
  padding: 36px;
  border-radius: var(--rl);
  background: var(--red);
  color: var(--white);
}
.mission-block .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.mission-block p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}
.core-values-section {
  background: #1a1a1a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.core-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .core-values-grid { grid-template-columns: 1fr; gap: 40px; }
}
.core-values-left {
  position: relative;
  pointer-events: none;
  z-index: 10;
}
.core-values-right {
  position: relative;
  display: flex;
  justify-content: center;
}

/* ── Card Slider ── */
.cv-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 360px;
}

/* Outer container wrapping card + bot */
.cv-card-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
}

/* Outer dark frame — matches the dark gray shell */
.cv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 440px; /* Fixed height to keep card structure static */
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 30%, rgba(229, 91, 19, 0.18) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px;
  box-shadow: 
    inset 0 1.5px 0 rgba(255, 255, 255, 0.3), /* Skeuomorphic top glossy edge */
    inset 0 -1.5px 0 rgba(0, 0, 0, 0.15),
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 30px 60px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  gap: 16px;
}

/* Beige inner card — fully rounded on all 4 corners */
.cv-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6e0d3;
  border-radius: 20px;
  padding: 20px;
  height: 320px; /* Lock height */
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.4), 0 4px 12px rgba(0,0,0,0.1);
}
.cv-cursive {
  font-family: 'dirtyline-36daysoftype-2022', serif;
  font-size: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  height: 120px;
  padding: 0 10px;
  background: linear-gradient(135deg, #FF5E36 0%, #FF2E00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.25;
  text-align: center;
}

/* Mid section — transparent, no background */
.cv-card-mid {
  padding: 16px 20px 24px;
  height: 70px; /* Lock height */
  display: flex;
  align-items: center;
}
.cv-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  transition: opacity 0.35s ease, transform 0.35s ease;
  letter-spacing: -0.2px;
}
.cv-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cv-cursor {
  display: inline;
  margin-left: 2px;
  animation: cv-blink 0.8s infinite;
  color: #FF5E36;
  font-weight: 300;
}
@keyframes cv-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Orange bottom tab — peeks out from behind the frame */
.cv-card-bot {
  background: #E55B13;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  width: 86%;
  height: 75px;
  margin-top: -4px;
  border-radius: 0 0 18px 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 -70px 40px rgba(229, 91, 19, 0.35), 0 10px 25px rgba(0, 0, 0, 0);
}
.cv-logo-icon {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1); /* Forces standard icon color to white */
  opacity: 0.95;
}
.cv-notch {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #1a1a1a; /* Matches core-values-section background */
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.cv-notch-l {
  left: -6px;
}
.cv-notch-r {
  right: -6px;
}

/* Pager pill */
.cv-pager {
  margin-top: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
}
.cv-pager-current {
  color: #E55B13;
  font-weight: 700;
}
.co-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.co-card {
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t);
}
.co-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}
.co-img {
  aspect-ratio: 16/9;
}
.co-img .ph {
  height: 100%;
  border-radius: 0;
}
.co-body {
  padding: 24px 26px 28px;
}
.co-n {
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 800;
  color: var(--red-tint);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.co-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.co-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}
/* Solutions */
.sol-sec {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.sol-sec:last-child {
  border-bottom: none;
}
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sol-grid.rev {
  direction: rtl;
}
.sol-grid.rev > * {
  direction: ltr;
}
.sol-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--rl);
  overflow: hidden;
}
.sol-img .ph {
  height: 100%;
  border-radius: 0;
}
.sol-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red-tint);
  color: var(--red);
  margin-bottom: 16px;
}
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.lg h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.blist {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.blist li {
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.blist li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}
/* Projects */
.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.proj-card {
  border-radius: var(--rl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.proj-img .ph {
  height: 100%;
  border-radius: 0;
  min-height: 280px;
}
.proj-card:first-child {
  grid-row: 1/3;
}
.proj-card:first-child .proj-img .ph {
  min-height: 100%;
  aspect-ratio: 3/4;
}
.proj-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  color: var(--white);
}
.proj-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proj-over h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.proj-over p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
/* ESG */
/* Refactored ESG Rows (Horizontal Alternating Cards) */
.esg-rows {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 56px;
}
.esg-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.02), 
    inset 0 1px 0 var(--white);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
}
.esg-row:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.05), 
    inset 0 1px 0 var(--white);
  border-color: rgba(0, 0, 0, 0.09);
}
.esg-row--reverse {
  grid-template-columns: 1.15fr 1fr;
}
.esg-row--reverse .esg-row__img {
  order: 2;
}
.esg-row--reverse .esg-row__txt {
  order: 1;
}

/* Image Container */
.esg-row__img {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.esg-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.esg-row:hover .esg-row__img img {
  transform: scale(1.05);
}

/* Glassmorphic SVG Overlay Badge */
.esg-row__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.esg-row--env .esg-row__badge {
  background: rgba(34, 197, 94, 0.25);
  color: #15803d;
}
.esg-row--soc .esg-row__badge {
  background: rgba(229, 91, 19, 0.25);
  color: #b45309;
}
.esg-row--gov .esg-row__badge {
  background: rgba(13, 148, 136, 0.25);
  color: #0f766e;
}

/* Text Container */
.esg-row__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.esg-row__txt h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.esg-row__txt p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Accomplishments / Bullet Points List */
.esg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.esg-list li {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.esg-list li::before {
  content: "✓";
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.esg-row--env .esg-list li::before {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.esg-row--soc .esg-list li::before {
  background: rgba(229, 91, 19, 0.1);
  color: #E55B13;
}
.esg-row--gov .esg-list li::before {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

/* SVG sizes inside badge */
.esg-svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 991px) {
  .esg-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .esg-row--reverse .esg-row__img {
    order: 1;
  }
  .esg-row--reverse .esg-row__txt {
    order: 2;
  }
  .esg-row__img {
    height: 280px;
  }
}

/* SDG Alignment */
.sdg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.sdg-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px 8px 8px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}
.sdg-chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transform: translateY(-2px);
}
.sdg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  margin-right: 10px;
}

/* Custom SDG badge coloring */
.sdg-chip--7 { border-color: rgba(235, 149, 36, 0.3); }
.sdg-chip--7 .sdg-badge { background: #EB9524; }
.sdg-chip--9 { border-color: rgba(195, 20, 47, 0.3); }
.sdg-chip--9 .sdg-badge { background: #C3142F; }
.sdg-chip--12 { border-color: rgba(191, 139, 46, 0.3); }
.sdg-chip--12 .sdg-badge { background: #BF8B2E; }
.sdg-chip--13 { border-color: rgba(59, 125, 34, 0.3); }
.sdg-chip--13 .sdg-badge { background: #3B7D22; }

/* Teaser Dashboard / Coming Soon Refactored */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.teaser-card-wrap {
  position: relative;
  border-radius: 30px;
  padding: 2px;
  overflow: hidden;
  z-index: 1;
}
.teaser-card-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 3000px; height: 3000px;
  margin-left: -1500px; margin-top: -1500px;
  background: conic-gradient(transparent 0deg, transparent 300deg, rgba(229, 91, 19, 1) 360deg);
  z-index: -1;
  animation: spinBorder 6s linear infinite;
}
.teaser-card {
  margin-top: 64px;
  background: linear-gradient(-45deg, #cc1a14, #8b0000, #4a0000, #220000);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.3);
}
.teaser-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 91, 19, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.teaser-left {
  position: relative;
  z-index: 2;
}
.teaser-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teaser-visual {
  width: 100%;
  max-width: 220px;
  height: 290px;
  background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(3deg);
  transition: transform 0.4s ease;
}
.teaser-visual:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
}
.teaser-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.06), transparent 50%);
  transform: rotate(-30deg);
  pointer-events: none;
}
.teaser-visual-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 16px;
}
.teaser-visual-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #E55B13;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(229, 91, 19, 0.3);
  z-index: 3;
}
.teaser-visual-logo {
  height: 20px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}
.teaser-visual-title {
  margin-top: 30px;
  font-family: 'Halyard Display', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1.25;
}
.teaser-visual-title span {
  color: #E55B13;
  display: block;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.teaser-visual-footer {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
}
.teaser-form {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  max-width: 480px;
}
.teaser-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  border-radius: 12px;
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease;
}
.teaser-input:focus {
  outline: none;
  border-color: #E55B13;
  background: rgba(0, 0, 0, 0.6);
}
/* Gallery */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gal-item {
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gal-item .ph {
  height: 200px;
  border-radius: 0;
  transition: transform 0.5s ease;
}
.gal-item:hover .ph {
  transform: scale(1.05);
}
/* Lightbox styles */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover {
  color: var(--red);
}
.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
}
.gal-tall {
  grid-row: span 2;
}
.gal-tall .ph {
  height: 100%;
}
.gal-over {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: auto;
  background: rgba(28, 28, 28, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.gal-item:hover .gal-over {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.gal-over-text {
  color: var(--white);
}
.gal-over-text h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  color: var(--white);
}
.gal-over-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.gal-over svg {
  color: var(--red);
}

.play-btn-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(204, 26, 20, 0.5);
  border-radius: 50%;
  animation: pulsePlay 2s infinite;
  z-index: 1;
  pointer-events: none;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@keyframes pulsePlay {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
.vid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
/* News */
.news-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.t-chip {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--t);
  cursor: pointer;
}
.t-chip:hover,
.t-chip.active {
  border-color: var(--red);
  color: var(--red);
}
.t-chip.act {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t);
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.news-img {
  aspect-ratio: 16/9;
}
.news-img .ph {
  height: 100%;
  border-radius: 0;
}
.news-body {
  padding: 20px 22px 24px;
}
.news-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 6px;
}
.news-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.45;
  color: var(--ink);
}
.news-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
/* Careers */
.car-hero {
  background: var(--charcoal);
  padding: 72px 0;
  text-align: center;
}
.car-hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}
.car-hero p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.75;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.role-card {
  padding: 28px 24px;
  border-radius: var(--rl);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t);
}
.role-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(204, 26, 20, 0.07);
}
.role-ico {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--red);
}
.role-ico svg {
  width: 28px;
  height: 28px;
  display: block;
}
.role-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.role-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-areas:
    "header ."
    "details form";
  column-gap: 80px;
  row-gap: 0;
  align-items: start;
}
.cg-header { grid-area: header; }
.cg-details { grid-area: details; }
.cg-form { grid-area: form; }
.c-det {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.c-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.c-det p {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 2px;
}
.c-det a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t);
}
.c-det a:hover {
  color: var(--red);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
#formMsg {
  display: none;
  margin-top: 10px;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
}
/* Partners */
.plist {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* Marquee Effect */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
  position: relative;
  border-radius: var(--r);
}
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.plist.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  margin-top: 0;
  animation: slideMarquee 20s linear infinite;
}
.plist.marquee-track:hover {
  animation-play-state: paused;
}
.plist.marquee-track .p-ph {
  width: 240px;
  flex-shrink: 0;
}

@keyframes slideMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}
.p-ph {
  height: 76px;
  border-radius: var(--r);
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all var(--t);
}
.p-ph:hover {
  border-color: var(--red);
}
/* Partner Tags */
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 700px;
}
.ptag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  cursor: default;
}
.ptag:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.p-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.p-type {
  padding: 24px 22px;
  border-radius: var(--rl);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t);
}
.p-type:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(204, 26, 20, 0.06);
}
.p-type-ico {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--red);
}
.p-type-ico svg {
  width: 28px;
  height: 28px;
  display: block;
}
.p-type h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
.p-type p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 0 0;
  position: relative;
  z-index: 10;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-word {
  display: block;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.72;
  margin-bottom: 22px;
}
.socials {
  display: flex;
  gap: 8px;
}
.s-link {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--t);
}
.s-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.fcol h4 {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fcol ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fcol ul a {
  font-size: 13px;
  transition: color var(--t);
}
.fcol ul a:hover {
  color: var(--red);
}
.f-apps {
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px;
}
.f-apps .app-btn {
  background: rgba(255, 255, 255, 0.05);
}
.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
}
.footer-bot__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bot p {
  font-size: 12px;
}
/* Back to top */
.back-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t);
  z-index: 99;
  box-shadow: 0 4px 14px var(--red-glow);
}
.back-top.show {
  opacity: 1;
  transform: translateY(0);
}

/* Word Slider */
.word-slider {
  display: inline-flex;
  flex-direction: column;
  height: 1.08em;
  overflow: hidden;
  color: var(--red);
  vertical-align: bottom;
}
.word-slider-inner {
  display: flex;
  flex-direction: column;
  animation: slideWords 7.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.word-slider-inner em {
  font-style: italic;
  line-height: 1.08;
  height: 1.08em;
  display: block;
}
@keyframes slideWords {
  0%, 22% { transform: translateY(0); }
  33%, 55% { transform: translateY(-25%); }
  66%, 88% { transform: translateY(-50%); }
  100% { transform: translateY(-75%); }
}

.back-top:hover {
  background: var(--red-dark);
}
/* Pages */
.page-section {
  display: none;
}
.page-section.active {
  display: block;
}

/* Premium Agency Styles */
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--mid);
}
.text-outline--dark {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}

.split-scroll {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: var(--spy) 0;
}
.split-scroll__left {
  flex: 1;
  position: sticky;
  top: 120px;
}
.split-scroll__right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pill-img {
  border-radius: 500px;
  overflow: hidden;
  position: relative;
  background: var(--off);
}
.pill-img--large {
  width: 100%;
  aspect-ratio: 3/4;
}
.pill-img--asym {
  border-radius: 200px 200px 24px 200px;
}

.img-hover-scale {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.pill-img:hover .img-hover-scale {
  transform: scale(1.08);
}

.award-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  margin-top: 40px;
}
.award-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.award-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spinning-badge {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: spin 15s linear infinite;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(211,47,47,0.4);
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
  .split-scroll {
    flex-direction: column;
  }
  .split-scroll__left {
    position: relative;
    top: 0;
  }
  .award-grid {
    grid-template-columns: 1fr;
  }
  .section {
    position: relative;
    top: auto;
    box-shadow: none;
  }
  .hero {
    min-height: auto;
    padding-bottom: 0;
    padding-top: 140px;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero__in {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__pill, .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta {
    justify-content: center;
  }
  .hero__sliders {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 60px;
    right: auto;
    bottom: auto;
    top: auto;
    left: 0;
    gap: 16px;
  }
  .hero__badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
  }
  .hero__collage {
    display: none;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-imgs {
    display: none;
  }
  .sol-grid {
    grid-template-columns: 1fr;
  }
  .sol-grid.rev {
    direction: ltr;
  }
  .sol-img {
    display: none;
  }
  .co-cards {
    grid-template-columns: 1fr 1fr;
  }
  .vals-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .proj-card:first-child {
    grid-row: auto;
  }
  .proj-card:first-child .proj-img .ph {
    aspect-ratio: 4/3;
    min-height: 280px;
  }
  .esg-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(3) {
    border-left: none;
  }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "details"
      "form";
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .roles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .p-types {
    grid-template-columns: 1fr 1fr;
  }
  .plist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  :root {
    --spy: 64px;
  }
  .t-disp {
    font-size: clamp(38px, 9vw, 50px);
  }
  .nav__links,
  .nav__cta-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .two-cols {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .co-cards {
    grid-template-columns: 1fr;
  }
  .vals-grid {
    grid-template-columns: 1fr 1fr;
  }
  .topbar {
    display: none;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .div-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .div-card {
    padding: 14px;
    min-height: auto;
    width: 100%;
  }
  .p-types {
    grid-template-columns: 1fr;
  }
  .plist {
    grid-template-columns: 1fr 1fr;
  }
  .vid-row {
    grid-template-columns: 1fr;
  }
  .hero__cta {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }
  .hero__cta .btn {
    padding: 12px 14px;
    font-size: 13px;
    flex: 1;
    justify-content: center;
  }
  .hero__sliders {
    height: 350px;
    margin-top: 40px;
    border-radius: 24px 24px 0 0;
    gap: 12px;
  }
  .hero__slider-track .ripple-image {
    height: 200px;
    border-radius: 12px;
  }
  .hero__badge {
    bottom: 20px;
    transform: translateX(-50%) scale(0.85);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 320px) {
   .div-card {
    padding: 0px;
    min-height: auto;
    width: 90%;
  }
}
@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    flex: none;
  }
  .vals-grid {
    grid-template-columns: 1fr;
  }
  .plist {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .gal-tall {
    grid-row: auto;
  }
}

/* IMPACT SECTION */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.impact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.impact-icon {
  width: 64px;
  height: 64px;
  background: rgba(224, 19, 19, 0.06);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background var(--t), color var(--t);
}
.impact-icon svg {
  width: 30px;
  height: 30px;
}
.impact-card:hover .impact-icon {
  background: var(--red);
  color: var(--white);
}
.impact-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.impact-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* DIVISIONS SECTION */
.divisions-section {
  padding-bottom: 120px;
}
.div-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.div-card {
  position: relative;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 40px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t);
}
.div-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}
.div-card__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.6s ease;
}
.div-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}
.div-card:hover .div-card__bg {
  transform: scale(1.08);
}
.div-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.div-card__icon {
  width: 56px;
  height: 56px;
  color: var(--red);
  margin-bottom: auto;
}
.div-card__icon svg {
  width: 100%;
  height: 100%;
}
.div-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  color: var(--white);
  margin: 32px 0 16px;
  font-weight: 600;
}
.div-card__desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.div-card__link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 100;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
  letter-spacing: 0.02em;
}
.div-card_wrapper{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: background var(--t);
}
.div-card_wrapper:hover{
  background: rgba(255, 255, 255, 0.04);
}
.div-card__link span {
  transition: transform var(--t);
}
.div-card:hover .div-card__link {
  color: var(--red);
}
.div-card:hover .div-card__link span {
  transform: translateX(6px);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #fff;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease;
  will-change: transform;
}

.custom-cursor.hover {
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  background-color: rgba(255, 255, 255, 0.15);
  mix-blend-mode: normal;
  border: none;
}

@media (max-width: 768px) {
  .custom-cursor {
    display: none !important;
  }
  .hero, .section {
    position: relative !important;
    top: auto !important;
  }
}
