@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Shadows+Into+Light&display=swap');

:root {
    --primary: #2563eb;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --bg-light: #ffffff;
    --border-pencil: #d1d5db;
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.5;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    padding: 2rem 0;
    text-align: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.logo span {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Pencil Stroke Theme Utilities */
.pencil-border {
    border: 2px solid var(--text-dark);
    border-radius: 4px;
    position: relative;
}

.pencil-border::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--text-dark);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 3rem;
    filter: grayscale(0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Direct Action Grid */
.actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 4rem;
}

.action-card {
    padding: 2rem;
    border: 1px solid var(--border-pencil);
    border-radius: 12px;
    text-align: left;
    transition: var(--transition);
}

.action-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.action-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.icon {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-pencil);
    margin-left: 0.5rem;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: var(--text-dark);
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Hand-drawn underline effect */
.underline-pencil {
    position: relative;
    display: inline-block;
}

.underline-pencil::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 100% 90% 92% 105% / 10% 20% 15% 12%;
    opacity: 0.6;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid #f3f4f6;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.25rem;
    }
}