/* LAPFORCE landing page styles */

:root{
  --bg-0:#07070c;
  --bg-1:#0b0b10;
  --bg-2:#10101a;
  --fg:#f5f7ff;
  --muted:rgba(245,247,255,.65);
  --muted2:rgba(245,247,255,.48);
  --red:#E6154B;
  --shadow: 0 30px 80px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body.lp{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--fg);
  background: radial-gradient(1200px 900px at 25% 10%, rgba(230,21,75,.14), transparent 55%),
              radial-gradient(900px 700px at 80% 25%, rgba(255,255,255,.08), transparent 55%),
              linear-gradient(180deg, var(--bg-1), var(--bg-0));
  overflow:hidden;
}

/* Background layers */
.bg{
  position:fixed;
  inset:0;
  z-index:0;
}

.bg__mesh{
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(900px 600px at 22% 20%, rgba(230,21,75,.20), transparent 55%),
    radial-gradient(750px 520px at 85% 28%, rgba(230,21,75,.12), transparent 55%),
    radial-gradient(900px 680px at 50% 85%, rgba(255,255,255,.10), transparent 55%),
    conic-gradient(from 220deg at 45% 55%, rgba(230,21,75,.12), rgba(255,255,255,.06), rgba(230,21,75,.10), rgba(0,0,0,0));
  filter: blur(38px) saturate(125%);
  opacity:.9;
  transform: translate3d(0,0,0);
  animation: meshFloat 12s ease-in-out infinite;
}

@keyframes meshFloat{
  0%   { transform: translate3d(-1.5%, -1.0%, 0) scale(1.02) rotate(-1deg); }
  50%  { transform: translate3d( 2.0%,  1.5%, 0) scale(1.07) rotate( 1deg); }
  100% { transform: translate3d(-1.5%, -1.0%, 0) scale(1.02) rotate(-1deg); }
}

.bg__stars{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:.75;
}

.bg__grain{
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.22;
  transform: translateZ(0);
}

.bg__vignette{
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(1200px 900px at 50% 40%, transparent 35%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.72) 100%);
}

/* Layout */
.shell{
  position:relative;
  z-index:1;
  height:100%;
  display:grid;
  place-items:center;
  padding: clamp(18px, 4vw, 42px);
}

.hero{
  width:min(980px, 100%);
  height:min(620px, 92vh);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:grid;
  grid-template-rows: auto 1fr auto;
}

.hero__topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted2);
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.brand__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.8), rgba(255,255,255,.18) 35%, rgba(230,21,75,.70));
  box-shadow: 0 0 0 4px rgba(230,21,75,.10), 0 10px 30px rgba(230,21,75,.25);
}

.hero__center{
  display:grid;
  place-items:center;
  align-content:center;
  gap: 14px;
  text-align:center;
}

.logo{
  margin:0;
  line-height:1;
}

.logo__text{
  display:inline-block;
  font-weight:800;
  letter-spacing: .08em;
  font-size: clamp(44px, 8.2vw, 98px);
  position:relative;
  padding: 10px 12px;
  text-shadow:
    0 0 22px rgba(230,21,75,.10),
    0 14px 70px rgba(0,0,0,.55);
}

.logo__text::before{
  content: attr(data-text);
  position:absolute;
  inset:0;
  color: transparent;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.85) 35%, rgba(230,21,75,.92) 72%, rgba(255,255,255,.88));
  -webkit-background-clip:text;
  background-clip:text;
  filter: drop-shadow(0 0 18px rgba(230,21,75,.22));
  opacity:.95;
}

.logo__text::after{
  content:"";
  position:absolute;
  left:10%;
  right:10%;
  bottom:2px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, transparent, rgba(230,21,75,.9), transparent);
  opacity:.55;
  transform: translateY(8px);
}

.tagline{
  margin:0;
  color: var(--muted);
  font-weight:400;
  letter-spacing:.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero__footer{
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.meta{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted2);
  font-size: 13px;
}

.meta__pill{
  padding: 8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

.meta__pill strong{
  color: rgba(255,255,255,.92);
  font-weight:600;
}

.meta__muted{
  color: var(--muted2);
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce){
  .bg__mesh{ animation:none; }
  body.lp{ scroll-behavior:auto; }
}

/* Small screens */
@media (max-width: 480px){
  .meta{
    flex-wrap:wrap;
    justify-content:center;
  }
  .meta__sep{ display:none; }
}

