:root{
  --bg:#0b0614;
  --card:#0f0a1c;
  --card2:#120b22;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 45px rgba(0,0,0,.38);
  --shadow2: 0 10px 25px rgba(0,0,0,.22);

  --accent:#ff7a18;
  --lime:#46ff7a;
  --lime2:#00d47a;

  --radius:22px;
  --max:1180px;
}

html,body{height:100%}
body.fpl360{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(124,42,232,.55), transparent 65%),
    radial-gradient(800px 540px at 90% 10%, rgba(91,24,168,.55), transparent 62%),
    radial-gradient(900px 540px at 35% 65%, rgba(70,255,122,.10), transparent 55%),
    linear-gradient(180deg, #0a0612 0%, #080513 40%, #05040b 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fpl360-header{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(180deg, rgba(8,5,19,.82), rgba(8,5,19,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.2px;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background:
    radial-gradient(10px 10px at 30% 35%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(22px 22px at 65% 70%, rgba(0,0,0,.25), transparent 65%),
    linear-gradient(135deg, rgba(70,255,122,.95), rgba(0,212,122,.75));
  display:grid; place-items:center;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
}
.logo svg{width:20px; height:20px; opacity:.9}
.brand span{font-size:20px}
.nav-right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
.btn:active{transform: translateY(0px); opacity:.95}
.btn-primary{
  background: linear-gradient(180deg, #ff8b2e, #ff6a00);
  border-color: rgba(255,255,255,.18);
  color:#1b0b00;
}
.btn-ghost{
  background: rgba(255,255,255,.05);
  color: var(--text);
}
.hamburger{
  width:44px; height:44px; border-radius:14px;
  display:inline-grid; place-items:center;
}
.hamburger span{
  width:18px; height:2px; background:rgba(255,255,255,.9);
  position:relative; border-radius:2px;
}
.hamburger span:before, .hamburger span:after{
  content:""; position:absolute; left:0; width:18px; height:2px;
  background:rgba(255,255,255,.9); border-radius:2px;
}
.hamburger span:before{top:-6px}
.hamburger span:after{top:6px}

.fpl360-main{min-height:60vh}

/* Sections */
.hero{padding:54px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:24px;
  align-items:center;
}
.hero h1{
  font-size: clamp(38px, 5.3vw, 62px);
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:-.8px;
}
.hero h1 .lime{color:var(--lime)}
.hero p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  max-width:52ch;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.hero-note{
  color:var(--muted2);
  font-size:12px;
  margin-top:14px;
  display:flex; gap:10px; align-items:center;
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--lime2);box-shadow:0 0 0 6px rgba(0,212,122,.12)}

.mock{
  border-radius: 26px;
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.mock:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(420px 240px at 20% 20%, rgba(124,42,232,.55), transparent 55%),
              radial-gradient(420px 240px at 80% 35%, rgba(255,122,24,.28), transparent 58%),
              radial-gradient(420px 240px at 50% 85%, rgba(70,255,122,.18), transparent 60%);
  z-index:0;
  filter: blur(10px);
  opacity:.9;
}
.mock-inner{
  position:relative; z-index:1;
  background: linear-gradient(180deg, rgba(15,10,28,.92), rgba(10,7,18,.92));
  border:1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding:16px;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  font-weight:900;
  font-size:12px;
  color:rgba(255,255,255,.92);
  white-space:nowrap;
}
.pill i{
  width:10px; height:10px; border-radius:99px;
  background: var(--lime);
  display:inline-block;
  box-shadow:0 0 0 6px rgba(70,255,122,.10);
}

.features{padding:22px 0 18px}
.cards{margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.card{border-radius: var(--radius); padding:16px; box-shadow: var(--shadow2)}
.icon{
  width:46px;height:46px;border-radius:18px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:10px;
}
.card h3{margin:0 0 6px; font-size:16px; font-weight:900}
.card p{margin:0; color:var(--muted); line-height:1.55; font-size:13px}

.updates{padding:0 0 60px}
.updates h2{text-align:center; font-size: clamp(24px, 2.6vw, 34px); margin:0 0 18px}
.post-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.post{border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow2)}
.thumb{height:110px; border-bottom:1px solid rgba(255,255,255,.08)}

.fpl360-footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0 30px;
  color:var(--muted2);
  font-size:12px;
}
.foot{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.foot-links{display:flex; gap:14px; flex-wrap:wrap}
.foot a{color:rgba(255,255,255,.78); text-decoration:none}
.foot a:hover{text-decoration:underline}

@media (max-width:980px){
  .hero{padding:40px 0 18px}
  .hero-grid{grid-template-columns:1fr; gap:16px}
  .cards{grid-template-columns:1fr}
  .post-grid{grid-template-columns:1fr}
}
