:root{
  --bg: #0b1020;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --accent: #f6c453;
  --danger: #ff4d5a;
  --ok: #33d17a;
  --shadow: 0 20px 70px rgba(0,0,0,0.55);
}

* { 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(1200px 700px at 20% 10%, rgba(255,77,90,0.14), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(246,196,83,0.12), transparent 55%),
    radial-gradient(900px 600px at 60% 90%, rgba(51,209,122,0.10), transparent 55%),
    var(--bg);
  color: var(--text);
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot{
  width: 10px; height: 10px; border-radius: 999px;
  display: inline-block;
  opacity: 0.85;
}
.dot--red{ background: var(--danger); }
.dot--amber{ background: var(--accent); }
.dot--green{ background: var(--ok); }

.topbar__title{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

.card{
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.header{
  padding: 26px 22px 10px;
  text-align: center;
}

.seal{
  width: min(320px, 72vw);
  margin: 8px auto 12px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
}

.seal svg{ width: 100%; height: auto; }

.seal__ring{ fill: none; stroke: rgba(255,255,255,0.28); stroke-width: 20; }
.seal__ring2{ fill: none; stroke: rgba(255,255,255,0.18); stroke-width: 10; }
.seal__stars circle{ fill: rgba(255,255,255,0.5); }
.seal__eagle{ fill: rgba(255,255,255,0.10); stroke: rgba(255,255,255,0.22); stroke-width: 6; }
.seal__text{
  fill: rgba(255,255,255,0.70);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.seal__mark{
  fill: rgba(255,255,255,0.92);
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1{
  margin: 8px 0 0;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: 0.04em;
}
.subhead{
  margin: 10px auto 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15.5px;
}

.rule{
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0 0;
}

.copy{
  padding: 18px 22px 26px;
}

.copy h2{
  margin: 18px 0 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.copy ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.copy p{
  color: var(--muted);
  line-height: 1.7;
  margin: 10px 0;
}

.infoGrid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info{
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.22);
  border-radius: 14px;
  padding: 12px 12px;
}

.label{
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

.value{
  margin-top: 6px;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

.callout{
  margin-top: 18px;
  border: 1px dashed rgba(255,255,255,0.26);
  background: rgba(246,196,83,0.09);
  border-radius: 14px;
  padding: 12px 12px;
}

.actions{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .08s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.10); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  border-color: rgba(246,196,83,0.45);
  background: rgba(246,196,83,0.14);
}
.btn--ghost{
  border-color: rgba(255,77,90,0.35);
  background: rgba(255,77,90,0.10);
}

.footer{
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}

.modal{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 50;
}
.modal.is-open{ display: grid; }
.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.modal__panel{
  position: relative;
  width: min(560px, 92vw);
  border: 1px solid var(--border);
  background: rgba(12, 16, 30, 0.92);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: var(--shadow);
}
.modal__panel h3{
  margin: 0 0 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}
.modal__actions{
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

@media (max-width: 680px){
  .infoGrid{ grid-template-columns: 1fr; }
}
