:root{
  --bg:#0a0d14;
  --panel:#0f1523;
  --panel2:#0c111d;
  --text:#eaf0ff;
  --muted:#aab6d6;
  --line:#1f2a44;
  --brand:#5a78ff;
  --brand2:#7c5cff;
  --ok:#36d399;
  --radius:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  color-scheme: dark;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(90,120,255,.20), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(124,92,255,.16), transparent 55%),
    radial-gradient(900px 600px at 50% 110%, rgba(54,211,153,.08), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.wrap{max-width:1120px;margin:0 auto;padding:22px 16px 46px}

.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,13,20,.72);
  border-bottom: 1px solid rgba(31,42,68,.65);
}

.nav{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  max-width:1120px;margin:0 auto;padding:14px 16px;
}

.brand{
  display:flex;align-items:center;gap:10px;font-weight:850;letter-spacing:.2px;
}
.brand .mark{
  width:34px;height:34px;border-radius:11px;
  background: linear-gradient(135deg, rgba(90,120,255,.95), rgba(124,92,255,.95));
  box-shadow: 0 10px 22px rgba(90,120,255,.18);
}
.brand small{
  display:block;
  font-weight:650;
  letter-spacing:.1px;
  color:var(--muted);
  margin-top:2px;
}

.menu{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:14px;
  border:1px solid rgba(31,42,68,.9);
  background: rgba(15,21,35,.9);
}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, rgba(90,120,255,.95), rgba(124,92,255,.95));
  box-shadow: 0 10px 22px rgba(90,120,255,.18);
  font-weight:800;
}
.btn.ghost{background: transparent}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(31,42,68,.85);
  background: rgba(12,17,29,.7);
  color:var(--muted);
  font-size:13px;
}

.hero{
  border:1px solid rgba(31,42,68,.85);
  background:
    linear-gradient(180deg, rgba(10,13,20,.65), rgba(10,13,20,.92)),
    var(--panel2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  padding:18px;
}

.heroArt{
  border-left:1px solid rgba(31,42,68,.65);
  background:
    linear-gradient(180deg, rgba(90,120,255,.12), rgba(124,92,255,.06)),
    radial-gradient(800px 300px at 20% 10%, rgba(54,211,153,.10), transparent 60%),
    #0a0f1c;
  min-height: 260px;
  padding:16px;
}
.heroArt .stat{
  display:flex;justify-content:space-between;gap:10px;
  padding:12px 12px;border-radius:16px;
  border:1px solid rgba(31,42,68,.8);
  background: rgba(15,21,35,.75);
  margin-bottom:10px;
}
.stat b{font-size:14px}
.stat span{color:var(--muted);font-size:13px}
kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid rgba(31,42,68,.9);
  background: rgba(12,17,29,.75);
  color: var(--text);
}

h1{margin:0;font-size:44px;line-height:1.05;letter-spacing:-.6px}
h2{margin:0 0 10px;font-size:26px;letter-spacing:-.2px}
p{margin:0;color:var(--muted);line-height:1.7}
strong{color:var(--text)}

.section{margin-top:16px}
.grid{display:grid;grid-template-columns: repeat(12,1fr);gap:12px}
.card{
  grid-column: span 6;
  border:1px solid rgba(31,42,68,.85);
  background: rgba(15,21,35,.78);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{margin:0 0 6px;font-size:17px;letter-spacing:-.1px}
.card ul{margin:10px 0 0;padding-left:18px;color:var(--muted);line-height:1.7}
.wide{grid-column: span 12}

.split{
  display:grid;grid-template-columns: 1fr 1fr;gap:12px;
}

.footer{
  margin-top:22px;
  padding-top:18px;
  border-top: 1px solid rgba(31,42,68,.65);
  color: rgba(170,182,214,.8);
  font-size: 13px;
  display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;
}

.notice{
  margin-top:10px;
  padding:12px 14px;
  border:1px solid rgba(31,42,68,.85);
  background: rgba(12,17,29,.6);
  border-radius: var(--radius);
  color: rgba(170,182,214,.9);
  font-size: 13px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 260px;         /* controls how tall each tile is */
  object-fit: cover;     /* crops neatly instead of stretching */
  border-radius: 14px;
  display: block;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Desktop: 3 across */
.gallery img { grid-column: span 4; }

/* Tablet: 2 across */
@media (max-width: 980px){
  .gallery img { grid-column: span 6; }
}

/* Mobile: 1 across */
@media (max-width: 640px){
  .gallery img { grid-column: span 12; height: 220px; }
}
.shot{
  grid-column: span 4;
  border-radius: var(--radius);
  border:1px solid rgba(31,42,68,.85);
  overflow:hidden;
  background: rgba(15,21,35,.78);
}
.shot img{width:100%;height:220px;object-fit:cover;display:block}
.shot .cap{padding:10px 12px;color:var(--muted);font-size:13px;border-top:1px solid rgba(31,42,68,.65)}

@media (max-width: 920px){
  h1{font-size:36px}
  .heroGrid{grid-template-columns:1fr}
  .heroArt{border-left:0;border-top:1px solid rgba(31,42,68,.65);min-height: 220px}
  .card{grid-column: span 12}
  .shot{grid-column: span 12}
  .split{grid-template-columns:1fr}
}

/* --- NSRP brand watermark in hero --- */
.hero { position: relative; }

.hero::after{
  content:"";
  position:absolute;
  inset:-80px;
  background: url("/assets/logo-mark.png") center / 1000px auto no-repeat;
  opacity: .09;
  pointer-events: none;
}


.brand-logo{
  width:32px;
  height:32px;
  border-radius:11px;
  object-fit:cover;
  display:block;
}

/* --- Conversion polish (Phase 2) --- */
.wrap{max-width:1180px;margin:0 auto;}
.section{max-width:1100px;margin-left:auto;margin-right:auto;}

.btn{transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;}
.btn:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(0,0,0,.35);}
.btn:active{transform:translateY(0);box-shadow:0 6px 16px rgba(0,0,0,.25);}

.hero{padding:96px 24px 72px;}
.hero h1{font-size:clamp(2.2rem, 4vw, 3.2rem);line-height:1.12;letter-spacing:-.02em;}
.hero p{max-width:780px;}

.trust{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;
  border:1px solid rgba(31,42,68,.65);
  background: rgba(15,21,35,.55);
  border-radius:999px;
  color: rgba(170,182,214,.95);
  font-size: 12px;
  letter-spacing:.02em;
}

@media (max-width: 920px){
  .hero{padding:72px 18px 54px;}
  .hero p{max-width:unset;}
}

/* Promo banner section */
.promo {
    margin: 40px 0 10px;
}

.promo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.promo-card img {
    width: 100%;
    height: 800px;      /* controls banner size */
    object-fit: cover;  /* crops instead of stretching */
    display: block;
    filter: brightness(0.6);
}

.promo-text {
  position: absolute;
  left: 50px;
  bottom: 50px;
  max-width: 500px;
}

.promo-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.promo-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* Announcement spacing */
.announcement-item{
  margin-bottom:14px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(31,42,68,.5);
}

.announcement-item:last-child{
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

