/**
 * Homepage V2 — templates/page-homepage-v2.php
 *
 * Mobile-first. Breakpoints match css/layout.css: 576 / 768 / 992 / 1200 / 1400.
 * Section blocks are added here in the same order they appear in the template,
 * each under its own comment header.
 *
 * 0. Page shell
 * 1. Hero
 * 2. Sample video
 * 3. Proof strip
 * 4. Testimonial
 * 5. Two ways to buy
 * 6. More to know
 */


/***** 0. Page shell *****/

#homepage-v2-main-cont {
    margin-top: 110px;
    overflow-x: clip;
}

#homepage-v2-main-cont section {
    margin-bottom: 60px;
    padding: 0 20px;
}

/* Secondary, lower-emphasis CTA that sits next to .btn-default */
#homepage-v2-main-cont .btn-text {
    display: inline-block;
    margin: 5px;
    padding: 15px 10px;
    font-weight: 700;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}


/***** 1. Hero *****/

#hv2-hero {
    text-align: center;
}

/* Hero runs flush into the video — no gap at all, so the top of the player is
 * in view as soon as the hero scrolls away.
 *
 * Two ids on purpose. The shared `#homepage-v2-main-cont section` rule above
 * scores (1,0,1) and beats a bare `#hv2-hero` at (1,0,0) regardless of source
 * order, so a single-id override here silently loses. This also wins inside
 * the 992 breakpoint, which is why there is no override down there. */
#homepage-v2-main-cont #hv2-hero {
    margin-bottom: 0;
}

#hv2-hero .hv2-hero-copy h1 {
    font-size: 3.6rem;
    line-height: 4rem;
    margin-bottom: 15px;
}

#hv2-hero .hv2-hero-copy p {
    font-size: 1.8rem;
    line-height: 2.6rem;
    margin-bottom: 8px;
}

/* The promise line — a notch under the headline, and the only hero copy
 * carrying weight, so the supporting lines beneath it stay quiet. */
#hv2-hero .hv2-hero-copy .hv2-hero-subhead {
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 600;
    margin-bottom: 18px;
}

/* The supporting lines read as one block; the air goes before the buttons.
 * The last line is the sign-off — "Zero prep. Just press play." — so it gets
 * the weight that hands the reader over to the CTAs. */
#hv2-hero .hv2-hero-copy p:last-of-type {
    font-weight: 700;
    margin-bottom: 20px;
}

#hv2-hero .hv2-hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Hero artwork — pencilbox fill animation.
 *
 * Ported from the legacy splash rig (.box-ani-cont, css/layout.css:1173).
 * That container was a fixed 299x370 with every piece positioned in
 * percentages; keeping the same percentages against an aspect-ratio box
 * makes the whole illustration fluid instead of fixed.
 *
 * Pieces render in final position so the art is correct with no JS.
 * Stacking order is what sells the effect: box back (10) < supplies
 * (20-70) < shadow (99) < box front (100). */

#hv2-hero .hv2-hero-art {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 299 / 370;
    margin: 30px auto 0;
    /* Supplies fall in from above; let them overshoot the box vertically. */
    overflow: visible;
}

#hv2-hero .hv2-hero-art img {
    position: absolute;
    display: block;
    height: auto;
}

#hv2-pb-top          { top: 38.5%; left: 7%;    width: 79%;    z-index: 10; }
#hv2-pb-scissors     { top: 11%;   left: 60%;   width: 39%;    z-index: 20; }
#hv2-pb-pencil-brown { top: 21%;   left: 53.5%; width: 13%;    z-index: 30; }
#hv2-pb-pencil-yellow{ top: 4%;    left: 42%;   width: 12.75%; z-index: 40; }
#hv2-pb-pen-green    { top: 2%;    left: 28.5%; width: 16%;    z-index: 50; }
#hv2-pb-brush-blue   { top: 0;     left: 9.5%;  width: 27.5%;  z-index: 60; }
#hv2-pb-brush-red    { top: 5.25%; left: 0;     width: 34.5%;  z-index: 70; }
#hv2-pb-shadow       { top: 65%;   left: 8%;    width: 77%;    z-index: 99; }
#hv2-pb-bottom       { top: 40%;   left: 7%;    width: 79%;    z-index: 100; }



/***** 2. Sample video *****/

/* Card + framing follow #cl-video in campaign-landing.css so the two pages
 * read as the same system. The colour wash on .vid-cont is ACF-driven here
 * rather than hardcoded, and .videoWrapper is the shared 16:9 helper from
 * css/layout.css. */

#hv2-video .vid-cont {
    padding: 8px;
    border-radius: 5px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

/* The player leads the section; the headline and its paragraph sit directly
 * underneath. Still an h2 so the document outline survives, but deliberately
 * styled as a statement rather than a section heading. */
#hv2-video .hv2-video-point {
    font-size: 2.5rem;
    line-height: 3.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* End card — a scrim over the player carrying the CTA, revealed when the
 * video finishes.
 *
 * .videoWrapper (css/layout.css) is the positioned ancestor: it is
 * position:relative with padding-bottom for the 16:9 ratio, and absolutely
 * positioned children resolve against its padding box, so inset:0 covers the
 * full frame rather than the zero-height content box.
 *
 * Hidden with visibility rather than display so it can fade, and so the button
 * stays out of the tab order and the accessibility tree while inert. */
#hv2-video .hv2-video-cta {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Dark enough to sit the button on, and to knock back Vimeo's own end
     * screen of related-video thumbnails underneath. */
    background-color: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-out, visibility .3s;
}

#hv2-video .hv2-video-cta.is-visible {
    opacity: 1;
    visibility: visible;
}

/* 25% larger than a standard .btn-default. It sits alone on a dark scrim with
 * nothing competing, so it can carry the extra weight. Scaled as a whole —
 * type, padding and radius together — rather than just the font, which would
 * leave a big label in a button sized for a small one. */
#hv2-video .hv2-video-cta .btn-default {
    font-size: 1.9rem;
    line-height: 2.5rem;
    padding: 19px 38px;
    border-radius: 38px;
}

/* Supporting copy under that headline — body scale, so the headline keeps
 * the section's voice and this reads as the detail behind it. */
#hv2-video .video-description {
    font-size: 1.8rem;
    line-height: 2.6rem;
}

#hv2-video .video-description p:last-child {
    margin-bottom: 0;
}

/* No room for the origami until tablet. */
#hv2-video .origami-fig {
    display: none;
}



/***** 3. Proof strip *****/

/* Checklist throughout: one column on mobile, two from 576px up.
 * Grid rather than flex wrapping — with two fixed columns the six facts fall
 * into three even rows, and the columns stay aligned regardless of how many
 * lines any individual fact runs to.
 *
 * The marker is two stacked CSS backgrounds rather than twelve <img> tags:
 * ::before draws the empty box, ::after the green check sitting over it. Both
 * are pure decoration, so neither belongs in the markup or the accessibility
 * tree. js/homepage-v2.js ticks them once the section is fully in view. */

#hv2-proof .hv2-proof-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#hv2-proof .hv2-proof-fact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 600;
}

/* The fact text, held in a single flex item. Facts may carry <strong>, and an
 * unwrapped one would be split out as its own item — picking up the 12px gap
 * and wrapping on its own. min-width:0 lets a long fact wrap rather than
 * forcing the row past its column. */
#hv2-proof .hv2-proof-fact > span {
    flex: 1 1 auto;
    min-width: 0;
}

/* Empty box — always drawn, in flow, sets the marker column width. */
#hv2-proof .hv2-proof-fact::before {
    content: "";
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    background: url('../../img/hand-drawn-box-black.svg') no-repeat center / contain;
}

/* Green check — overlaid on the box, and deliberately a shade larger so it
 * overhangs the edges the way a hand-drawn tick would. */
#hv2-proof .hv2-proof-fact::after {
    content: "";
    position: absolute;
    left: 3.5px;
    /* Centred on the row like the box, then lifted: the tick's mass sits high
     * in its own viewBox, so dead-centre reads as hanging low on the box.
     * Anchoring to 50% rather than a fixed top keeps it on the box when a
     * fact wraps and the box re-centres against two lines. */
    top: 50%;
    /* translateY pulls the check back by half its own height so 50% centres it
     * rather than putting its top edge on the midline; margin-top then applies
     * the lift. Kept here in the base rule, not in the animation states — the
     * draw animates clip-path only and must not own the positioning. */
    transform: translateY(-50%);
    margin-top: -8px;
    width: 30px;
    height: 31px;
    background: url('../../img/hand-drawn-green-checkmark.svg') no-repeat center / contain;
    pointer-events: none;
}

/* Everything below is the tick-on-scroll behaviour.
 *
 * The .hv2-js class is added by JS at runtime, so the hidden start state only
 * ever applies when there is JS to undo it. With no JS, no IntersectionObserver
 * support, or the script failing to load, the boxes render already checked —
 * which is the truthful state, since every fact is true regardless. */
/* Hidden by clipping rather than by opacity — the check is not faded in, it
 * is drawn, so it must be able to appear one slice at a time. A full inset
 * from the right clips it away entirely. */
#hv2-proof.hv2-js .hv2-proof-fact::after {
    clip-path: inset(0 100% 0 0);
}

#hv2-proof.hv2-js.is-checked .hv2-proof-fact::after {
    animation: hv2-draw-check .5s forwards;
}

/* Drawn the way a hand draws it: left to right, in two strokes.
 *
 * A checkmark's tail descends left-to-right into the vertex, then the long
 * ascender flicks up to the right — so a horizontal wipe follows the real
 * stroke order. The split at 55% is the vertex: the tail takes most of the
 * time for a third of the width (deliberate), and the ascender covers the
 * remaining two thirds in what is left (a flick). Per-keyframe easing sells
 * it — the pen slows into the corner and accelerates out of it.
 *
 * This is a wipe, not a stroke animation: the source SVG is a filled path,
 * not a stroked one, so stroke-dasharray has nothing to work with. */
@keyframes hv2-draw-check {
    0% {
        clip-path: inset(0 100% 0 0);
        animation-timing-function: ease-in;
    }
    55% {
        clip-path: inset(0 65% 0 0);
        animation-timing-function: ease-out;
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

/* Tick one after another rather than all six at once. */
#hv2-proof.hv2-js.is-checked .hv2-proof-fact:nth-child(1)::after { animation-delay: 0s; }
#hv2-proof.hv2-js.is-checked .hv2-proof-fact:nth-child(2)::after { animation-delay: .13s; }
#hv2-proof.hv2-js.is-checked .hv2-proof-fact:nth-child(3)::after { animation-delay: .26s; }
#hv2-proof.hv2-js.is-checked .hv2-proof-fact:nth-child(4)::after { animation-delay: .39s; }
#hv2-proof.hv2-js.is-checked .hv2-proof-fact:nth-child(5)::after { animation-delay: .52s; }
#hv2-proof.hv2-js.is-checked .hv2-proof-fact:nth-child(6)::after { animation-delay: .65s; }

@media (prefers-reduced-motion: reduce) {
    #hv2-proof.hv2-js .hv2-proof-fact::after {
        clip-path: none;
        animation: none;
    }
}

/* Sections with no visible title still get a heading for the document
 * outline. Page-scoped: the proof strip and more-to-know both use it. */
#homepage-v2-main-cont .hv2-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}




/***** 4. Testimonial *****/

/* Follows #cl-quote in campaign-landing.css. Typographic quote marks carry it
 * on small screens; from 768px the drawn quote graphic takes over and the
 * punctuation marks are dropped so the two never double up. */

#hv2-testimonial .hv2-quote-cont {
    /* Campaign-landing absolutely positions .icon-quote without ever giving
     * it a positioned ancestor, so it anchors to the page instead of the
     * quote. This is the containing block it needs. */
    position: relative;
}

#hv2-testimonial .icon-quote {
    display: none;
}

#hv2-testimonial .testimonial {
    font-size: 2.8rem;
    line-height: 3.6rem;
    font-weight: 300;
    font-style: italic;
}

#hv2-testimonial .testimonial blockquote p::before { content: "\201C"; }
#hv2-testimonial .testimonial blockquote p::after  { content: "\201D"; }

#hv2-testimonial .testimonial figcaption {
    margin-top: 15px;
    font-size: 1.7rem;
    line-height: 2.2rem;
    font-style: normal;
}

#hv2-testimonial .testimonial figcaption cite {
    font-style: normal;
    font-weight: 600;
}

#hv2-testimonial .testimonial figcaption cite::before {
    content: "\2014";
}

/* Role and school sit back from the name so the person reads first. */
#hv2-testimonial .testimonial figcaption .detail {
    font-weight: 400;
}



/***** 5. Two ways to buy *****/

/* Stacked on mobile, side by side from 768px. Equal-height cards with the CTA
 * pinned to the base so both buttons line up regardless of copy length —
 * the schools card runs noticeably longer than the teachers one. */

#hv2-plans .hv2-plans-title {
    font-size: 2.6rem;
    line-height: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

#hv2-plans .hv2-plans-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

#hv2-plans .hv2-plan {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

#hv2-plans .hv2-plan h3 {
    font-size: 2.2rem;
    line-height: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

#hv2-plans .hv2-plan p {
    font-size: 1.7rem;
    line-height: 2.3rem;
    margin-bottom: 20px;
}

/* auto pushes the button down: both cards' CTAs sit on the same line. */
#hv2-plans .hv2-plan .btn-default {
    margin-top: auto;
    align-self: flex-start;
}


/***** 6. More to know *****/

/* Ported from #cl-more-to-know in campaign-landing.css. Inner class names are
 * kept identical on purpose: if this ever becomes a shared component, lifting
 * it out is a matter of dropping the #hv2-more-to-know scope, not a rewrite.
 *
 * Stacked cards on mobile, a row of equal-height cards at 992px+. */

#hv2-more-to-know .paper-airplane {
    display: block;
    width: 90%;
    margin: -40px auto 0;
}

/* Flight.
 *
 * Two things run together, and the combination is what sells it:
 *
 *   transform  the whole graphic travels right to left, settling at its
 *              resting position.
 *   clip-path  reveals left to right within the graphic. The plane sits at
 *              the far left of the artwork, so it is showing from the first
 *              frame and the trail unspools behind it.
 *
 * Net effect: the plane leads the movement leftward and lays its own wake as
 * it goes. Matched duration and easing on both keeps the plane's nose at the
 * leading edge the whole way.
 *
 * Clip rather than opacity for the same reason as the checkmarks — this is a
 * thing arriving, not a thing fading up. Same .hv2-js contract too: with no
 * JS the plane is simply there, already landed. */
#hv2-more-to-know.hv2-js .paper-airplane {
    /* Clipped back to the left edge: the reveal grows rightward from here. */
    clip-path: inset(0 100% 0 0);
    /* Percentage of the graphic's own width, so entry distance scales with
     * the viewport instead of being a fixed pixel gesture. */
    transform: translateX(45%);
}

#hv2-more-to-know.hv2-js.is-flown .paper-airplane {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    /* Long and decelerating — a glide settling, not a swipe. */
    transition: clip-path 1.6s cubic-bezier(.22, .61, .36, 1),
                transform 1.6s cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
    #hv2-more-to-know.hv2-js .paper-airplane {
        clip-path: none;
        transform: none;
        transition: none;
    }
}

#hv2-more-to-know .mtk-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#hv2-more-to-know .mtk-single {
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
    text-decoration: none;
    color: #000;
    max-width: 500px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all .25s;
}

#hv2-more-to-know .mtk-single h3 {
    font-size: 2.2rem;
    line-height: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

#hv2-more-to-know .mtk-single p {
    font-size: 1.7rem;
    line-height: 2.1rem;
    font-weight: 400;
    margin-bottom: 15px;
}

#hv2-more-to-know .cta-custom-arrow {
    font-size: 1.7rem;
    line-height: 2.1rem;
    font-weight: 700;
    color: #000;
    height: 50px;
    overflow: visible;
}

#hv2-more-to-know .cta-custom-arrow .arrow {
    position: relative;
    display: inline-block;
    transition: all .25s;
}

/* Each arrow is a different drawing, so each needs its own optical sizing. */
#hv2-more-to-know .cta-custom-arrow .thick-arrow img {
    width: 50px;
    margin-left: 15px;
}

#hv2-more-to-know .cta-custom-arrow .small-arrow img {
    width: 70px;
    margin-left: 15px;
    transform: rotate(10deg);
}

#hv2-more-to-know .cta-custom-arrow .curly-arrow img {
    position: relative;
    top: -8px;
    left: 0;
    width: 70px;
    margin-left: 15px;
    transform: rotate(3deg);
}


@media (min-width: 576px) {

    #hv2-hero .hv2-hero-ctas {
        flex-direction: row;
        justify-content: center;
    }

    #hv2-hero .hv2-hero-art {
        max-width: 340px;
    }

    /* Two up — still a checklist, just less vertical run. */
    #hv2-proof .hv2-proof-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 30px;
    }
}


@media (min-width: 768px) {

    #homepage-v2-main-cont {
        margin-top: 130px;
    }

    #hv2-hero .hv2-hero-copy h1 {
        font-size: 4.4rem;
        line-height: 4.8rem;
    }

    #hv2-hero .hv2-hero-copy p {
        font-size: 2rem;
        line-height: 2.8rem;
        max-width: 60ch;
        margin-left: auto;
        margin-right: auto;
    }

    #hv2-hero .hv2-hero-copy .hv2-hero-subhead {
        font-size: 2.4rem;
        line-height: 3.2rem;
    }

    #hv2-video {
        display: flex;
        position: relative;
        justify-content: center;
    }

    #hv2-video .hv2-video-cont {
        width: 80%;
    }

    #hv2-video .hv2-video-point {
        font-size: 3rem;
        line-height: 3.8rem;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Centred with the headline, and held to a comfortable measure — the
     * card is 80% of a wide container, far wider than this reads well at. */
    #hv2-video .video-description {
        font-size: 2rem;
        line-height: 2.8rem;
        max-width: 68ch;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    #hv2-video .origami-fig {
        display: block;
        position: absolute;
        width: 150px;
        top: -50px;
        left: -30px;
    }

    #hv2-video .origami-fig img {
        width: 100%;
        height: auto;
    }

    #hv2-origami-butterfly { transform: rotate(-25deg); }
    #hv2-origami-whale     { transform: rotate(-14deg) scaleX(-1); }
    #hv2-origami-fish      { transform: rotate(-12deg); }
    #hv2-origami-frog      { transform: rotate(-8deg); }
    #hv2-origami-boat      { transform: rotate(-10deg); }
    #hv2-origami-turtle    { transform: rotate(-15deg); }

    #hv2-testimonial .hv2-quote-cont {
        display: flex;
        justify-content: center;
    }

    #hv2-testimonial .icon-quote {
        display: block;
        position: absolute;
        top: -23px;
        left: -12px;
        width: 70px;
    }

    #hv2-testimonial .testimonial {
        width: 80%;
        text-align: center;
    }

    /* The graphic is the quote mark now — drop the typographic ones. */
    #hv2-testimonial .testimonial blockquote p::before,
    #hv2-testimonial .testimonial blockquote p::after {
        display: none;
    }

    #hv2-plans .hv2-plans-cont {
        flex-direction: row;
        align-items: stretch;
    }

    #hv2-plans .hv2-plan {
        flex: 1;
        max-width: none;
    }
}


@media (min-width: 992px) {

    #homepage-v2-main-cont {
        margin-top: 150px;
    }

    #homepage-v2-main-cont section {
        margin-bottom: 90px;
    }

    /* Copy left, artwork right */
    #hv2-hero {
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
    }

    #hv2-hero .hv2-hero-copy {
        flex: 1 1 55%;
    }

    #hv2-hero .hv2-hero-copy h1 {
        font-size: 5.2rem;
        line-height: 5.6rem;
    }

    #hv2-hero .hv2-hero-copy p {
        margin-left: 0;
        margin-right: 0;
    }

    #hv2-hero .hv2-hero-ctas {
        justify-content: flex-start;
    }

    #hv2-hero .hv2-hero-art {
        flex: 1 1 45%;
        margin-top: 0;
        max-width: 100%;
    }

    /* Still two columns — just more air between them and a size bump now
     * that each fact has half a wide container to itself. */
    #hv2-proof .hv2-proof-strip {
        gap: 18px 50px;
    }

    #hv2-proof .hv2-proof-fact {
        font-size: 2rem;
        line-height: 2.6rem;
    }

    #hv2-proof .hv2-proof-fact::before {
        width: 32px;
        height: 32px;
    }

    #hv2-proof .hv2-proof-fact::after {
        left: 3.5px;
        width: 34.5px;
        height: 36px;
    }

    /* Row of equal-height cards, pulled up so they tuck under the airplane. */
    #hv2-more-to-know .mtk-cont {
        flex-direction: unset;
        align-items: stretch;
        margin-top: -60px;
    }

    #hv2-more-to-know .mtk-single {
        display: flex;
        flex-direction: column;
        flex: 1;
        margin: 0 10px;
    }

    /* margin-top:auto pins the CTA to the card's base, so the arrows line up
     * across cards whatever the copy length. */
    #hv2-more-to-know .cta-custom-arrow {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    #hv2-more-to-know .cta-custom-arrow span {
        display: block;
    }

    #hv2-more-to-know .cta-custom-arrow span.cta {
        width: fit-content;
        max-width: 60%;
    }

    #hv2-more-to-know .cta-custom-arrow span.arrow {
        margin-left: 5px;
    }

    #hv2-more-to-know .cta-custom-arrow .curly-arrow img {
        width: 140px;
    }

    #hv2-testimonial .icon-quote {
        left: 10px;
        top: -30px;
        width: 75px;
    }

    /* layout.css re-sizes .btn-default from 992 up; rescale from those values. */
    #hv2-video .hv2-video-cta .btn-default {
        font-size: 2.5rem;
        line-height: 3.8rem;
        padding: 10px 25px;
    }

    #hv2-testimonial .testimonial blockquote p {
        font-size: 3.6rem;
        line-height: 4.6rem;
    }
}


@media (min-width: 1200px) {

    #hv2-hero {
        gap: 40px;
    }

    #hv2-hero .hv2-hero-copy h1 {
        font-size: 6rem;
        line-height: 6.4rem;
    }

    #hv2-video .vid-cont {
        padding: 15px;
        border-radius: 10px;
        box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.25);
    }

    #hv2-video .hv2-video-point {
        font-size: 3.4rem;
        line-height: 4.2rem;
    }

    #hv2-video .origami-fig {
        width: 200px;
        top: -70px;
        left: -60px;
    }

    #hv2-more-to-know .mtk-single h3 {
        font-size: 2.6rem;
        line-height: 3.2rem;
        margin-bottom: 20px;
    }

    #hv2-more-to-know .mtk-single p {
        font-size: 1.9rem;
        line-height: 2.4rem;
        margin-bottom: 20px;
    }

    #hv2-more-to-know .cta-custom-arrow {
        font-size: 1.9rem;
        line-height: 2.4rem;
    }

    #hv2-testimonial .testimonial blockquote p {
        font-size: 4.2rem;
        line-height: 5.4rem;
    }

    #hv2-testimonial .testimonial figcaption {
        font-size: 1.9rem;
    }

    #hv2-testimonial .icon-quote {
        left: 3%;
    }

    #hv2-plans .hv2-plans-title {
        font-size: 3.4rem;
        line-height: 4rem;
        margin-bottom: 30px;
    }

    #hv2-plans .hv2-plan h3 {
        font-size: 2.6rem;
        line-height: 3.2rem;
    }

    #hv2-plans .hv2-plan p {
        font-size: 1.9rem;
        line-height: 2.6rem;
    }
}


@media (min-width: 1400px) {

    /* Three across at the widest container — six facts land as two even rows. */
    #hv2-proof .hv2-proof-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 45px;
    }
}


@media (hover: hover) {

    #homepage-v2-main-cont .btn-default,
    #homepage-v2-main-cont .btn-text {
        transition: all .25s;
    }

    #homepage-v2-main-cont .btn-default:hover {
        transform: scale(1.1);
    }

    #homepage-v2-main-cont .btn-text:hover {
        opacity: .7;
    }

    #hv2-more-to-know .mtk-single:hover {
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
        transform: scale(.98);
    }

    #hv2-more-to-know .mtk-single:hover .cta-custom-arrow .arrow {
        margin-left: 30px;
    }
}
