* {
    box-sizing: border-box;
}

:root {
    --bg-0: #ecedf3;
    --bg-1: #fafaff;
    --border: rgba(216, 183, 101, 0.35);
    --text: #022e29;
    --muted: #504949;
    --text-on-dark: #f5f3fb;
    --muted-on-dark: #c7c2d6;
    --accent: #a9bfd4;
    --accent-strong: #34c2ad;
    --accent-deep: #0b7562;
    --gold: #d8b765;
    --gold-soft: rgba(216, 183, 101, 0.4);
    --amethyst: #9b5de5;
    --amethyst-light: #cda6f2;
    --amethyst-deep: #2a1148;
    --amethyst-ink: #120a24;
    --shadow: 0 20px 60px rgba(31, 30, 30, 0.32);
    --radius-lg: 0px;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 24px 12px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg-1);
    background-image:
        radial-gradient(circle at top left, rgba(130, 170, 255, 0.22), transparent 36%),
        radial-gradient(circle at top right, rgba(94, 234, 212, 0.18), transparent 30%),
        linear-gradient(180deg, var(--bg-0), var(--bg-1));
    background-repeat: no-repeat;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

#card {
    width: min(680px, 100%);
    background: linear-gradient(135deg, var(--amethyst-deep) 0%, var(--amethyst-ink) 45%, #0b2a3d 100%);
    border: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
    padding: 22px 28px;
}

.card-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.logo-badge {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--gold-soft);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 18px rgba(216, 183, 101, 0.2);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-badge:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 0 24px rgba(216, 183, 101, 0.35);
}

.qr-badge {
    background: #fff;
}

.card-title {
    flex: 1;
    min-width: 0;
    text-align: center;
}

h1 {
    margin: 0;
    font-family: "Unbounded", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(1.05rem, 4.4vw, 1.3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--gold);
    overflow-wrap: break-word;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(52, 194, 173, 0.15);
    border: 1px solid rgba(52, 194, 173, 0.35);
    color: var(--accent-strong);
    font-family: "Unbounded", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-body {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-top: 16px;
}

.card-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-col-divider {
    width: 1px;
    background: var(--border);
    flex: 0 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--muted-on-dark);
}

.contact-info a {
    overflow-wrap: anywhere;
}

.contact-info a {
    color: var(--accent-strong);
    font-weight: 700;
}

.contact-info a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.card-actions {
    margin-top: 16px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    font-family: "Unbounded", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    border: 1px solid var(--gold-soft);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-on-dark);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button img {
    width: 20px;
    height: 20px;
}

.button:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(216, 183, 101, 0.3);
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 18px 0;
}

.section-label {
    margin: 0 0 10px;
    font-family: "Unbounded", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-strong);
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(205, 166, 242, 0.1);
    border: 1px solid rgba(205, 166, 242, 0.3);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-on-dark);
}

.tech-item img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer {
    text-align: center;
    margin: 18px 0 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted-on-dark);
}

@media (max-width: 560px) {
    .card-body {
        flex-direction: column;
        gap: 16px;
    }

    .card-col-divider {
        width: auto;
        height: 1px;
    }

    .card-col {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    #card {
        padding: 20px 16px;
    }

    .logo-badge {
        width: 48px;
        height: 48px;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .button {
        font-size: 0.76rem;
        padding: 12px 14px;
    }
}

@media (max-width: 360px) {
    body {
        padding: 14px 8px;
    }

    #card {
        padding: 16px 12px;
    }

    .logo-badge {
        width: 40px;
        height: 40px;
    }

    h1 {
        font-size: 1rem;
    }

    .eyebrow-badge {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .tech-item {
        padding: 5px 10px;
        font-size: 0.68rem;
    }
}
