* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    line-height: 1.7;
    color: #111;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

header {
    margin-bottom: 48px;
}

h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

h2 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 24px;
}

h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

p {
    color: #333;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 48px 0;
}

section {
    margin-bottom: 0;
}

.capability {
    margin-bottom: 28px;
}

.capability:last-child {
    margin-bottom: 0;
}

a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.15s;
}

a:hover {
    border-color: #111;
}

.arrow {
    font-size: 1.2em;
    display: inline-block;
    margin-left: 2px;
}

/* Contact Form */
.contact-intro {
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #111;
    width: 100%;
    transition: border-color 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #111;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    padding: 12px 24px;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.15s, color 0.15s;
}

.contact-form button:hover {
    background: #fff;
    color: #111;
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    main {
        padding: 48px 16px;
    }

    h1 {
        font-size: 20px;
    }

    h3 {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    body {
        font-size: 13px;
    }

    main {
        padding: 32px 12px;
    }

    h1 {
        font-size: 18px;
    }
}
