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

body {
    background: #fbfaf8;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e1b1a;
    line-height: 1.4;
}
.hide {
    display: none !important;
}

/* animated gradient accent */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background: radial-gradient(ellipse at 80% 20%, rgba(235, 210, 180, 0.3), rgba(245, 240, 235, 0));
}

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

/* header / nav */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #f0e4d8;
    padding-bottom: 1rem;
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2c2b26, #5a4a3a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: none;
}
.logo span {
    background: none;
    color: #b1624b;
    background-clip: unset;
    -webkit-background-clip: unset;
}

.tagline-badge {
    background: #f0e9e2;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4e3b2f;
}

/* two column layout */
.hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hero-left {
    flex: 1.2;
    min-width: 260px;
}

.hero-right {
    flex: 0.9;
    min-width: 300px;
    background: #ffffffdd;
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(235, 215, 195, 0.5);
    padding: 2rem 1.8rem;
    transition: transform 0.2s ease;
}

h1 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(145deg, #2a241f, #6c4f3a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.feature-block {
    padding-top: 18px;
}
.feature-block h2 {
    margin-bottom: 9px;
}

.accent-text {
    color: #b1624b;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
}

.lead {
    font-size: 1.2rem;
    color: #3e3a36;
    margin: 1.5rem 0 1rem;
    line-height: 1.5;
    border-left: 4px solid #e0cbbc;
    padding-left: 1rem;
}

.system-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.8rem 0 2rem;
}

.system-pill {
    background: #f0e6de;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #3a2a21;
    transition: all 0.2s;
}

.center {
    text-align: center;
}
.early-badge {
    display: inline-block;
    background: #2e2a25;
    color: #fbe9d8;
    padding: 0.72rem 1.8rem;
    border-radius: 100px;
    font-size: 1.44rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.form-sub {
    color: #6b5b4e;
    font-size: 1.2rem;
    border-bottom: 1px dashed #eadbcb;
    padding-bottom: 0.75rem;
}

label {
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.3rem;
    color: #2a241f;
}

input, select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    border: 1px solid #e3d5c8;
    background: #fffcf9;
    font-family: 'Inter', monospace;
    font-size: 0.95rem;
    transition: 0.2s;
}

input:focus, select:focus {
    outline: none;
    border-color: #b07d62;
    box-shadow: 0 0 0 3px rgba(176, 125, 98, 0.2);
}

.checkbox-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0.5rem 0 0.2rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.checkbox-item input {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #b1624b;
    margin: 0;
}

select[multiple] {
    padding: 0.6rem;
    min-height: 100px;
    background: #fffcf9;
}

.btn-primary {
    background: #2c241f;
    color: white;
    width: 100%;
    padding: 0.9rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.btn-primary:hover {
    background: #4f3527;
    transform: scale(0.98);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-top {
    background: #603921 !important;
    text-decoration: none;
}

.disclaimer {
    font-size: 0.7rem;
    color: #8f7e6e;
    text-align: center;
    margin-top: 1rem;
}

.success-message {
    background: #ddebe0;
    color: #1f5437;
    padding: 1rem;
    border-radius: 1.2rem;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
}
.bg2  {
    background-color: #f9e4cc !important;
}
.dark-bg {
    background-color: #e8d9cd !important;
}
.home-box {
    margin-top: 2rem;
    background-color: #ffffffdd;
    border: 1px solid #ece1d6;
    border-radius: 1.5rem;
    padding: 1.3rem 1.5rem;
    background: #ffffffdd;
    backdrop-filter: blur(2px);
}
.home-box h3 {
    margin-bottom:14px;
    font-weight: 800;
}
.home-box span {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #2c241f;
    color: #fbe9d8;
    border-radius: 30px;
    font-size: .9rem;
}

.home-list {
    margin-top: 0.8rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.home-list li {
    padding-left: 22px; /* Space for the icon + indent */
    text-indent: -22px; /* Pulls first line back to the left */
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

footer {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid #ece1d6;
    padding-top: 2rem;
    font-size: 1rem;
    color: #8b7a6a;
}

@media (max-width: 780px) {
    .hero-grid {
        flex-direction: column;
    }
    h1 {
        font-size: 2.5rem;
    }
    .container {
        padding: 1.5rem;
    }
}
