/*
 * Waitlist One - Free HTML/CSS waitlist landing page template
 * Source: https://templates.inuno.app
 * Copyright (c) 2026 templates.inuno.app
 *
 * Free license note:
 * This free template may be used privately and commercially,
 * but the attribution/backlink to https://templates.inuno.app must remain.
 */

:root {
    --ink: #111827;
    --muted: #64748b;
    --paper: #f6f7f2;
    --panel: #ffffff;
    --line: rgba(15, 23, 42, 0.12);
    --accent: #ff5c1a;
    --accent-2: #8ee6d3;
    --accent-3: #f7e36b;
    --shadow: 0 24px 70px rgba(17, 24, 39, 0.13);
    --radius: 8px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
    min-width: 320px;
    background: var(--paper);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(120deg, rgba(142, 230, 211, 0.28), transparent 38%),
        linear-gradient(300deg, rgba(247, 227, 107, 0.32), transparent 44%),
        var(--paper);
    font-family: var(--font);
    letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header,
.brand,
.nav,
.signup-form,
.logo-strip,
.site-footer,
.site-footer nav {
    display: flex;
    align-items: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    justify-content: space-between;
    gap: 18px;
    width: min(1200px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto 24px;
    padding: 16px 0;
    background: color-mix(in srgb, var(--paper) 84%, transparent);
    backdrop-filter: blur(16px);
}

.brand {
    gap: 10px;
    font-weight: 950;
}

.brand span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--accent-3);
    font-size: 13px;
}

.nav {
    gap: 6px;
}

.nav a {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.68);
    padding: 10px 13px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
}

.nav a:hover {
    background: var(--ink);
    color: #fff;
}

main,
.site-footer {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.launch-board,
.board-media,
.board-copy,
.board-signup,
.feature-grid article,
.timeline article,
.pricing-panel,
.faq-grid article,
.content-page,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.launch-board {
    display: grid;
    gap: 10px;
    min-height: calc(100vh - 96px);
    padding: 18px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.board-media {
    position: relative;
    min-height: 330px;
    overflow: hidden;
}

.board-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.58)),
        linear-gradient(90deg, rgba(17, 24, 39, 0.58), transparent 42%, rgba(17, 24, 39, 0.32));
}

.board-copy {
    display: grid;
    grid-template-columns: minmax(180px, 0.24fr) minmax(0, 0.5fr) minmax(260px, 0.26fr);
    gap: 18px;
    align-items: end;
    padding: clamp(22px, 4vw, 42px);
}

.board-copy .eyebrow {
    align-self: start;
}

.board-copy .lead {
    margin: 0;
}

.board-signup {
    max-width: none;
    padding: 14px;
}

.board-signup .form-note {
    display: flex;
    align-items: center;
    max-width: 290px;
    margin: 0;
}

.eyebrow,
.section-heading p,
.logo-strip span,
.board-card span,
.board-status span,
.timeline span,
.pricing-panel aside span {
    margin: 0;
    color: #0f766e;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(38px, 5.2vw, 66px);
    line-height: 0.96;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.lead,
.pricing-panel p,
.content-page p,
.faq-grid p,
.feature-grid p,
.timeline p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.58;
}

.lead {
    max-width: 560px;
    margin-bottom: 28px;
    font-size: 18px;
}

.signup-form {
    align-items: stretch;
    gap: 8px;
    max-width: 620px;
}

.signup-form label,
.contact-form label {
    display: grid;
    gap: 7px;
    flex: 1;
}

.signup-form span,
.contact-form span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    padding: 14px 14px;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 92, 26, 0.14);
}

button,
.pricing-panel a {
    border: 0;
    border-radius: var(--radius);
    background: var(--accent);
    color: #fff;
    padding: 14px 18px;
    font-weight: 950;
    cursor: pointer;
}

button:hover,
.pricing-panel a:hover {
    background: #111827;
}

.form-note {
    min-height: 24px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.signup-form.is-complete button {
    background: #0f766e;
}

.board-card,
.board-status {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 4px;
    min-width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    padding: 16px;
    box-shadow: 0 20px 44px rgba(17, 24, 39, 0.16);
}

.board-card strong,
.board-status strong {
    font-size: 30px;
    line-height: 1;
}

.board-status {
    left: 22px;
    top: 22px;
    min-width: 190px;
    background: var(--ink);
    color: #fff;
}

.board-status span {
    color: var(--accent-2);
}

.board-card-a {
    right: 22px;
    top: 24px;
}

.board-card-b {
    left: 22px;
    bottom: 22px;
}

.logo-strip {
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    padding: 14px;
}

.logo-strip span {
    color: var(--ink);
    text-align: center;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
    gap: 18px;
    align-items: end;
    padding: 42px 0 18px;
}

.feature-grid,
.timeline,
.faq-grid {
    display: grid;
    gap: 10px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article,
.timeline article,
.faq-grid article {
    padding: 22px;
}

.feature-grid article > span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 36px;
    place-items: center;
    border-radius: 999px;
    background: var(--accent-3);
    font-weight: 950;
}

.timeline-section {
    padding-top: 14px;
}

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

.pricing-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    padding: clamp(24px, 5vw, 54px);
    background:
        linear-gradient(135deg, rgba(142, 230, 211, 0.5), transparent 52%),
        #fff;
}

.pricing-panel aside {
    display: grid;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    padding: 24px;
}

.pricing-panel aside p {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-panel strong {
    font-size: 46px;
    line-height: 1;
}

.pricing-panel a {
    display: inline-flex;
    justify-content: center;
}

.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 18px 0 34px;
}

.content-page {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.58fr);
    gap: 18px;
    min-height: 0;
    margin-top: 0;
    padding: clamp(24px, 5vw, 54px);
}

.content-page-narrow {
    display: block;
    max-width: 820px;
}

.content-page h1 {
    max-width: 720px;
    margin: 8px 0 16px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 0.98;
}

.content-page h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.04;
}

.content-page > p,
.content-page > div > p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 24px;
}

.content-page article {
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
    margin-top: 22px;
}

.content-page article p {
    margin-bottom: 0;
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 18px;
    box-shadow: none;
}

.site-footer {
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding: 24px 0 32px;
    color: var(--muted);
    font-size: 14px;
}

.footer-brand-block,
.footer-links,
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-brand-block strong {
    color: var(--ink);
}

.footer-links a {
    font-weight: 900;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
}

.footer-social a:hover {
    background: var(--ink);
    color: #fff;
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

@media (max-width: 920px) {
    .site-header,
    .nav,
    .signup-form,
    .logo-strip,
    .site-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .board-copy,
    .section-heading,
    .pricing-panel,
    .content-page {
        grid-template-columns: 1fr;
    }

    .launch-board {
        min-height: 0;
    }

    .board-media {
        min-height: 420px;
    }

    .feature-grid,
    .timeline,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    main,
    .site-header,
    .site-footer {
        width: min(100% - 20px, 1200px);
    }

    .site-header {
        margin-bottom: 18px;
        padding: 10px 0;
    }

    .nav,
    .feature-grid,
    .timeline,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 38px;
    }

    .board-copy,
    .content-page {
        padding: 18px;
    }

    .content-page {
        gap: 12px;
        margin-top: 18px;
    }

    .content-page h1 {
        font-size: 32px;
        line-height: 1;
    }

    .content-page h2 {
        font-size: 24px;
    }

    .content-page p {
        font-size: 15px;
        line-height: 1.42;
    }

    .contact-form {
        gap: 9px;
        padding: 12px;
    }

    input,
    textarea {
        padding: 10px 12px;
    }

    textarea {
        max-height: 76px;
    }

    .site-footer {
        gap: 10px;
        padding: 16px 0 20px;
    }

    .board-media {
        min-height: 320px;
    }

    .board-card,
    .board-status {
        min-width: 126px;
        padding: 12px;
    }

    .board-card strong,
    .board-status strong {
        font-size: 24px;
    }
}
