/* Aegis Guard — guard.securegentools.com */
:root {
  --ink: #071018;
  --ink-soft: #1a2836;
  --muted: #6b7c8d;
  --paper: #e9eef3;
  --panel: #f7fafc;
  --steel: #0b3d4a;
  --accent: #0f766e;
  --accent-bright: #14b8a6;
  --line: rgba(7, 16, 24, 0.1);
  --line-strong: rgba(7, 16, 24, 0.16);
  --header-h: 4.25rem;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --max: 72rem;
  --radius: 0.35rem;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1.1rem, 4vw, 3rem);
  background: rgba(233, 238, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.on-hero {
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent;
  border-bottom-color: transparent;
  color: #f1f5f9;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand img {
  width: 1.65rem;
  height: 1.65rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav a:hover {
  color: var(--accent-bright);
}
.site-header.on-hero .nav a:hover {
  color: #5eead4;
}
.nav-cta {
  display: none;
}
@media (min-width: 720px) {
  .nav-cta {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #0d9488;
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #f8fafc;
  background: rgba(7, 16, 24, 0.25);
}
.btn-ghost-dark {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #fff;
}
.btn-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

/* Hero — one composition, brand first, full-bleed */
.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: flex;
  align-items: flex-end;
  color: #f8fafc;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKen 28s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 16, 24, 0.88) 0%,
    rgba(7, 16, 24, 0.55) 48%,
    rgba(7, 16, 24, 0.25) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) clamp(1.1rem, 4vw, 3rem) 3.5rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 1rem;
  animation: rise 0.7s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 28rem;
  margin: 0 0 0.85rem;
  line-height: 1.25;
  animation: rise 0.7s ease 0.08s both;
}
.hero .lede {
  max-width: 32rem;
  margin: 0 0 1.5rem;
  color: #cbd5e1;
  font-size: 1.05rem;
  animation: rise 0.7s ease 0.16s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.7s ease 0.24s both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.5rem clamp(1.1rem, 4vw, 3rem);
}
.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.6rem;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.section .sub {
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

/* Feature bands — one job each, image as real anchor */
.band {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .band {
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
  }
  .band.reverse {
    direction: rtl;
  }
  .band.reverse > * {
    direction: ltr;
  }
}
.band-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(7, 16, 24, 0.12);
}
.band-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.band:hover .band-media img {
  transform: scale(1.03);
}
.band h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}
.band p {
  color: var(--muted);
  margin: 0 0 1rem;
}
.band ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.band li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.band li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--accent-bright);
}

.grid-features {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .grid-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .grid-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feat {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feat:hover {
  border-color: rgba(15, 118, 110, 0.35);
  transform: translateY(-2px);
}
.feat h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.feat p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.honesty {
  background: linear-gradient(160deg, #0b3d4a 0%, #071018 70%);
  color: #e2e8f0;
}
.honesty .section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.honesty h2 {
  color: #f8fafc;
}
.honesty .sub {
  color: #94a3b8;
}
.honesty-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 800px) {
  .honesty-list {
    grid-template-columns: 1fr 1fr;
  }
}
.honesty-list li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.03);
}
.honesty-list strong {
  color: #5eead4;
}

.cta-strip {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cta-inner h2 {
  margin-bottom: 0.35rem;
}

.site-footer {
  padding: 2.5rem clamp(1.1rem, 4vw, 3rem) 3rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links a:hover {
  color: var(--accent);
}

.page-hero {
  padding: calc(var(--header-h) + 2.5rem) clamp(1.1rem, 4vw, 3rem) 2rem;
  background: linear-gradient(180deg, #dfe8ef 0%, var(--paper) 100%);
}
.page-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
}
.page-hero p {
  max-width: 36rem;
  color: var(--muted);
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}
.feat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.feat-table th,
.feat-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.feat-table th {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f1f5f9;
}
.feat-table tr:last-child td {
  border-bottom: none;
}
.feat-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
