/* Template 10 - Arctic Tech / Clean Futuristic */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

:root {
  --arctic-white: #f8fafc;
  --ice-gray: #e2e8f0;
  --steel-blue: #64748b;
  --deep-slate: #1e293b;
  --midnight: #0f172a;
  --electric-cyan: #06b6d4;
  --neon-blue: #3b82f6;
  --accent-violet: #8b5cf6;
}

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

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.7;
  color: var(--deep-slate);
  background: var(--arctic-white);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Tech-forward split design */
.site-header {
  background: var(--midnight);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 3rem;
}

.site-logo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(180deg, transparent, var(--steel-blue), transparent);
}

.site-logo a {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--arctic-white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo a::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--electric-cyan);
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.site-logo a:hover {
  color: var(--electric-cyan);
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 100%;
}

.site-nav a {
  color: var(--ice-gray);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--electric-cyan);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--arctic-white);
  background: rgba(255, 255, 255, 0.05);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section - Bold tech aesthetic */
.section.head {
  padding: 8rem 0 6rem;
  text-align: left;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-slate) 100%);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(6, 182, 212, 0.1) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.section.head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--electric-cyan), var(--neon-blue), var(--accent-violet));
}

.section.head h1 {
  font-family: 'Archivo', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--arctic-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 700px;
  position: relative;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--ice-gray);
  max-width: 500px;
  line-height: 1.8;
}

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

.section header {
  text-align: left;
  margin-bottom: 4rem;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.section header h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-slate);
  margin-bottom: 0;
  letter-spacing: -0.02em;
  position: relative;
}

.section header h2::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--electric-cyan), var(--neon-blue));
}

.section header p {
  font-size: 1rem;
  color: var(--steel-blue);
  max-width: 400px;
  padding-bottom: 0.5rem;
}

/* Footer - Minimal tech footer */
.footer {
  background: var(--midnight);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

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

.footer-tagline {
  color: var(--steel-blue);
  line-height: 1.7;
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--ice-gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.footer-links a::after {
  content: '↗';
  font-size: 0.7rem;
  margin-left: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  color: var(--electric-cyan);
}

.footer-links a:hover::after {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
}

.copyright a {
  color: var(--steel-blue);
  font-size: 0.8rem;
}

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

.fade-in {
  opacity: 0;
  animation: slideInLeft 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-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  color: var(--deep-slate);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
}
