/* STAT STRIP */
.strip {
    background: var(--green-deep);
    color: var(--paper);
    text-align: center;
    padding: 22px 28px;
    font-size: 17px;
    position: relative;
    z-index: 5;
    box-shadow:
        inset 0 2px 0 var(--gold),
        inset 0 -2px 0 var(--gold);
}

.strip-container {
    position: relative;
    z-index: 1;
}

/* Same scratched-metal grit as the nav, anchored to the TOP of this band so the
   four green bars down the page read bottom / top / center / bottom. */
.strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/texture-metal-scratched-v3.webp") center top /
        cover no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.strip b {
    font-family: var(--slab);
    color: var(--gold);
    font-size: 22px;
}

/* SECTIONS */
section {
    padding: 64px 0;
}
.section-head {
    text-align: center;
    max-width: 42ch;
    margin: 0 auto;
}
.section-head h2 {
    font-family: var(--slab);
    font-weight: 700;
    font-size: clamp(1.7rem, 3.6vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-top: 12px;
}
.section-head p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-top: 14px;
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 44px;
}
@media (max-width: 780px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 460px) {
    .steps {
        grid-template-columns: 1fr;
    }
}
.step {
    text-align: center;
}
.step .n {
    width: 52px;
    height: 52px;
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--slab);
    font-weight: 700;
    font-size: 22px;
    color: var(--green);
    margin: 0 auto 16px;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.step:hover .n {
    background: var(--green);
    color: var(--paper);
    transform: translateY(-3px);
}
.step h3 {
    font-family: var(--slab);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
}
.step p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
}
/* step vignettes — tiny UI echoes of the hero phone */
.step .vignette {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #e9e9ee;
    border-radius: 12px;
    padding: 12px;
    font-family: var(--app);
    text-align: left;
    box-shadow: 0 1px 2px rgba(35, 53, 42, 0.06);
    height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.step:hover .vignette {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(35, 53, 42, 0.1);
}
.vignette .v-email {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vignette .v-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex: none;
}
.vignette .v-from {
    font-size: 11px;
    font-weight: 600;
    color: #8e8e93;
}
.vignette .v-subj {
    font-size: 13px;
    font-weight: 600;
    color: #1c1c1e;
}
.vignette .v-chip {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 5px;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green);
    background: rgba(31, 77, 50, 0.09);
    padding: 3px 9px;
    border-radius: 20px;
}
.vignette .v-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.vignette .v-line {
    font-size: 12.5px;
    line-height: 1.45;
    color: #1c1c1e;
}
.vignette .v-approve {
    text-align: center;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    font-size: 13.5px;
}
.vignette .v-edit {
    text-align: center;
    background: #f2f2f7;
    color: #1c1c1e;
    font-weight: 600;
    padding: 8px;
    border-radius: 10px;
    font-size: 12.5px;
}
.vignette .v-sent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
}
.vignette .v-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.vignette .v-reply {
    font-size: 11px;
    color: #8e8e93;
}

/* WHY */
.why {
    background: var(--paper-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}
@media (max-width: 780px) {
    .cards {
        grid-template-columns: 1fr;
    }
}
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    padding: 28px;
    box-shadow: 0 1px 2px rgba(35, 53, 42, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(35, 53, 42, 0.12);
}
.card h3 {
    font-family: var(--slab);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}
.card p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.55;
}

/* NOT A PLATFORM */
.contrast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 38px;
}
@media (max-width: 680px) {
    .contrast {
        grid-template-columns: 1fr;
    }
}
.col {
    border-radius: 2px;
    padding: 30px;
}
.col.bad {
    background: var(--card);
    border: 1px solid var(--line);
}
.col.good {
    background: var(--green);
    color: var(--paper);
    box-shadow: 0 12px 30px rgba(31, 77, 50, 0.22);
}
.col h3 {
    font-family: var(--slab);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}
.col.bad h3 {
    color: var(--red);
}
.col.good h3 {
    color: var(--gold);
}
.col ul {
    list-style: none;
}
.col li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 16px;
}
.col.bad li {
    color: var(--muted);
}
.col.good li {
    color: #dfe6df;
}
.col li::before {
    position: absolute;
    left: 0;
    font-weight: 600;
}
.col.bad li::before {
    content: "\2715";
    color: var(--red);
}
.col.good li::before {
    content: "\2713";
    color: var(--gold);
}

/* CANADIAN */
.canadian {
    background: var(--red-bg);
    color: var(--paper);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.canadian .leaf {
    font-size: 55px;
    display: block;
    margin-bottom: 8px;
}
.canadian .section-head h2 {
    color: var(--paper);
}
.canadian .section-head p {
    color: #f3ddd2;
}
.ca-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}
@media (max-width: 780px) {
    .ca-cards {
        grid-template-columns: 1fr;
    }
}
.ca-card {
    background: var(--red-deep);
    border: 1px solid var(--red-line);
    border-radius: 2px;
    padding: 28px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}
.ca-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}
.ca-card h3 {
    font-family: var(--slab);
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--gold);
}
.ca-card p {
    font-size: 16px;
    color: #f3ddd2;
    line-height: 1.55;
}

/* BETA + FORM */
.beta {
    background: var(--paper-alt);
    border-top: 1px solid var(--line);
}
.beta-card {
    background: var(--green);
    color: var(--paper);
    border-radius: 2px;
    text-align: center;
    padding: 44px 30px;
    position: relative;
    z-index: 1;
    box-shadow:
        inset 0 0 0 4px var(--green),
        inset 0 0 0 5px var(--gold),
        0 16px 40px rgba(31, 77, 50, 0.22);
}
/* Scratched-metal grit, CENTER-anchored — third of the four green bars. */
.beta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/texture-metal-scratched-v3.webp") center center /
        cover no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.beta-card-container {
    position: relative;
    z-index: 1;
}
.beta-card .tag {
    display: inline-block;
    font-family: var(--slab);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--green-deep);
    padding: 6px 14px;
    border-radius: 1px;
    margin-bottom: 18px;
}
.beta-card h2 {
    font-family: var(--slab);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.beta-card p {
    font-size: 17px;
    color: #cdd5cf;
    max-width: 50ch;
    margin: 0 auto;
}

form {
    max-width: 560px;
    margin: 32px auto 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(35, 53, 42, 0.12);
}
.field {
    margin-bottom: 16px;
}
label {
    display: block;
    font-family: var(--slab);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}
input,
select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 2px;
    font-size: 16px;
    font-family: var(--serif);
    background: #fbf7ec;
    color: var(--ink);
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
input:focus,
select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31, 77, 50, 0.14);
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 42px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231f4d32' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
select:required:invalid {
    color: var(--faint);
}
form .btn {
    width: 100%;
    margin-top: 4px;
}
.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--faint);
    margin-top: 14px;
}
.form-note a {
    color: var(--red);
}
.consent {
    text-align: center;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--faint);
    margin-top: 12px;
}
.form-status {
    text-align: center;
    font-size: 15px;
    font-family: var(--slab);
    font-weight: 600;
    margin-top: 14px;
    display: none;
}
.form-status.show {
    display: block;
}
.form-status.ok {
    color: var(--green);
}
.form-status.err {
    color: var(--red);
}
/* Success takeover: hide the fields, keep the good news */
form.sent .field,
form.sent button,
form.sent .consent {
    display: none;
}

/* FAQ */
.faq {
    max-width: 760px;
    margin: 0 auto;
}
details {
    background: var(--card);
    border: 1px solid var(--line);
    border-left: 3px solid var(--line);
    border-radius: 2px;
    margin-bottom: 12px;
    overflow: hidden;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
details:hover {
    border-left-color: var(--gold);
}
details[open] {
    border-left-color: var(--gold);
    box-shadow: 0 8px 22px rgba(35, 53, 42, 0.08);
}
summary {
    padding: 18px 22px;
    font-family: var(--slab);
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
summary::-webkit-details-marker {
    display: none;
}
summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--green);
    font-weight: 400;
    transition: transform 0.2s ease;
}
details[open] summary::after {
    content: "\2013";
    transform: rotate(180deg);
}
details .ans {
    padding: 0 22px 20px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.55;
}

/* FOOTER */
footer {
    background: var(--green-deep);
    color: #cdd5cf;
    position: relative;
}
/* Scratched-metal grit, BOTTOM-anchored — closes the bottom/top/center/bottom run. */
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/texture-metal-scratched-v3.webp") center bottom /
        cover no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
footer .wrap {
    position: relative;
    padding: 34px 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 15px;
}
footer .logo {
    font-size: 20px;
    color: var(--paper);
}
footer .logo .mark {
    width: 26px;
    height: 26px;
    font-size: 12px;
}
footer a {
    color: var(--gold);
}
