/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

:root {
    /* Brand Colors */
    --brand-green: #75a820;
    --brand-orange: #ffa500;
    --brand-orange-dark: #cc8400;

    /* UI Colors */
    --bg-main: #fcfbf9;
    /* Warm off-white */
    --text-main: #111111;
    --text-muted: #666666;

    --card-bg: #ffffff;
    --card-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);

    --font-main: 'PT Sans', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Grain Texture Overlay --- */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    /* On top of everything */
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* --- Navigation --- */
.nav-bar {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.cta-small {
    background: var(--brand-green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.cta-small:hover {
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
    padding: 60px 20px 100px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.eyebrow {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

/* Highlights */
.hl-green {
    background: var(--brand-green);
    color: white;
    /* White on Green */
    padding: 0 15px;
    border-radius: 12px;
    display: inline-block;
    transform: rotate(-2deg);
}

.hl-orange {
    background: var(--brand-orange);
    color: white;
    /* White on Orange */
    padding: 0 15px;
    border-radius: 12px;
    display: inline-block;
    transform: rotate(1.5deg);
}

.subheadline {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* --- Floating Form Card --- */
.floating-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
    /* Above grain conceptually */
}

/* Floating Badges */
.float-badge {
    position: absolute;
    background: #111;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.badge-1 {
    top: -15px;
    right: -15px;
    background: var(--brand-green);
    transform: rotate(5deg);
}

.badge-2 {
    top: 50%;
    left: -40px;
    background: var(--brand-orange);
    transform: rotate(-10deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.input-row {
    margin-bottom: 15px;
}

.input-row label {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #888;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #eee;
    background: #fcfcfc;
    font-family: var(--font-main);
    font-size: 1.1rem;
    transition: all 0.2s;
}

input:focus {
    outline: none;
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 5px 15px rgba(117, 168, 32, 0.1);
}

button._submit {
    width: 100%;
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s, background 0.2s;
}

button._submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(117, 168, 32, 0.3);
}

.spam-note {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 15px;
}

/* Error */
.error-msg {
    color: red;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* --- Avatars / Social Proof --- */
.social-proof {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.avatar-stack {
    display: flex;
}

.avatar-c {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    background: #ddd;
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    font-weight: bold;
}

.avatar-c:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
}

/* --- Mobile --- */
@media (max-width: 800px) {
    h1 {
        font-size: 3rem;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .badge-2 {
        left: -10px;
    }
}