:root{
  --entry-primary:#3512c6;
  --entry-blue:#168cdf;
  --entry-orange:#ff7417;
  --entry-bg:#f3f6fb;
  --entry-card:#fff;
  --entry-text:#172033;
  --entry-muted:#65758b;
  --entry-border:#dce4ef;
}
*{box-sizing:border-box}
html{background:var(--entry-bg)}
body{
  min-height:100vh;
  margin:0;
  background:
    radial-gradient(circle at 100% 0,rgba(22,140,223,.16),transparent 30rem),
    radial-gradient(circle at 0 0,rgba(53,18,198,.13),transparent 28rem),
    var(--entry-bg);
  color:var(--entry-text);
  font-family:Inter,Arial,sans-serif;
}
.app-entry-header{
  display:flex;
  align-items:center;
  min-height:92px;
  padding:15px max(20px,env(safe-area-inset-left));
  background:#fff;
  border-bottom:1px solid var(--entry-border);
}
.app-entry-brand{
  display:flex;
  align-items:center;
  gap:15px;
  color:var(--entry-blue);
  font-size:clamp(1.15rem,4vw,1.65rem);
  font-weight:950;
  text-decoration:none;
}
.app-entry-brand img{
  width:64px;
  height:64px;
  object-fit:contain;
}
.app-entry-main{
  width:min(980px,calc(100% - 28px));
  margin:0 auto;
  padding:50px 0 70px;
}
.app-entry-intro{
  max-width:720px;
  margin:0 auto 30px;
  text-align:center;
}
.app-entry-kicker,
.app-entry-label{
  color:var(--entry-blue);
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.12em;
}
.app-entry-intro h1{
  margin:10px 0 12px;
  font-size:clamp(2rem,7vw,3.6rem);
  line-height:1.02;
}
.app-entry-intro p{
  margin:0;
  color:var(--entry-muted);
  font-size:1.05rem;
  line-height:1.65;
}
.app-entry-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.app-entry-card{
  display:flex;
  flex-direction:column;
  min-height:410px;
  padding:28px;
  border:1px solid var(--entry-border);
  border-radius:24px;
  background:var(--entry-card);
  box-shadow:0 18px 55px rgba(25,43,78,.10);
}
.app-entry-card.staff{
  border-top:5px solid var(--entry-orange);
}
.app-entry-card.traveler{
  border-top:5px solid var(--entry-primary);
}
.app-entry-icon{
  display:grid;
  place-items:center;
  width:66px;
  height:66px;
  margin-bottom:22px;
  border-radius:18px;
  background:#eef2ff;
  color:var(--entry-primary);
}
.app-entry-card.staff .app-entry-icon{
  background:#fff1e8;
  color:#d95600;
}
.app-entry-icon svg{
  width:42px;
  height:42px;
  fill:none;
  stroke:currentColor;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.app-entry-card h2{
  margin:9px 0 12px;
  font-size:1.65rem;
}
.app-entry-card p{
  margin:0 0 25px;
  color:var(--entry-muted);
  line-height:1.65;
}
.app-entry-button{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  margin-top:auto;
  padding:12px 18px;
  border-radius:14px;
  color:#fff;
  font-weight:950;
  text-align:center;
  text-decoration:none;
}
.app-entry-button.primary{
  background:var(--entry-primary);
}
.app-entry-button.staff-button{
  background:var(--entry-orange);
}
.app-entry-note{
  margin-top:20px;
  padding:18px 20px;
  border:1px solid #cdd9eb;
  border-radius:17px;
  background:#fff;
}
.app-entry-note strong{
  display:block;
  margin-bottom:5px;
}
.app-entry-note p{
  margin:0;
  color:var(--entry-muted);
  line-height:1.55;
}
.app-entry-public-actions{
  margin-top:22px;
  text-align:center;
}
.app-entry-public-actions a{
  color:var(--entry-primary);
  font-weight:900;
}
.app-entry-footer{
  padding:18px;
  color:#748198;
  text-align:center;
}
@media(max-width:720px){
  .app-entry-main{
    width:min(100% - 20px,980px);
    padding-top:32px;
  }
  .app-entry-grid{
    grid-template-columns:1fr;
  }
  .app-entry-card{
    min-height:0;
    padding:24px;
  }
}
