:root {
    --c-ink: #1f2a24;
    --c-muted: #66707a;
    --c-brand: #ff6b6b;
    --c-brand-dark: #cc5555;
    --c-brand-pale: #ffeded;
    --c-mint: #88d498;
    --c-yellow: #ffe156;
    --c-lilac: #c3b1e1;
    --c-coral: #ff6b6b;
    --c-bg: #fffcfc;
    --c-surface: #ffffff;
    --c-soft: #f4f6f5;
    --c-border: #e6e9e7;

    --font: "Inter Tight", system-ui, -apple-system, "Segoe UI",
        Roboto, sans-serif;
    --wrap: 1120px;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 12px 34px rgba(31, 42, 36, 0.1);
    --shadow-sm: 0 4px 14px rgba(31, 42, 36, 0.07);
    --section-y: clamp(3.5rem, 8vw, 1.5rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--c-ink);
    background: var(--c-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
h1,
h2,
h3,
p {
    margin: 0;
}

.tt-hl {
    color: var(--c-coral);
    font-style: italic;
}
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.eyebrow {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--c-brand);
    margin-bottom: 0.75rem;
}
.muted {
    color: var(--c-muted);
}

/* Buttons — playful "neobrutalist" style: yellow with a hard black offset shadow. */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1;
    background: var(--c-yellow);
    color: #1a1a1a;
    box-shadow: 4px 4px 0 #111;
    transition: transform 0.06s ease, box-shadow 0.06s ease,
        background 0.12s ease;
}
.btn:hover {
    background: #ffd21f;
}
.btn:active {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0 #111;
}
.btn--dark {
    background: var(--c-brand);
    color: #fff;
}
.btn--dark:hover {
    background: var(--c-brand-dark);
}

/* Header / nav — logo only, links left-aligned (no CTA button). */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 252, 252, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--c-border);
}
.nav {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    height: 72px;
}
.brand {
    display: inline-flex;
    align-items: center;
}
.brand img {
    height: auto;
    width: 60px;
}
.nav__links {
    display: flex;
    gap: 1.7rem;
    margin-right: auto;
}
.nav__links a {
    font-weight: 500;
    color: var(--c-ink);
}
.nav__links a:hover {
    color: var(--c-coral);
}
.lang {
    display: flex;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 700;
}
.lang a {
    color: var(--c-muted);
    padding: 0.25rem 0.4rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
}
.lang a:hover {
    color: var(--c-ink);
}
.lang a.is-active {
    color: var(--c-brand);
    background: var(--c-soft);
}

/* Hero — big title, smaller subtitle, un-framed demo, CTA below. */
.hero {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 var(--section-y);
    text-align: center;
}
.hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}
.hero__subtitle {
    font-size: clamp(1.25rem, 3vw, 1.9rem);
    font-weight: 600;
    color: #3f4a54;
    margin-top: 0.35rem;
}
.hero__lead {
    max-width: 40rem;
    margin: 1.3rem auto 0;
    font-size: 1.12rem;
    color: var(--c-muted);
}
.hero__demo {
    margin: clamp(2rem, 5vw, 3.5rem) auto;
    max-width: 950px;
    overflow: auto;
}
.hero__demo .tt-embed {
    height: 100%;
}
.hero .btn {
    margin-top: 0.25rem;
}

/* Generic section heading */
.section {
    padding-block: var(--section-y);
}
.section--soft {
    background: var(--c-soft);
}
.section__head {
    text-align: center;
    max-width: 46rem;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section__head h2 {
    font-size: clamp(1.9rem, 4.5vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}
.section__head p {
    margin-top: 1rem;
    color: var(--c-muted);
    font-size: 1.08rem;
}

/* Feature cards — soft-grey, borderless, image inset. */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.card {
    background: var(--c-soft);
    border: 0;
    border-radius: 24px;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
}
.card__img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.card__body {
    padding: 1.2rem 0.8rem 0.8rem;
}
.card__body h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.card__body p {
    color: var(--c-muted);
}

/* Story / testimonial */
.story {
    max-width: 44rem;
    margin-inline: auto;
    text-align: center;
}
.story h2 {
    font-size: clamp(1.9rem, 4.5vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.story p {
    font-size: 1.12rem;
    color: var(--c-ink);
    margin-bottom: 1rem;
}
.story__author {
    color: var(--c-muted);
    font-weight: 600;
}

/* Steps — playful coloured shapes with big shadowed numbers. */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    counter-reset: step;
}
/* All three the same square size (nth-child 2 a circle of the same size) so the row stays aligned. */
.step {
    counter-increment: step;
    text-align: center;
    color: #15211a;
    padding: 1.6rem;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.step:nth-child(1) {
    background: var(--c-yellow);
}
.step:nth-child(2) {
    background: var(--c-lilac);
    border-radius: 50%;
}
.step:nth-child(3) {
    background: var(--c-mint);
}
.step::before {
    content: "0" counter(step);
    display: block;
    font-size: 130px;
    line-height: 0.9;
    font-style: italic;
    font-weight: 900;
    font-variation-settings: "opsz" 14, "wght" 900;
    color: var(--c-coral);
    text-shadow: 11px 14px 0 #111;
    margin-bottom: 1.7rem;
}
.step h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}
.step p {
    color: #243b2e;
    font-size: 0.8rem;
    margin: 0 1rem;
}

/* Testimonials — real customer quote with photo, big coral quote mark. */
.testimonial {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-areas:
        "main quote"
        "detail quote";
    gap: 1rem 2rem;
    align-items: start;
    max-width: 880px;
    margin-inline: auto;
    background: var(--c-soft);
    border-radius: var(--radius);
    padding: clamp(1rem, 2.5vw, 1.6rem);
}
.testimonial__img {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}
.testimonial__img--main {
    grid-area: main;
    aspect-ratio: 1 / 1;
}
.testimonial__img--detail {
    grid-area: detail;
    aspect-ratio: 16 / 9;
}
.testimonial__quote {
    grid-area: quote;
    margin: 0;
    align-self: center;
}
.testimonial__quote::before {
    content: '“';
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    line-height: 0.6;
    font-weight: 700;
    color: var(--c-coral);
    margin-bottom: 0.5rem;
}
.testimonial__quote p {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.45;
    margin-bottom: 0.7rem;
}
.testimonial__quote p:last-of-type::after {
    content: '”';
    color: var(--c-coral);
    font-weight: 700;
}
.testimonial__author {
    display: block;
    font-style: normal;
    color: var(--c-muted);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.4rem;
}
@media (max-width: 900px) {
    .testimonial {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "quote"
            "detail";
    }
    .testimonial__img--main {
        max-width: 220px;
        margin-inline: auto;
    }
}

/* Pricing — two mint cards with hard black offset shadow. */
.pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    max-width: 900px;
    margin-inline: auto;
    align-items: stretch;
}
.plan {
    background: var(--c-mint);
    border: 0;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 6px 6px 0 #111;
    color: #12281c;
}
.plan__name {
    font-weight: 700;
    color: #14432c;
}
.plan__price {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0.3rem 0 1.3rem;
    color: #0f2a1b;
}
.plan__price span {
    font-size: 1rem;
    font-weight: 500;
    color: #2f5a41;
}
.plan ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}
.plan li {
    padding-left: 1.7rem;
    position: relative;
}
.plan li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #14432c;
    font-weight: 800;
}
.plan--soon {
    display: flex;
    flex-direction: column;
}
.plan--soon p {
    color: #1f4530;
    margin: auto 0;
} /* title stays at top; body centres in the space below */

/* FAQ — native <details> accordion, soft-grey items with a coral +/- toggle. */
.faq {
    max-width: 46rem;
    margin-inline: auto;
    display: grid;
    gap: 0.9rem;
}
.faq__item {
    background: var(--c-soft);
    border-radius: var(--radius-sm);
    padding: 1rem 1.3rem;
}
.faq__item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq__item summary::-webkit-details-marker {
    display: none;
}
.faq__item summary::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-brand);
}
.faq__item[open] summary::after {
    content: "\2212";
}
.faq__item p {
    margin-top: 0.8rem;
    color: var(--c-muted);
}
.faq__contact {
    text-align: center;
    margin-top: 1.8rem;
    color: var(--c-muted);
}
.faq__contact a {
    color: var(--c-brand);
    font-weight: 700;
}

/* Launch CTA + signup form — yellow section. */
.cta {
    background: var(--c-yellow);
}
.cta__inner {
    text-align: center;
    max-width: 40rem;
    margin-inline: auto;
}
.cta h2 {
    font-size: clamp(1.9rem, 4.5vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}
.cta p {
    margin: 0.8rem 0 2rem;
    font-size: 1.12rem;
    color: #4a4632;
}
.signup {
    display: grid;
    gap: 0.8rem;
    max-width: 30rem;
    margin-inline: auto;
    text-align: left;
}
.signup input,
.signup textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: none;
    border-radius: var(--radius-sm);
    font: inherit;
    background: #fff;
    color: inherit;
    box-shadow: 4px 4px 0 #111;
}
.signup input:focus,
.signup textarea:focus {
    outline: none;
    box-shadow: 4px 4px 0 #111, 0 0 0 3px rgba(47, 111, 79, 0.25);
}
.signup textarea {
    min-height: 3.2rem;
    resize: vertical;
}
.signup .btn {
    width: 100%;
    margin-top: 0.3rem;
}
.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Newsletter — small secondary signup below the order form. */
.newsletter {
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.newsletter p {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #3a3627;
}
.newsletter form {
    display: flex;
    gap: 0.6rem;
    max-width: 30rem;
    margin-inline: auto;
}
.newsletter input {
    flex: 1;
    min-width: 0;
    padding: 0.9rem 1.1rem;
    border: none;
    border-radius: var(--radius-sm);
    font: inherit;
    background: #fff;
    color: inherit;
    box-shadow: 4px 4px 0 #111;
}
.newsletter input:focus {
    outline: none;
    box-shadow: 4px 4px 0 #111, 0 0 0 3px rgba(47, 111, 79, 0.25);
}
.newsletter .btn {
    flex-shrink: 0;
    padding-inline: 1.3rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--c-border);
    padding-block: 2.5rem;
}
.site-footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--c-muted);
    font-size: 0.95rem;
}
.site-footer__ig {
    display: inline-flex;
    align-items: center;
    color: var(--c-muted);
    transition: color 0.12s ease;
}
.site-footer__ig:hover {
    color: var(--c-brand);
}

/* Flash messages (from /start redirects) */
.tt-flash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 14px 20px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.tt-flash-success {
    background: #dff3e6;
    color: #1f7a45;
}
.tt-flash-error {
    background: #fbe2e2;
    color: #9b2222;
}

/* Responsive */
@media (max-width: 900px) {
    .cards,
    .steps {
        grid-template-columns: 1fr 1fr;
    }
    .pricing {
        grid-template-columns: 1fr;
    }
    /* Drop the forced square/circle on narrow layouts so shapes size to their content. */
    .step {
        aspect-ratio: auto;
    }
    .step:nth-child(2) {
        border-radius: 26px;
    }
}
@media (max-width: 640px) {
    /* Keep the nav visible: stack the logo over centred, wrapping links. */
    .nav {
        flex-direction: column;
        height: auto;
        gap: 0.5rem;
        padding-block: 0.7rem;
    }
    .nav__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem 1.1rem;
        margin: 0;
        font-size: 0.95rem;
    }
    .cards,
    .steps {
        grid-template-columns: 1fr;
    }
    .site-footer .wrap {
        flex-direction: column;
    }
}
