/* /pilot/ page , custom layout classes. Reuses main.min.css tokens and utilities. */

.pilot-main {
    padding-top: 16rem;
    background: var(--white);
    color: var(--black);
}

.pilot-section {
    padding: 8rem 0;
}

.pilot-section + .pilot-section {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Reset the global 12-column grid from main.min.css when inside the pilot page. */
.pilot-main .container,
.pilot-section .container {
    display: block;
    grid-template-columns: none;
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 var(--container-spacer);
    gap: 0;
}

/* HERO */
.pilot-hero {
    padding: 4rem 0 6rem;
}

.pilot-hero .section-desc {
    color: var(--orange);
    margin-bottom: 2.4rem;
}

.pilot-hero .title-main {
    color: var(--black);
    margin-bottom: 2.4rem;
    /* Skip the letter-by-letter reveal animation used on the homepage.
       Force instant visibility on the pilot page hero. */
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.pilot-hero .title-main span,
.pilot-hero .title-main .char,
.pilot-hero .title-main .word,
.pilot-hero .title-main .line {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.pilot-hero .desc-large {
    color: var(--grey);
    max-width: 70rem;
    margin-bottom: 4rem;
}

.pilot-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* PROOF STRIP */
.pilot-proof {
    background: var(--grey-light);
    padding: 6rem 0;
}

.pilot-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.pilot-proof-item {
    text-align: left;
}

.pilot-proof-item .stat {
    font-size: 5.6rem;
    line-height: 110%;
    letter-spacing: -0.02em;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.pilot-proof-item .stat-label {
    font-size: 1.4rem;
    line-height: 145%;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* INCLUDED / TIMELINE / AFTER / FAQ */
.pilot-head {
    margin-bottom: 6rem;
    max-width: 80rem;
}

.pilot-head .section-desc {
    color: var(--orange);
    margin-bottom: 1.6rem;
}

.pilot-head .title-large {
    color: var(--black);
    margin-bottom: 2rem;
}

.pilot-head .desc {
    color: var(--grey);
}

/* INCLUDED list */
.pilot-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
}

.pilot-included-item {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pilot-included-item:last-child,
.pilot-included-item:nth-last-child(2) {
    border-bottom: none;
}

.pilot-included-item .checkmark {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.4rem;
}

.pilot-included-item .checkmark svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: var(--white);
}

.pilot-included-item .text {
    flex: 1;
}

.pilot-included-item .text strong {
    display: block;
    font-size: 1.8rem;
    line-height: 140%;
    margin-bottom: 0.4rem;
    color: var(--black);
}

.pilot-included-item .text span {
    font-size: 1.5rem;
    line-height: 150%;
    color: var(--grey);
}

/* TIMELINE */
.pilot-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.pilot-phase {
    padding: 4rem 3rem;
    border-radius: 2rem;
    background: var(--grey-light);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-default), box-shadow var(--transition-default);
}

.pilot-phase:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.06);
}

.pilot-phase-num {
    font-size: 1.4rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    font-weight: 500;
}

.pilot-phase-weeks {
    font-size: 1.3rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.pilot-phase h3 {
    font-size: 2.4rem;
    line-height: 125%;
    color: var(--black);
    margin-bottom: 1.6rem;
}

.pilot-phase p {
    font-size: 1.5rem;
    line-height: 150%;
    color: var(--grey);
}

.pilot-phase-tag {
    display: inline-block;
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 110, 48, 0.12);
    color: var(--orange);
    margin-top: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* INVESTMENT */
.pilot-invest {
    background: var(--black);
    color: var(--white);
}

.pilot-invest .title-large,
.pilot-invest .pilot-head .section-desc {
    color: var(--white);
}

.pilot-invest .pilot-head .desc {
    color: rgba(255, 255, 255, 0.7);
}

.pilot-invest-card {
    background: linear-gradient(180deg, #181818 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.4rem;
    padding: 5rem;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 6rem;
    align-items: start;
}

.pilot-invest-price {
    font-size: 7rem;
    line-height: 100%;
    letter-spacing: -0.03em;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
}

.pilot-invest-price-sub {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pilot-invest-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 2rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.6rem;
}

.pilot-invest-line:last-of-type {
    border-bottom: none;
}

.pilot-invest-line strong {
    font-weight: 500;
    color: var(--white);
}

.pilot-invest-line span {
    color: rgba(255, 255, 255, 0.6);
}

.pilot-invest-line em {
    font-style: normal;
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
}

.pilot-invest-total {
    margin-top: 1.6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.pilot-invest-total strong {
    font-size: 1.8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pilot-invest-total em {
    font-size: 2.8rem;
    font-style: normal;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pilot-invest-note {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.6rem;
}

/* AFTER */
.pilot-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.pilot-after-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2rem;
    padding: 4rem 3rem;
    transition: border-color var(--transition-default), box-shadow var(--transition-default);
}

.pilot-after-card:hover {
    border-color: var(--orange);
    box-shadow: 0 0.8rem 2.4rem rgba(255, 110, 48, 0.08);
}

.pilot-after-card h3 {
    font-size: 2.4rem;
    line-height: 130%;
    color: var(--black);
    margin-bottom: 1rem;
}

.pilot-after-card .tag {
    display: inline-block;
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 110, 48, 0.12);
    color: var(--orange);
    margin-bottom: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pilot-after-card p {
    font-size: 1.5rem;
    line-height: 150%;
    color: var(--grey);
    margin-bottom: 2rem;
}

.pilot-after-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pilot-after-card ul li {
    font-size: 1.5rem;
    line-height: 150%;
    color: var(--grey);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.pilot-after-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--orange);
}

/* WHO + FIT (two-card layout) */
.pilot-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.pilot-fit-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2rem;
    padding: 4rem 3rem;
    transition: border-color var(--transition-default), box-shadow var(--transition-default);
}

.pilot-fit-card-best:hover {
    border-color: var(--orange);
    box-shadow: 0 0.8rem 2.4rem rgba(255, 110, 48, 0.08);
}

.pilot-fit-card-no:hover {
    border-color: rgba(220, 70, 70, 0.5);
    box-shadow: 0 0.8rem 2.4rem rgba(220, 70, 70, 0.06);
}

.pilot-fit-head {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 2.8rem;
}

.pilot-fit-head h3 {
    font-size: 2.8rem;
    line-height: 120%;
    color: var(--black);
    margin: 0;
}

.pilot-fit-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pilot-fit-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.pilot-fit-icon-check {
    background: var(--gradient-orange);
    color: var(--white);
}

.pilot-fit-icon-x {
    background: rgba(220, 70, 70, 0.12);
    color: #dc4646;
}

.pilot-fit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pilot-fit-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 1.6rem;
    line-height: 150%;
    color: var(--grey);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pilot-fit-card ul li:last-child {
    border-bottom: none;
}

.pilot-fit-card ul li::before {
    content: "";
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem;
    margin-top: 0.3rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.pilot-fit-card-best ul li::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M11.5 4L5.5 10L2.5 7' stroke='%23ff6e30' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.pilot-fit-card-no ul li::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 3.5L10.5 10.5M10.5 3.5L3.5 10.5' stroke='%23dc4646' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
}

/* FAQ */
.pilot-faq-list {
    max-width: 90rem;
}

.pilot-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pilot-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 2.4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: 1.8rem;
    color: var(--black);
    transition: color var(--transition-fast);
}

.pilot-faq-item summary::-webkit-details-marker { display: none; }
.pilot-faq-item summary::marker { content: ""; }

.pilot-faq-item summary:hover {
    color: var(--orange);
}

.pilot-faq-item summary::after {
    content: "+";
    font-size: 2.4rem;
    color: var(--orange);
    transition: transform var(--transition-fast);
}

.pilot-faq-item[open] summary::after {
    content: "−";
}

.pilot-faq-item .answer {
    padding: 0 0 2.4rem;
    font-size: 1.5rem;
    line-height: 160%;
    color: var(--grey);
    max-width: 72rem;
}

/* CTA STRIP */
.pilot-cta {
    background: var(--gradient-orange);
    color: var(--white);
    text-align: center;
}

.pilot-cta .title-large {
    color: var(--white);
    margin-bottom: 2rem;
}

.pilot-cta .desc-large {
    color: rgba(255, 255, 255, 0.85);
    max-width: 60rem;
    margin: 0 auto 3rem;
}

/* CTA section centers its content including the button */
.pilot-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.pilot-cta .button {
    align-self: center;
}

/* RESPONSIVE */
@media screen and (max-width: 1200px) {
    .pilot-main { padding-top: 12rem; }
    .pilot-section { padding: 6rem 0; }
    .pilot-invest-card { padding: 4rem; gap: 4rem; }
    .pilot-invest-price { font-size: 5.6rem; }
}

@media screen and (max-width: 967px) {
    .pilot-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .pilot-timeline-grid { grid-template-columns: 1fr; }
    .pilot-invest-card { grid-template-columns: 1fr; gap: 3rem; }
    .pilot-after-grid { grid-template-columns: 1fr; }
    .pilot-fit-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pilot-fit-card { padding: 3rem 2.4rem; }
    .pilot-included-grid { grid-template-columns: 1fr; }
    .pilot-included-item:nth-last-child(2) { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
}

@media screen and (max-width: 650px) {
    .pilot-main { padding-top: 10rem; }
    .pilot-section { padding: 5rem 0; }
    .pilot-hero { padding: 2rem 0 4rem; }
    .pilot-proof-item .stat { font-size: 4rem; }
    .pilot-invest-card { padding: 3rem 2.4rem; }
    .pilot-invest-price { font-size: 4.8rem; }
    .pilot-phase { padding: 3rem 2.4rem; }
    .pilot-after-card { padding: 3rem 2.4rem; }
    .pilot-head { margin-bottom: 4rem; }
    .pilot-faq-item summary { font-size: 1.6rem; }
}
