/* Argenta home page — anniversary editorial poster aesthetic.
   Bold typography (Elza Round Variable display, muli body). Color-blocked sections.
   Bento grid. Confetti as a deliberate design system. */

:root {
    --home-cream: #FAF7F2;
    --home-cream-deep: #F5F1E8;
    --home-ink: #131211;
    --home-ink-soft: #4A4844;
    --home-rule: rgba(19, 18, 17, .12);
    --home-cyan: #00A1BE;
    --home-cyan-deep: #007E94;
    --home-cyan-soft: #E5F4F7;
    --home-orange: #FF4A11;
    --home-orange-deep: #E03A06;
    --home-orange-soft: #FFE9E0;
    --home-green: #00CC78;
    --home-green-soft: #E0F8ED;
    --home-pink: #D8237C;
    --home-pink-soft: #FBE4F0;
    --home-yellow: #FFD23F;
    --home-display: "Montserrat", muli, system-ui, sans-serif;
    --home-body: muli, system-ui, sans-serif;
}

.home-anchor {
    background: var(--home-cream);
    color: var(--home-ink);
    font-family: var(--home-body);
    overflow: hidden;
    position: relative;
}

.home-anchor h1,
.home-anchor h2,
.home-anchor h3 {
    font-family: var(--home-display);
    color: var(--home-ink);
    margin: 0;
    letter-spacing: -0.02em;
}

.home-anchor p {
    color: var(--home-ink-soft);
    line-height: 1.6;
    margin: 0;
}

.home-anchor .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.emph {
    color: var(--home-orange);
    font-weight: 700;
}

/* ─── EYEBROW ─── */

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--home-body);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--home-orange);
    margin: 0 0 1.25rem 0;
}

.home-eyebrow-bar {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--home-orange);
    border-radius: 2px;
}

/* ─── CTAs ─── */

.home-cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: 1rem 1.65rem;
    font-family: var(--home-body);
    font-weight: 800;
    font-size: .98rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.home-cta i { transition: transform .2s ease; }
.home-cta:hover i { transform: translateX(4px); }

.home-cta-primary {
    background: var(--home-orange);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 74, 17, .35);
}

.home-cta-primary:hover {
    background: var(--home-orange-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 74, 17, .45);
}

.home-cta-ghost {
    background: transparent;
    color: var(--home-ink);
    border-color: var(--home-ink);
}

.home-cta-ghost:hover {
    background: var(--home-ink);
    color: var(--home-cream);
}

.home-cta-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.home-cta-ghost-light:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

.home-cta-large {
    padding: 1.15rem 2rem;
    font-size: 1.05rem;
}

/* ─── CONFETTI ─── */

.home-confetti, .home-quote-confetti, .home-final-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.conf {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: home-float 8s ease-in-out infinite;
    opacity: .85;
}

.conf.cyan    { background: var(--home-cyan); }
.conf.orange  { background: var(--home-orange); }
.conf.pink    { background: var(--home-pink); }
.conf.green   { background: var(--home-green); }
.conf.yellow  { background: var(--home-yellow); }
.conf.cyan-2  { background: var(--home-cyan); }
.conf.pink-2  { background: var(--home-pink); }
.conf.orange-2{ background: var(--home-orange); }

.home-confetti-hero .conf.cyan    { top: 8%;  left: 6%;  width: 18px; height: 18px; animation-delay: 0s; }
.home-confetti-hero .conf.orange  { top: 12%; left: 92%; width: 14px; height: 14px; animation-delay: 1s; }
.home-confetti-hero .conf.pink    { top: 38%; left: 3%;  width: 10px; height: 10px; animation-delay: 2s; }
.home-confetti-hero .conf.green   { top: 70%; left: 96%; width: 16px; height: 16px; animation-delay: 3s; }
.home-confetti-hero .conf.cyan-2  { top: 78%; left: 8%;  width: 8px;  height: 8px;  animation-delay: 4s; opacity: .5; }
.home-confetti-hero .conf.pink-2  { top: 28%; left: 50%; width: 8px;  height: 8px;  animation-delay: 5s; opacity: .35; }
.home-confetti-hero .conf.orange-2{ top: 88%; left: 60%; width: 12px; height: 12px; animation-delay: 6s; }
.home-confetti-hero .conf.yellow  { top: 4%;  left: 70%; width: 12px; height: 12px; animation-delay: 7s; }

@keyframes home-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-16px) rotate(180deg); }
}

/* ─── HERO ─── */

.home-hero {
    position: relative;
    padding: 4.5rem clamp(1.5rem, 5vw, 5rem) 5rem;
    background: #fff;
}

.home-hero-stack {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.home-hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.home-hero-banner-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--home-rule) 50%, transparent 100%);
    max-width: 220px;
}

.home-hero-banner-text {
    font-family: var(--home-body);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--home-ink);
    white-space: nowrap;
}

.home-hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: home-fade-up .8s cubic-bezier(.2, .8, .2, 1) both;
}

.home-hero-words {
    padding-left: clamp(1rem, 4vw, 3.5rem);
    text-align: left;
}

.home-hero-headline {
    font-family: var(--home-body);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #464646;
}

.home-hero-headline .line-1,
.home-hero-headline .line-2,
.home-hero-headline .line-3 {
    display: block;
    color: #464646;
}

.home-hero-headline .emph {
    color: #464646;
    font-style: normal;
    font-weight: 700;
}

/* Hero image with medallion */

.home-hero-image-wrap {
    position: relative;
    transform: rotate(1.5deg);
}

.home-hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 30px 60px -20px rgba(19, 18, 17, .25),
        0 0 0 8px #fff,
        0 0 0 9px rgba(19, 18, 17, .08);
}

.home-hero-medallion {
    position: absolute;
    top: -36px;
    left: -36px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--home-orange);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    box-shadow: 0 14px 30px rgba(255, 74, 17, .4);
    z-index: 2;
    border: 4px dashed #fff;
    outline: 2px solid var(--home-orange);
    outline-offset: -8px;
}

.medallion-num {
    font-family: var(--home-display);
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1;
}

.medallion-sub {
    font-family: var(--home-body);
    font-weight: 800;
    font-size: .7rem;
    letter-spacing: .18em;
    margin-top: .15rem;
}

.home-hero-bottom {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    animation: home-fade-up .8s cubic-bezier(.2, .8, .2, 1) .2s both;
}

.home-hero-lede {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--home-ink-soft);
    margin-bottom: 2rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem;
    margin-bottom: 1.25rem;
}

.home-hero-fineprint {
    font-size: .85rem;
    color: rgba(19, 18, 17, .55);
}

@keyframes home-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── CLASSIC HERO (preserved from argentasoftware.com home) ─── */

.home-classic-hero {
    position: relative;
    overflow: hidden;
    background: #fff;
    isolation: isolate;
}

.home-classic-hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: cover;
}

.home-classic-hero-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.home-classic-hero-card {
    pointer-events: auto;
    background: #fff;
    border-radius: 4px;
    padding: 40px 35.2px;
    max-width: 500px;
    width: 100%;
    margin-left: clamp(1.5rem, 6vw, 6rem);
    box-shadow: 0 18px 40px -16px rgba(19, 18, 17, .25);
    font-family: muli, sans-serif;
}

.home-classic-eyebrow {
    color: rgb(0, 161, 190);
    font-family: muli, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19.2px;
    margin: 8px 0 0 0;
}

.home-classic-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 41.6px;
    line-height: 37.44px;
    color: rgb(100, 100, 100);
    letter-spacing: normal;
    margin: 8px 0 0 0;
    padding: 0 0 4px 0;
}

.home-classic-copy {
    font-family: muli, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgb(60, 71, 71);
    margin: 12px 0 16px 0;
}

.home-classic-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.home-classic-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 19.2px 12px 35.2px;
    font-family: muli, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease, color .15s ease;
    color: #fff;
}

.home-classic-btn i { transition: transform .15s ease; }
.home-classic-btn:hover i { transform: translateX(3px); }

.home-classic-btn-primary {
    background: rgb(0, 161, 190);
}

.home-classic-btn-primary:hover {
    background: rgb(0, 126, 148);
    color: #fff;
    transform: translateY(-1px);
}

.home-classic-btn-secondary {
    background: rgb(255, 74, 17);
}

.home-classic-btn-secondary:hover {
    background: rgb(224, 58, 6);
    color: #fff;
    transform: translateY(-1px);
}

.home-classic-fineprint {
    font-family: muli, sans-serif;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 19.2px;
    color: rgb(60, 71, 71);
    margin: 0;
}

@media (max-width: 767.98px) {
    .home-classic-hero-image {
        max-height: none;
        aspect-ratio: 16 / 11;
    }
    .home-classic-hero-container {
        position: static;
        padding: 0 1.25rem 2.5rem;
        transform: translateY(-3.5rem);
    }
    .home-classic-hero-card {
        margin-left: 0;
        padding: 1.75rem 1.5rem;
        max-width: 100%;
    }
}

/* ─── CUSTOMER TESTIMONIAL ─── */

.home-testimonial {
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 12% 18%, rgba(0, 161, 190, .08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 88% 78%, rgba(255, 74, 17, .06) 0%, transparent 70%),
        #FAFAF6;
    padding: 7rem 1.5rem;
    overflow: hidden;
    isolation: isolate;
}

.home-testimonial-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}

.home-testimonial-deco-1 {
    width: 28px; height: 28px;
    top: 18%; left: 8%;
    background: rgb(0, 161, 190);
    opacity: .35;
}

.home-testimonial-deco-2 {
    width: 22px; height: 22px;
    top: 70%; right: 9%;
    background: rgb(216, 35, 124);
    opacity: .35;
}

.home-testimonial-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.home-testimonial-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: muli, sans-serif;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgb(0, 161, 190);
    margin-bottom: 2.5rem;
}

.home-testimonial-eyebrow-bar {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: rgb(0, 161, 190);
}

.home-testimonial-mark {
    display: block;
    font-family: "Montserrat", serif;
    font-size: 9rem;
    line-height: .65;
    color: rgb(255, 74, 17);
    font-weight: 700;
    margin: 0 0 1rem 0;
    user-select: none;
    pointer-events: none;
    opacity: .9;
}

.home-testimonial-quote {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    line-height: 1.45;
    color: #2C2C2C;
    letter-spacing: -0.005em;
    margin: 0 auto 2rem;
    max-width: 760px;
}

.home-testimonial-quote em {
    font-style: normal;
    color: rgb(255, 74, 17);
    font-weight: 600;
}

.home-testimonial-stars {
    color: #F4AD2A;
    font-size: 1.4rem;
    display: inline-flex;
    gap: .35rem;
    margin-bottom: 2rem;
}

.home-testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.home-testimonial-avatar {
    position: relative;
    width: 76px;
    height: 76px;
    flex-shrink: 0;
}

.home-testimonial-avatar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgb(0, 161, 190);
    transform: translate(8px, 8px);
    z-index: 0;
}

.home-testimonial-avatar img {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    z-index: 1;
}

.home-testimonial-name {
    text-align: left;
}

.home-testimonial-name h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.2;
    color: #2C2C2C;
    margin: 0 0 .15rem 0;
    letter-spacing: -0.01em;
}

.home-testimonial-name p {
    font-family: muli, sans-serif;
    font-weight: 400;
    font-size: .95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.home-testimonial-divider {
    width: 60px;
    height: 2px;
    background: rgb(255, 74, 17);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.home-testimonial-tagline {
    font-family: muli, sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #4A4A4A;
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

.home-testimonial-tagline strong {
    color: rgb(0, 161, 190);
    font-weight: 800;
}

.home-testimonial-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgb(255, 74, 17);
    color: #fff;
    font-family: muli, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: .95rem 1.85rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(255, 74, 17, .3);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-testimonial-cta:hover {
    background: rgb(224, 58, 6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 74, 17, .4);
}

.home-testimonial-cta i { transition: transform .2s ease; }
.home-testimonial-cta:hover i { transform: translateX(4px); }

@media (max-width: 575.98px) {
    .home-testimonial { padding: 5rem 1rem; }
    .home-testimonial-mark { font-size: 6.5rem; }
    .home-testimonial-author { flex-direction: column; gap: .5rem; }
    .home-testimonial-name { text-align: center; }
}

/* ─── POSTER STATS ─── */

.home-poster {
    background: var(--home-ink);
    padding: 0;
    overflow: hidden;
}

.home-poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.home-poster-cell {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: transform .3s ease;
}

.home-poster-cell:hover {
    transform: translateY(-6px);
}

.home-poster-cell::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, .12);
}

.home-poster-cell:last-child::after { display: none; }

.home-poster-cyan   { background: var(--home-cyan); }
.home-poster-cream  { background: var(--home-cream); color: var(--home-ink); }
.home-poster-pink   { background: var(--home-pink); }
.home-poster-orange { background: var(--home-orange); }
.home-poster-green  { background: #00CC78; }

.poster-num {
    font-family: var(--home-display);
    font-weight: 800;
    font-size: clamp(4rem, 9vw, 7rem);
    line-height: 1;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: .5rem;
}

.home-poster-cream .poster-num { color: var(--home-ink); }

.poster-plus {
    font-size: .55em;
    vertical-align: super;
    line-height: 0;
    margin-left: 2px;
    font-weight: 700;
}

.poster-label {
    font-family: var(--home-body);
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
}

.home-poster-cream .poster-label { color: var(--home-ink-soft); }

/* ─── MODULES BENTO ─── */

.home-modules {
    padding: 6.5rem 0;
    background: var(--home-cream);
}

.home-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.home-section-header .home-eyebrow {
    justify-content: center;
}

.home-section-title {
    font-family: var(--home-display);
    font-size: clamp(2.5rem, 5.5vw, 3.85rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.018em;
    margin-bottom: 1rem;
}

.home-section-title .emph {
    color: var(--home-cyan);
}

.home-section-lede {
    font-size: 1.2rem;
    color: var(--home-ink-soft);
    line-height: 1.6;
}

.home-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 1.25rem;
}

.bento-card {
    background: #fff;
    border: 1px solid var(--home-rule);
    border-radius: 22px;
    padding: 2rem 1.85rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -20px rgba(19, 18, 17, .25);
}

.bento-card h3 {
    font-family: var(--home-display);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: .75rem;
}

.bento-card p {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--home-ink-soft);
    flex: 1;
}

.bento-feature {
    grid-column: span 2;
    grid-row: span 2;
    background:
        radial-gradient(ellipse at top right, var(--home-cyan-soft) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, var(--home-orange-soft) 0%, transparent 50%),
        #fff;
    padding: 2.5rem;
}

.bento-feature-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-feature h3 {
    font-size: clamp(2rem, 3.3vw, 2.65rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    max-width: 540px;
}

.bento-feature p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.bento-icon-row {
    display: flex;
    gap: .65rem;
    margin-bottom: 1.5rem;
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    color: var(--home-cyan);
    border: 1px solid var(--home-rule);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 10px rgba(19, 18, 17, .04);
}

.bento-icon-row .bento-icon:nth-child(2) { color: var(--home-orange); }
.bento-icon-row .bento-icon:nth-child(3) { color: var(--home-pink); }

.bento-icon-big {
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .9);
    color: var(--home-ink);
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
}

.bento-cyan, .bento-pink, .bento-orange, .bento-green {
    color: #fff;
    border: none;
}

.bento-cyan   { background: var(--home-cyan); }
.bento-pink   { background: var(--home-pink); }
.bento-orange { background: var(--home-orange); }
.bento-green  { background: var(--home-green); }

.bento-cyan h3, .bento-pink h3, .bento-orange h3, .bento-green h3 { color: #fff; }
.bento-cyan p,  .bento-pink p,  .bento-orange p,  .bento-green p  { color: rgba(255, 255, 255, .92); }

.bento-cyan .bento-icon-big,
.bento-pink .bento-icon-big,
.bento-orange .bento-icon-big,
.bento-green .bento-icon-big {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.bento-dark {
    grid-column: span 2;
    background: var(--home-ink);
    color: #fff;
    border: none;
}

.bento-dark h3 {
    color: #fff;
    font-size: clamp(1.85rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
}

.bento-dark p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: auto;
    color: var(--home-cyan);
    font-family: var(--home-body);
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    transition: gap .2s ease;
    align-self: flex-start;
}

.bento-link:hover { gap: .85rem; }

.bento-link-light { color: #fff; }

.bento-feature .bento-link { color: var(--home-orange); }

/* ─── QUOTE ─── */

.home-quote {
    position: relative;
    padding: 6rem 0;
    background: var(--home-cream-deep);
    border-top: 1px solid var(--home-rule);
    border-bottom: 1px solid var(--home-rule);
    overflow: hidden;
}

.home-quote-confetti .conf.cyan   { top: 25%; left: 8%;  width: 12px; height: 12px; animation-delay: .5s; }
.home-quote-confetti .conf.orange { top: 70%; left: 10%; width: 14px; height: 14px; animation-delay: 1.5s; }
.home-quote-confetti .conf.pink   { top: 35%; left: 91%; width: 16px; height: 16px; animation-delay: 2.5s; }

.home-quote .container {
    text-align: center;
    max-width: 960px;
    position: relative;
    z-index: 2;
}

.home-quote-stars {
    color: var(--home-yellow);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    display: inline-flex;
    gap: .25rem;
}

.home-quote-text {
    font-family: var(--home-display);
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--home-ink);
    letter-spacing: -0.02em;
    margin: 0 0 2rem 0;
    quotes: """ """ "'" "'";
}

.home-quote-text::before { content: open-quote; color: var(--home-orange); margin-right: .15em; }
.home-quote-text::after { content: close-quote; color: var(--home-orange); margin-left: .15em; }

.home-quote-text .quote-emph {
    color: var(--home-cyan);
    font-weight: 700;
}

.home-quote-author {
    font-family: var(--home-body);
    font-size: .95rem;
    font-weight: 700;
    color: var(--home-ink);
    display: inline-flex;
    gap: .65rem;
    align-items: center;
}

.home-quote-author .dot-sep { color: var(--home-orange); }
.home-quote-author span:last-child { font-weight: 500; color: var(--home-ink-soft); }

/* ─── IMPLEMENTATION SECTION ─── */

.home-implementation {
    padding: 6.5rem 0;
    background: var(--home-cream);
}

.home-implementation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.home-implementation-card {
    background: var(--home-cyan);
    color: #fff;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transform: rotate(-2deg);
    box-shadow: 0 20px 50px -20px rgba(0, 161, 190, .5);
}

.home-implementation-card::before {
    content: "";
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--home-orange);
    box-shadow: 0 6px 14px rgba(255, 74, 17, .4);
}

.impl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--home-body);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding: .55rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.impl-quote {
    font-family: var(--home-display);
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
}

.home-implementation-content {
    padding-right: 2rem;
}

.home-implementation-copy {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--home-ink-soft);
    margin-bottom: 1rem;
}

.home-implementation-cta {
    margin-top: 2rem;
}

/* ─── FINAL CTA ─── */

.home-final {
    position: relative;
    padding: 6.5rem 0;
    background: var(--home-ink);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.home-final-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(0, 161, 190, .35) 0%, transparent 35%),
        radial-gradient(circle at 75% 70%, rgba(216, 35, 124, .3) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(255, 74, 17, .25) 0%, transparent 50%);
    pointer-events: none;
}

.home-final-confetti .conf.cyan   { top: 18%; left: 8%;  width: 14px; height: 14px; animation-delay: 0s; }
.home-final-confetti .conf.orange { top: 70%; left: 5%;  width: 12px; height: 12px; animation-delay: 1s; }
.home-final-confetti .conf.pink   { top: 22%; left: 92%; width: 16px; height: 16px; animation-delay: 2s; }
.home-final-confetti .conf.green  { top: 75%; left: 88%; width: 10px; height: 10px; animation-delay: 3s; }
.home-final-confetti .conf.yellow { top: 45%; left: 50%; width: 10px; height: 10px; animation-delay: 4s; opacity: .35; }

.home-final-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.home-final-eyebrow {
    font-family: var(--home-body);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin: 0 0 1.5rem 0;
}

.home-final-headline {
    font-family: var(--home-display);
    font-size: clamp(2.75rem, 6.6vw, 4.95rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1.5rem 0;
}

.home-final-headline .emph {
    color: var(--home-orange);
}

.home-final-lede {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.home-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem;
    margin-bottom: 1.25rem;
}

.home-final-fineprint {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 991.98px) {
    .home-hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .home-hero-words {
        padding-left: 0;
        text-align: center;
    }
    .home-hero-image-wrap {
        max-width: 540px;
        margin: 0 auto;
    }
    .home-hero-headline { font-size: clamp(1.65rem, 6vw, 2.4rem); }

    .home-poster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-poster-cell::after { display: none; }

    .home-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-feature, .bento-dark {
        grid-column: span 2;
    }

    .home-implementation-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .home-implementation-content {
        padding-right: 0;
    }
}

@media (max-width: 575.98px) {
    .home-hero { padding: 3rem 1rem 4rem; }
    .home-hero-banner-text { font-size: .65rem; letter-spacing: .15em; }
    .home-hero-banner-line { max-width: 60px; }
    .home-hero-medallion {
        width: 100px; height: 100px;
        top: -20px; left: -20px;
    }
    .medallion-num { font-size: 2.5rem; }
    .medallion-sub { font-size: .6rem; }

    .home-poster-grid {
        grid-template-columns: 1fr;
    }
    .home-poster-cell { padding: 2.5rem 1.5rem; }

    .home-bento {
        grid-template-columns: 1fr;
    }
    .bento-feature, .bento-dark {
        grid-column: span 1;
    }
    .bento-feature {
        grid-row: auto;
    }
    .bento-feature h3 { font-size: 1.6rem; }
}
