:root {
    /* Brand */
    --bg: #0F39D3;
    --bg-2: #274DD7;
    --fg: #ffffff;
    --muted: rgba(255, 255, 255, 0.78);

    /* Layout */
    --maxw: 1180px;
    --pad: clamp(18px, 3vw, 44px);
    --section: clamp(44px, 6vw, 88px);
    --gap: clamp(14px, 2vw, 26px);
    --radius: 22px;

    /* Type */
    --tracking: 0.12em;
    --vh: 1vh;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--fg);
    background: #0f39d3;
    font-family: "Transducer", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}


/* Keep visited links visually identical to normal links */
a {
    text-decoration: none;
}

a:visited {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.grecaptcha-badge {
    visibility: hidden;
}