:root{
  --bg: #0b1220;
  --bg2:#070b14;
  --card:#0a1020;
  --border:#1e293b;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --accent:#38bdf8;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  color:var(--text);
  line-height:1.6;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3{
  color:#f8fafc;
  line-height:1.15;
  margin:0 0 14px 0;
}

h1{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing:-0.02em;
}

h2{
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-top: 0;
}

p{
  margin:0 0 16px 0;
  max-width: 760px;
}

a{
  color:var(--accent);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

/* Header that appears after scroll */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;

  background: rgba(2,6,23,0.78);
  border-bottom: 1px solid rgba(148,163,184,0.14);
  backdrop-filter: blur(10px);

  transform: translateY(-110%);
  opacity: 0;
  transition: transform 280ms ease, opacity 280ms ease;
}

.site-header.show{
  transform: translateY(0);
  opacity: 1;
}

.header-inner{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.header-brand{
  display:flex;
  align-items:center;
}

.header-brand img{
  height: 34px;
  width: auto;
  display:block;
}

.header-nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.header-nav a{
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 10px;
}

.header-nav a:hover{
  background: rgba(148,163,184,0.12);
  text-decoration:none;
}

.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(56,189,248,0.55);
  background: rgba(56,189,248,0.14);
  color: #f8fafc;
  font-weight: 800;
  text-decoration:none;
}

.header-cta:hover{
  background: rgba(56,189,248,0.20);
  text-decoration:none;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 12px;
}

/* Hamburger */
.menu-btn{
  display:none;
  width: 44px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(2,6,23,0.35);
  backdrop-filter: blur(10px);
  cursor:pointer;
  padding: 0;
}

.menu-btn .bars{
  width: 18px;
  height: 14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  margin: 0 auto;
}

.menu-btn .bars span{
  display:block;
  height:2px;
  width:100%;
  background: rgba(226,232,240,0.92);
  border-radius: 2px;
}


/* Mobile menu panel */
.mobile-menu{
  position:absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(2,6,23,0.94);
  border-bottom: 1px solid rgba(148,163,184,0.14);
  backdrop-filter: blur(14px);

  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-header.menu-open .mobile-menu{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner{
  padding: 18px 0 22px 0;
}

.mobile-menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 12px;
}

.mobile-menu-title{
  color:#e2e8f0;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.menu-close{
  width: 42px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(148,163,184,0.08);
  color:#e2e8f0;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}

.menu-close:hover{
  border-color: rgba(56,189,248,0.55);
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin: 10px 0 16px 0;
}

.mobile-nav a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  color:#cbd5e1;
  font-weight: 800;
  text-decoration:none;
  background: rgba(148,163,184,0.06);
  border: 1px solid rgba(148,163,184,0.10);
}

.mobile-nav a:hover{
  border-color: rgba(56,189,248,0.55);
  background: rgba(56,189,248,0.10);
}

.mobile-cta{
  display:flex;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(56,189,248,0.55);
  background: rgba(56,189,248,0.14);
  color:#f8fafc;
  font-weight: 900;
  text-decoration:none;
}

/* Scrim behind menu */
.menu-scrim{
  position:fixed;
  inset:0;
  background: rgba(2,6,23,0.55);
  opacity: 0;
  pointer-events:none;
  transition: opacity 220ms ease;
}

.site-header.menu-open .menu-scrim{
  opacity: 1;
  pointer-events:auto;
}

/* Show hamburger on mobile */
@media (max-width: 700px){
  .header-nav{ display:none; }
  .menu-btn{ display:inline-flex; align-items:center; justify-content:center; }
}


/* Mobile header */
@media (max-width: 700px){
  .header-nav{ display:none; }
  .header-inner{ height: 58px; }
  .header-brand img{ height: 32px; }
}

/*  Bullets made intentional, not wonky  */
.bullets{
  margin: 18px 0 0 0;
  padding-left: 18px;
  color: #cbd5e1;
}

.bullets li{
  margin: 10px 0;
}

.steps{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.step{
  border: 1px solid rgba(148,163,184,0.16);
  background: rgba(2,6,23,0.35);
  border-radius: 16px;
  padding: 18px;
}

.step-title{
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 8px;
}

.step-body{
  color: #cbd5e1;
}

.small{
  color: #cbd5e1;
  font-size: 0.98rem;
  max-width: 760px;
}


/* Mobile header */
@media (max-width: 700px){
  .header-nav{ display:none; }
  .header-inner{ height: 58px; }
}


/* HERO with background image */
.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  padding: 96px 0;
  background-image: url("/skg/images/hero-skooch.webp");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  border-bottom: 1px solid var(--border);
  overflow:hidden;
}

/* Light global overlay to gently tame contrast */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(2,6,23,0.25) 0%,
    rgba(2,6,23,0.15) 45%,
    rgba(2,6,23,0.08) 100%
  );
  pointer-events:none;
}

/* "Reverse vignette": dark behind text, fades outward */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 22% 45%,
      rgba(2,6,23,0.72) 0%,
      rgba(2,6,23,0.52) 35%,
      rgba(2,6,23,0.18) 65%,
      rgba(2,6,23,0.00) 100%
    );
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:5;
  padding: 12px 0;
}

.hero h1, .hero p{
  text-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.brandline{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border: 1px solid rgba(148,163,184,0.25);
  background: rgba(2,6,23,0.35);
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.hero p{
  font-size: 1.15rem;
  max-width: 820px;
  color: #e2e8f0;
}

.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 12px;
  border:1px solid rgba(148,163,184,0.25);
  background: rgba(2,6,23,0.40);
  color:#f8fafc;
  text-decoration:none;
  font-weight:600;
  backdrop-filter: blur(6px);
}

.btn:hover{
  border-color: rgba(56,189,248,0.55);
  text-decoration:none;
}

.btn.primary{
  background: rgba(56,189,248,0.16);
  border-color: rgba(56,189,248,0.55);
}

/* Hero accent line */
.hero-accent{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:5px;
  background: linear-gradient(180deg, #f59e0b, #f97316);
  z-index:4;
  opacity:0.95;
}

/* Hero logo overlay */
.hero-logo{
  position:absolute;
  top:28px;
  left:28px;
  z-index:6;
  padding:12px 14px;
  background: rgba(2,6,23,0.55);
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.hero-logo img{
  height:48px;
  width:auto;
  display:block;
}

/* Sections */
section.section{
  position: relative;
  padding: 84px 0;
  border-bottom: 1px solid rgba(148,163,184,0.14);
  background: rgba(2,6,23,0.62);
}

section.section.alt{
  background: rgba(8,14,28,0.92);
}

section.section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:0.55;
  background:
    radial-gradient(1200px 600px at 15% 20%, rgba(56,189,248,0.08), rgba(0,0,0,0) 60%),
    radial-gradient(900px 500px at 85% 70%, rgba(249,115,22,0.06), rgba(0,0,0,0) 55%),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.035) 1px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
}

section.section > .container{
  position: relative;
  z-index: 1;
}


.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.card{
  background: rgba(2,6,23,0.55);
  border: 1px solid rgba(30,41,59,0.9);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.card p{ color:#cbd5e1; }

.kicker{
  color:#94a3b8;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-size:0.78rem;
  margin-bottom: 10px;
}

footer.footer{
  padding: 48px 0;
  text-align:center;
  color: var(--muted);
}

/* Contact form */
.contact-form{
  margin-top: 22px;
  max-width: 860px;
}

.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 14px;
}

label{
  font-weight: 800;
  color: #e2e8f0;
  font-size: 0.95rem;
}

input, textarea{
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(2,6,23,0.40);
  color: #f8fafc;
  padding: 12px 12px;
  outline: none;
}

input:focus, textarea:focus{
  border-color: rgba(56,189,248,0.60);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.12);
}

textarea{
  resize: vertical;
  min-height: 140px;
}

.hp{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-msg{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(2,6,23,0.35);
  color: #cbd5e1;
}

.form-msg.ok{
  border-color: rgba(34,197,94,0.45);
}

.form-msg.bad{
  border-color: rgba(239,68,68,0.45);
}


/* Stack fields on mobile */
@media (max-width: 700px){
  .form-grid{
    grid-template-columns: 1fr;
  }
}


/* Micro animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-stagger.in > *{
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in > *:nth-child(1){ transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > *{
    transition: none;
    transform: none;
    opacity: 1;
  }
}


/* Mobile tuning */
@media (max-width: 700px){
  .container{
    padding: 0 18px;
  }

  .hero{
    min-height: 70vh;
    padding: 78px 0;
    background-position: 65% center;
  }

  .hero-inner{
    padding: 18px 18px;
  }

  .hero::after{
    background:
      radial-gradient(560px 520px at 35% 38%,
        rgba(2,6,23,0.78) 0%,
        rgba(2,6,23,0.55) 40%,
        rgba(2,6,23,0.18) 70%,
        rgba(2,6,23,0.00) 100%
      );
  }

  .hero-logo{
    top:18px;
    left:18px;
    padding:10px 12px;
  }

  .hero-logo img{
    height:42px;
  }
}
@media (min-width: 900px){
  .hero{
    background-attachment: fixed;
  }
}

