/* style.css */
:root {
  --bg-dark: #0a0a0f;
  --bg-card: #0e0e14;
  --bg-elevated: #13131a;
  --bg-nav: rgba(5, 5, 12, 0.92);
  --primary-red: #b91c1c;
  --primary-red-dark: #8b1414;
  --primary-red-light: #e11d1d;
  --gold: #f5b042;
  --gold-dark: #d48f2b;
  --text-primary: #eef2ff;
  --text-secondary: #b9c3dd;
  --border-subtle: rgba(185, 28, 28, 0.25);
  --glass-bg: rgba(15, 15, 25, 0.65);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
  cursor: default;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #111117;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red-light);
}

/* Typography */
h1, h2, h3 {
  font-family: 'Space Grotesk', monospace;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--primary-red);
  padding-left: 1.2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  border-left: none;
  display: inline-block;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Utility Classes */
.gold-text {
  color: var(--gold);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Animated Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.15) 0%, rgba(245, 176, 66, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease;
  opacity: 0;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.9rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a1a24, #0f0f16);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  transition: var(--transition-fast);
}

.logo-icon i {
  color: var(--primary-red);
  font-size: 1.4rem;
  transition: var(--transition-fast);
}

.logo-wrapper:hover .logo-icon i {
  color: var(--gold);
  transform: scale(1.05);
}

.logo-text {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff, var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-dot {
  color: var(--gold);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link i {
  margin-right: 6px;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.cta-link {
  background: linear-gradient(95deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
}

.cta-link:hover {
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 176, 66, 0.3);
}

.cta-link::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gold);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(95deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-weight: 700;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -10px rgba(245, 176, 66, 0.5);
  filter: brightness(1.05);
}

.btn-secondary {
  border: 1.5px solid var(--primary-red);
  background: transparent;
  color: var(--text-primary);
  padding: 0.9rem 2rem;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(185, 28, 28, 0.15);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 176, 66, 0.3);
}

.badge i {
  margin-right: 5px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 90%;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder {
  background: linear-gradient(145deg, #16161f, #0c0c12);
  border-radius: 2rem;
  min-height: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-red);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.hero-placeholder i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-placeholder p {
  text-align: center;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-placeholder span {
  font-size: 0.8rem;
  color: var(--gold);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-red), transparent);
  opacity: 0.2;
  animation: float 8s infinite ease-in-out;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  right: -20px;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 40px;
  left: -20px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 30px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-glow-line {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-red), var(--gold), var(--primary-red), transparent);
}

/* Pillars Section */
.pillars-section {
  background: radial-gradient(circle at 10% 30%, #0c0c14, #050508);
  padding: 5rem 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 1.8rem;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 176, 66, 0.5);
  box-shadow: 0 25px 40px -20px rgba(185, 28, 28, 0.4);
}

.pillar-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.pillar-card h3 {
  margin-bottom: 0.8rem;
}

.pillar-card p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.pillar-meta {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Philosophy Section */
.philosophy-section {
  padding: 5rem 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.philosophy-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 1.8rem;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.philosophy-card:hover {
  border-color: var(--gold);
}

.quote-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.philosophy-card h3 {
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.philosophy-tags {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.philosophy-tags span {
  font-size: 0.85rem;
  color: var(--gold);
}

.philosophy-visual {
  margin-top: 1rem;
}

.visual-placeholder {
  background: linear-gradient(145deg, #12121a, #0a0a10);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px dashed var(--primary-red);
}

.visual-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.visual-placeholder p {
  color: var(--text-secondary);
}

/* Products Section */
.products-section {
  background: #08080e;
  padding: 5rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: var(--transition-smooth);
  border-bottom: 3px solid var(--primary-red);
}

.product-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--gold);
  background: var(--bg-elevated);
}

.product-icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.product-card h3 {
  margin-bottom: 0.8rem;
}

.product-card p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.product-badge {
  background: rgba(245, 176, 66, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-block;
}

.product-badge-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-badge-group span {
  background: rgba(185, 28, 28, 0.2);
  padding: 0.25rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  color: var(--gold);
}

.product-showcase {
  margin-top: 2rem;
}

.showcase-placeholder {
  background: linear-gradient(145deg, #12121a, #0a0a10);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(185, 28, 28, 0.4);
}

.showcase-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
}

.team-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: var(--transition-fast);
}

.team-link:hover {
  color: var(--primary-red-light);
  border-bottom-color: var(--primary-red-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.team-member {
  background: var(--bg-card);
  border-radius: 1.5rem;
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid #24242e;
}

.team-member:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: var(--bg-elevated);
}

.member-icon {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}

.team-member:hover .member-icon {
  color: var(--gold);
  transform: scale(1.05);
}

.team-member h3 {
  margin-bottom: 0.4rem;
}

.team-member p {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.team-member small {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.team-extra {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 1rem 0;
}

.team-placeholder {
  background: linear-gradient(145deg, #12121a, #0a0a10);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
  border: 1px dashed var(--gold);
}

.team-placeholder i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* Tech Stack */
.tech-stack {
  background: #0a0a10;
  padding: 4rem 0;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.stack-item {
  text-align: center;
  padding: 1.5rem;
}

.stack-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stack-item h3 {
  margin-bottom: 1rem;
}

.stack-item ul {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.stack-item ul li {
  margin: 0.6rem 0;
  color: var(--text-secondary);
}

.stack-item ul li i {
  font-size: 0.9rem;
  color: var(--gold);
  margin-right: 8px;
}

.stack-item p {
  color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.contact-card h3 {
  margin-bottom: 0.8rem;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 40px;
  border: 1px solid #2a2a35;
  background: #1e1e2a;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245, 176, 66, 0.2);
}

.contact-form textarea {
  border-radius: 24px;
  resize: vertical;
}

.submit-btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* Footer */
.footer {
  background: #030307;
  border-top: 1px solid #1f1f2a;
  padding: 2.5rem 1rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--text-secondary);
  font-size: 1.4rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .pillars-grid,
  .products-grid,
  .team-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .badge {
    font-size: 0.7rem;
  }
}