/* VeteranUniforms — Simple premium UI */
:root{
  --bg:#0b0c10;
  --bg2:#0e1118;
  --text:#eef3ff;
  --muted:#a9b4cd;
  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.08);
  --shadow: 0 16px 44px rgba(0,0,0,.45);
  --radius:18px;

  /* subtle accent */
  --accent:#c6a14a;
  --accent2:#e3c67a;

  --max:1120px;
}

*{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, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(198,161,74,.10) 0%, rgba(198,161,74,0) 60%),
    radial-gradient(800px 520px at 90% 15%, rgba(110,160,255,.08) 0%, rgba(110,160,255,0) 60%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color: var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(11,12,16,.62);
  border-bottom:1px solid var(--line2);
}
.topbar-inner{display:flex; align-items:center; gap:16px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:250px}
.brand-mark{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  font-weight:900;
  letter-spacing:.5px;
}
.brand-name{font-weight:900; letter-spacing:.2px}
.brand-tag{color:var(--muted); font-size:12px; margin-top:2px}
.nav{display:none; gap:10px; color:var(--muted); margin-left:auto}
.nav a{padding:8px 10px; border-radius:12px}
.nav a:hover{background: rgba(255,255,255,.06); color:var(--text)}
@media(min-width:860px){ .nav{display:flex} }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
  transition: transform .06s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{background: rgba(255,255,255,.08)}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(180deg, rgba(198,161,74,.22), rgba(198,161,74,.12));
  border:1px solid rgba(198,161,74,.35);
}
.btn-primary:hover{background: linear-gradient(180deg, rgba(198,161,74,.28), rgba(198,161,74,.14))}
.btn-ghost{
  background: transparent;
  border:1px solid var(--line);
  color: var(--muted);
}
.btn-ghost:hover{color:var(--text); background: rgba(255,255,255,.05)}

.hero{padding:54px 0 18px}
.hero-grid{display:grid; grid-template-columns: 1fr; gap:18px}
@media(min-width:980px){ .hero-grid{grid-template-columns: 1.35fr .65fr; align-items:start} }

.hero-copy h1{
  font-size:36px;
  line-height:1.08;
  margin:0 0 12px;
  letter-spacing:-.2px;
}
@media(min-width:980px){ .hero-copy h1{font-size:44px} }

.lead{color:var(--muted); font-size:16px; max-width:60ch}
.hero-ctas{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}
.hero-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

.pill{
  font-size:12px; color:var(--muted);
  padding:8px 10px;
  border:1px solid var(--line2);
  border-radius:999px;
  background: rgba(255,255,255,.03);
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.card-head .kicker{color:var(--muted); font-size:12px}
.card-head .title{font-size:18px; font-weight:900; margin-top:4px}
.checklist{list-style:none; padding:0; margin:12px 0 0}
.checklist li{padding:10px 0; border-top:1px solid var(--line2); color:var(--muted)}
.note{margin-top:12px; color:var(--muted); font-size:12px}

.section{padding:44px 0}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line2);
  border-bottom:1px solid var(--line2);
}
.section h2{margin:0 0 12px; font-size:26px; letter-spacing:-.1px}

.steps{display:grid; grid-template-columns: 1fr; gap:12px}
@media(min-width:920px){ .steps{grid-template-columns: repeat(4, 1fr)}}
.step{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line2);
  border-radius: var(--radius);
  padding:14px;
  display:flex; gap:12px;
  min-height:92px;
}
.step-num{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(198,161,74,.14);
  border:1px solid rgba(198,161,74,.30);
  font-weight:900;
  color: var(--text);
}
.step-title{font-weight:900}
.step-text{color:var(--muted); font-size:13px; margin-top:4px}

.muted{color:var(--muted)}
.divider{height:1px; background: var(--line2); margin:18px 0}

.builder-head{
  display:flex; gap:16px; align-items:flex-end; justify-content:space-between; flex-wrap:wrap;
  margin-bottom: 14px;
}

.builder-shell{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media(min-width:980px){
  .builder-shell{ grid-template-columns: 1.35fr .65fr; align-items:start; }
}

.price-box{
  position: sticky;
  top: 84px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.price-label{color:var(--muted); font-size:12px}
.price-value{font-size:30px; font-weight:1000; margin-top:2px}
.price-sub{color:var(--muted); font-size:12px; margin-top:6px}

.form{
  margin-top:0;
  background: rgba(255,255,255,.02);
  border:1px solid var(--line2);
  border-radius: var(--radius);
  padding:16px;
}

.grid2,.grid3{display:grid; grid-template-columns: 1fr; gap:12px}
@media(min-width:860px){
  .grid2{grid-template-columns: repeat(2, 1fr)}
  .grid3{grid-template-columns: repeat(3, 1fr)}
}

.field label{display:block; font-weight:900; font-size:13px; margin-bottom:6px}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line2);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
.field input::placeholder, .field textarea::placeholder{color: rgba(169,180,205,.65)}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(198,161,74,.55);
  box-shadow: 0 0 0 3px rgba(198,161,74,.10);
}
.hint{color:var(--muted); font-size:12px; margin-top:6px}

.h3{margin:0 0 10px; font-size:16px; letter-spacing:-.1px}
.check{display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:800; padding:8px 0}
.check input{transform: scale(1.12)}

.actions{
  display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;
  padding-top: 6px;
}
.fine{color:var(--muted); font-size:12px; margin-top:10px}

.faq details{
  background: rgba(255,255,255,.02);
  border:1px solid var(--line2);
  border-radius: var(--radius);
  padding:14px;
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:1000}
.faq-body{color:var(--muted); margin-top:10px}

.footer{
  display:flex; justify-content:space-between; align-items:center;
  margin-top:26px; padding-top:16px;
  border-top:1px solid var(--line2)
}

::selection{background: rgba(198,161,74,.30)}


/* Page layout helpers */
.page-hero{
  padding: 46px 0 10px;
}
.page-hero h1{
  font-size: 34px;
  line-height:1.1;
  margin:0 0 10px;
  letter-spacing:-.2px;
}
@media(min-width:980px){ .page-hero h1{font-size:42px} }

.subhead{color:var(--muted); max-width:70ch; font-size:16px}

.grid-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
@media(min-width:920px){ .grid-cards{grid-template-columns: repeat(3, 1fr)} }

.card-lite{
  background: rgba(255,255,255,.02);
  border:1px solid var(--line2);
  border-radius: var(--radius);
  padding:16px;
}
.card-lite .title{font-weight:1000; margin:0 0 6px}
.card-lite .muted{font-size:13px}

.section-tight{padding:26px 0}
.kicker{color:var(--muted); font-size:12px; letter-spacing:.2px; text-transform:uppercase}

.notice{
  border:1px solid rgba(198,161,74,.25);
  background: rgba(198,161,74,.06);
  border-radius: var(--radius);
  padding:12px 14px;
  color: var(--muted);
  font-size:13px;
}

/* Builder: hide big form on small screens behind sections */
.form .divider{opacity:.9}

/* Nav spacing: keep CTA right */
.topbar-inner .btn-primary{margin-left:10px}
@media(min-width:860px){ .topbar-inner .btn-primary{margin-left:0} }
