:root {
    --bridge-teal: #1f6f63;
    --bridge-teal-dark: #155248;
    --giants-orange: #fd5a1e;
    --giants-orange-dark: #d24a18;
    --giants-black: #1d1b17;
    --canvas-cream: #f4efe2;
    --ink-warm: #2c2824;
}

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

body {
    background-color: var(--canvas-cream);
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(232, 223, 207, 0.35)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160' width='160' height='160'%3E%3Cg fill='none'%3E%3Ccircle cx='12' cy='18' r='1.5' fill='%23d8cfbc' fill-opacity='0.35'/%3E%3Ccircle cx='84' cy='60' r='1' fill='%23ffffff' fill-opacity='0.35'/%3E%3Ccircle cx='140' cy='128' r='1.2' fill='%23c3b79e' fill-opacity='0.25'/%3E%3Ccircle cx='36' cy='120' r='0.9' fill='%23fff8ed' fill-opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, 240px 240px;
    color: var(--ink-warm);
    font-family: 'Bookman Old Style', 'Georgia', serif;
    min-height: 100vh;
    display: grid;
    grid-template-columns: clamp(9rem, 15vw, 12rem) minmax(0, 1fr) minmax(1.5rem, 1fr);
    grid-template-rows: auto 1fr auto;
    max-width: 100vw;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    background: var(--bridge-teal);
    z-index: 10;
    pointer-events: none;
}

body::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

body::after {
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
}

.panel {
    background-color: #fffaf1;
    border: 2px solid var(--giants-black);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 6px 6px 0 0 var(--giants-black);
    margin-top: 2rem;
    line-height: 1.4;
}

#softlaunch {
    grid-column: 2;
    grid-row: 3;
    width: min(100%, 41rem);
    max-width: 41rem;
    margin-left: 2.75rem;
    margin-right: 2.75rem;
    margin-bottom: 3rem;
}

.panel h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.panel ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.hidden {
    display: none !important;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
    text-decoration: none;
    color: #f6efe4;
    padding: 0.1rem 0.05rem 0.35rem 0.05rem;
    width: 100%;
}

.logo:focus-visible {
    outline: 2px solid var(--bridge-teal);
    outline-offset: 4px;
}

.logo-line {
    display: block;
    font-size: 1.18rem;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: #fdf6ea;
}

.logo-line-bottom {
    display: flex;
    align-items: flex-end;
    gap: 0.14rem;
}

.logo-strong {
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.logo-dotcom {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: rgba(255, 250, 241, 0.92);
}

.coming-soon {
    font-size: 0.85rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--bridge-teal-dark);
    color: var(--bridge-teal-dark);
    background-color: rgba(31, 111, 99, 0.12);
    border-radius: 999px;
    align-self: flex-start;
}

.stripe {
    grid-column: 1;
    grid-row: 1 / span 3;
    background-color: var(--bridge-teal);
    position: sticky;
    top: 0;
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.15rem 0.95rem 1.6rem 0.95rem;
    box-shadow: 4px 0 0 0 var(--bridge-teal);
    min-height: 100vh;
}

.softlaunch-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0;
    color: #fffaf1;
    font-size: 0.9rem;
    letter-spacing: 0.005em;
    line-height: 1.4;
    width: 100%;
}

.softlaunch-nav-label {
    margin: 0.15rem 0 0.05rem 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 800;
    color: rgba(255, 250, 241, 0.92);
}

.softlaunch-nav a {
    color: #fffaf1;
    font-weight: 700;
    text-decoration: none;
    padding: 0.05rem 0;
    display: inline-flex;
}

.stripe-meta {
    margin-top: auto;
    padding-top: 0.85rem;
    color: #f0ebe0;
    font-size: 0.78rem;
    line-height: 1.4;
    border-top: 1px solid rgba(255, 250, 241, 0.24);
}

.stripe-meta a {
    color: #f0ebe0;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.15rem;
}

.stripe-meta a:hover,
.stripe-meta a:focus-visible {
    text-decoration: underline;
}

.stripe-copyright {
    margin: 0;
    opacity: 0.8;
    font-weight: 600;
}

.softlaunch-nav a:hover,
.softlaunch-nav a:focus-visible {
    text-decoration: underline;
}

main {
    grid-column: 2;
    grid-row: 2;
    width: min(100%, 41rem);
    max-width: 41rem;
    padding-left: 2.75rem;
    padding-right: 2.75rem;
    padding-top: 2.75rem;
    padding-bottom: 4rem;
}

.tool-list {
    list-style: disc;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.4rem;
}

h1 {
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: var(--giants-black);
}

.body-copy {
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 3.1rem;
}

.cta-section {
    margin-top: 3.4rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(31, 111, 99, 0.2);
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.35;
    margin-bottom: 1.6rem;
}

#signup {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 27rem;
}

.form-row {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-row input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1.5px solid var(--bridge-teal);
    color: var(--ink-warm);
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-family: 'Bookman Old Style', 'Georgia', serif;
    outline: none;
    border-radius: 6px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus {
    border-color: var(--giants-orange);
    box-shadow: 0 0 0 3px rgba(253, 90, 30, 0.15);
}

.form-row input::placeholder {
    color: rgba(44, 40, 36, 0.55);
    letter-spacing: 0.01em;
    text-align: left;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.email-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    max-width: 18rem;
}

.email-input {
    background-color: var(--canvas-cream);
    border: 1.5px solid var(--bridge-teal);
    color: var(--ink-warm);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: 'Bookman Old Style', 'Georgia', serif;
    outline: none;
    flex: 1 1 12.5rem;
    min-width: 11rem;
    max-width: 100%;
    max-height: 50px;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
}

.email-input:focus {
    border-color: var(--giants-orange);
    box-shadow: inset 0 0 0 1px rgba(31, 111, 99, 0.25);
}

.email-input::placeholder {
    color: rgba(20, 20, 20, 0.45);
    letter-spacing: 0.02em;
}

.button {
    background-color: var(--giants-orange);
    color: var(--giants-black);
    border: 2px solid var(--giants-black);
    padding: 0.8rem 2.25rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Bookman Old Style', 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 0 0 var(--giants-black), 0 10px 18px rgba(29, 27, 23, 0.15);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.button:hover,
.button:focus {
    background-color: var(--giants-orange-dark);
    transform: translateY(1px);
    box-shadow: 0 3px 0 0 var(--giants-black), 0 8px 14px rgba(29, 27, 23, 0.18);
}

.button:focus-visible {
    outline: 2px solid var(--bridge-teal);
    outline-offset: 3px;
}

.button:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 var(--giants-black), 0 4px 8px rgba(29, 27, 23, 0.2);
}

.antispam {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    body {
        grid-template-columns: clamp(7.5rem, 12vw, 9.5rem) minmax(0, 1fr) minmax(1rem, 1fr);
    }

    main {
        padding-left: 2.5rem;
        padding-right: 2.25rem;
    }
}

@media (max-width: 768px) {
    body {
        grid-template-columns: clamp(4.25rem, 14vw, 6.25rem) minmax(0, 4fr) minmax(0.75rem, 1fr);
    }

    .coming-soon {
        padding: 0.35rem 0.75rem;
    }

    main {
        padding: 2.25rem 2rem 3.25rem 2.25rem;
    }

    h1 {
        font-size: 2.65rem;
        margin-bottom: 2rem;
    }

    .body-copy {
        font-size: 1.2rem;
        margin-bottom: 2.6rem;
    }

    .cta-text {
        font-size: 1.15rem;
        margin-bottom: 1.45rem;
    }

    .email-form {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
    }

    .email-input {
        padding: 0.75rem 0.85rem;
        max-width: 16rem;
    }

    .button {
        width: auto;
        min-width: 9.5rem;
    }
}

@media (max-width: 560px) {
    body {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
    }

    .stripe {
        grid-column: 1;
        grid-row: 1;
        min-height: auto;
        align-items: stretch;
        padding: 0.85rem 1.25rem 0.85rem 1.25rem;
        position: static;
        gap: 0.65rem;
        box-shadow: none;
    }

    .softlaunch-nav {
        width: 100%;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .stripe-meta {
        display: none;
    }

    .softlaunch-nav-label {
        padding-left: 0;
        margin-bottom: 0.05rem;
        color: rgba(255, 250, 241, 0.85);
        width: 100%;
    }

    main {
        padding: 1.5rem 1.25rem 3rem 1.25rem;
        max-width: none;
    }

    h1 {
        font-size: 2.3rem;
    }

    .body-copy {
        font-size: 1.15rem;
    }

    .email-input {
        max-width: none;
        width: 100%;
    }

    #signup {
        max-width: none;
    }

    .logo-line {
        font-size: 1.2rem;
    }

    .logo-dotcom {
        font-size: 1.02rem;
    }

    .logo {
        width: 100%;
        justify-content: flex-start;
    }

    .softlaunch-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0.45rem 0.6rem;
        border-radius: 12px;
        background: rgba(255, 250, 241, 0.14);
        font-weight: 800;
        letter-spacing: 0.01em;
    }

    .site-footer {
        grid-column: 1;
        grid-row: 3;
        background: var(--bridge-teal);
        color: #f6efe4;
        padding: 1rem 1.35rem 1.85rem 1.35rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
        border-top: 6px solid var(--bridge-teal);
        display: flex;
    }

    .footer-primary {
        gap: 0.4rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand,
    .footer-links a {
        color: #f6efe4;
        border-bottom-color: rgba(246, 239, 228, 0.75);
    }

    .footer-dotcom {
        color: rgba(255, 250, 241, 0.95);
    }

    .footer-copyright {
        color: rgba(246, 239, 228, 0.8);
        font-weight: 600;
    }
}

.legal {
    font-size: 0.85rem;
    color: rgba(44, 40, 36, 0.75);
    margin-top: 0.5rem;
}

.site-footer {
    grid-column: 2;
    grid-row: 3;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 2.75rem 2rem 2.75rem;
    font-size: 0.9rem;
    color: rgba(44, 40, 36, 0.8);
    flex-wrap: wrap;
}

.footer-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer a {
    color: var(--bridge-teal-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(31, 111, 99, 0.5);
    padding-bottom: 0.1rem;
}

.footer-brand {
    border-bottom: none;
    padding-bottom: 0;
    color: var(--bridge-teal-dark);
}

.footer-dotcom {
    margin-left: 0.25rem;
    color: var(--giants-orange);
    letter-spacing: 0.05em;
    font-weight: 800;
}

.footer-copyright {
    margin: 0;
    color: rgba(44, 40, 36, 0.75);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    border-bottom-color: var(--bridge-teal-dark);
}

@media (max-width: 560px) {
    .site-footer {
        display: flex;
    }
}

.privacy-main {
    grid-column: 2;
    grid-row: 2;
    width: min(100%, 48rem);
    padding: 2.75rem;
    margin: 0 auto 2rem auto;
}

.privacy-main h1 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--giants-black);
}

.privacy-section {
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

.privacy-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--bridge-teal-dark);
}

.privacy-section p,
.privacy-section ul {
    font-size: 1rem;
    color: var(--ink-warm);
}

.privacy-section ul {
    padding-left: 1.25rem;
    list-style: disc;
}

body.privacy-page {
    display: block;
}

.privacy-page .site-footer {
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding-left: 2rem;
        padding-right: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-main {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 560px) {
    .site-footer {
        grid-column: 1;
        padding: 1.5rem 1.25rem 2.5rem 1.25rem;
    }

    .privacy-main {
        padding: 1.5rem 1.25rem 2.5rem 1.25rem;
    }
}
