*{
     margin: 0;
      padding: 0;
       box-sizing: border-box;
     }
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #0a1f4e;
    font-family: 'Inter', sans-serif;
}

.phone-wrapper {
    width: 390px;
    height: 844px;
    background: linear-gradient(175deg, #2563a8 0%, #1a4a8a 50%, #0e3070 100%);
    border-radius: 44px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px 48px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    position: relative;
}

.status-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 8px 0;
    color: white;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.status-icons { display: flex; gap: 6px; align-items: center; }

.center-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.logo-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    /* ensures no box artifacts */
    background: transparent;
    mix-blend-mode: normal;
}

.bottom-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.login-btn {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #f5900a, #e07d00);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(245,144,10,0.4);
    transition: all 0.2s;
}

.login-btn:hover { background: linear-gradient(135deg, #e07d00, #c96e00); }
.login-btn:active { transform: scale(0.97); }

.signup-btn {
    width: 100%;
    height: 56px;
    background: transparent;
    border: 2px solid #f5900a;
    border-radius: 50px;
    color: #f5900a;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.signup-btn:hover { background: rgba(245,144,10,0.1); }
.signup-btn:active { transform: scale(0.97); }

.responder-btn {
    width: 100%;
    height: 56px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.responder-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: white; }
.responder-btn:active { transform: scale(0.97); }

.tagline {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.home-indicator {
    width: 120px; height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    margin-top: 8px;
}
.policy-text {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.highlight {
  color: #f5900a;
  font-weight: 500;
  cursor: pointer;
}