/* Gaze IT — Main stylesheet */

:root {
  --black: #000000;
  --dark: #111111;
  --neon: #E6FF00;
  --neon-dim: rgba(230, 255, 0, 0.15);
  --neon-glow: rgba(230, 255, 0, 0.4);
  --text: #e0e0e0;
  --text-muted: #888;
  --space: clamp(2rem, 4vw, 3rem);
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; }

/* ——— Sticky Header / Nav ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 255, 0, 0.1);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 20px rgba(230, 255, 0, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--neon);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--neon); text-shadow: 0 0 15px var(--neon-glow); }
.logo .logo-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.35rem;
  width: 1.1em;
  height: 1.1em;
  color: #3B82F6;
}
.logo:hover .logo-search { color: #60A5FA; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--neon); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-cta .btn { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.header-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header-contact:hover { color: var(--neon); }
.header-contact svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-inner { justify-content: space-between; }
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  padding-top: 4rem; /* clear fixed header */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space) 1.5rem;
  position: relative;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--neon-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--neon-dim) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  animation: gridPulse 4s ease-in-out infinite;
}
.hero-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--neon-dim) 20%,
    transparent 40%,
    var(--neon-dim) 60%,
    transparent 80%
  );
  background-size: 100% 200%;
  opacity: 0.3;
  animation: lineMove 8s linear infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
@keyframes lineMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 200%; }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.35rem; }
.hero-trust .dot { width: 4px; height: 4px; background: var(--neon); border-radius: 50%; opacity: 0.8; }
.hero-trust strong { color: var(--neon); font-weight: 600; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--neon);
  text-shadow:
    0 0 20px var(--neon-glow),
    0 0 40px var(--neon-glow),
    0 0 60px rgba(230, 255, 0, 0.2);
  animation: headlineGlow 3s ease-in-out infinite;
}
@keyframes headlineGlow {
  0%, 100% { text-shadow: 0 0 20px var(--neon-glow), 0 0 40px var(--neon-glow), 0 0 60px rgba(230, 255, 0, 0.2); }
  50% { text-shadow: 0 0 30px var(--neon-glow), 0 0 60px var(--neon-glow), 0 0 90px rgba(230, 255, 0, 0.3); }
}
.hero .subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--neon);
  color: var(--black);
  border: 2px solid var(--neon);
  box-shadow: 0 0 20px var(--neon-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 30px var(--neon-glow), 0 0 50px rgba(230, 255, 0, 0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--neon);
  border: 2px solid var(--neon);
}
.btn-secondary:hover {
  background: var(--neon-dim);
  box-shadow: 0 0 20px var(--neon-glow);
}

/* ——— Section common ——— */
section {
  padding: var(--space) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
section.dark { background: var(--dark); }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.35rem;
  color: #fff;
}
.section-title .neon { color: var(--neon); }
.section-sub { color: var(--text-muted); margin: 0 0 1rem; font-size: 1.1rem; }

/* ——— Problem ——— */
.problem .section-title { margin-bottom: 1rem; }
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.problem-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}
.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-glow);
}
.we-solve {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--neon);
  margin: 1.25rem 0 1rem;
}
.three-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.pillar {
  padding: 1.25rem;
  border: 1px solid rgba(230, 255, 0, 0.2);
  border-radius: var(--radius);
  text-align: center;
  transition: box-shadow 0.25s ease;
}
.pillar:hover { box-shadow: 0 0 24px var(--neon-dim); }
.pillar strong { color: var(--neon); font-size: 1.1rem; }

/* ——— What We Do ——— */
.what-we-do-intro {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--dark);
  border: 1px solid rgba(230, 255, 0, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  border-color: rgba(230, 255, 0, 0.4);
  box-shadow: 0 0 30px var(--neon-dim);
}
.service-card h3 {
  color: var(--neon);
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}
.service-card li {
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: var(--text);
}
.service-card li::before { content: '•'; position: absolute; left: 0; color: var(--neon); }
.engagement-models {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.engagement-models strong { color: var(--neon); }

/* ——— Our Difference ——— */
.vetting-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.vetting-step {
  padding: 1.25rem;
  border-left: 3px solid var(--neon);
  background: var(--dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 0 15px var(--neon-dim);
}
.vetting-step .num { color: var(--neon); font-weight: 700; margin-bottom: 0.5rem; }
.vetting-step p { margin: 0; color: var(--text); }
.top-five { margin-top: 1.25rem; font-size: 1.1rem; color: var(--neon); font-weight: 600; }

/* ——— Metrics ——— */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  text-align: center;
  padding: 2rem 0;
}
.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-glow);
  margin-bottom: 0.25rem;
}
.metric-label { color: var(--text-muted); font-size: 0.95rem; }

/* ——— How It Works ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.step {
  padding: 1.5rem;
  border: 1px solid rgba(230, 255, 0, 0.2);
  border-radius: var(--radius);
  position: relative;
  transition: box-shadow 0.25s ease;
}
.step:hover { box-shadow: 0 0 25px var(--neon-dim); }
.step .step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--neon);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.step h4 { margin: 0 0 0.5rem; color: #fff; font-size: 1.2rem; }
.step p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* ——— Industries ——— */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.industry {
  padding: 1.25rem;
  background: var(--dark);
  border: 1px solid rgba(230, 255, 0, 0.15);
  border-radius: var(--radius);
  transition: border-color 0.25s ease;
}
.industry:hover { border-color: rgba(230, 255, 0, 0.4); }
.industry h4 { color: var(--neon); margin: 0 0 0.5rem; font-size: 1.1rem; }
.industry p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

/* ——— Case Studies ——— */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.case-study {
  padding: 1.5rem;
  background: var(--dark);
  border: 1px solid rgba(230, 255, 0, 0.2);
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease;
}
.case-study:hover { box-shadow: 0 0 25px var(--neon-dim); }
.case-study h4 { color: var(--neon); margin: 0 0 0.75rem; font-size: 1.2rem; }
.case-study ul { margin: 0; padding-left: 1.25rem; color: var(--text); }
.case-study li { margin-bottom: 0.5rem; }

/* ——— AI Pod ——— */
.pod-list { list-style: none; padding: 0; margin: 0.75rem 0; }
.pod-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}
.pod-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
}
.pod-tagline { color: var(--neon); font-weight: 600; margin-top: 1rem; }

/* ——— Global ——— */
.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.region {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--neon);
  border-radius: var(--radius);
  color: var(--neon);
  font-weight: 500;
}
.global-sub { color: var(--text-muted); margin-top: 1rem; }

/* ——— Compliance ——— */
.compliance-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.compliance-list li {
  padding: 1rem;
  border: 1px solid rgba(230, 255, 0, 0.2);
  border-radius: var(--radius);
  color: var(--text);
}

/* ——— Blog ——— */
.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.blog-topic {
  padding: 0.6rem 1rem;
  background: var(--dark);
  border: 1px solid rgba(230, 255, 0, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.blog-topic:hover { border-color: var(--neon); color: var(--neon); }

/* ——— Final CTA ——— */
.final-cta {
  text-align: center;
  padding: var(--space) 1.5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, var(--neon-dim) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .section-title { margin-bottom: 0.75rem; }
.final-cta .cta-row { margin-top: 1rem; }
.final-cta .btn-secondary { margin-left: 0.5rem; }
.contact-form-wrap {
  max-width: 480px;
  margin: 2rem auto 0;
  padding: 1.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(230, 255, 0, 0.2);
  border-radius: var(--radius);
}
.contact-form-title {
  font-size: 1.1rem;
  color: var(--neon);
  margin: 0 0 1rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--dark);
  border: 1px solid rgba(230, 255, 0, 0.25);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 12px var(--neon-dim);
}
.contact-form button { align-self: flex-start; margin-top: 0.25rem; }

/* ——— Footer ——— */
footer {
  background: var(--black);
  padding: 2rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(230, 255, 0, 0.15);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}
.footer-nav a:hover { color: var(--neon); }
.footer-tagline {
  color: var(--neon);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
}

/* ——— AI Readiness Assessment ——— */
.assessment {
  background: var(--black);
  border: 1px solid rgba(230, 255, 0, 0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.assessment h3 { color: var(--neon); margin: 0 0 0.5rem; font-size: 1.35rem; }
.assessment p { color: var(--text-muted); margin: 0 0 1.5rem; }
.assessment .btn { margin-top: 0.5rem; }
.assessment-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.assessment-form input,
.assessment-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: var(--dark);
  border: 1px solid rgba(230, 255, 0, 0.25);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
.assessment-form input::placeholder { color: var(--text-muted); }
.assessment-form input:focus,
.assessment-form select:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 12px var(--neon-dim);
}

/* Abstract hero graphic */
.hero-graphic {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.12;
  pointer-events: none;
}
.hero-graphic svg { width: 100%; height: 100%; }
