:root {
  --ink: #16201d;
  --muted: #5d6864;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --line: #dbe2dc;
  --forest: #145c4b;
  --forest-dark: #0d372f;
  --teal: #0e8f83;
  --blue: #245c9f;
  --amber: #c67a1f;
  --shadow: 0 18px 45px rgba(22, 32, 29, 0.12);
  --shadow-strong: 0 28px 70px rgba(22, 32, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.nav-cta {
  padding: 8px 12px;
  background: var(--teal);
  color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--forest-dark);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

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

.site-nav a {
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #e8f3ef;
  color: var(--forest-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-content: end;
  align-items: end;
  gap: 28px;
  padding: 120px clamp(20px, 6vw, 82px) 52px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 22%, rgba(14, 143, 131, 0.38), transparent 24%),
    linear-gradient(90deg, rgba(6, 27, 24, 0.94), rgba(6, 27, 24, 0.7), rgba(6, 27, 24, 0.42)),
    url("../assets/images/SIEM.jpg") center / cover;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ff3d2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 920px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy,
.page-hero p,
.section-heading p,
.copy-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-metrics div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 1.55rem;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.section {
  padding: 74px clamp(20px, 6vw, 82px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

.page-hero {
  padding: 94px clamp(20px, 6vw, 82px) 58px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 27, 24, 0.92), rgba(6, 27, 24, 0.68), rgba(6, 27, 24, 0.42)),
    linear-gradient(135deg, #ffffff, #eef7f4);
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero .eyebrow {
  color: #8ff3d2;
}

.page-hero-domain {
  background-image:
    linear-gradient(90deg, rgba(6, 27, 24, 0.92), rgba(6, 27, 24, 0.68), rgba(6, 27, 24, 0.42)),
    url("../assets/images/domain.jpg");
}

.page-hero-milestones {
  background-image:
    linear-gradient(90deg, rgba(6, 27, 24, 0.9), rgba(6, 27, 24, 0.64), rgba(6, 27, 24, 0.38)),
    url("../assets/images/milestones.jpg");
}

.page-hero-documents {
  background-image:
    linear-gradient(90deg, rgba(6, 27, 24, 0.92), rgba(6, 27, 24, 0.66), rgba(6, 27, 24, 0.42)),
    url("../assets/images/documents.jpg");
}

.page-hero-slides {
  background-image:
    linear-gradient(90deg, rgba(6, 27, 24, 0.88), rgba(6, 27, 24, 0.62), rgba(6, 27, 24, 0.36)),
    url("../assets/images/slides.jpg");
}

.page-hero-about {
  background-image:
    linear-gradient(90deg, rgba(6, 27, 24, 0.92), rgba(6, 27, 24, 0.64), rgba(6, 27, 24, 0.38)),
    url("../assets/images/about.jpg");
}

.page-hero-contact {
  background-image:
    linear-gradient(90deg, rgba(6, 27, 24, 0.92), rgba(6, 27, 24, 0.64), rgba(6, 27, 24, 0.38)),
    url("../assets/images/contact.png");
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 6vw, 82px);
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
