@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;700;900&display=swap');

/* =================== VARIABLES =================== */
:root {
  --black: #050508;
  --dark-navy: #080c18;
  --navy: #0d1428;
  --silver: #c8cdd8;
  --chrome: #e8eaf0;
  --chrome-bright: #ffffff;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --red-accent: #cc2233;
  --blue-glow: #1a3a6e;
  --trident-silver: linear-gradient(135deg, #a0a8b8 0%, #e0e4f0 40%, #8090a8 70%, #c0c8d8 100%);
  --section-pad: 100px 0;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =================== RESET =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--silver);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: default;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =================== SCROLLBAR =================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #3a4a6a, #6080a8); border-radius: 3px; }

/* =================== CANVAS BACKGROUND =================== */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(100, 120, 180, 0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.97);
  border-bottom-color: rgba(100, 120, 180, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(180, 200, 255, 0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8090b0;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome), transparent);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--chrome); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: linear-gradient(135deg, #c0c8d8, #e8eaf0);
  padding: 8px 22px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: var(--transition);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #e0e8f8, #ffffff);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 220, 255, 0.3);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--silver);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(5, 5, 8, 0.98);
  backdrop-filter: blur(20px);
  padding: 30px 5%;
  border-bottom: 1px solid rgba(100, 120, 180, 0.2);
  z-index: 999;
  flex-direction: column;
  gap: 24px;
}

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

.mobile-menu a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8090b0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(100, 120, 180, 0.1);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--chrome); padding-left: 10px; }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(20, 40, 100, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 60%, rgba(15, 25, 60, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 60%, rgba(15, 25, 60, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, #080c1a 50%, var(--black) 100%);
  z-index: 0;
}

.hero-trident-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  opacity: 0.04;
  filter: blur(1px);
  z-index: 0;
  animation: trident-float 8s ease-in-out infinite;
}

@keyframes trident-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-logo {
  width: min(420px, 80vw);
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 40px rgba(180, 200, 255, 0.2)) drop-shadow(0 0 80px rgba(100, 140, 220, 0.15));
  animation: logo-glow 4s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(180, 200, 255, 0.2)) drop-shadow(0 0 60px rgba(100, 140, 220, 0.1)); }
  50% { filter: drop-shadow(0 0 50px rgba(200, 220, 255, 0.35)) drop-shadow(0 0 100px rgba(120, 160, 240, 0.2)); }
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #6080a0;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-headline {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: transparent;
  background: linear-gradient(135deg, #8090a8 0%, #e0e8f8 35%, #c0cce0 60%, #7088a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: #5a6880;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 48px;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.btn-primary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, #b0bcd0, #e8eef8);
  padding: 14px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d8e4f8, #ffffff);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(180, 200, 255, 0.3); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  background: transparent;
  border: 1px solid rgba(150, 170, 210, 0.3);
  padding: 13px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(180, 200, 240, 0.6);
  color: var(--chrome);
  background: rgba(100, 130, 200, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(100, 140, 200, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #3a4860;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, #3a4860, transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* =================== SECTION COMMONS =================== */
section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #4a6090;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before, .section-label::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a3a60);
}

.section-label::after {
  background: linear-gradient(90deg, #2a3a60, transparent);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--chrome);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title span {
  background: linear-gradient(135deg, #9090a8, #e0e4f0, #8090a0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: #5a6880;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 64px;
}

.divider-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 130, 190, 0.3));
}

.divider-line.right {
  background: linear-gradient(90deg, rgba(100, 130, 190, 0.3), transparent);
}

.divider-trident {
  width: 28px;
  opacity: 0.5;
  filter: drop-shadow(0 0 6px rgba(150, 180, 255, 0.4));
}

/* =================== ABOUT =================== */
.about {
  background: linear-gradient(180deg, var(--black) 0%, rgba(10, 15, 30, 0.5) 50%, var(--black) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-block {}

.about-text-block .section-label { justify-content: flex-start; }
.about-text-block .section-label::before { display: none; }

.about-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--chrome);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-title em {
  font-style: normal;
  background: linear-gradient(135deg, #7080a0, #d0d8f0, #7080a0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-body {
  font-size: 1.05rem;
  color: #5a6880;
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  border: 1px solid rgba(80, 100, 160, 0.15);
  background: rgba(10, 15, 30, 0.5);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(120, 150, 210, 0.3);
  background: rgba(20, 30, 60, 0.5);
  transform: translateY(-3px);
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--chrome);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a5870;
  margin-top: 4px;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-char-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.about-char {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(10, 20, 60, 0.8));
  animation: char-float 6s ease-in-out infinite;
}

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

.about-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(80, 110, 200, 0.3), transparent 70%);
  filter: blur(10px);
  border-radius: 50%;
}

/* =================== TEAM =================== */
.team {
  background: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.team-card {
  position: relative;
  background: rgba(8, 12, 25, 0.8);
  border: 1px solid rgba(60, 80, 140, 0.2);
  overflow: hidden;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 170, 230, 0.4), transparent);
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(100, 140, 220, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(10, 20, 60, 0.6), 0 0 30px rgba(80, 120, 200, 0.1);
}

.team-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(180, 210, 255, 0.6), transparent);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/3.5;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: var(--transition);
  background: linear-gradient(180deg, #0d1428, #050810);
}

.team-card:hover .team-card-img {
  transform: scale(1.04);
}

.team-card-body {
  padding: 20px 22px 22px;
  position: relative;
}

.team-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 22px; right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80, 110, 180, 0.25), transparent);
}

.team-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--chrome);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a5870;
}

.team-role-highlight {
  color: #6080a8;
}

.team-tier-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #3a4a6a;
  text-align: center;
  margin-bottom: 30px;
}

.team-grid-founders {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}

.team-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 3;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.team-badge.founder {
  background: linear-gradient(135deg, #8a7040, #d4a840);
  color: #0a0805;
}

.team-badge.cofounder {
  background: linear-gradient(135deg, #5a6070, #909aac);
  color: #0a0c10;
}

.team-badge.core {
  background: linear-gradient(135deg, #2a3a5a, #4a6090);
  color: #a0b8d8;
}

.team-roles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team-roles-list li {
  font-size: 0.8rem;
  color: #4a5870;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

.team-roles-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #3a5080;
  font-size: 0.7rem;
}

.porsche-img {
  object-fit: contain !important;
  background: #ffffff;
  padding: 20px;
}

@media (max-width: 900px) {
  .team-grid-founders { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-grid-founders { grid-template-columns: 1fr 1fr; }
}

/* =================== PARTNERS =================== */
.partners {
  background: linear-gradient(180deg, var(--black) 0%, rgba(6, 9, 20, 0.8) 50%, var(--black) 100%);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.partner-card {
  background: rgba(8, 12, 24, 0.7);
  border: 1px solid rgba(50, 70, 120, 0.2);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
  transition: var(--transition);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  overflow: hidden;
}

.partner-card:hover {
  border-color: rgba(100, 140, 210, 0.4);
  background: rgba(15, 22, 45, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(10, 20, 60, 0.5);
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.4) brightness(0.9);
  transition: var(--transition);
}

.partner-card:hover img {
  filter: grayscale(0) brightness(1.1);
}

/* =================== SERVICES =================== */
.services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(8, 12, 25, 0.9);
  border: 1px solid rgba(50, 70, 130, 0.2);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 24px; height: 24px;
  background: rgba(50, 70, 130, 0.3);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(100, 140, 220, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(8, 15, 50, 0.6);
}

.service-card:hover::after {
  background: rgba(100, 140, 220, 0.4);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
}

.service-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(150, 180, 255, 0.3));
}

.service-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chrome);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.95rem;
  color: #4a5870;
  line-height: 1.8;
}

/* =================== COLLABS STRIP =================== */
.collabs {
  background: var(--black);
  padding: 60px 0;
}

.collabs-strip {
  overflow: hidden;
  position: relative;
}

.collabs-strip::before, .collabs-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}

.collabs-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.collabs-strip::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--black));
}

.collabs-track {
  display: flex;
  gap: 20px;
  animation: scroll-strip 30s linear infinite;
  width: max-content;
}

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

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

.collab-item {
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(50, 70, 120, 0.2);
}

.collab-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.collab-item:hover img { transform: scale(1.05); }

/* =================== CONTACT =================== */
.contact {
  background: linear-gradient(180deg, var(--black) 0%, rgba(6, 9, 20, 0.5) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(8, 12, 25, 0.9);
  border: 1px solid rgba(60, 80, 140, 0.25);
  padding: 40px 36px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60, 100, 180, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.contact-card:hover {
  border-color: rgba(100, 140, 220, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(8, 15, 50, 0.5);
}

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

.contact-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(80, 110, 180, 0.3);
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 12px rgba(10, 20, 60, 0.6));
}

.contact-name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--chrome);
  margin-bottom: 4px;
}

.contact-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a5870;
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #5a6880;
  transition: var(--transition);
  padding: 10px 14px;
  background: rgba(15, 22, 45, 0.5);
  border: 1px solid rgba(40, 60, 110, 0.2);
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.contact-link:hover {
  color: var(--silver);
  border-color: rgba(80, 110, 180, 0.4);
  background: rgba(20, 32, 65, 0.7);
  transform: translateX(4px);
}

.contact-link-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* =================== FOOTER =================== */
footer {
  position: relative;
  z-index: 1;
  background: rgba(3, 4, 8, 0.95);
  border-top: 1px solid rgba(40, 60, 110, 0.2);
  padding: 50px 5% 30px;
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 6px rgba(140, 170, 220, 0.2)) grayscale(0.3);
}

.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #2a3850;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a3850;
  transition: color 0.3s;
}

.footer-links a:hover { color: #5a6880; }

.footer-copy {
  font-size: 0.75rem;
  color: #1a2438;
  letter-spacing: 0.05em;
}

/* =================== ANIMATIONS =================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =================== MOBILE =================== */
@media (max-width: 900px) {
  :root { --section-pad: 70px 0; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual { order: -1; }
  .about-char-container { max-width: 280px; }

  .about-stats { grid-template-columns: repeat(3, 1fr); }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-logo { width: 70vw; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 260px; text-align: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-number { font-size: 1.4rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .collab-item { width: 180px; height: 180px; }
  footer { padding: 40px 5% 24px; }
}
