/* HERO SECTION STYLES */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 8% 80px;
  overflow: hidden;
  z-index: 10;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  gap: 40px;
}

.hero-header-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 15px;
  width: 100%;
}

.pulse-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-neon-cyan);
  animation: pulse-node 2s infinite alternate;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

/* HIGH-TECH HEXAGON PROFILE FRAME */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.photo-hex-frame {
  position: relative;
  width: 280px;
  height: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.25));
  animation: float-slow 6s ease-in-out infinite;
}

/* Hexagonal Clip Path */
.photo-hex-inner {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-color: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 2;
}

.photo-hex-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.photo-hex-inner:hover img {
  transform: scale(1.08) rotate(1deg);
}

/* Futuristic Neon Ring Border */
.photo-hex-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet), var(--accent-amber));
  animation: border-rotate 8s linear infinite;
  z-index: 1;
}

.photo-hex-border::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--bg-deep);
  z-index: 1;
}

/* Floating HUD graphics */
.photo-hex-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border: 1px dashed rgba(0, 240, 255, 0.15);
  clip-path: polygon(50% -5%, 105% 23%, 105% 77%, 50% 105%, -5% 77%, -5% 23%);
  animation: spin-clockwise 24s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.photo-hex-frame::after {
  content: 'SYSTEM_LOCK_ON';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  opacity: 0.6;
  text-shadow: var(--shadow-neon-cyan);
}

/* Hero Content Styling */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-secondary);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.hero-subtitle .caret {
  display: inline-block;
  width: 10px;
  height: 20px;
  background-color: var(--accent-cyan);
  margin-left: 5px;
  animation: blink 0.8s infinite;
  box-shadow: var(--shadow-neon-cyan);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(10, 14, 26, 0.6);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.stat-value {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

/* Scroll descent arrow */
.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 2px;
  transition: var(--transition-normal);
}

.scroll-arrow:hover {
  color: var(--accent-cyan);
  text-shadow: var(--shadow-neon-cyan);
}

.arrow-down {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scroll-pulse 2s infinite;
}

/* Keyframes */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes spin-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scroll-pulse {
  0% { transform: translateY(0) rotate(45deg); opacity: 0.3; }
  50% { transform: translateY(6px) rotate(45deg); opacity: 1; }
  100% { transform: translateY(0) rotate(45deg); opacity: 0.3; }
}

@keyframes border-rotate {
  100% { filter: hue-rotate(360deg); }
}

@keyframes pulse-node {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}
