:root {
    --bg-gradient: radial-gradient(circle at top left, rgba(125, 211, 252, 0.14), transparent 24%), linear-gradient(135deg, #172554 0%, #312e81 45%, #6d28d9 100%);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-muted: rgba(255, 255, 255, 0.78);
}

* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    margin: 0;
    min-height: 100%;
    min-height: 100dvh;
    overflow-x: hidden;
}

body {
    background: var(--bg-gradient);
    color: #fff;
    padding: max(16px, env(safe-area-inset-top, 0px)) 16px max(20px, env(safe-area-inset-bottom, 0px));
}

.contact-wrap {
    min-height: calc(100dvh - max(16px, env(safe-area-inset-top, 0px)) - max(20px, env(safe-area-inset-bottom, 0px)));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card {
    width: min(620px, 100%);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(18px, 5vw, 28px);
    text-align: center;
    backdrop-filter: blur(14px);
}

.contact-card h1 {
    margin: 0 0 14px;
    font-size: clamp(1.2rem, 5vw, 1.9rem);
}

.contact-text {
    margin: 8px 0;
    color: var(--text-muted);
    font-size: clamp(0.92rem, 3.5vw, 1.02rem);
}

.contact-email {
    margin: 8px 0;
    font-weight: 800;
    font-size: clamp(1rem, 4.2vw, 1.35rem);
    word-break: break-all;
}

.contact-actions {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    min-height: 46px;
    border-radius: 14px;
    border: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    color: #1e1b4b;
    background: linear-gradient(135deg, #e0e7ff, #c4b5fd);
}

.btn-secondary {
    color: #fff;
    background: rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
