/*
  Brand Value Makers - styles
  No build tools. Pure CSS.
*/

:root{
  --bg: #0b1220;
  --bg2: #0f1a2e;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --border: rgba(255,255,255,0.12);
  --brand: #7c3aed; /* violet */
  --brand2: #22c55e; /* green */
  --accent: #06b6d4; /* cyan */
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 14px;
  --radius2: 22px;
  --max: 1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1100px 600px at 20% -10%, rgba(124,58,237,0.45), transparent 60%),
              radial-gradient(1000px 700px at 90% 0%, rgba(6,182,212,0.28), transparent 65%),
              radial-gradient(900px 600px at 70% 110%, rgba(34,197,94,0.20), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{color: inherit; text-decoration:none;}
a:hover{opacity:0.95;}
img{max-width:100%; height:auto; display:block;}

.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto;}

.skip-link{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;}
.skip-link:focus{left:14px; top:14px; width:auto; height:auto; padding:10px 12px; background: #111827; border:1px solid var(--border); border-radius: 10px; z-index: 9999;}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,0.55);
  border-bottom: 1px solid var(--border);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 220px;}
.brand__text{display:flex; flex-direction:column;}
.brand__name{font-weight:750; letter-spacing:-0.02em;}
.brand__tag{font-size:12px; color: var(--muted); margin-top:2px;}

.nav{display:flex; align-items:center; gap:10px;}
.nav__link{
  padding: 10px 12px;
  border-radius: 11px;
  color: var(--muted);
  border: 1px solid transparent;
}
.nav__link:hover{color: var(--text); border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);}
.nav__link.is-active{color: var(--text); border-color: rgba(124,58,237,0.38); background: rgba(124,58,237,0.14);}

.nav__cta{
  margin-left: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(124,58,237,0.42);
  background: linear-gradient(135deg, rgba(124,58,237,0.30), rgba(6,182,212,0.12));
  box-shadow: 0 10px 30px rgba(124,58,237,0.18);
  font-weight: 650;
}
.nav__cta:hover{border-color: rgba(124,58,237,0.7);}

.nav-toggle{display:none; background: transparent; border:1px solid rgba(255,255,255,0.14); border-radius: 12px; padding:10px;}
.nav-toggle__bar{display:block; width:22px; height:2px; background: rgba(255,255,255,0.85); margin:4px 0; border-radius: 99px;}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;}

/* Main */
main{padding: 38px 0 10px;}
.section{padding: 54px 0;}
.section--tight{padding: 32px 0;}

.hero{
  padding: 28px 0 10px;
}
.hero-grid{display:grid; gap:28px; grid-template-columns: 1.25fr 0.95fr; align-items:center;}

.kicker{display:inline-flex; align-items:center; gap:10px; padding: 7px 10px; border-radius: 999px; border:1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--muted); font-size: 13px;}
.kicker-dot{width:8px; height:8px; border-radius: 99px; background: var(--brand2); box-shadow: 0 0 0 5px rgba(34,197,94,0.15);}

h1{font-size: clamp(32px, 4vw, 54px); line-height: 1.06; margin: 14px 0 10px; letter-spacing: -0.03em;}
.lead{font-size: clamp(16px, 1.55vw, 19px); color: var(--muted); margin: 0 0 18px; max-width: 52ch;}

.hero-actions{display:flex; gap:12px; flex-wrap: wrap; align-items:center; margin-top: 18px;}
.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,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 650;
  box-shadow: 0 12px 40px rgba(0,0,0,0.24);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.08);}
.btn:active{transform: translateY(0);}
.btn--primary{border-color: rgba(124,58,237,0.55); background: linear-gradient(135deg, rgba(124,58,237,0.55), rgba(6,182,212,0.24));}
.btn--primary:hover{border-color: rgba(124,58,237,0.75);}
.btn--ghost{box-shadow:none; background: transparent;}

.hero-card{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow:hidden;
}
.hero-card:before{
  content:'';
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 240px at 30% 30%, rgba(124,58,237,0.35), transparent 55%),
              radial-gradient(520px 260px at 80% 40%, rgba(6,182,212,0.23), transparent 60%);
  opacity:0.65;
  z-index:0;
}
.hero-card > *{position:relative; z-index:1;}

.stats{display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-top: 16px;}
.stat{border:1px solid rgba(255,255,255,0.12); border-radius: 14px; background: rgba(255,255,255,0.05); padding: 12px 12px;}
.stat__n{font-size: 18px; font-weight: 800; letter-spacing: -0.02em;}
.stat__l{font-size: 12px; color: var(--muted); margin-top: 4px;}

.grid-3{display:grid; grid-template-columns: repeat(3,1fr); gap: 14px;}
.grid-2{display:grid; grid-template-columns: repeat(2,1fr); gap: 14px;}
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}
.card:hover{background: rgba(255,255,255,0.055);}

.card__icon{width:40px; height:40px; border-radius: 14px; display:grid; place-items:center; background: rgba(124,58,237,0.20); border:1px solid rgba(124,58,237,0.35); margin-bottom: 12px;}
.card__title{font-weight: 750; margin: 0 0 6px;}
.card__text{color: var(--muted); margin:0;}

.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap: 18px; margin-bottom: 16px;}
.section-title h2{margin:0; font-size: clamp(22px, 2.3vw, 32px); letter-spacing: -0.02em;}
.section-title p{margin:0; color: var(--muted); max-width: 65ch;}

.pill-row{display:flex; flex-wrap:wrap; gap:8px; margin-top: 14px;}
.pill{font-size: 12px; color: rgba(255,255,255,0.75); border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); padding: 7px 10px; border-radius: 999px;}

.case{
  display:flex;
  flex-direction:column;
  gap: 10px;
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  padding: 16px;
}
.case__top{display:flex; align-items:center; justify-content:space-between; gap: 12px;}
.case__name{font-weight: 760; margin:0;}
.case__meta{color: var(--muted); font-size: 13px;}
.case__metrics{display:grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 8px;}
.metric{border:1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 10px 10px; background: rgba(255,255,255,0.04);}
.metric strong{display:block; font-size: 15px;}
.metric span{color: var(--muted); font-size: 12px;}

.testimonials{position:relative; overflow:hidden;}
.slider{display:flex; gap: 14px; overflow:auto; scroll-snap-type:x mandatory; padding-bottom: 6px;}
.slide{min-width: min(460px, 100%); scroll-snap-align:start;}
.quote{font-size: 15px; color: rgba(255,255,255,0.84); margin: 0 0 12px;}
.person{display:flex; align-items:center; gap: 10px;}
.avatar{width:38px; height:38px; border-radius: 999px; background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(6,182,212,0.3)); border:1px solid rgba(255,255,255,0.18);} 
.person__meta{display:flex; flex-direction:column;}
.person__name{font-weight: 700;}
.person__role{font-size: 12px; color: var(--muted);}

.pricing{display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; align-items:stretch;}
.price{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.05);
  padding: 16px;
  display:flex;
  flex-direction:column;
  height: 100%;
}
.price--highlight{border-color: rgba(124,58,237,0.55); box-shadow: 0 26px 70px rgba(124,58,237,0.18); background: linear-gradient(180deg, rgba(124,58,237,0.18), rgba(255,255,255,0.04));}
.price h3{margin:0 0 6px;}
.price .muted{margin:0 0 14px;}
.amount{font-size: 34px; font-weight: 900; letter-spacing: -0.03em; margin: 6px 0 12px;}
.amount small{font-size: 13px; font-weight: 650; color: var(--muted);}
.ul{list-style:none; padding:0; margin: 0 0 14px;}
.ul li{display:flex; gap:10px; margin: 8px 0; color: rgba(255,255,255,0.86);}
.check{width:18px; height:18px; border-radius: 6px; background: rgba(34,197,94,0.22); border:1px solid rgba(34,197,94,0.38); display:grid; place-items:center; flex:0 0 auto; margin-top: 2px;}

.page-head{padding: 10px 0 18px;}
.page-head h1{margin: 0 0 8px; font-size: clamp(30px, 3.3vw, 46px); letter-spacing:-0.03em;}

.banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(124,58,237,0.16), rgba(6,182,212,0.08));
  padding: 16px;
  box-shadow: var(--shadow);
}
.banner__title{font-weight: 850; letter-spacing:-0.02em;}
.banner__text{color: var(--muted); margin-top: 4px; max-width: 70ch;}

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  border:1px solid rgba(124,58,237,0.35);
  border-radius: var(--radius2);
  background: radial-gradient(700px 240px at 20% 40%, rgba(124,58,237,0.24), transparent 60%),
              radial-gradient(700px 240px at 90% 40%, rgba(6,182,212,0.18), transparent 60%),
              rgba(255,255,255,0.04);
  padding: 18px;
  box-shadow: var(--shadow);
}

.list{margin: 12px 0 0; padding-left: 18px; color: rgba(255,255,255,0.84);}
.list li{margin: 8px 0;}

.post-grid{display:grid; grid-template-columns: repeat(3,1fr); gap: 14px;}
.post-card{border:1px solid var(--border); border-radius: var(--radius2); background: rgba(255,255,255,0.05); padding: 16px;}
.post-card h3{margin: 0 0 6px; letter-spacing:-0.02em;}
.post-card p{margin: 0 0 10px; color: var(--muted);}
.post-meta{display:flex; flex-wrap:wrap; gap: 10px; color: var(--muted); font-size: 13px;}

.article{max-width: 78ch;}
.article h1{margin-top: 0;}
.article p{color: rgba(255,255,255,0.84);}
.article ul{color: rgba(255,255,255,0.84);}
.article code{background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); padding: 2px 6px; border-radius: 9px;}

.admin-card{max-width: 920px;}
.table{width:100%; border-collapse: collapse;}
.table th, .table td{padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.10); vertical-align: top;}
.table th{text-align:left; color: rgba(255,255,255,0.82); font-size: 13px;}
.table td{color: rgba(255,255,255,0.86); font-size: 14px;}

@media (max-width: 960px){
  .post-grid{grid-template-columns: 1fr;}
  .banner, .cta{flex-direction: column; align-items:flex-start;}
}


.form{
  display:grid;
  gap: 12px;
}
.field{display:flex; flex-direction:column; gap:6px;}
label{font-size: 13px; color: rgba(255,255,255,0.78);}
input, textarea, select{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 12px 12px;
  outline:none;
}
input:focus, textarea:focus, select:focus{border-color: rgba(6,182,212,0.6); box-shadow: 0 0 0 4px rgba(6,182,212,0.15);}
textarea{min-height: 140px; resize: vertical;}

.alert{border-radius: 14px; border:1px solid var(--border); background: rgba(255,255,255,0.04); padding: 12px 12px;}
.alert--ok{border-color: rgba(34,197,94,0.5); background: rgba(34,197,94,0.12);}
.alert--bad{border-color: rgba(239,68,68,0.5); background: rgba(239,68,68,0.10);}

.breadcrumb{display:flex; gap:8px; color: var(--muted); font-size: 13px; margin-bottom: 10px;}
.breadcrumb a{color: rgba(255,255,255,0.78);}

/* Footer */
.site-footer{border-top:1px solid var(--border); background: rgba(0,0,0,0.12); margin-top: 50px;}
.footer-grid{display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 18px; padding: 38px 0;}
.footer-brand{display:flex; align-items:center; gap: 12px; margin-bottom: 10px;}
.footer-brand__name{font-weight: 800;}
.footer-brand__tag{color: var(--muted); font-size: 12px; margin-top: 2px;}
.footer-list{list-style:none; padding:0; margin:0;}
.footer-list li{margin: 8px 0; color: rgba(255,255,255,0.84);}
.footer-list a{color: rgba(255,255,255,0.84);}
.footer-list a:hover{color: #fff;}
.muted{color: var(--muted);}
.footer-badges{display:flex; gap:8px; flex-wrap:wrap; margin-top: 10px;}
.badge{font-size: 12px; padding: 6px 9px; border-radius: 999px; border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.80);}
.footer-bottom{display:flex; align-items:center; justify-content:space-between; gap:14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.10); flex-wrap:wrap;}
.footer-bottom__links{display:flex; align-items:center; gap:10px; color: var(--muted);}
.footer-bottom__links a{color: var(--muted);} 
.footer-bottom__links a:hover{color: rgba(255,255,255,0.90);} 

/* Responsive */
@media (max-width: 960px){
  .hero-grid{grid-template-columns: 1fr;}
  .grid-3{grid-template-columns: 1fr;}
  .grid-2{grid-template-columns: 1fr;}
  .pricing{grid-template-columns: 1fr;}
  .footer-grid{grid-template-columns: 1fr 1fr;}
}
@media (max-width: 720px){
  main{padding-top: 26px;}
  .brand__tag{display:none;}
  .nav-toggle{display:inline-flex;}
  .nav{
    position:absolute;
    right: 0;
    top: 66px;
    width: min(320px, calc(100vw - 24px));
    border:1px solid rgba(255,255,255,0.14);
    background: rgba(11,18,32,0.92);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex;}
  .nav__cta{margin-left:0; text-align:center;}
  .footer-grid{grid-template-columns: 1fr;}
}
