/* ShortDot Design System */
html, body {
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0;
    }
}

/* Typography Scale */
.ts-1 { font-size: 34px; }
.ts-2 { font-size: 32px; }
.ts-3 { font-size: 20px; }
.ts-4 { font-size: 18px; }
.ts-5 { font-size: 17px; }
.ts-6 { font-size: 13px; }

@media (min-width: 768px) {
    .ts-1 { font-size: 46px; }
    .ts-2 { font-size: 42px; }
    .ts-3 { font-size: 30px; }
    .ts-4 { font-size: 24px; }
    .ts-5 { font-size: 20px; }
    .ts-6 { font-size: 16px; }
}

/* Button Components - ShortDot Style */
.btn {
    display: inline-block;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: #2363F2;
    border-radius: 9999px;
    padding: 14px 56px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: none;
    line-height: 1;
}

@media (min-width: 768px) {
    .btn {
        font-size: 18px;
    }
}

.btn:hover {
    text-decoration: none;
}

.btn.btn-primary {
    background-color: #2363F2;
    color: white;
}

.btn.btn-primary:hover {
    background-color: #3170FD;
    color: white;
}

.btn.btn-dark {
    background-color: black;
    color: white;
}

.btn.btn-dark:hover {
    background-color: #242424;
    color: white;
}

.btn.btn-light {
    background-color: white;
    color: black;
    border: none;
}

.btn.btn-light:hover {
    background-color: #e1e1e1;
    color: black;
}

.btn.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn.btn-outline:hover {
    background-color: white;
    color: black;
    border-color: white;
}

.btn.btn-sm {
    font-size: 13px;
    padding: 8px 32px;
}

@media (min-width: 768px) {
    .btn.btn-sm {
        font-size: 16px;
    }
}

/* Form Components - ShortDot Style */
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background-color: white;
    color: black;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    outline: none;
}

.form-input:focus {
    border-color: #2363F2;
    box-shadow: 0 0 0 3px rgba(35, 99, 242, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

/* Utilities */
.text-center { text-align: center; }
.font-bold { font-weight: bold; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
