/* Hero Variation 6 - Red Geometry */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Helvetica Neue", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 57, 74, 0.15);
}

.header-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 57, 74, 0.8));
}

nav {
  display: flex;
  gap: 45px;
  align-items: center;
}

nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff394a;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px #ff394a;
}

nav a:hover {
  color: #ff394a;
}

nav a:hover::after {
  width: 100%;
}

.header-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-social .social-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-social .social-icon:hover {
  color: #ff394a;
  transform: translateY(-2px);
}

.header-social .social-icon svg {
  width: 100%;
  height: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ff394a;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0.15;
  animation: triangleFloat 20s ease-in-out infinite;
}

.triangle-1 {
  border-width: 0 150px 260px 150px;
  border-color: transparent transparent #ff394a transparent;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.triangle-2 {
  border-width: 200px 115px 0 115px;
  border-color: #ff394a transparent transparent transparent;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.triangle-3 {
  border-width: 0 100px 175px 100px;
  border-color: transparent transparent #ff394a transparent;
  bottom: 15%;
  left: 15%;
  animation-delay: 10s;
}

@keyframes triangleFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(0, -60px) rotate(180deg);
  }
  75% {
    transform: translate(-30px, -30px) rotate(270deg);
  }
}

.diagonal-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.diagonal-line {
  position: absolute;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent, #ff394a, transparent);
  opacity: 0.1;
  transform: rotate(45deg);
  animation: lineSlide 15s linear infinite;
}

.line-1 {
  left: 10%;
  animation-delay: 0s;
}
.line-2 {
  left: 30%;
  animation-delay: 3s;
}
.line-3 {
  left: 50%;
  animation-delay: 6s;
}
.line-4 {
  left: 70%;
  animation-delay: 9s;
}
.line-5 {
  left: 90%;
  animation-delay: 12s;
}

@keyframes lineSlide {
  from {
    transform: rotate(45deg) translateY(-100%);
  }
  to {
    transform: rotate(45deg) translateY(100%);
  }
}

.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 100px 80px;
  position: relative;
  z-index: 10;
}

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 57, 74, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-left: 2px solid rgba(255, 57, 74, 0.3);
}

.content-wrapper {
  max-width: 600px;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 57, 74, 0.15);
  border-left: 3px solid #ff394a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ff394a;
  margin-bottom: 30px;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
  animation: slideInLeft 1s ease-out;
}

.title-primary {
  display: block;
  color: #ffffff;
  margin-bottom: 15px;
}

.title-accent {
  display: block;
  color: #ff394a;
  text-shadow: 0 0 60px rgba(255, 57, 74, 0.5);
  position: relative;
}

.title-accent::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff394a, transparent);
  animation: lineExpand 1.5s ease-out;
}

@keyframes lineExpand {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: slideInLeft 1.2s ease-out;
}

.cta-group {
  display: flex;
  gap: 20px;
  animation: slideInLeft 1.4s ease-out;
}

.btn {
  padding: 18px 40px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #ff394a;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 57, 74, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  box-shadow: 0 15px 40px rgba(255, 57, 74, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ff394a;
  border: 2px solid #ff394a;
}

.btn-secondary:hover {
  background: rgba(255, 57, 74, 0.1);
  box-shadow: 0 10px 30px rgba(255, 57, 74, 0.2);
}

.btn span {
  position: relative;
  z-index: 1;
}

.cube-container {
  position: relative;
  width: 400px;
  height: 400px;
  perspective: 1000px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 20s linear infinite;
}

@keyframes rotateCube {
  0% {
    transform: rotateX(-15deg) rotateY(0deg) rotateZ(5deg);
  }
  25% {
    transform: rotateX(10deg) rotateY(90deg) rotateZ(-5deg);
  }
  50% {
    transform: rotateX(-5deg) rotateY(180deg) rotateZ(10deg);
  }
  75% {
    transform: rotateX(20deg) rotateY(270deg) rotateZ(-10deg);
  }
  100% {
    transform: rotateX(-15deg) rotateY(360deg) rotateZ(5deg);
  }
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid #ff394a;
  background: rgba(255, 57, 74, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ff394a;
  box-shadow: 0 0 30px rgba(255, 57, 74, 0.3);
}

.cube-front {
  transform: translateZ(100px);
}
.cube-back {
  transform: rotateY(180deg) translateZ(100px);
}
.cube-right {
  transform: rotateY(90deg) translateZ(100px);
}
.cube-left {
  transform: rotateY(-90deg) translateZ(100px);
}
.cube-top {
  transform: rotateX(90deg) translateZ(100px);
}
.cube-bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

.hex-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.hexagon {
  position: absolute;
  width: 60px;
  height: 35px;
  background: #ff394a;
  margin: 17.5px 0;
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}

.hexagon:before {
  bottom: 100%;
  border-bottom: 17.5px solid #ff394a;
}

.hexagon:after {
  top: 100%;
  border-top: 17.5px solid #ff394a;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
#leadership {
  padding: 100px 20px;
  background: #0a0a0a;
  position: relative;
  border-top: 1px solid rgba(255, 57, 74, 0.15);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 57, 74, 0.1);
  border-left: 2px solid #ff394a;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ff394a;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-card {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 57, 74, 0.2);
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff394a 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.leader-card:hover::before {
  transform: scaleX(1);
}

.leader-card:hover {
  background: rgba(20, 20, 20, 0.9);
  border-color: rgba(255, 57, 74, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 57, 74, 0.2);
}

.leader-image-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 57, 74, 0.3);
  transition: all 0.3s ease;
}

.leader-card:hover .leader-image-wrapper {
  border-color: #ff394a;
  box-shadow: 0 0 20px rgba(255, 57, 74, 0.4);
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-info {
  text-align: center;
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.leader-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff394a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.leader-social {
  margin-bottom: 20px;
}

.social-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.social-icon:hover svg {
  fill: #ff394a;
  filter: drop-shadow(0 0 10px rgba(255, 57, 74, 0.6));
}

.leader-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
#partners {
  padding: 100px 20px;
  background: #0a0a0a;
  position: relative;
  border-top: 1px solid rgba(255, 57, 74, 0.15);
  overflow: hidden;
}

.partners-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.partners-carousel {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-carousel:hover {
  animation-play-state: paused;
}

.partner-item {
  flex: 0 0 280px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 57, 74, 0.2);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.partner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff394a, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.partner-item:hover::before {
  transform: scaleX(1);
}

.partner-item:hover {
  background: rgba(20, 20, 20, 0.9);
  border-color: rgba(255, 57, 74, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 57, 74, 0.15);
}

.partner-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ============================================
   NEWS SECTION
   ============================================ */
#news {
  padding: 100px 20px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 57, 74, 0.1);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.news-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 57, 74, 0.2);
  border-radius: 8px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff394a, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 57, 74, 0.5);
  box-shadow: 0 10px 40px rgba(255, 57, 74, 0.2);
}

.news-card:hover::before {
  opacity: 1;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-source {
  color: #ff394a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-date {
  color: #999;
  font-size: 13px;
}

.news-card h3 {
  color: #e5e5e5;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin: 10px 0;
}

.news-excerpt {
  color: #b3b3b3;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}

.news-link {
  color: #ff394a;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.news-link:hover {
  gap: 12px;
  text-shadow: 0 0 10px rgba(255, 57, 74, 0.5);
}

.news-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.news-link:hover svg {
  transform: translate(3px, -3px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 57, 74, 0.2);
  padding: 60px 20px 30px;
}

.footer-logo {
  text-align: center;
  padding: 0 0 40px;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
  opacity: 0.9;
  filter: brightness(1.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 40px 20px;
}

.footer-column h4 {
  color: #e5e5e5;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-column a:hover {
  color: #ff394a;
}

.footer-column p {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
}

.footer-email {
  color: #ff394a !important;
  text-decoration: none;
}

.footer-email:hover {
  color: #ff6b7a !important;
}

.footer-info {
  margin-top: 20px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 30px 20px 0;
  border-top: 1px solid rgba(255, 57, 74, 0.1);
}

.footer-disclaimer {
  background: rgba(255, 57, 74, 0.05);
  color: #b3b3b3;
  border-left: 3px solid #ff394a;
  padding: 20px;
  margin-bottom: 30px;
  font-size: 12px;
  line-height: 1.6;
  border-radius: 4px;
}

.footer-disclaimer strong {
  color: #ff394a;
  display: block;
  margin-bottom: 10px;
}

.footer-copyright {
  color: #666;
  text-align: center;
  font-size: 13px;
  padding: 20px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .header-content {
    padding: 18px 20px;
  }

  nav {
    position: fixed;
    top: 68px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px;
    transition: right 0.3s ease;
    border-left: 2px solid #ff394a;
  }

  nav.active {
    right: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding-top: 80px;
  }

  .hero-left,
  .hero-right {
    padding: 60px 20px;
  }

  .hero-left {
    padding-top: 40px;
  }

  .section-label {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-right {
    border-left: none;
    border-top: 2px solid rgba(255, 57, 74, 0.3);
  }

  .cta-group {
    flex-direction: column;
  }

  .cube-container {
    width: 300px;
    height: 300px;
  }

  .cube-face {
    width: 150px;
    height: 150px;
  }

  #leadership {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #partners {
    padding: 60px 20px;
  }

  .partner-item {
    flex: 0 0 240px;
  }

  #news {
    padding: 60px 20px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-card {
    padding: 30px 25px;
  }

  .news-card h3 {
    font-size: 20px;
  }

  footer {
    padding: 40px 20px 20px;
  }

  .footer-logo img {
    max-width: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 10px;
  }

  .footer-disclaimer {
    padding: 15px;
    font-size: 11px;
  }
}
