/* WildcatsTech Secure Access Landing Page
   - fast, no external dependencies
   - mobile-friendly
*/

:root{
  --bg0: #070a12;
  --bg1: #0b0f19;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --muted2: rgba(255,255,255,0.55);
  --accent: #f2c14e; /* gold-ish */
  --accent2: #2ea8ff; /* optional highlight */
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(242,193,78,0.12), transparent 55%),
    radial-gradient(900px 700px at 80% 20%, rgba(46,168,255,0.10), transparent 55%),
    radial-gradient(900px 700px at 60% 90%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 18px;
}

.wrap{
  width: min(760px, 100%);
}

.brand{
  display:flex;
  gap: 16px;
  align-items:center;
  margin-bottom: 18px;
}

.logo{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242,193,78,0.22), rgba(255,255,255,0.06));
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-mark{
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.kicker{
  margin:0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted2);
}

.brand-text h1{
  margin: 2px 0 6px;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.1;
}

.sub{
  margin:0;
  color: var(--muted);
  max-width: 62ch;
}

.card{
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-top{
  padding: 6px 6px 14px;
}

.card-top h2{
  margin: 0 0 6px;
  font-size: 18px;
}

.muted{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.btn{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration:none;
  color: var(--text);
  font-weight: 650;
  background: rgba(255,255,255,0.06);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select:none;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}

.btn:active{
  transform: translateY(0px);
}

.btn-google{
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
}

.g-icon{
  width: 26px;
  height: 26px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
}

.g-icon svg{
  opacity: 0.95;
}

.arrow{
  margin-left:auto;
  opacity: 0.85;
  font-weight: 900;
}

.btn-secondary{
  background: rgba(255,255,255,0.04);
  font-weight: 600;
  color: var(--muted);
}

.divider{
  display:flex;
  align-items:center;
  gap: 12px;
  margin: 14px 0;
  color: var(--muted2);
  font-size: 12px;
}

.divider::before,
.divider::after{
  content:"";
  height: 1px;
  background: rgba(255,255,255,0.12);
  flex: 1;
}

.fineprint{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.fineprint p{
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.tiny{
  font-size: 12px;
  color: var(--muted2);
}

.help{
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 8px 12px;
}

details summary{
  cursor:pointer;
  font-weight: 650;
  color: var(--text);
  padding: 6px 0;
}

details ul{
  margin: 8px 0 10px 18px;
  color: var(--muted);
  font-size: 13px;
}

.sitefoot{
  margin-top: 16px;
  text-align:center;
  color: var(--muted2);
  font-size: 12px;
}
