* {
    box-sizing: border-box;
}

:root {
    --green-950: #173f36;
    --green-900: #1f4d42;
    --green-800: #2a5f52;
    --green-100: #e8f0ec;
    --cream: #f8f5ef;
    --cream-strong: #f1ebe1;
    --terracotta: #c96f4a;
    --terracotta-dark: #a95636;
    --ink: #1c2b27;
    --muted: #66736e;
    --line: #ddd8cf;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(31, 77, 66, 0.08);
    --shadow-card: 0 10px 28px rgba(31, 77, 66, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.5;
}

a {
    color: inherit;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 245, 239, 0.96);
    color: var(--green-950);
    backdrop-filter: blur(14px);
}

.header-inner {
    max-width: 1540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--green-950);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
        transform 0.18s ease,
        opacity 0.18s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-login-link {
    display: none;
}

.logo {
    color: var(--green-950);
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.logo::after {
    content: "";
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    color: var(--green-950);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav a:hover {
    color: var(--terracotta-dark);
}

.header-cta {
    justify-self: end;
    padding: 11px 21px;
    border-radius: 9px;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}

.header-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.hero {
    max-width: 1540px;
    margin: 0 auto;
    padding: 24px 24px 16px;
}

.hero-copy {
    max-width: none;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--terracotta-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 {
    max-width: none;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.3vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--green-950);
}

.hero h1 span {
    color: var(--green-950);
}

.hero-intro {
    max-width: 800px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

/*
|--------------------------------------------------------------------------
| Live Explore Controls
|--------------------------------------------------------------------------
*/

.discovery-controls {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 24px 14px;
    display: grid;
    grid-template-columns:
        minmax(340px, 1.15fr)
        minmax(480px, 1fr);
    gap: 10px 14px;
    align-items: end;
}

.search-wrap {
    max-width: 100%;
    margin-top: 0;
}

.search-form {
    display: flex;
    gap: 7px;
    min-height: 52px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    box-shadow: none;
}

.search-input {
    flex: 1;
    min-width: 0;
    padding: 10px 13px;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 14px;
    color: var(--ink);
    background: transparent;
}

.search-button {
    padding: 10px 21px;
    border: 0;
    border-radius: 10px;
    background: var(--terracotta);
    color: white;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.search-button:hover {
    background: var(--terracotta-dark);
}

.live-filters {
    display: grid;
    grid-template-columns:
        minmax(150px, 1fr)
        minmax(150px, 1fr)
        auto;
    gap: 8px;
    align-items: end;
    margin-top: 0;
}

.filter-field label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.filter-field select {
    width: 100%;
    height: 52px;
    padding: 0 38px 0 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
}

.filter-clear-wrap {
    min-width: 96px;
}

.clear-button {
    min-height: 52px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    color: var(--green-800);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.clear-button:hover {
    background: var(--cream-strong);
}

.clear-button[hidden] {
    display: none;
}

.results-summary {
    grid-column: 1 / -1;
    min-height: 21px;
    margin-top: 0;
    color: var(--muted);
    font-size: 13px;
}

.results-summary.is-loading {
    color: var(--green-950);
}

/*
|--------------------------------------------------------------------------
| Discovery
|--------------------------------------------------------------------------
*/

.discovery-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 14px 76px;
}

.discovery-shell {
    display: grid;
    grid-template-columns:
        minmax(0, 2.15fr)
        minmax(330px, 0.9fr);
    height: clamp(650px, 73vh, 840px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: 0 12px 34px rgba(31, 77, 66, 0.08);
}

#map {
    width: 100%;
    height: 100%;
    background: #dfe9e4;
}

.discovery-list {
    overflow-y: auto;
    border-left: 1px solid var(--line);
    background: #fffdfa;
}

.list-heading {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 250, 0.96);
    backdrop-filter: blur(10px);
}

.list-heading strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    color: var(--green-950);
}

.list-heading span {
    color: var(--muted);
    font-size: 13px;
}

.map-list-card {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
    border-bottom: 1px solid #eee9e0;
    border-left: 4px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.map-list-card:hover {
    background: var(--cream);
}

.map-list-card.is-active {
    border-left-color: var(--terracotta);
    background: var(--green-100);
    box-shadow: inset 0 0 0 1px rgba(31, 77, 66, 0.05);
}

.map-list-image {
    width: 118px;
    height: 96px;
    overflow: hidden;
    border-radius: 11px;
    background: var(--cream-strong);
}

.map-list-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background:
        linear-gradient(
            135deg,
            var(--cream),
            var(--green-100)
        );
    color: var(--green-800);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
}

.map-list-venue {
    color: var(--terracotta-dark);
    font-size: 12px;
    font-weight: 750;
}

.map-list-title {
    margin-top: 2px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 700;
    font-weight: 750;
    line-height: 1.25;
    color: var(--green-950);
}

.map-list-meta {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

.tour-label {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--green-950);
    color: white;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.03em;
}

.no-results {
    padding: 45px 25px;
    color: var(--muted);
    text-align: center;
}

.no-results strong {
    display: block;
    margin-bottom: 7px;
    color: var(--green-950);
    font-size: 17px;
}

/*
|--------------------------------------------------------------------------
| Map Popup
|--------------------------------------------------------------------------
*/

.vuspaces-popup {
    width: 240px;
    color: var(--ink);
}

.popup-image-link {
    display: block;
    margin-bottom: 11px;
    text-decoration: none;
}

.popup-image {
    display: block;
    width: 240px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
}

.popup-venue {
    color: var(--terracotta-dark);
    font-size: 12px;
    font-weight: 750;
}

.popup-space {
    margin-top: 2px;
    color: var(--green-950);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.25;
}

.popup-meta {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.popup-tour-wrap {
    margin-top: 9px;
}

.popup-tour {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--green-950);
    color: white;
    font-size: 10px;
    font-weight: 700;
}

.popup-primary-link {
    display: inline-block;
    margin-top: 11px;
    color: var(--terracotta-dark);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.popup-venue-link-wrap {
    margin-top: 13px;
    padding-top: 11px;
    border-top: 1px solid var(--line);
}

.popup-venue-link {
    color: var(--green-800);
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.leaflet-popup-content-wrapper {
    border-radius: 14px;
}

.leaflet-popup-content {
    margin: 14px;
}

/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/

.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px 94px;
}

.section-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.section-top h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--green-950);
}

.section-top p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
}

/*
|--------------------------------------------------------------------------
| Type Cards
|--------------------------------------------------------------------------
*/

.type-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.type-card {
    min-height: 150px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    text-decoration: none;
    box-shadow: var(--shadow-card);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease;
}

.type-card:hover {
    transform: translateY(-3px);
    border-color: var(--terracotta);
}

.type-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--green-950);
}

.type-text {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

/*
|--------------------------------------------------------------------------
| Featured Cards
|--------------------------------------------------------------------------
*/

.featured-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.space-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-card);
}

.card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-strong);
    text-decoration: none;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.space-card:hover .card-image img {
    transform: scale(1.025);
}

.card-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(23, 63, 54, 0.92);
    color: white;
    font-size: 11px;
    font-weight: 750;
}

.featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 253, 250, 0.95);
    color: var(--terracotta-dark);
    font-size: 11px;
    font-weight: 750;
}

.card-body {
    padding: 22px;
}

.card-venue {
    color: var(--terracotta-dark);
    font-size: 13px;
    font-weight: 700;
}

.card-title {
    margin: 4px 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--green-950);
}

.card-title a {
    text-decoration: none;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.meta-pill {
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-800);
    font-size: 11px;
    font-weight: 650;
}

.card-link {
    display: block;
    margin-top: 18px;
    padding: 11px;
    border-radius: 9px;
    background: var(--terracotta);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 750;
}

.card-link:hover {
    background: var(--terracotta-dark);
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.footer {
    padding: 48px 28px;
    background: var(--green-950);
    color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (
    max-width: 1100px
) {

    .discovery-controls {
        grid-template-columns: 1fr;
    }

    .live-filters {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .filter-clear-wrap {
        grid-column: 1 / -1;
    }

    .discovery-shell {
        grid-template-columns: 1fr;
        height: auto;
    }

    #map {
        height: 520px;
    }

    .discovery-list {
        max-height: 480px;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .type-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .featured-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (
    max-width: 680px
) {

    .site-header {
        padding: 16px 18px;
    }

    .header-inner {
        position: relative;
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .logo {
        font-size: 32px;
    }

    .menu-toggle {
        display: flex;
        justify-self: end;
    }

    .header-cta {
        display: none;
    }

    .nav {
        position: absolute;
        top: calc(100% + 16px);
        left: -18px;
        right: -18px;
        display: none;
        padding: 10px 18px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--line);
        background: rgba(248, 245, 239, 0.99);
        box-shadow: 0 18px 30px rgba(31, 77, 66, 0.12);
        backdrop-filter: blur(14px);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .nav .mobile-login-link {
        display: block;
        margin-top: 10px;
        padding: 13px 16px;
        border: 0;
        border-radius: 9px;
        background: var(--terracotta);
        color: var(--white);
        text-align: center;
    }

    .nav .mobile-login-link:hover {
        background: var(--terracotta-dark);
        color: var(--white);
    }

    .hero {
        padding: 24px 18px 14px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-intro {
        font-size: 17px;
    }

    .discovery-controls {
        padding: 0 18px 14px;
    }

    .search-form {
        display: block;
    }

    .search-button {
        width: 100%;
        margin-top: 8px;
    }

    .live-filters {
        grid-template-columns: 1fr;
    }

    .filter-clear-wrap {
        grid-column: auto;
    }

    .discovery-section {
        padding: 0 14px 65px;
    }

    .discovery-shell {
        border-radius: 16px;
    }

    #map {
        height: 420px;
    }

    .type-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 0 18px 72px;
    }

    .section-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .map-list-card {
        grid-template-columns:
            95px
            minmax(0, 1fr);
    }

    .map-list-image {
        width: 95px;
        height: 78px;
    }

    .footer-inner {
        flex-direction: column;
    }
}

/* ==========================================================================
   VuSpaces signup page - build 2026-08-04-0938
   ========================================================================== */

.signup-page {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background:
        linear-gradient(
            90deg,
            #0e2d26 0,
            #0e2d26 46%,
            var(--cream) 46%,
            var(--cream) 100%
        );
    color: var(--ink);
}

.signup-page .signup-shell {
    width: 100%;
    max-width: 1180px;
    min-height: calc(100vh - 75px);
    margin: 0 auto;
    padding: 55px 34px;
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(470px, 1fr);
    grid-template-rows: auto 1fr auto;
    gap: 26px 90px;
    align-items: start;
}

.signup-page .signup-panel {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
    text-align: left;
}

.signup-page .signup-promise {
    max-width: 430px;
    margin-top: 20px;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.signup-page .promise-eyebrow {
    margin-bottom: 15px;
    color: #e58a69;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.signup-page .signup-promise h2 {
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.signup-page .signup-promise > p {
    margin: 24px 0 0;
    color: #d8e2dd;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: 0;
}

.signup-page .signup-points {
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 15px;
    list-style: none;
}

.signup-page .signup-points li {
    position: relative;
    padding-left: 30px;
    color: #f1f5f3;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0;
}

.signup-page .signup-points li::before {
    position: absolute;
    left: 0;
    color: #e58a69;
    content: "✓";
    font-size: 18px;
    font-weight: 800;
}

.signup-page .promise-pricing {
    margin-top: 34px;
    padding: 20px 21px;
    border-left: 3px solid var(--terracotta);
    background: rgba(255, 255, 255, 0.08);
    color: #d8e2dd;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.signup-page .promise-pricing strong {
    display: block;
    margin-bottom: 6px;
    color: var(--white);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.signup-page .card {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    width: 100%;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 22px 60px rgba(23, 63, 53, 0.12);
}

.signup-page .eyebrow {
    margin-bottom: 10px;
    color: var(--terracotta-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.signup-page h1 {
    margin: 0;
    color: var(--green-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.signup-page .intro {
    margin: 13px 0 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.signup-page .field {
    margin-bottom: 17px;
}

.signup-page label {
    display: block;
    margin-bottom: 7px;
    color: var(--green-950);
    font-size: 12px;
    font-weight: 750;
}

.signup-page input {
    width: 100%;
    height: 50px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 15px;
}

.signup-page input:focus {
    border-color: var(--terracotta);
    outline: 3px solid rgba(201, 111, 74, 0.14);
    outline-offset: 0;
}

.signup-page .help {
    margin-top: 6px;
    color: #8b9490;
    font-size: 11px;
}

.signup-page .card button {
    width: 100%;
    min-height: 52px;
    margin-top: 5px;
    border: 0;
    border-radius: 9px;
    background: var(--terracotta);
    color: var(--white);
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.signup-page .card button:hover {
    background: var(--terracotta-dark);
}

.signup-page .error {
    margin-bottom: 22px;
    padding: 12px 14px;
    border: 1px solid #df9279;
    border-radius: 9px;
    background: #fff1ec;
    color: #843b25;
    font-size: 13px;
}

.signup-page .login {
    margin-top: 22px;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
}

.signup-page .login a {
    color: var(--terracotta-dark);
    font-weight: 700;
    text-decoration: none;
}

.signup-page .back {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
    text-align: left;
    font-size: 13px;
}

.signup-page .back a {
    color: #d1ddd8;
    text-decoration: none;
}

@media (max-width: 900px) {
    .signup-page {
        background: var(--cream);
    }

    .signup-page .signup-shell {
        max-width: 650px;
        min-height: auto;
        padding: 32px 22px 50px;
        display: block;
    }

    .signup-page .signup-panel {
        padding: 26px;
        border-radius: 17px;
        background: #0e2d26 !important;
        color: var(--white);
    }

    .signup-page .signup-promise h2,
    .signup-page .promise-pricing strong {
        color: var(--white);
    }

    .signup-page .signup-promise > p,
    .signup-page .promise-pricing {
        color: #d8e2dd;
    }

    .signup-page .signup-points li {
        color: #f1f5f3;
    }

    .signup-page .signup-promise {
        margin-top: 0;
    }

    .signup-page .signup-promise h2 {
        font-size: 40px;
    }

    .signup-page .card {
        margin-top: 22px;
        padding: 34px;
    }

    .signup-page .back {
        margin-top: 18px;
        text-align: center;
    }

    .signup-page .back a {
        color: var(--muted);
    }
}

@media (max-width: 560px) {
    .signup-page .signup-shell {
        padding: 15px 14px 38px;
    }

    .signup-page .signup-panel {
        padding: 22px 20px;
    }

    .signup-page .signup-promise h2 {
        font-size: 36px;
    }

    .signup-page .signup-promise > p {
        font-size: 16px;
    }

    .signup-page .signup-points li {
        font-size: 15px;
    }

    .signup-page .card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .signup-page h1 {
        font-size: 32px;
    }
}

.signup-page .signup-promise,
.signup-page .signup-promise p,
.signup-page .signup-promise li,
.signup-page .promise-pricing,
.signup-page .promise-pricing strong {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}