:root {
  /* Future Match - Lab Precision Palette (Synced with Main) */
  --deep-forest: #0f172a; /* Switched to the main website's midnight blue/navy */
  --emerald-velocity: #10b981; /* The specific Emerald Green from website_main */
  --peak-white: #f2f2f2;
  --rain-grey: #94a3b8;
  --midnight-tint: rgba(15, 23, 42, 0.95);
  
  /* Fonts */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--deep-forest);
  color: var(--peak-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Suble Grid Overlay */
  background-image: 
    linear-gradient(rgba(0, 255, 194, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 194, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

header {
  padding: 2rem 8%;
  background: var(--midnight-tint);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 194, 0.1);
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 3px;
  font-weight: 900;
  color: var(--peak-white);
}

.logo span {
  color: var(--emerald-velocity);
  text-shadow: 0 0 10px var(--emerald-velocity);
}

nav a {
  color: var(--rain-grey);
  text-decoration: none;
  margin-left: 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

nav a:hover {
  color: var(--emerald-velocity);
  text-shadow: 0 0 8px var(--emerald-velocity);
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
  background: url('../assets/hero_future_pnw.png') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 30%, var(--deep-forest) 0%, transparent 80%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
  margin-bottom: 2rem;
  color: var(--emerald-velocity);
}

.hero p {
  font-size: 1.1rem;
  color: var(--rain-grey);
  max-width: 600px;
  margin-bottom: 4rem;
  border-left: 2px solid var(--emerald-velocity);
  padding-left: 2rem;
}

.btn {
  display: inline-block;
  padding: 1.5rem 4rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 950;
  font-size: 0.8rem;
  letter-spacing: 3px;
  transition: all 0.4s;
  background: var(--emerald-velocity);
  color: var(--deep-forest);
  text-transform: uppercase;
  border: none;
  clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px var(--emerald-velocity);
}

section {
  padding: 10rem 10%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 6rem;
  color: var(--emerald-velocity);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 8rem;
  align-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 255, 194, 0.05);
  padding: 4rem;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--emerald-velocity);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}

.card p {
  font-size: 0.9rem;
  color: var(--rain-grey);
}

.tech-detail-img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 194, 0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.lab-section {
  background: url('../assets/lab_rd_section_v2.png') center/cover no-repeat;
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lab-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(4, 41, 33, 0.7);
}

.lab-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

footer {
  padding: 8rem 10%;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 194, 0.1);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 3rem;
}

.copyright {
  color: var(--rain-grey);
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}
