:root{
  --nesture-bg:#06111f;
  --nesture-panel:#0d1b2d;
  --nesture-panel-2:#101f34;
  --nesture-border:#263d5e;
  --nesture-blue:#72b7ff;
  --nesture-gold:#f5c76b;
  --nesture-green:#48e69b;
  --nesture-red:#ff6b8a;
  --nesture-text:#edf6ff;
  --nesture-muted:#95a9c4;
  --nesture-shadow:0 18px 55px rgba(0,0,0,.35);
}

html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at top left, rgba(114,183,255,.14), transparent 32%),
    radial-gradient(circle at top right, rgba(245,199,107,.08), transparent 28%),
    var(--nesture-bg) !important;
  color:var(--nesture-text) !important;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  letter-spacing:-.01em;
}

a{
  color:var(--nesture-blue);
  text-decoration:none;
}

a:hover{
  color:#b9dcff;
}

button,
.button,
.btn,
[role="button"]{
  border-radius:14px !important;
  font-weight:700 !important;
  transition:all .18s ease !important;
}

button:hover,
.button:hover,
.btn:hover,
[role="button"]:hover{
  transform:translateY(-1px);
  filter:brightness(1.08);
}

.card,
.panel,
section,
article,
.nesture-card,
[class*="card"],
[class*="panel"]{
  border-radius:20px !important;
  border-color:rgba(114,183,255,.18) !important;
  box-shadow:var(--nesture-shadow) !important;
}

input,
select,
textarea{
  border-radius:14px !important;
  background:#071426 !important;
  color:var(--nesture-text) !important;
  border:1px solid rgba(114,183,255,.18) !important;
}

table{
  border-collapse:separate !important;
  border-spacing:0 8px !important;
}

th{
  color:var(--nesture-muted) !important;
  font-size:12px !important;
  text-transform:uppercase !important;
  letter-spacing:.08em !important;
}

td{
  background:rgba(13,27,45,.72) !important;
  border-top:1px solid rgba(114,183,255,.12) !important;
  border-bottom:1px solid rgba(114,183,255,.12) !important;
}

td:first-child{
  border-left:1px solid rgba(114,183,255,.12) !important;
  border-radius:14px 0 0 14px !important;
}

td:last-child{
  border-right:1px solid rgba(114,183,255,.12) !important;
  border-radius:0 14px 14px 0 !important;
}

.nesture-premium-ribbon{
  position:sticky;
  top:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 18px;
  background:rgba(6,17,31,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(114,183,255,.18);
  color:var(--nesture-text);
  font-size:13px;
}

.nesture-premium-ribbon strong{
  color:var(--nesture-gold);
}

.nesture-premium-ribbon .pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(114,183,255,.1);
  border:1px solid rgba(114,183,255,.22);
}

.nesture-flow-map{
  margin:18px 0;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(135deg,rgba(16,31,52,.92),rgba(7,20,38,.92));
  border:1px solid rgba(114,183,255,.18);
  box-shadow:var(--nesture-shadow);
}

.nesture-flow-map h3{
  margin:0 0 14px;
  color:var(--nesture-blue);
}

.nesture-flow-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:10px;
}

.nesture-flow-step{
  padding:12px;
  border-radius:16px;
  background:#071426;
  border:1px solid rgba(114,183,255,.18);
}

.nesture-flow-step b{
  display:block;
  color:var(--nesture-text);
  margin-bottom:4px;
}

.nesture-flow-step span{
  color:var(--nesture-muted);
  font-size:12px;
}

.nesture-floating-actions{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9998;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.nesture-floating-actions a{
  padding:12px 14px;
  border-radius:16px;
  background:linear-gradient(135deg,#1c3d63,#10233b);
  border:1px solid rgba(114,183,255,.3);
  color:#fff;
  box-shadow:var(--nesture-shadow);
  font-weight:800;
  font-size:13px;
}

.nesture-floating-actions a:nth-child(2){
  background:linear-gradient(135deg,#4b3514,#1d2638);
  border-color:rgba(245,199,107,.35);
}

.nesture-floating-actions a:nth-child(3){
  background:linear-gradient(135deg,#13452f,#10233b);
  border-color:rgba(72,230,155,.35);
}

@media(max-width:780px){
  .nesture-premium-ribbon{
    align-items:flex-start;
    flex-direction:column;
  }
  .nesture-floating-actions{
    position:static;
    margin:18px;
  }
}
