:root {
    --fundsy-pink: #ff7895;
    --fundsy-pink-soft: #ffe5ec;
    --fundsy-cream: #fff6bf;
    --fundsy-black: #1d1d1d;
    --fundsy-green: #00816c;
    --fundsy-burgundy: #6f1d46;
    --fundsy-white: #fffaf6;
    --border: rgba(29, 29, 29, 0.14);
    --shadow: 0 20px 50px rgba(29, 29, 29, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--fundsy-pink);
    color: var(--fundsy-black);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.site-header,
.site-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    padding: 28px 24px;
}

.logo-crop {
    display: block;
    overflow: hidden;
}

.logo-crop img {
    display: block;
    width: auto;
}

.header-logo-crop {
    height: 48px;
    width: 174px;
}

.header-logo-crop img {
    height: 124px;
    transform: translateY(-38px);
}

.header-link {
    background: var(--fundsy-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    padding: 12px 16px;
    text-decoration: none;
}

.hero {
    align-items: center;
    display: grid;
    gap: 56px;
    margin: 0 auto;
    max-width: 1180px;
    min-height: calc(100vh - 150px);
    padding: 56px 24px 80px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    color: var(--fundsy-green);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 22px;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 0.98;
    margin-bottom: 28px;
    max-width: 850px;
}

.lede {
    color: rgba(29, 29, 29, 0.78);
    font-size: 20px;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 720px;
}

.hero-actions,
.signals {
    display: grid;
    gap: 14px;
}

.button {
    align-items: center;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    text-decoration: none;
}

.button-primary {
    background: var(--fundsy-black);
    color: var(--fundsy-white);
}

.button-secondary {
    background: var(--fundsy-white);
    box-shadow: inset 0 0 0 1px var(--border);
}

.status-panel,
.signup-form,
.signals article {
    background: rgba(255, 250, 246, 0.88);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.status-panel {
    padding: 28px;
}

.coin {
    background: var(--fundsy-cream);
    border-radius: 8px;
    height: 72px;
    object-fit: contain;
    padding: 12px;
    width: 72px;
}

.panel-label {
    color: var(--fundsy-green);
    font-size: 14px;
    font-weight: 900;
    margin: 22px 0 8px;
}

.status-panel h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 28px;
}

.progress-row {
    display: flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-bar {
    background: var(--fundsy-white);
    border-radius: 999px;
    height: 12px;
    overflow: hidden;
}

.progress-bar span {
    background: var(--fundsy-green);
    border-radius: inherit;
    display: block;
    height: 100%;
    width: 42%;
}

.panel-copy {
    color: rgba(29, 29, 29, 0.68);
    line-height: 1.6;
    margin: 24px 0 0;
}

.signals,
.signup-section {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 24px 80px;
}

.signals article {
    box-shadow: none;
    padding: 26px;
}

.signals h2,
.signup-section h2 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.signals p,
.signup-section p {
    color: rgba(29, 29, 29, 0.72);
    line-height: 1.65;
    margin-bottom: 0;
}

.signup-section {
    align-items: start;
    display: grid;
    gap: 36px;
}

.signup-section > div:first-child {
    max-width: 720px;
}

.signup-form {
    display: grid;
    gap: 18px;
    padding: 24px;
}

button:focus,
a:focus {
    outline: 3px solid rgba(0, 129, 108, 0.25);
    outline-offset: 3px;
}

.form-embed {
    overflow: hidden;
    padding: 0;
    width: min(100%, 860px);
}

.form-embed iframe {
    border: 0;
    display: block;
    min-height: 904px;
    width: 100%;
}

.site-footer {
    border-top: 1px solid var(--border);
    color: rgba(29, 29, 29, 0.72);
    font-weight: 700;
}

.footer-logo-crop {
    flex: 0 0 auto;
    height: 42px;
    width: 152px;
}

.footer-logo-crop img {
    height: 108px;
    transform: translateY(-33px);
}

@media (min-width: 700px) {
    .hero-actions {
        display: flex;
    }

    .signals {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 980px) {
    .hero {
        grid-template-columns: minmax(0, 1fr) 390px;
    }
}

@media (max-width: 640px) {
    .site-header {
        align-items: flex-start;
        gap: 16px;
    }

    .header-logo-crop img,
    .footer-logo-crop img {
        height: 88px;
        transform: translateY(-27px);
    }

    .header-logo-crop,
    .footer-logo-crop {
        height: 34px;
        width: 124px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    h1 {
        font-size: 48px;
    }
}
