:root {
    --bg: #09090b;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-border: rgba(255, 255, 255, 0.12);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --accent: #fbbf24;
    --helm-green: #22e38e;
    --helm-amber: #fcd34d;
    --helm-orange: #fb923c;
    --helm-red: #ff5a52;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 18%, rgba(34, 197, 94, 0.07), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(239, 35, 60, 0.06), transparent 34%),
        radial-gradient(circle at 55% 72%, rgba(251, 191, 36, 0.045), transparent 36%),
        var(--bg);
}


.page {
    min-height: 100vh;
    padding: 32px 32px 0;

    display: flex;
    flex-direction: column;
}

/* Header */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 50px;
    height: 50px;
}

.brand-mark svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.18));
}

.brand-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 0.9;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--muted);
    text-transform: uppercase;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;

    color: inherit;
    text-decoration: none;
}

.brand-link:hover,
.brand-link:visited,
.brand-link:active {
    color: inherit;
    text-decoration: none;
}

/* Homepage */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 64px;
    align-items: center;
    max-width: 1180px;
    margin: 64px auto 48px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h1 span {
    display: block;
}

.hero-emphasis {
    line-height: 1.2;
    margin-top: 16px;
    background: linear-gradient(
        90deg,
        var(--helm-green),
        var(--helm-amber),
        var(--helm-red)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.intro {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted-strong);
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.6;
}

.contact-line {
    margin-top: 32px;
    color: var(--muted);
}

a {
    color: var(--text);
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 4px;
}

/* Contact Form */
.contact-form {
    padding: 28px;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    background: var(--panel);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    width: 100%;
}

.contact-form h2 {
    margin: 0 0 24px;
    font-size: 22px;
    letter-spacing: -0.03em;
}

label {
    display: block;
    margin-bottom: 16px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font: inherit;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: rgba(251, 191, 36, 0.7);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.12);
}

button {
    width: 100%;
    margin-top: 8px;
    padding: 13px 16px;
    border: 0;
    border-radius: 14px;
    background: var(--text);
    color: var(--bg);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

button:hover {
    transform: translateY(-1px);
}

#contact-success {
    text-align: center;
}

#contact-success h2 {
    margin-bottom: 1rem;
}

#contact-success p {
    color: var(--muted);
}

/* Footer */
.site-footer {
    margin: auto auto 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    justify-content: center;

    color: var(--muted);
    font-size: 14px;
}

.site-footer p {
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.site-footer a {
    color: var(--muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--text);
}

/* Privacy Policy */
.policy-page {
    max-width: 760px;
    margin: 72px auto 48px;
}

.policy-page h1 {
    font-size: clamp(36px, 4vw, 60px);
    letter-spacing: -0.055em;
}

.policy-page h2 {
    font-size: 20px;
}

.policy-page p {
    color: var(--muted-strong);
    line-height: 1.7;
    margin-bottom: 2em;
}

.policy-updated {
    margin-top: 40px;
    color: var(--muted);
    font-size: 14px;
}

/* Breakpoints */
@media (max-width: 860px) {
    .page {
        padding: 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        max-width: 520px;
        margin: 0 auto;      
    }
}

/* Fonts */
@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}