*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  background:#01122E;
  color:#fff;
  font-family:Inter,system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-wrap:pretty;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:clamp(28px,5vw,72px) 24px;
}
a{color:#EECA72;text-decoration:none}
a:hover{color:#fff}
img{display:block}

main{width:100%;max-width:1040px}

header{max-width:620px}
header img{width:180px;height:auto}
.eyebrow{
  display:inline-block;
  margin-top:34px;
  font-size:9.5px;
  font-weight:700;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:#EECA72;
}
h1{
  margin:14px 0 0;
  font-size:clamp(26px,4vw,42px);
  line-height:1.12;
  font-weight:800;
  letter-spacing:-0.035em;
}
header p{
  margin:16px 0 0;
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,0.6);
}

.opciones{
  margin-top:clamp(32px,4.5vw,52px);
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,240px),1fr));
  gap:16px;
}
.opcion{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  background:#08203F;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  padding:26px 24px 24px;
  color:#fff;
  transition:transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.opcion:hover{
  transform:translateY(-3px);
  border-color:#EECA72;
  background:#0A2748;
  color:#fff;
}
.num{
  font-size:9px;
  font-weight:700;
  letter-spacing:0.18em;
  color:#EECA72;
}
.nombre{
  font-size:17px;
  font-weight:700;
  letter-spacing:-0.02em;
}
.desc{
  font-size:12.5px;
  line-height:1.75;
  color:rgba(255,255,255,0.58);
}
.cta{
  margin-top:auto;
  padding-top:16px;
  font-size:11px;
  font-weight:700;
  color:#EECA72;
}

footer{
  margin-top:clamp(30px,4vw,44px);
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:11px;
  color:rgba(255,255,255,0.4);
}
