:root{
  --bg:#07111f;
  --bg2:#0b1728;
  --panel:#0f1d31;
  --panel2:#13243b;
  --line:rgba(255,255,255,.10);
  --text:#f5f8ff;
  --muted:#9db0ca;
  --accent:#2ed3b7;
  --accent2:#56a8ff;
  --danger:#ff6d6d;
  --shadow:0 14px 40px rgba(0,0,0,.32);
  --radius:18px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(86,168,255,.10), transparent 28%),
    radial-gradient(circle at top right, rgba(46,211,183,.10), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);
  min-height:100vh;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.wrap{
  width:min(1180px, 92%);
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,17,31,.90);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__logo{
  width:42px;
  height:42px;
  object-fit:contain;
}

.brand__name{
  font-size:18px;
  font-weight:800;
  letter-spacing:.08em;
}

.topbar__nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.navlink{
  color:var(--muted);
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
  transition:.2s ease;
}

.navlink:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.navbtn,
.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 18px;
  border:none;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}

.navbtn,
.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#03101d;
  box-shadow:var(--shadow);
}

.navbtn:hover,
.btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.btn-secondary{
  background:rgba(255,255,255,.05);
  color:var(--text);
  border:1px solid var(--line);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.10);
}

.hero{
  padding:68px 0;
}

.hero--landing{
  padding-top:82px;
}

.hero__grid{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:28px;
  align-items:start;
}

.hero__content{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:8px 14px;
  border:1px solid rgba(86,168,255,.25);
  background:rgba(86,168,255,.08);
  color:#d8ebff;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

h1{
  margin:0;
  font-size:56px;
  line-height:1.04;
  letter-spacing:-.03em;
}

h2{
  margin:0;
  font-size:30px;
  line-height:1.1;
}

.lead{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  max-width:760px;
}

.muted{
  color:var(--muted);
}

.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero__highlights{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:8px;
}

.hl{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
}

.hl__title{
  font-size:15px;
  font-weight:800;
  margin-bottom:8px;
}

.hl__text{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.hero__card,
.note,
.card,
.ctaPanel,
.howStep{
  background:linear-gradient(180deg, rgba(19,36,59,.95), rgba(15,29,49,.96));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero__card{
  padding:24px;
}

.grid2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.card{
  display:block;
  padding:18px;
  transition:.2s ease;
}

.card:hover{
  transform:translateY(-2px);
  border-color:rgba(86,168,255,.30);
}

.card__pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(46,211,183,.12);
  border:1px solid rgba(46,211,183,.22);
  color:#c8fff5;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.card__pill--alt{
  background:rgba(86,168,255,.12);
  border-color:rgba(86,168,255,.22);
  color:#d6eaff;
}

.card__title{
  font-size:20px;
  font-weight:800;
  margin-bottom:8px;
}

.card__desc{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.pricebox{
  margin-top:20px;
  padding:18px 20px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.pricebox__plan{
  font-weight:800;
  font-size:18px;
}

.pricebox__small,
.pricebox__term{
  color:var(--muted);
  font-size:14px;
}

.pricebox__price{
  font-size:34px;
  font-weight:900;
  line-height:1;
}

.note{
  padding:16px 18px;
  margin-top:18px;
  color:#dce8fb;
  line-height:1.55;
}

.subnote{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  margin-top:6px;
}

.section{
  padding:36px 0 68px;
}

.section--dark{
  background:rgba(0,0,0,.10);
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}

.sectionHead{
  margin-bottom:24px;
}

.howGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.howStep{
  padding:22px;
}

.howNum{
  width:38px;
  height:38px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:14px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#03101d;
}

.howTitle{
  font-weight:800;
  margin-bottom:8px;
  font-size:18px;
}

.howText{
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}

.ctaPanel{
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.ctaPanel__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:700;
  color:#dce8fb;
}

input,
select,
textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}

textarea{
  min-height:120px;
  resize:vertical;
}

input::placeholder,
textarea::placeholder{
  color:#7f94b4;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(86,168,255,.45);
  box-shadow:0 0 0 3px rgba(86,168,255,.14);
}

.table-wrap{
  overflow:auto;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.table{
  width:100%;
  border-collapse:collapse;
}

.table th,
.table td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid rgba(255,255,255,.06);
  vertical-align:top;
}

.table th{
  font-size:13px;
  color:#dce8fb;
  background:rgba(255,255,255,.03);
}

.table td{
  font-size:14px;
  color:var(--text);
}

.footer{
  border-top:1px solid var(--line);
  margin-top:40px;
}

.footer__inner{
  padding:20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:var(--muted);
  font-size:14px;
}

.footer__links{
  display:flex;
  align-items:center;
  gap:10px;
}

.dot{
  opacity:.45;
}

pre{
  overflow:auto;
  padding:16px;
  border-radius:16px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.06);
  color:#dce8fb;
}

@media (max-width: 1024px){
  .hero__grid,
  .howGrid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:44px;
  }
}

@media (max-width: 720px){
  .topbar__inner,
  .ctaPanel,
  .footer__inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .grid2,
  .hero__highlights{
    grid-template-columns:1fr;
  }

  h1{
    font-size:36px;
  }

  .pricebox{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* =========================================
   ADMIN / PORTAL FORM FIXES
   Fix white text on white inputs
   Fix white labels on white backgrounds
   ========================================= */

.portal-shell input,
.portal-shell select,
.portal-shell textarea,
.card input,
.card select,
.card textarea,
.hero__card input,
.hero__card select,
.hero__card textarea,
.form-card input,
.form-card select,
.form-card textarea,
.panel input,
.panel select,
.panel textarea,
.admin-form input,
.admin-form select,
.admin-form textarea,
.table-wrap input,
.table-wrap select,
.table-wrap textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="url"],
input[type="tel"],
select,
textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:#0f1d31 !important;
  color:#f5f8ff !important;
  outline:none;
  box-shadow:none;
}

.portal-shell input::placeholder,
.portal-shell textarea::placeholder,
.card input::placeholder,
.card textarea::placeholder,
.hero__card input::placeholder,
.hero__card textarea::placeholder,
.form-card input::placeholder,
.form-card textarea::placeholder,
.panel input::placeholder,
.panel textarea::placeholder,
.admin-form input::placeholder,
.admin-form textarea::placeholder,
.table-wrap input::placeholder,
.table-wrap textarea::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder{
  color:#9db0ca !important;
  opacity:1;
}

.portal-shell input:focus,
.portal-shell select:focus,
.portal-shell textarea:focus,
.card input:focus,
.card select:focus,
.card textarea:focus,
.hero__card input:focus,
.hero__card select:focus,
.hero__card textarea:focus,
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.panel input:focus,
.panel select:focus,
.panel textarea:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.table-wrap input:focus,
.table-wrap select:focus,
.table-wrap textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus{
  border-color:rgba(86,168,255,.45) !important;
  box-shadow:0 0 0 3px rgba(86,168,255,.14) !important;
}

.portal-shell label,
.card label,
.hero__card label,
.form-card label,
.panel label,
.admin-form label,
.table-wrap label,
.label{
  display:block;
  margin-bottom:8px;
  color:#dce8fb !important;
  font-size:14px;
  font-weight:700;
}

.portal-shell .label{
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  font-weight:800;
  color:#9db0ca !important;
}

.portal-shell option,
.card option,
.hero__card option,
.form-card option,
.panel option,
.admin-form option,
.table-wrap option,
select option{
  background:#0f1d31;
  color:#f5f8ff;
}

.portal-shell .note,
.portal-shell .sub,
.portal-shell .muted,
.card .note,
.card .sub,
.card .muted,
.form-card .muted,
.panel .muted{
  color:#9db0ca !important;
}

/* checkbox / radio cleanup */
input[type="checkbox"],
input[type="radio"]{
  width:auto !important;
  min-height:auto !important;
  padding:0 !important;
  accent-color:#2ed3b7;
}

/* fix ugly inline styled admin inputs */
[style*="background:#fff"],
[style*="background: #fff"],
[style*="background:white"],
[style*="background: white"]{
  background:#0f1d31 !important;
  color:#f5f8ff !important;
  border-color:rgba(255,255,255,.12) !important;
}

/* common admin table form spacing */
.card form > div,
.hero__card form > div,
.form-card form > div,
.panel form > div{
  margin-bottom:14px;
}

/* buttons inside admin cards stay readable */
.card .button,
.card .button-secondary,
.card .button-dark,
.card .button-danger,
.hero__card .button,
.form-card .button,
.panel .button{
  color:inherit;
}