/* CON-SEAL layout — black + lime */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, height 0.4s;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(57, 255, 20, 0.15);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  height: 58px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.site-header.is-scrolled .logo img { height: 48px; }
.footer-brand .logo img { height: 88px; max-width: 240px; }

.nav-desktop { display: flex; gap: 22px; align-items: center; }
.nav-desktop a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0; width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; left: 0; }
.nav-desktop a:hover { color: var(--white); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  color: var(--white);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 22px; height: 2px; background: currentColor; position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.98);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-size: 18px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 100px;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 40%;
  transform: scale(1.08);
  filter: brightness(0.48) contrast(1.08) saturate(0.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.62) 42%, rgba(5,5,5,0.28) 70%, rgba(5,5,5,0.5) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.5) 0%, transparent 35%, rgba(5,5,5,0.75) 100%),
    radial-gradient(ellipse 55% 45% at 78% 45%, rgba(57,255,20,0.16), transparent 60%);
  opacity: 0;
}
.hero-flare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 40% 28% at 12% 60%, rgba(57,255,20,0.22), transparent 70%),
    linear-gradient(100deg, transparent 45%, rgba(180,255,140,0.06) 55%, transparent 68%);
  mix-blend-mode: soft-light;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}
.hero-grid-fx {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at 70% 40%, black, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title .accent { color: var(--lime); display: block; }
.hero-lead {
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 28px;
  font-size: 16px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-panel {
  background: var(--surface);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 0 60px rgba(57,255,20,0.08);
}
.hero-panel h2 {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.hero-panel ul { display: grid; gap: 12px; }
.hero-panel li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: rgba(255,255,255,0.8);
}
.hero-panel li::before {
  content: "";
  width: 8px; height: 8px; margin-top: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  flex-shrink: 0;
}

/* Sections */
.section { padding: 88px 0; }
.section.alt { background: var(--black-2); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.underline {
  display: block; width: 48px; height: 3px;
  background: var(--lime); margin: 16px auto 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57,255,20,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.cat-card h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--lime);
}
.cat-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.link-arrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
}
.link-arrow span { color: var(--lime); transition: transform 0.3s; display: inline-block; }
.cat-card:hover .link-arrow span { transform: translateX(4px); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: var(--surface);
}
.trust-item strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--lime);
  margin-bottom: 4px;
}
.trust-item span { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

.cta-band {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(57,255,20,0.15), transparent 55%),
    var(--surface);
  text-align: center;
  border-top: 1px solid rgba(57,255,20,0.15);
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-band p { color: var(--muted); margin-bottom: 24px; }

/* Footer */
.site-footer {
  background: #000;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(57,255,20,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--lime);
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
}

/* Inner pages */
.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-hero .lead { color: var(--muted); max-width: 560px; }
.breadcrumb { font-size: 12px; color: var(--muted-2); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--lime); }
.page-section { padding: 64px 0; }
.prose { max-width: 720px; }
.prose h2 { font-size: 28px; font-weight: 800; margin: 28px 0 12px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { list-style: disc; margin: 12px 0 20px 20px; color: var(--muted); }
.prose li { margin-bottom: 8px; }

.form-card, .nap-card {
  background: var(--surface);
  border: 1px solid rgba(57,255,20,0.18);
  border-radius: 16px;
  padding: 24px;
}
.nap-card h3 { color: var(--lime); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px;
  color: var(--white);
  font: inherit;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--lime);
}
.form-success {
  display: none; padding: 12px 14px; margin-bottom: 14px;
  border: 1px solid var(--lime); border-radius: 10px;
  color: var(--lime-3); font-weight: 700;
}
.form-success.is-visible { display: block; }
.page-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }

@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid, .cat-grid, .trust-strip, .footer-grid, .page-grid-2, .form-grid {
    grid-template-columns: 1fr;
  }
}
