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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0f0f0f;
    min-height: 100vh;
    padding: 40px 20px;
}

main {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

header {
    margin-bottom: 80px;
    padding-top: 60px;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    text-align: left;
}

section {
    margin-bottom: 60px;
    text-align: left;
}

p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    body {
        padding: 20px 15px;
    }

    header {
        padding-top: 40px;
        margin-bottom: 60px;
    }

    .logo img {
        max-width: 150px;
    }

    h1 {
        font-size: 1.2rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    section {
        margin-bottom: 40px;
    }
}

/* Alternative sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Primary button class - matches cta-button functionality */
.btn-primary {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid oklch(0.53 0.25 145);
    border-radius: 8px;
    background: linear-gradient(180deg, 
        oklch(0.67 0.19 143), 
        oklch(0.59 0.26 143) 62%, 
        oklch(0.64 0.22 143)
    );
    box-shadow: 
        inset 0 1px 0 oklch(1 0 0 / 0.2),
        inset 0 -1px 0 oklch(0 0 0 / 0.2),
        0 2px 4px oklch(0 0 0 / 0.2);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    text-shadow: 0 1px rgba(15, 35, 20, 0.4);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
}

/* Primary button pseudo-elements */
.btn-primary::before,
.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: -1;
}

.btn-primary::before {
    background: linear-gradient(180deg,
        oklch(0.69 0.16 143),
        oklch(0.59 0.26 143) 62%,
        oklch(0.64 0.22 143)
    );
    box-shadow: 
        inset 0 1px 0 oklch(1 0 0 / 0.2),
        inset 0 -1px 0 oklch(0 0 0 / 0.2);
}

.btn-primary::after {
    background: linear-gradient(180deg,
        oklch(0.41 0.25 143),
        oklch(0.59 0.26 143) 38%,
        oklch(0.67 0.19 143)
    );
    box-shadow: inset 0 2px 3px oklch(0.32 0.23 143);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 
        inset 0 1px 0 oklch(1 0 0 / 0.2),
        inset 0 -1px 0 oklch(0 0 0 / 0.2),
        0 6px 12px oklch(0 0 0 / 0.15);
}

.btn-primary:active::before {
    opacity: 0;
}

.btn-primary:active::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        inset 0 1px 0 oklch(1 0 0 / 0.1),
        inset 0 -1px 0 oklch(0 0 0 / 0.3),
        0 1px 2px oklch(0 0 0 / 0.2);
}

.btn-primary:focus-visible {
    outline: 2px solid oklch(0.67 0.19 143);
    outline-offset: 2px;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary:disabled::before,
.btn-primary:disabled::after {
    opacity: 0 !important;
}

/* Secondary button variant - Lighter matcha with subtle styling */
.btn-secondary {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #8a9a5a;
    border-radius: 8px;
    background: linear-gradient(180deg, 
        #f5f7f0, 
        #ebefdb 62%, 
        #e1e8cc
    );
    box-shadow: 
        inset 0 1px 0 oklch(1 0 0 / 0.2),
        inset 0 -1px 0 oklch(0 0 0 / 0.2),
        0 2px 4px oklch(0 0 0 / 0.1);
    color: #3a4222;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-shadow: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
}

.btn-secondary::before,
.btn-secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: -1;
}

.btn-secondary::before {
    background: linear-gradient(180deg,
        #f8faf3,
        #f0f4e3 62%,
        #ebefdb
    );
    box-shadow: 
        inset 0 1px 0 oklch(1 0 0 / 0.2),
        inset 0 -1px 0 oklch(0 0 0 / 0.2);
}

.btn-secondary::after {
    background: linear-gradient(180deg,
        #d7e1c2,
        #ebefdb 38%,
        #f5f7f0
    );
    box-shadow: inset 0 2px 3px #c8d5b3;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 
        inset 0 1px 0 oklch(1 0 0 / 0.2),
        inset 0 -1px 0 oklch(0 0 0 / 0.2),
        0 6px 12px oklch(0 0 0 / 0.08);
}

.btn-secondary:active::before {
    opacity: 0;
}

.btn-secondary:active::after {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 
        inset 0 1px 0 oklch(1 0 0 / 0.1),
        inset 0 -1px 0 oklch(0 0 0 / 0.3),
        0 1px 2px oklch(0 0 0 / 0.15);
}

.btn-secondary:focus-visible {
    outline: 2px solid #8a9a5a;
    outline-offset: 2px;
}

.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-secondary:disabled::before,
.btn-secondary:disabled::after {
    opacity: 0 !important;
}
