:root {
    --ink: #2b2216;
    --stone: #6a5a48;
    --cream: #f6efe1;
    --sand: #ead6b6;
    --clay: #c98546;
    --teal: #1f5b4a;
    --sky: #7fa7a0;
    --shadow: rgba(43, 34, 22, 0.18);
}

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

html {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(125deg, #f6efe1 0%, #ead6b6 38%, #b7c9b8 100%);
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: bounce;
    padding-bottom: 40px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(201, 133, 70, 0.22), transparent 42%),
        radial-gradient(circle at 82% 22%, rgba(31, 91, 74, 0.2), transparent 46%),
        radial-gradient(circle at 22% 80%, rgba(127, 167, 160, 0.28), transparent 52%);
    pointer-events: none;
    z-index: 0;
    height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 56px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 2px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--clay));
    box-shadow: 0 10px 20px var(--shadow);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--cream);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: center;
    padding: 36px;
    background: rgba(246, 239, 225, 0.9);
    border-radius: 28px;
    box-shadow: 0 30px 60px var(--shadow);
    border: 1px solid rgba(47, 42, 36, 0.08);
    overflow: hidden;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2.6px;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 10px;
}

h1 {
    font-family: "Fraunces", "Georgia", serif;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.lead {
    font-size: 1.1rem;
    color: var(--stone);
    max-width: 520px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 8px;
}

.btn {
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--teal), var(--clay));
    color: var(--cream);
    box-shadow: 0 16px 28px rgba(31, 91, 74, 0.32);
}

.btn.ghost {
    border-color: rgba(47, 42, 36, 0.15);
    background: rgba(246, 239, 225, 0.7);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(47, 42, 36, 0.18);
}

.note {
    font-size: 0.95rem;
    color: var(--stone);
}

.trust {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(31, 91, 74, 0.12);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-card {
    position: relative;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(127, 167, 160, 0.55), rgba(230, 215, 191, 0.9));
    border: 1px solid rgba(47, 42, 36, 0.08);
    box-shadow: 0 22px 38px var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.hero-card img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 18px 32px rgba(47, 42, 36, 0.25);
}

.hero-card .badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(246, 239, 225, 0.9);
    font-weight: 700;
    font-size: 0.9rem;
}

.section {
    margin-top: 56px;
}

.section-title {
    font-family: "Fraunces", "Georgia", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 18px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(246, 239, 225, 0.95);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(47, 42, 36, 0.08);
    box-shadow: 0 14px 26px var(--shadow);
    min-height: 180px;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--stone);
    font-size: 0.96rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.step {
    background: rgba(31, 91, 74, 0.08);
    border-radius: 16px;
    padding: 16px;
}

.step strong {
    display: block;
    margin-bottom: 6px;
}

.highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(201, 133, 70, 0.28), rgba(127, 167, 160, 0.32));
    border: 1px solid rgba(47, 42, 36, 0.08);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    padding: 8px 12px;
    background: rgba(246, 239, 225, 0.9);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer {
    margin-top: 56px;
    padding: 20px 0 10px;
    border-top: 1px solid rgba(47, 42, 36, 0.12);
    color: var(--stone);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 720px) {
    .hero {
        padding: 26px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-cta {
        align-self: stretch;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
