/* assets/css/style.css */
:root{
  --bg: #060B14;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.09);
  --text: #EAF2FF;
  --muted: rgba(234,242,255,0.72);

  /* Logo vibe: orange + blue */
  --orange: #FF8A00;
  --orange2: #FFB000;
  --blue: #1A86FF;
  --blue2: #26B0FF;

  --stroke: rgba(255,255,255,0.12);
  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 800px at 25% 20%, rgba(26,134,255,0.25), transparent 60%),
              radial-gradient(900px 700px at 80% 15%, rgba(255,138,0,0.20), transparent 55%),
              radial-gradient(900px 700px at 60% 85%, rgba(38,176,255,0.14), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6,11,20,0.72);
  border-bottom: 1px solid var(--stroke);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45));
}
.brand-name{
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link{
  padding: 10px 10px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 12px;
}
.nav-link:hover{ background: rgba(255,255,255,0.06); color: var(--text); }
.nav-link.active{ background: rgba(255,255,255,0.08); color: var(--text); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid var(--stroke);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary{
  border: 0;
  color: #071226;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 35%, var(--blue2) 100%);
  box-shadow: 0 14px 32px rgba(255,138,0,0.20), 0 14px 36px rgba(26,134,255,0.16);
}
.btn-primary:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.07); }

.main{ padding: 26px 0 44px; }

.hero{
  padding: 34px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-pad{ padding: 22px; }

.kicker{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(26,134,255,0.13);
  border: 1px solid rgba(26,134,255,0.28);
  color: rgba(234,242,255,0.92);
  font-weight: 800;
  font-size: 13px;
}
.h1{
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
  margin: 14px 0 12px;
  letter-spacing: -0.4px;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badges{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 520px){
  .badges{ grid-template-columns: 1fr; }
}
.badge{
  border-radius: 16px;
  padding: 14px 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
}
.badge .t{
  font-weight: 900;
  margin-bottom: 6px;
}
.badge .s{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.45;
}

.section{
  margin-top: 18px;
}
.section-title{
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 12px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){ .grid-3{ grid-template-columns: 1fr; } }

.feature{
  padding: 18px;
}
.feature .icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(26,134,255,0.18));
  border: 1px solid var(--stroke);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
}
.feature .title{
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 16px;
}
.feature .desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
  font-size: 13.5px;
}

.hr{
  height:1px; background: var(--stroke); border:0; margin: 18px 0;
}

.form{
  display:grid;
  gap: 12px;
}
.input{
  display:grid;
  gap: 8px;
}
.label{
  font-weight: 900;
  font-size: 13px;
  color: rgba(234,242,255,0.92);
}
.control{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  outline: none;
}
.control:focus{
  border-color: rgba(38,176,255,0.55);
  box-shadow: 0 0 0 4px rgba(38,176,255,0.12);
}

.note{
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.6;
}

.table{
  width:100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--stroke);
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align:left;
  vertical-align: top;
}
.table th{
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(234,242,255,0.78);
  background: rgba(255,255,255,0.04);
}
.table td{ color: rgba(234,242,255,0.92); }
.table tr:hover td{ background: rgba(255,255,255,0.03); }

.pills{
  display:flex; gap: 8px; flex-wrap: wrap;
}
.pill{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  color: rgba(234,242,255,0.92);
  font-weight: 850;
  font-size: 12px;
}

.footer{
  border-top: 1px solid var(--stroke);
  background: rgba(6,11,20,0.65);
  backdrop-filter: blur(12px);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  flex-wrap: wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.footer-title{ font-weight: 1000; }
.footer-sub{ color: var(--muted); font-weight: 650; font-size: 13px; }
.footer-note{ margin-top: 10px; color: rgba(234,242,255,0.60); font-size: 12px; font-weight: 650; }
.footer-links{
  display:flex;
  gap: 14px;
  align-items:center;
}
.footer-links a{
  color: rgba(234,242,255,0.78);
  font-weight: 850;
}
.footer-links a:hover{ color: var(--text); }

.alert{
  border-radius: 16px;
  border: 1px solid rgba(255,138,0,0.25);
  background: rgba(255,138,0,0.08);
  padding: 12px 14px;
  font-weight: 750;
  color: rgba(234,242,255,0.92);
}
.success{
  border-color: rgba(38,176,255,0.35);
  background: rgba(38,176,255,0.10);
}

/* ===========================
   Mobile dropdown navigation
   =========================== */

.topbar-inner { position: relative; }

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

.nav-links{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Hamburger hidden on desktop */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  align-items:center;
  justify-content:center;
}

.nav-toggle-bars{
  position: relative;
  width: 20px;
  height: 2px;
  background: rgba(234,242,255,0.92);
  border-radius: 999px;
  display:block;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  width: 20px;
  height: 2px;
  background: rgba(234,242,255,0.92);
  border-radius: 999px;
}
.nav-toggle-bars::before{ top: -6px; }
.nav-toggle-bars::after{ top: 6px; }

.mobile-menu{
  position:absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(320px, calc(100vw - 24px));
  background: rgba(6,11,20,0.98);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  backdrop-filter: blur(14px);
  z-index: 9999;
}

.mobile-link{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(234,242,255,0.86);
  font-weight: 850;
}
.mobile-link:hover{ background: rgba(255,255,255,0.06); color: var(--text); }
.mobile-link.active{ background: rgba(255,255,255,0.08); color: var(--text); }

.mobile-divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 8px 6px;
  border-radius: 999px;
}

.mobile-cta{
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 35%, var(--blue2) 100%);
  color: #071226 !important;
  border: 0;
}

/* ✅ Mobile: hide desktop links, show hamburger */
@media (max-width: 860px){
  .nav-links{ display:none !important; }
  .nav-toggle{ display:inline-flex !important; }
}

body.menu-open{ overflow: hidden; }
}
