/* Template 51 - Silver Chrome / Metallic Future */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600&display=swap");

:root {
  --bg-primary: #0d0d0f;
  --bg-secondary: #18181c;
  --bg-tertiary: #252529;

  --text-primary: #f0f0f5;
  --text-secondary: #c0c0d0;
  --text-muted: #8a8a9a;

  --accent-silver: #c0c5ce;
  --accent-chrome: #d8dde6;
  --accent-metal: #a8adb8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Exo 2", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      0deg,
      transparent 24%,
      rgba(192, 197, 206, 0.02) 25%,
      rgba(192, 197, 206, 0.02) 26%,
      transparent 27%,
      transparent 74%,
      rgba(192, 197, 206, 0.02) 75%,
      rgba(192, 197, 206, 0.02) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(192, 197, 206, 0.02) 25%,
      rgba(192, 197, 206, 0.02) 26%,
      transparent 27%,
      transparent 74%,
      rgba(192, 197, 206, 0.02) 75%,
      rgba(192, 197, 206, 0.02) 76%,
      transparent 77%,
      transparent
    );
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Chrome Bar */
.site-header {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(24, 24, 28, 0.98) 100%);
  border-bottom: 2px solid var(--accent-metal);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(192, 197, 206, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-silver) 0%, var(--accent-chrome) 50%, var(--accent-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(192, 197, 206, 0.3);
}

.site-logo a:hover {
  filter: brightness(1.3);
  transform: scale(1.03);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--accent-metal);
  background: var(--bg-tertiary);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.site-nav a:hover {
  color: var(--bg-primary);
  background: var(--accent-chrome);
  border: 1px solid var(--accent-chrome);
  box-shadow: 0 0 20px rgba(192, 197, 206, 0.4);
}

/* Hero Section - Metallic Shine */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

.section.head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-chrome) 50%, transparent 100%);
}

.section.head h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-chrome) 0%, var(--text-primary) 50%, var(--accent-chrome) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 6px;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(192, 197, 206, 0.3);
  animation: chromePulse 3s ease-in-out infinite;
}

@keyframes chromePulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section header::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-silver) 50%, transparent 100%);
}

.section header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-silver) 0%, var(--text-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
}

.section header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer - Chrome Finish */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--accent-metal);
  margin-top: 5rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-chrome);
  text-shadow: 0 0 10px rgba(192, 197, 206, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-tertiary);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes metalSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: metalSlide 0.6s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--accent-silver) 0%, var(--text-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px;
}
