:root{
  --bg1:#d7cbaa; /* warm beige */
  --bg2:#7b93c0; /* cool blue */
  --card:#0b1324;
  --text:#ffffff;
  --muted:#cfd6e6;
  --maxw: 1080px;
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 100%);
  background-attachment: fixed;
}

.page{max-width: var(--maxw); margin:0 auto; padding:24px 18px 64px}

.logo-header{display:flex; flex-direction:column; align-items:center; gap:10px; margin:4px 0 16px}

.logo-box{background:#ffffff; border-radius:22px; padding:12px 16px; box-shadow:0 6px 24px rgba(0,0,0,.18); display:flex; align-items:center; justify-content:center; width:320px; min-height:140px; border:6px solid rgba(255,255,255,.9)}
.logo-img{max-width:90%; max-height:90%; display:block}

.tagline{font-weight:800; font-size:17px; opacity:.9; text-align:center; color:#e9ecf4}

.card{background:var(--card); border-radius:var(--radius); padding:24px 20px; margin:20px 0; box-shadow:0 10px 30px rgba(0,0,0,.25); text-align:center}

h1,h2{margin:0 0 8px}
h1{font-size:24px; line-height:1.25; font-weight:800}
h2{font-size:20px; line-height:1.25; font-weight:800}
.subhead{color:var(--muted); margin:6px auto 12px; max-width:860px; font-size:14.5px}

.pill-row{display:flex; flex-wrap:wrap; justify-content:center; gap:10px}
.pill{background:#141d33; border-radius:12px; padding:9px 12px; font-size:13.5px; line-height:1; border:1px solid rgba(255,255,255,.08)}

.list{list-style:none; padding:0; margin:0; font-size:15.5px}
.list li{margin:8px 0}

.quote{font-size:16px; margin:6px 0 2px}
.quote-by{color:#dcdff0; margin:0}

a{color:#e5eaa7}
a:hover{opacity:.9}

.footer{text-align:center; margin-top:32px; color:#e5e5e5; opacity:.85}


/* Left-justified bullet style */
.list.left { text-align:left; margin-left: 20px; }
.list.left li { text-align:left; margin: 6px 0; }


/* Center Core Searches lines */
.center-lines{ text-align:center; }
.center-lines p{ margin: 6px 0; }
