@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&family=Exo+2:wght@300;400;600;800&display=swap');

:root {
  --red: #c0392b;
  --red-bright: #e74c3c;
  --red-glow: #ff2200;
  --red-dim: #7b1a12;
  --black: #000000;
  --bg: #050505;
  --bg-2: #0a0a0a;
  --bg-card: #0f0f0f;
  --border: #1a1a1a;
  --border-red: rgba(192, 57, 43, 0.3);
  --text: #e8e8e8;
  --text-dim: #888;
  --text-muted: #444;
  --font-display: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Exo 2', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 57, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 57, 43, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}


body::after {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(ellipse, rgba(192, 57, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.1); }
}


::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }


a {
  color: var(--red-bright);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--red-glow); }


::selection {
  background: var(--red);
  color: #fff;
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
}


.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-primary:hover {
  background: var(--red-bright);
  color: #fff;
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-red);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-bright);
  box-shadow: 0 0 15px rgba(192, 57, 43, 0.2);
}


.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red-dim);
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.4s;
}
.card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.1);
}
.card:hover::after { width: 100%; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red-bright);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}


section {
  padding: 5rem 0;
}

.page-hero {
  padding: 8rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
}
.page-hero h1 span { color: var(--red); }


.red-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 1rem 0 2rem;
}


footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
footer a { color: var(--text-dim); }
footer a:hover { color: var(--red); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
