/* Home page styles — V1/V2/V3 share this file. Sections are prefixed hv1- / hv2- / hv3-. */

/* HOME V1 ================================================================== */

.hv1-hero { position: relative; background: #000; color: #fff; padding: 64px 60px 80px; border-bottom: 4px solid var(--c-green); overflow: hidden; }

/* Background video — fills the hero, sits behind everything via z-index */
.hv1-hero__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* clicks pass through to content above */
}
/* Dark gradient overlay so the title is readable over any frame */
.hv1-hero__veil {
    position: absolute; inset: 0;
    background:
        linear-gradient( 90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.35) 100% ),
        linear-gradient( 180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.20) 50%, rgba(0,0,0,0.70) 100% );
    z-index: 1;
    pointer-events: none;
}
/* Everything inside the hero needs to sit above the video + veil */
.hv1-hero > *:not(.hv1-hero__video):not(.hv1-hero__veil) { position: relative; z-index: 2; }

.hv1-hero__ticker { position: absolute; top: 24px; right: 60px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; color: var(--c-green); text-transform: uppercase; z-index: 3; }
.hv1-hero__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.hv1-hero__title {
    margin-top: 28px;
    font-family: var(--font-hero); font-size: clamp(64px, 9.5vw, 120px);
    line-height: 1.0;  /* roomy enough that the green highlight spans don't clip into adjacent lines */
    letter-spacing: -2px; text-transform: uppercase;
}
.hv1-hero__title .hv2-highlight { display: inline-block; line-height: 1.0; padding: 2px 12px 6px; }
.hv1-hero__lede  { margin-top: 40px; font-size: 18px; line-height: 1.55; color: var(--c-text-on-dark-2); max-width: 520px; }
.hv1-hero__ctas  { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.hv1-hero__trust { margin: 48px 0 0; padding: 0; list-style: none; display: flex; gap: 28px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; color: var(--c-text-on-dark-2); text-transform: uppercase; }

.hv1-hero__phones { position: relative; height: 540px; display: flex; justify-content: center; align-items: center; }
.hv1-phone {
    position: absolute;
    border: var(--border-w) solid #000;
    border-radius: 38px; padding: 9px;
    background: #000;
    box-shadow: var(--shadow-6);
}
.hv1-phone__img { aspect-ratio: 9 / 19.5; border-radius: 30px; border: 0; overflow: hidden; background-color: #1a1a1a; }
.hv1-phone--left   { left: 0; top: 30px; transform: rotate(-6deg); width: 200px; }
.hv1-phone--center { z-index: 2; width: 240px; }
.hv1-phone--right  { right: 0; top: 30px; transform: rotate(6deg); width: 200px; }

.hv1-marquee { background: var(--c-green); color: #000; padding: 20px 0; border-bottom: var(--border-w) solid #000; overflow: hidden; }
.hv1-marquee__track {
    display: flex; gap: 40px; flex-shrink: 0; align-items: center;
    font-family: var(--font-hero); font-size: 28px;
    letter-spacing: 1px; text-transform: uppercase; white-space: nowrap;
    animation: cg3-marquee 18s linear infinite;
}
.hv1-marquee__sep {
    display: inline-block;
    width: 32px; height: 32px;
    flex: 0 0 32px;
    background: url("../img/biceps.svg?v=3") center / contain no-repeat;
}
@keyframes cg3-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.3333%); }
}

.hv1-diff { background: #fff; padding: 100px 60px 80px; }
.hv1-diff__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.hv1-diff__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv1-diff__lede { max-width: 380px; font-size: 16px; line-height: 1.6; color: #444; }
.hv1-diff__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hv1-diff__card { background: #fff; color: #000; border: var(--border-w) solid #000; box-shadow: var(--shadow-6); padding: 30px; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; }
.hv1-diff__card.is-green { background: var(--c-green); }
.hv1-diff__n { font-family: var(--font-mono); font-size: 13px; letter-spacing: 2px; }
.hv1-diff__h { font-family: var(--font-hero); font-size: 40px; line-height: 0.95; text-transform: uppercase; }
.hv1-diff__t { margin-top: 14px; font-size: 13px; line-height: 1.6; }

.hv1-app { background: #000; color: #fff; padding: 100px 60px; }
.hv1-app__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.hv1-app__phones { position: relative; height: 600px; }
.hv1-app__phones .hv1-phone--left  { left: 20px; top: 30px; transform: rotate(-4deg); width: 230px; }
.hv1-app__phones .hv1-phone--right { right: 30px; bottom: 20px; top: auto; transform: rotate(4deg); width: 260px; z-index: 2; }
.hv1-app__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 7.5vw, 92px); line-height: 0.9; text-transform: uppercase; letter-spacing: -1px; }
.hv1-app__feats { margin: 36px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hv1-app__feats li { border-left: 3px solid var(--c-green); padding-left: 16px; }
.hv1-app__feats h3 { font-family: var(--font-hero); font-size: 28px; text-transform: uppercase; letter-spacing: 0.5px; }
.hv1-app__feats p  { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--c-text-on-dark-2); }
.hv1-app__ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.hv1-trans { background: #fff; padding: 100px 60px 80px; }
.hv1-trans__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.hv1-trans__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv1-trans__meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; color: #666; text-transform: uppercase; }
.hv1-trans__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.hv1-trans__tile { border: var(--border-w) solid #000; box-shadow: var(--shadow-4); background: #fff; }
.hv1-trans__photo { aspect-ratio: 3 / 4; border: 0; }
.hv1-trans__tile footer { padding: 10px 12px; border-top: var(--border-w) solid #000; background: #fff; display: flex; justify-content: space-between; align-items: center; }
.hv1-trans__tile footer.is-green { background: var(--c-green); }
.hv1-trans__name { font-family: var(--font-display); font-weight: 800; font-size: 13px; }
.hv1-trans__cta { margin-top: 36px; text-align: center; }

.hv1-plans { background: var(--c-green); color: #000; padding: 100px 60px; border-top: var(--border-w) solid #000; border-bottom: var(--border-w) solid #000; }
.hv1-plans__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.hv1-plans__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv1-plans__lede { max-width: 360px; font-size: 16px; line-height: 1.6; }
.hv1-plans__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.hv1-plan { position: relative; padding: 40px; border: var(--border-w) solid #000; box-shadow: 8px 8px 0 0 #000; background: #fff; color: #000; display: flex; flex-direction: column; }
.hv1-plan.is-best { background: #000; color: #fff; }
.hv1-plan__badge { position: absolute; top: -16px; right: 28px; }
.hv1-plan__name { font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.hv1-plan__price { margin-top: 16px; display: flex; align-items: baseline; gap: 6px; }
.hv1-plan__amt { font-family: var(--font-hero); font-size: clamp(72px, 9vw, 120px); line-height: 0.85; letter-spacing: -2px; }
.hv1-plan__per { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: #666; }
.hv1-plan.is-best .hv1-plan__per { color: var(--c-text-on-dark-2); }
.hv1-plan__sub { margin-top: 12px; font-size: 14px; line-height: 1.6; color: #444; }
.hv1-plan.is-best .hv1-plan__sub { color: var(--c-text-on-dark-2); }
.hv1-plan__perks { margin: 28px 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hv1-plan__perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.hv1-plan__check { width: 18px; height: 18px; background: var(--c-green); color: #000; border: var(--border-w) solid #000; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 12px; flex: 0 0 18px; }
.hv1-plan > .cg3-btn { margin-top: auto; }

.hv1-final {
    background: #000; color: #fff; padding: 120px 60px;
    text-align: center !important;
    display: flex; flex-direction: column; align-items: center;
}
.hv1-final > .cg3-tag { display: inline-block; }
.hv1-final__title {
    margin: 28px auto 48px;       /* bottom gap so the green slab can't bleed into the lede */
    font-family: var(--font-hero); font-size: clamp(72px, 12vw, 144px);
    line-height: 1.0;             /* roomy enough that the highlight rectangle ends with the glyphs */
    letter-spacing: -2px; text-transform: uppercase;
    text-align: center !important;
}
.hv1-final__title .hv2-highlight {
    display: inline-block; line-height: 1.0;
    padding: 4px 14px 10px;       /* matches the in-text glyph footprint instead of overflowing */
}
.hv1-final__lede {
    margin: 0 auto;
    max-width: 600px;
    font-size: 18px; line-height: 1.55;
    color: var(--c-text-on-dark-2);
    text-align: center !important;
}
.hv1-final__ctas { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* HOME V3 — magazine editorial ============================================ */

.hv3-hero {
    position: relative; height: 720px; overflow: hidden;
    background: #0c0c0c repeating-linear-gradient(135deg, #0c0c0c 0 14px, #1a1a17 14px 28px);
    color: #fff;
}
.hv3-hero.has-image { background-size: cover; background-position: center; }
.hv3-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.85) 100%); }
.hv3-hero__top, .hv3-hero__bottom { position: absolute; left: 60px; right: 60px; z-index: 2; }
.hv3-hero__top { top: 28px; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.hv3-hero__live { color: var(--c-green); }
.hv3-hero__bottom { bottom: 60px; }
.hv3-hero__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(96px, 16vw, 220px); line-height: 0.82; letter-spacing: -3px; text-transform: uppercase; }
.hv3-hero__highlight { display: inline-block; position: relative; padding: 0 12px; background: var(--c-green); color: #000; }
.hv3-hero__row { margin-top: 28px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.hv3-hero__lede { max-width: 460px; font-size: 18px; line-height: 1.5; color: #e5e5e0; }
.hv3-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hv3-ribbon {
    background: #000; color: #fff;
    padding: 24px 60px;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
    align-items: center;
    border-bottom: 4px solid var(--c-green);
}
.hv3-ribbon__cell { display: flex; align-items: center; gap: 14px; padding-right: 16px; border-right: 1px solid #2a2a25; }
.hv3-ribbon__cell:last-child { border-right: 0; }
.hv3-ribbon__badge { background: var(--c-green); color: #000; padding: 6px 10px; font-family: var(--font-display); font-weight: 900; font-size: 14px; border: var(--border-w) solid #000; }
.hv3-ribbon__t { font-family: var(--font-body); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }

.hv3-issues { background: var(--c-paper); padding: 100px 60px; border-top: var(--border-w) solid #000; }
.hv3-issues__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.hv3-issues__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv3-issues__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hv3-issues__meta span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; color: #666; text-transform: uppercase; }
.hv3-issues__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 16px; }
.hv3-issue { position: relative; overflow: hidden; border: var(--border-w) solid #000; box-shadow: var(--shadow-4); background: #1c1c1a; min-height: 360px; color: inherit; display: flex; flex-direction: column; }
.hv3-issue.is-feature { background: #fff; min-height: 440px; }
.hv3-issue__photo { flex: 1; border: 0; min-height: 200px; position: relative; }
.hv3-issue__badge { position: absolute; top: 14px; left: 14px; }
.hv3-issue footer { padding: 18px; border-top: var(--border-w) solid #000; background: #fff; color: #000; }
.hv3-issue.is-feature footer { background: var(--c-green); }
.hv3-issue__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; }
.hv3-issue__title-h { display: block; margin-top: 4px; font-family: var(--font-hero); font-size: 24px; text-transform: uppercase; line-height: 0.95; }
.hv3-issue.is-feature .hv3-issue__title-h { font-size: 32px; }

.hv3-poster { background: var(--c-bg); color: #fff; padding: 64px 60px; border-top: var(--border-w) solid #000; position: relative; overflow: hidden; }
.hv3-poster__glow { position: absolute; top: -40px; right: -40px; width: 700px; height: 700px; background: rgba(97,230,16,0.08); border-radius: 50%; filter: blur(80px); }
.hv3-poster__grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; position: relative; }
.hv3-poster__title { margin-top: 20px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.88; letter-spacing: -2px; text-transform: uppercase; }
.hv3-poster__accent { color: var(--c-green); }
.hv3-poster__lede   { margin-top: 24px; font-size: 17px; line-height: 1.6; color: var(--c-text-on-dark-2); max-width: 460px; }
.hv3-poster__ctas   { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hv3-poster__note   { margin-top: 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; color: var(--c-text-on-dark-2); text-transform: uppercase; }
.hv3-poster__phones { position: relative; height: 460px; }
.hv3-poster__phone  { position: absolute; border: var(--border-w) solid #000; border-radius: 38px; padding: 9px; background: #000; box-shadow: var(--shadow-6); }
.hv3-poster__phone-img { aspect-ratio: 9 / 19.5; border-radius: 30px; border: 0; overflow: hidden; background-color: #1a1a1a; }
.hv3-poster__phone--left   { left: 0; top: 30px; transform: rotate(-5deg); width: 180px; }
.hv3-poster__phone--right  { right: 0; top: 0; transform: rotate(4deg); width: 200px; z-index: 2; }
.hv3-poster__phone--bottom { left: 60px; bottom: 0; transform: rotate(-2deg); width: 170px; z-index: 3; }

.hv3-moves { background: #fff; padding: 100px 60px; }
.hv3-moves__head { max-width: 700px; margin-bottom: 48px; }
.hv3-moves__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv3-moves__list { margin: 0; padding: 0; list-style: none; }
.hv3-move { display: grid; grid-template-columns: 120px 1.2fr 1.8fr auto; gap: 32px; align-items: center; padding: 32px 0; border-top: var(--border-w) solid #000; }
.hv3-move:last-child { border-bottom: var(--border-w) solid #000; }
.hv3-move__n { font-family: var(--font-mono); font-size: 16px; letter-spacing: 2px; color: #666; }
.hv3-move__sub { font-family: var(--font-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #888; }
.hv3-move__h { margin-top: 4px; font-family: var(--font-hero); font-size: clamp(40px, 5vw, 72px); text-transform: uppercase; line-height: 0.95; }
.hv3-move__t { font-size: 16px; line-height: 1.6; color: #333; }
.hv3-move__arrow {
    width: 56px; height: 56px; background: var(--c-green); border: var(--border-w) solid #000;
    box-shadow: var(--shadow-4);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 900; font-size: 28px; color: #000;
}

.hv3-wall { background: var(--c-paper); padding: 100px 60px; border-top: var(--border-w) solid #000; }
.hv3-wall__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.hv3-wall__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv3-wall__tools { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hv3-wall__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hv3-wall__tile { position: relative; border: var(--border-w) solid #000; box-shadow: var(--shadow-4); background: #1c1c1a; }
.hv3-wall__tile.is-green { background: var(--c-green); }
.hv3-wall__photo { aspect-ratio: 3 / 4; border: 0; }
.hv3-wall__tile footer { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; border-top: var(--border-w) solid #000; background: #fff; color: #000; display: flex; justify-content: space-between; align-items: baseline; }
.hv3-wall__name { display: block; font-family: var(--font-display); font-weight: 900; font-size: 18px; line-height: 1; }
.hv3-wall__t    { display: block; margin-top: 4px; font-size: 12px; color: #444; }
.hv3-wall__mo   { font-family: var(--font-mono); font-size: 10px; color: #888; }

.hv3-pricing { background: var(--c-green); color: #000; padding: 100px 60px; border-top: var(--border-w) solid #000; border-bottom: var(--border-w) solid #000; }
.hv3-pricing__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: flex-start; }
.hv3-pricing__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(64px, 9vw, 108px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv3-pricing__lede { margin-top: 16px; font-size: 16px; line-height: 1.6; max-width: 380px; }
.hv3-pricing__card { display: grid; grid-template-columns: 1fr 1fr; border: var(--border-w) solid #000; box-shadow: var(--shadow-6); background: #fff; color: #000; }
.hv3-pricing__plan { padding: 32px; }
.hv3-pricing__plan.is-best { background: #000; color: #fff; border-left: var(--border-w) solid #000; }
.hv3-pricing__plan header { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.hv3-pricing__price { margin-top: 16px; font-family: var(--font-hero); font-size: clamp(56px, 7vw, 96px); line-height: 0.85; letter-spacing: -1px; }
.hv3-pricing__price small { font-family: var(--font-body); font-size: 18px; font-weight: 700; opacity: 0.7; margin-left: 4px; }
.hv3-pricing__plan p { margin-top: 14px; font-size: 13px; }
.hv3-pricing__plan > .cg3-btn { margin-top: 24px; }
.hv3-pricing__feats { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.hv3-pricing__feats span { padding: 8px 12px; background: #000; color: #fff; font-family: var(--font-body); font-size: 12px; font-weight: 700; border: var(--border-w) solid #000; }

.hv3-fire { background: #000; color: #fff; padding: 100px 60px; }
.hv3-fire__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.hv3-fire__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv3-fire__lede { max-width: 360px; font-size: 16px; line-height: 1.55; color: var(--c-text-on-dark-2); }
.hv3-fire__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hv3-fire__tile { background: #000; color: #fff; border: var(--border-w) solid #fff; box-shadow: 5px 5px 0 0 #fff; position: relative; min-height: 240px; display: flex; flex-direction: column; }
.hv3-fire__tile.is-feature { background: var(--c-green); color: #000; border-color: var(--c-green); box-shadow: 5px 5px 0 0 var(--c-green); }
.hv3-fire__photo { height: 140px; border: 0; border-bottom: var(--border-w) solid #fff; flex-shrink: 0; }
.hv3-fire__tile.is-feature .hv3-fire__photo { border-bottom-color: #000; }
.hv3-fire__body { padding: 16px; }
.hv3-fire__tag { font-family: var(--font-body); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.hv3-fire__body h3 { margin-top: 6px; font-family: var(--font-display); font-weight: 900; font-size: 18px; line-height: 1.1; }
.hv3-fire__play { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: #000; color: var(--c-green); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 14px; }

.hv3-closer { background: var(--c-bg); color: #fff; padding: 120px 60px 100px; border-top: 4px solid var(--c-green); text-align: center !important; display: flex; flex-direction: column; align-items: center; }
.hv3-closer > .cg3-tag { display: inline-block; }
.hv3-closer__title { margin-top: 28px; font-family: var(--font-hero); font-size: clamp(80px, 12vw, 168px); line-height: 0.85; letter-spacing: -2.5px; text-transform: uppercase; text-align: center !important; }
.hv3-closer__lede  { margin: 28px auto 0; max-width: 540px; font-size: 18px; line-height: 1.55; color: var(--c-text-on-dark-2); text-align: center !important; }
.hv3-closer__ctas  { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1180px) {
    .hv1-hero, .hv1-diff, .hv1-app, .hv1-trans, .hv1-plans, .hv1-final,
    .hv3-ribbon, .hv3-issues, .hv3-poster, .hv3-moves, .hv3-wall, .hv3-pricing, .hv3-fire, .hv3-closer { padding-left: 36px; padding-right: 36px; }
    .hv3-hero__top, .hv3-hero__bottom { left: 36px; right: 36px; }
    .hv1-hero__ticker { right: 36px; }
}
@media (max-width: 1100px) {
    .hv1-hero__grid, .hv1-app__grid, .hv1-diff__grid, .hv1-plans__grid,
    .hv3-poster__grid, .hv3-pricing__grid { grid-template-columns: 1fr; gap: 40px; }
    .hv1-diff__grid { grid-template-columns: repeat(2, 1fr); }
    .hv1-trans__grid { grid-template-columns: repeat(3, 1fr); }
    .hv3-issues__grid { grid-template-columns: repeat(2, 1fr); }
    .hv3-ribbon { grid-template-columns: repeat(3, 1fr); }
    .hv3-wall__grid, .hv3-fire__grid { grid-template-columns: repeat(2, 1fr); }
    .hv3-move { grid-template-columns: 80px 1fr; }
    .hv3-move__t { grid-column: 1 / -1; }
    .hv3-move__arrow { display: none; }
    .hv1-hero__phones, .hv1-app__phones, .hv3-poster__phones { height: 400px; }
    .hv1-hero__title { font-size: clamp(56px, 10vw, 96px); }
    .hv3-hero { height: 600px; }
}
@media (max-width: 900px) {
    .hv1-hero, .hv1-diff, .hv1-app, .hv1-trans, .hv1-plans, .hv1-final,
    .hv3-ribbon, .hv3-issues, .hv3-poster, .hv3-moves, .hv3-wall, .hv3-pricing, .hv3-fire, .hv3-closer { padding: 56px 24px; }
    .hv3-hero__top, .hv3-hero__bottom { left: 24px; right: 24px; }
    .hv3-hero__bottom { bottom: 32px; }
    .hv1-trans__grid { grid-template-columns: repeat(2, 1fr); }
    .hv3-issues__grid { grid-template-columns: 1fr 1fr; }
    .hv3-ribbon { grid-template-columns: repeat(2, 1fr); }
    .hv1-hero__title { font-size: clamp(48px, 11vw, 84px); }
    .hv3-poster__title { font-size: clamp(48px, 9vw, 80px); }
    .hv3-closer__title, .hv1-final__title { font-size: clamp(64px, 12vw, 96px); }
    .hv3-hero__title { font-size: clamp(72px, 14vw, 132px); }
    .hv3-hero { height: 540px; }
    .hv1-hero__ticker { display: none; }
}
@media (max-width: 640px) {
    .hv1-hero, .hv1-diff, .hv1-app, .hv1-trans, .hv1-plans, .hv1-final,
    .hv3-ribbon, .hv3-issues, .hv3-poster, .hv3-moves, .hv3-wall, .hv3-pricing, .hv3-fire, .hv3-closer { padding: 48px 18px; }
    .hv3-hero__top { left: 18px; right: 18px; }
    .hv3-hero__bottom { left: 18px; right: 18px; bottom: 24px; }
    .hv1-diff__grid, .hv1-trans__grid, .hv1-plans__grid, .hv3-issues__grid, .hv3-wall__grid, .hv3-fire__grid, .hv3-ribbon { grid-template-columns: 1fr; }
    /* Hero / app / poster phones — horizontal scroll carousel on phones */
    .hv3-poster__phones, .hv1-hero__phones, .hv1-app__phones {
        height: auto;
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 18px;
        padding: 12px 18px 20px;
        margin: 24px -18px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .hv3-poster__phones::-webkit-scrollbar,
    .hv1-hero__phones::-webkit-scrollbar,
    .hv1-app__phones::-webkit-scrollbar { height: 4px; }
    .hv3-poster__phones::-webkit-scrollbar-thumb,
    .hv1-hero__phones::-webkit-scrollbar-thumb,
    .hv1-app__phones::-webkit-scrollbar-thumb { background: var(--c-green); border-radius: 4px; }
    .hv3-poster__phone, .hv1-phone {
        position: relative;
        transform: none !important;
        left: auto !important; right: auto !important;
        top: auto !important; bottom: auto !important;
        margin: 0 !important;
        flex: 0 0 200px;
        scroll-snap-align: center;
    }
    .hv1-plan { padding: 28px 22px; }
    .hv1-plan__amt { font-size: clamp(64px, 18vw, 96px); }
    .hv1-hero__title { font-size: clamp(44px, 12vw, 64px); line-height: 1.05; }
    .hv1-hero__title .hv2-highlight { padding: 2px 8px 4px; }
    .hv1-final__title { font-size: clamp(56px, 14vw, 80px); }
    .hv1-marquee__track { font-size: 20px; gap: 24px; animation-duration: 8s; }
    .hv3-hero__title { font-size: clamp(64px, 18vw, 96px); }
    .hv3-hero { height: 460px; }
    .hv3-closer__title, .hv3-poster__title { font-size: clamp(48px, 12vw, 72px); }
    .hv3-fire__tile { min-height: 200px; }
    .hv3-pricing__price { font-size: 56px; }
    .hv3-move { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
    .hv3-move__n { display: none; }
}


/* HOME V2 ================================================================== */

.hv2-hero {
    background: var(--c-bg); color: #fff;
    padding: 48px 60px 0;
    position: relative;
    border-bottom: var(--border-w) solid #000;
}
.hv2-hero__grid {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
    align-items: center; min-height: 560px;
}
.hv2-hero__copy { padding-bottom: 48px; }

.hv2-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--c-green);
}
.hv2-dot { width: 8px; height: 8px; background: var(--c-green); border-radius: 50%; }

.hv2-hero__title {
    margin-top: 20px;
    font-family: var(--font-hero); font-size: clamp(64px, 9vw, 132px); line-height: 0.85;
    letter-spacing: -2px; text-transform: uppercase;
}
.hv2-accent { color: var(--c-green); }

.hv2-hero__lede { margin-top: 36px; font-size: 18px; line-height: 1.55; color: var(--c-text-on-dark-2); max-width: 540px; overflow-wrap: break-word; word-wrap: break-word; }
.hv2-hero__cta { margin-top: 40px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hv2-hero__note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; color: var(--c-text-on-dark-2); text-transform: uppercase; max-width: 200px; flex: 0 1 200px; overflow-wrap: break-word; }

.hv2-trust {
    margin: 60px 0 0;
    list-style: none; padding: 24px 0 0;
    border-top: 1px solid #2a2a25;
    display: flex; max-width: 700px;
}
.hv2-trust li { flex: 1; border-right: 1px solid #2a2a25; padding-right: 16px; }
.hv2-trust li:last-child { border-right: 0; }
.hv2-trust__n { display: block; font-family: var(--font-hero); font-size: 48px; line-height: 1; color: var(--c-green); }
.hv2-trust__t { display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: 1.5px; color: var(--c-text-on-dark-2); text-transform: uppercase; margin-top: 6px; }

.hv2-hero__phone { align-self: center; position: relative; height: 520px; }
.hv2-hero__glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(97, 230, 16, 0.18) 0%, transparent 60%);
}
.hv2-hero__phone-img {
    position: absolute; right: 0; bottom: 0; width: 280px; height: 100%; z-index: 2;
    border-radius: 38px;
}
.hv2-hero__overlay-card {
    position: absolute; left: -40px; bottom: 60px; z-index: 3;
    background: #fff; color: #000;
    border: var(--border-w) solid #000; box-shadow: var(--shadow-4);
    padding: 14px 18px; max-width: 220px;
}
.hv2-hero__overlay-eyebrow { font-family: var(--font-body); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 800; color: #666; }
.hv2-hero__overlay-title  { margin-top: 4px; font-family: var(--font-display); font-weight: 900; font-size: 18px; }
.hv2-hero__overlay-bar    { margin-top: 8px; height: 6px; background: #f0f0f0; border-radius: 99px; overflow: hidden; }
.hv2-hero__overlay-bar span { display: block; height: 100%; background: var(--c-green); border-radius: 99px; }

/* Chapters ------------------------------------------------------------------ */

.hv2-chapters { background: #fff; padding: 120px 60px; }
.hv2-chapters__head { max-width: 700px; margin-bottom: 64px; }
.hv2-chapters__title {
    margin-top: 24px;
    font-family: var(--font-hero); font-size: clamp(48px, 7vw, 92px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase;
}
/* Global green-slab token — used inside any large hero/section title.
   inline-block + matched line-height + vertical padding keeps the background
   tight to the glyphs so a tight title line-height never bleeds into the
   paragraph below. Per-section overrides only need to tweak padding/size. */
.hv2-highlight {
    display: inline-block;
    background: var(--c-green);
    color: #000;
    padding: 2px 12px 8px;
    line-height: 1.0;
}

/* Any title that contains the green slab gets relaxed line-height + a
   guaranteed gap below it. Catches every hero/section headline using the
   shared slab token so a per-template fix is never needed. */
h1:has(> .hv2-highlight), h1:has(> .hv3-hero__highlight),
h2:has(> .hv2-highlight), h2:has(> .hv3-hero__highlight) {
    line-height: 1.0 !important;
    margin-bottom: 32px;
}
.hv2-chapters__lede { margin-top: 24px; font-size: 17px; line-height: 1.55; color: #444; }
.hv2-chapters__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border-top: var(--border-w) solid #000; border-bottom: var(--border-w) solid #000;
}
.hv2-chapter { padding: 32px; min-height: 380px; display: flex; flex-direction: column; }
.hv2-chapter + .hv2-chapter { border-left: var(--border-w) solid #000; }
.hv2-chapter header { display: flex; justify-content: space-between; align-items: center; }
.hv2-chapter__n { font-family: var(--font-mono); font-size: 12px; color: #888; letter-spacing: 2px; }
.hv2-chapter__arrow {
    width: 24px; height: 24px; background: var(--c-green);
    border: var(--border-w) solid #000;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 900; font-size: 14px;
}
.hv2-chapter__photo { margin-top: 20px; aspect-ratio: 4 / 3; border: 0; background: repeating-linear-gradient(135deg, #f0f0e8 0 14px, #e3e3da 14px 28px); }
.hv2-chapter__sub { margin-top: 20px; font-family: var(--font-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #888; }
.hv2-chapter__h   { margin-top: 4px; font-family: var(--font-hero); font-size: 44px; text-transform: uppercase; line-height: 0.95; }
.hv2-chapter__t   { margin-top: 12px; font-size: 13px; line-height: 1.55; color: #444; }

/* App-deep ------------------------------------------------------------------ */

.hv2-deep { background: var(--c-paper); padding: 120px 60px; border-top: var(--border-w) solid #000; }
.hv2-deep__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.hv2-deep__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(48px, 7vw, 88px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv2-deep__lede  { margin-top: 24px; font-size: 16px; line-height: 1.6; color: #333; max-width: 500px; }
.hv2-deep__list  { margin: 40px 0 0; padding: 0; list-style: none; border-top: var(--border-w) solid #000; }
.hv2-deep__list li {
    padding: 20px 0; border-bottom: var(--border-w) solid #000;
    display: grid; grid-template-columns: 40px 1fr 24px; gap: 16px; align-items: center;
}
.hv2-deep__n   { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; color: #888; }
.hv2-deep__h   { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.hv2-deep__t   { margin-top: 4px; font-size: 13px; line-height: 1.5; color: #555; }
.hv2-deep__plus { font-family: var(--font-display); font-weight: 900; font-size: 18px; text-align: right; }

.hv2-deep__phones { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-content: start; }
.hv2-deep__phone-img { aspect-ratio: 9 / 19.5; border-radius: 38px; border: var(--border-w) solid #000; box-shadow: var(--shadow-6); }
.hv2-deep__phone-img--wide { aspect-ratio: 9 / 19.5; max-width: 260px; margin: 0 auto; }
.hv2-deep__phone--c { grid-column: 1 / -1; justify-self: center; max-width: 260px; }
.hv2-deep__phone--b { margin-top: 60px; }

/* Transformations bento ----------------------------------------------------- */

.hv2-trans { background: #fff; padding: 120px 60px; border-top: var(--border-w) solid #000; }
.hv2-trans__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }
.hv2-trans__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(48px, 7vw, 92px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv2-trans__meta  { font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #666; }
.hv2-trans__grid  { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; gap: 16px; }
.hv2-tile {
    border: var(--border-w) solid #000; box-shadow: var(--shadow-4);
    position: relative; overflow: hidden; background: #1c1c1a;
}
.hv2-tile.is-green { background: var(--c-green); }
.hv2-tile.is-green .hv2-tile__photo { background: repeating-linear-gradient(135deg, #56cf0a 0 14px, #4ab509 14px 28px); }
.hv2-tile.is-green .cg3-photo__caption { color: #000; }
.hv2-tile__photo { height: 100%; border: 0; }
.hv2-tile__foot {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px; border-top: var(--border-w) solid #000;
    background: #fff; color: #000;
    display: flex; justify-content: space-between; align-items: baseline;
}
.hv2-tile__name { font-family: var(--font-display); font-weight: 900; font-size: 15px; }
.hv2-tile__t    { font-family: var(--font-mono); font-size: 11px; color: #444; }

/* Pricing strip ------------------------------------------------------------- */

.hv2-pricing { background: #000; color: #fff; padding: 100px 60px; border-top: 4px solid var(--c-green); }
.hv2-pricing__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.hv2-pricing__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 96px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv2-pricing__accent { color: var(--c-green); }
.hv2-pricing__lede   { margin-top: 24px; font-size: 16px; color: var(--c-text-on-dark-2); line-height: 1.6; max-width: 380px; }
.hv2-pricing__card   { background: #fff; color: #000; border: var(--border-w) solid #fff; box-shadow: 8px 8px 0 0 var(--c-green); overflow: hidden; }
.hv2-pricing__plans  { display: grid; grid-template-columns: 1fr 1fr; }
.hv2-pricing__plan   { padding: 36px; background: #fff; }
.hv2-pricing__plan.is-best { background: var(--c-green); border-left: var(--border-w) solid #000; }
.hv2-pricing__name   { font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.hv2-pricing__price  { margin-top: 8px; display: flex; align-items: baseline; gap: 4px; }
.hv2-pricing__amt    { font-family: var(--font-hero); font-size: 96px; line-height: 0.85; letter-spacing: -1px; }
.hv2-pricing__per    { font-family: var(--font-body); font-weight: 700; font-size: 14px; }
.hv2-pricing__sub    { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #000; margin-bottom: 20px; }
.hv2-pricing__strip  {
    padding: 14px 24px; background: #000; color: #fff;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.hv2-pricing__strip-accent { color: var(--c-green); }

/* Community ----------------------------------------------------------------- */

.hv2-comm { background: #fff; padding: 120px 60px; border-top: var(--border-w) solid #000; }
.hv2-comm__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: flex-start; }
.hv2-comm__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(48px, 7vw, 84px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv2-comm__lede  { margin-top: 24px; font-size: 15px; line-height: 1.6; color: #444; }
.hv2-comm__feed  { display: flex; flex-direction: column; gap: 14px; }
.hv2-post {
    border: var(--border-w) solid #000; box-shadow: var(--shadow-4);
    padding: 24px; background: #fff;
    display: grid; grid-template-columns: 52px 1fr auto; gap: 16px; align-items: flex-start;
}
.hv2-post.is-green { background: var(--c-green); }
.hv2-post__avatar {
    width: 52px; height: 52px; background: #1c1c1a; border: var(--border-w) solid #000;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 22px;
}
.hv2-post header { display: flex; gap: 10px; align-items: baseline; }
.hv2-post__name  { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.hv2-post__time  { font-family: var(--font-mono); font-size: 11px; color: #666; }
.hv2-post__body  { margin-top: 6px; font-size: 14px; line-height: 1.55; color: #222; }
.hv2-post__likes { font-family: var(--font-mono); font-size: 11px; color: #666; }

/* Supplements --------------------------------------------------------------- */

.hv2-supp { background: var(--c-green); color: #000; padding: 100px 60px; border-top: var(--border-w) solid #000; }
.hv2-supp__grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hv2-supp__title { margin-top: 24px; font-family: var(--font-hero); font-size: clamp(56px, 8vw, 92px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; }
.hv2-supp__lede  { margin: 24px 0 32px; font-size: 16px; line-height: 1.6; color: #000; max-width: 460px; }
.hv2-supp__photo { height: 460px; border: var(--border-w) solid #000; box-shadow: 8px 8px 0 0 #000; background: repeating-linear-gradient(135deg, #56cf0a 0 14px, #4ab509 14px 28px); }

/* Responsive ---------------------------------------------------------------- */

@media (max-width: 1180px) {
    .hv2-hero, .hv2-chapters, .hv2-deep, .hv2-trans, .hv2-pricing, .hv2-comm, .hv2-supp { padding-left: 36px; padding-right: 36px; }
}
@media (max-width: 1100px) {
    .hv2-hero__grid,
    .hv2-deep__grid,
    .hv2-pricing__grid,
    .hv2-comm__grid,
    .hv2-supp__grid { grid-template-columns: 1fr; gap: 32px; }
    .hv2-chapters__grid { grid-template-columns: repeat(2, 1fr); }
    .hv2-chapters__grid .hv2-chapter:nth-child(odd)  { border-left: 0; }
    .hv2-chapters__grid .hv2-chapter:nth-child(even) { border-left: var(--border-w) solid #000; }
    .hv2-chapters__grid .hv2-chapter:nth-child(n+3)  { border-top: var(--border-w) solid #000; }
    .hv2-trans__grid    { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
    .hv2-tile           { grid-column: span 1 !important; grid-row: span 1 !important; }
    .hv2-pricing__plans { grid-template-columns: 1fr; }
    .hv2-pricing__plan.is-best { border-left: 0; border-top: var(--border-w) solid #000; }
    .hv2-deep__phone--b { margin-top: 0; }
    .hv2-hero__phone    { height: 480px; }
    .hv2-hero__phone-img{ position: relative; bottom: 0; width: 100%; max-width: 300px; margin: 0 auto; }
    .hv2-hero__overlay-card { left: 0; bottom: 24px; }
}
@media (max-width: 900px) {
    .hv2-hero, .hv2-chapters, .hv2-deep, .hv2-trans, .hv2-pricing, .hv2-comm, .hv2-supp { padding: 56px 24px; }
    .hv2-hero__title { font-size: clamp(56px, 12vw, 88px); }
    .hv2-trans__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .hv2-deep__phones { grid-template-columns: 1fr 1fr; }
    .hv2-deep__phone--c { max-width: 220px; }
}
@media (max-width: 640px) {
    .hv2-hero, .hv2-chapters, .hv2-deep, .hv2-trans, .hv2-pricing, .hv2-comm, .hv2-supp { padding: 48px 18px; }
    .hv2-hero { min-height: 0; }
    .hv2-hero__grid { min-height: 0; gap: 24px; }
    .hv2-hero__copy { padding-bottom: 0; }
    .hv2-hero__title { font-size: clamp(48px, 12vw, 72px); }
    .hv2-trust li { flex: 0 0 calc(50% - 8px); border-right: 0; }
    .hv2-chapters__grid { grid-template-columns: 1fr; }
    .hv2-chapters__grid .hv2-chapter { border-left: 0 !important; }
    .hv2-chapters__grid .hv2-chapter + .hv2-chapter { border-top: var(--border-w) solid #000; }
    .hv2-trans__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    /* Mobile phones — horizontal scroll carousel instead of an ugly vertical stack. */
    .hv2-deep__phones {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 18px;
        padding: 12px 18px 24px;
        margin: 24px -18px -12px; /* breakout to viewport edges so the snap feels native */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .hv2-deep__phones::-webkit-scrollbar { height: 4px; }
    .hv2-deep__phones::-webkit-scrollbar-thumb { background: var(--c-green); border-radius: 4px; }
    .hv2-deep__phone--a, .hv2-deep__phone--b, .hv2-deep__phone--c {
        flex: 0 0 220px;
        max-width: none !important;
        margin: 0 !important;
        grid-column: auto !important;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .hv2-deep__phone--b { margin-top: 0 !important; }
    .hv2-deep__phone-img { width: 100%; }
    .hv2-deep__phone-img--wide { width: 100%; }
    .hv2-pricing__amt { font-size: 64px; }
}
