/* =========================================================
   ShortFormFactory™ — Global Styles
   Premium • Systems-first • Jet Black + Neon Green
   ========================================================= */

/* -------------------------
   CSS Variables
-------------------------- */
:root {
  --black: #000000;
  --ink: #0b0b0b;
  --panel: #111111;
  --panel-2: #1a1a1a;
  --white: #ffffff;
  --muted: #9a9a9a;
  --green: #39ff14;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 160ms;
  --med: 320ms;
  --slow: 640ms;

  --maxw: 1200px;
}

/* -------------------------
   Reset / Base
-------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Inter",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* -------------------------
   Utility
-------------------------- */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.sectionHead {
  margin-bottom: 48px;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--green);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.08);
  color: var(--green);
}

.pill--soft {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

/* -------------------------
   Typography
-------------------------- */
.h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 12px 0;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.sub {
  max-width: 560px;
  font-size: 18px;
  color: #d6d6d6;
}

.belief {
  margin-top: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

/* -------------------------
   Top Bar / Nav
-------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brandMark {
  width: 28px;
  height: 28px;
}

.brandName {
  letter-spacing: 0.02em;
}

.tm {
  font-size: 12px;
  opacity: 0.6;
}

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

.navLink {
  font-size: 14px;
  color: #cfcfcf;
  transition: color var(--fast) var(--ease);
}

.navLink:hover {
  color: var(--white);
}

/* -------------------------
   Glow Buttons (Clickable Only)
-------------------------- */
.glowBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease),
    background var(--fast) var(--ease);
}

.glowBtn:active {
  transform: translateY(1px);
}

.glowBtn--primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 0 rgba(57, 255, 20, 0);
}

.glowBtn--primary:hover {
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.6);
}

.glowBtn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.glowBtn--ghost:hover {
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.35);
}

/* -------------------------
   Hero
-------------------------- */
.hero {
  padding: 120px 0 80px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}

.heroCard {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.stat {
  background: var(--panel);
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: center;
}

.statNum {
  font-size: 18px;
  font-weight: 700;
}

.statLbl {
  font-size: 12px;
  color: var(--muted);
}

/* -------------------------
   Cards (Services)
-------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.svcCard {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease);
}

.svcCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(57, 255, 20, 0.25);
}

.svcTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.svcName {
  font-weight: 600;
}

.svcTag {
  font-size: 11px;
  opacity: 0.6;
}

.svcLine {
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 14px;
}

.svcMore {
  font-size: 13px;
  color: var(--green);
}

/* -------------------------
   Reveal Animations
-------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--slow) var(--ease),
    transform var(--slow) var(--ease);
}

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

/* -------------------------
   Footer
-------------------------- */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
}

/* -------------------------
   Responsive
-------------------------- */
@media (max-width: 900px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 0;
  }
}