body {
    background: #f8fafc;
}
.wrap {
    max-width: 1200px;
    margin: 77px auto;
    padding: 0 14px;
}
.hero {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: white;
    border-radius: 26px;
    padding: 42px 46px;
    margin-bottom: 32px;
}
.grid {
    display: grid;
    gap: 28px;
}
@media (min-width: 900px) {
    .grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.value {
    background: white;
    border-radius: 22px;
    padding: 34px 38px;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.05),
        0 18px 40px rgba(0, 0, 0, 0.08);
}
.value h2 {
    font-size: 24px;
    font-weight: 700;
}
.value p {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
    max-width: 520px;
}
.list {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}
.item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}
.dot {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eef2ff;
    color: #4338ca;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
      flex-shrink: 0;
      line-height: 1;


}

.auth {
    background: white;
    border-radius: 22px;
    padding: 34px 36px;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.05),
        0 18px 40px rgba(0, 0, 0, 0.08);
}
.input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}
.input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}
.btn {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    border: none;
    background: #6366f1;
    color: white;
    font-weight: 600;
    cursor: pointer;
}
.btn:hover {
    background: #4f46e5;
}
.mode {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.mode button {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    font-size: 13px;
}
.mode .active {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #3730a3;
}
.tg-btn{
  width:100%;
  padding:13px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  background:#f8fafc;
  font-weight:600;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:.2s;
}
.tg-btn:hover{
  background:#eef2ff;
  border-color:#c7d2fe;
  color:#3730a3;
}
.tg-hidden{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
