.home .site-logo-container {
    display: none !important;
}

.home .site-main {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.home article {
    margin: 0 !important;
    padding: 0 !important;
}

.home .entry-content {
    padding: 0 !important;
    margin: 0 !important;
}

.home {
    margin-top: 0 !important;
}

.home .site-main .ct-container,
.home .site-main .ct-container-fluid,
.home .entry-content .ct-container,
.home .entry-content .ct-container-fluid {
    max-width: 100% !important;
    padding: 0 10px !important;
}

.home .eq-hero {
    margin-top: 0 !important;
}

/* ===== EQUATOR HOMEPAGE CUSTOM STYLES ===== */

:root {
    --eq-off-white: #F5F7FA;
    --eq-white: #FFFFFF;
    --eq-ink: #1a1a2e;
    --eq-ink-light: #2d2d44;
    --eq-stone: #5b6270;
    --eq-sand: #e5e7eb;
    --eq-blue: #3b82f6;
    --eq-blue-dark: #2563eb;
    --eq-header-height: 80px;
}

/* ===== SHARED SECTION LAYOUT ===== */

.eq-preview,
.eq-contrast,
.eq-how,
.eq-global,
.eq-group,
.eq-final-section {
    min-height: 100dvh;
}

/* ===== HERO SECTION ===== */

/* Force WordPress's own wrapper to full height too */
.home .wp-block-html:first-of-type {
    min-height: 100svh !important;
    display: flex !important;
    flex-direction: column !important;
}

.eq-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
		padding: calc(var(--eq-header-height) - 80px) 0.5rem 3rem;
    background: var(--eq-off-white);
    box-sizing: border-box;
}

.eq-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: center;
}

.eq-hero-logo {
    max-width: 230px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.eq-hero h1 {
    font-family: 'Crimson Pro', Georgia, serif !important;
    font-size: clamp(1.7rem, 10vw, 3.5rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    line-height: 1.0 !important;
    margin-bottom: 1.25rem !important;
    color: var(--eq-ink) !important;
}

.eq-hero-subhead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: var(--eq-stone);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.eq-hero-subhead em {
    font-style: italic;
}

.eq-hero-tagline {
    color: #1e3a8a;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
}

.eq-hero-screen img {
    width: 250px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 25px rgba(0,0,0,0.2);
}

.eq-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.eq-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--eq-white) !important;
    background: darkviolet;
    padding: 0.7rem 1.3rem;
    border-radius: 1.5rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.eq-cta-primary:hover {
    background: orchid;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    color: var(--eq-white) !important;
}

.eq-cta-secondary {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--eq-stone) !important;
    text-decoration: none !important;
    border-bottom: 1px solid var(--eq-sand);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.eq-cta-secondary:hover {
    color: var(--eq-ink) !important;
    border-color: var(--eq-stone);
}

/* ===== PREVIEW SECTION ===== */

.eq-preview {
    padding: 4rem 1.5rem;
    background: var(--eq-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eq-preview-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.eq-preview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.eq-preview-header h2 {
    font-family: 'Crimson Pro', Georgia, serif !important;
    font-size: clamp(2.5rem, 4vw, 3.4rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    line-height: 1.05 !important;
    margin-bottom: 1rem !important;
    color: var(--eq-ink) !important;
}

.eq-preview-header p {
    font-size: clamp(1.3rem, 3vw, 1.4rem);
    line-height: 1.25;
    color: var(--eq-stone);
}

.eq-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.eq-topic-card {
    background: var(--eq-off-white);
    border-radius: 12px;
    padding: 1.75rem;
    text-decoration: none !important;
    color: var(--eq-ink) !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: block;
}

.eq-topic-card:hover {
    background: var(--eq-white);
    border-color: var(--eq-sand);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.eq-topic-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--eq-ink);
}

.eq-topic-stats {
    font-size: 0.875rem;
    color: var(--eq-stone);
    display: flex;
    gap: 1rem;
}

/* ===== CONTRAST SECTION ===== */

.eq-contrast {
    padding: 2.5rem 2rem;
    background: var(--eq-ink) !important;
    color: var(--eq-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eq-contrast-inner {
    max-width: 900px;
    margin: 0 auto;
}

.eq-contrast-header {
    text-align: center;
    margin-bottom: 4rem;
}

.eq-contrast-header h2 {
    font-family: 'Crimson Pro', Georgia, serif !important;
    font-size: clamp(2.3rem, 5vw, 3.4rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    line-height: 1.1 !important;
    margin-bottom: 1.35rem !important;
    color: var(--eq-white) !important;
}

.eq-contrast-header p {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    line-height: 1.3;
    color: var(--eq-off-white) !important
    max-width: 550px;
    margin: 0 auto;
}

.eq-contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.eq-contrast-col {
    padding: 2rem;
    border-radius: 12px;
}

.eq-contrast-col.old {
    background: #334155;
}

.eq-contrast-col.new {
    background: darkviolet;
}

.eq-contrast-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.eq-contrast-col.new .eq-contrast-label {
    opacity: 1;
}

.eq-contrast-list {
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 !important;
    margin: 0 !important;
}

.eq-contrast-list li {
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--eq-white);
}

.eq-contrast-list li::before {
    content: '\2014';
    opacity: 0.5;
}

.eq-contrast-col.new .eq-contrast-list li::before {
    content: '\2713';
    opacity: 1;
}

/* ===== HOW IT WORKS SECTION ===== */

.eq-how {
    padding: 5rem 2rem;
    background: var(--eq-off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eq-how-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.eq-how-header {
    text-align: center;
    margin-bottom: 4rem;
}

.eq-how-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eq-blue);
    margin-bottom: 1rem;
}

.eq-how-header h2 {
    font-family: 'Crimson Pro', Georgia, serif !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    line-height: 1.05 !important;
    color: var(--eq-ink) !important;
}

.eq-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.eq-step-item {
    text-align: center;
}

.eq-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--eq-ink);
    color: var(--eq-white);
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.eq-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--eq-ink);
}

.eq-step-desc {
    font-size: 0.9375rem;
    color: var(--eq-ink);
    max-width: 280px;
    margin: 0 auto;
}

.eq-tagline-center {
    text-align: center;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-top: 3rem;
    color: var(--eq-stone);
    letter-spacing: -0.01em;
}

/* ===== GLOBAL SECTION ===== */

.eq-global {
    padding: 5rem 2rem;
    background: var(--eq-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eq-global-inner {
    max-width: 950px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    background: var(--eq-off-white);
    border-radius: 16px;
}

.eq-global-inner h3 {
    font-family: 'Crimson Pro', Georgia, serif !important;
    font-size: clamp(2rem, 3.5vw, 2.7rem) !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: var(--eq-ink) !important;
}

.eq-global-inner img {
    width: 95%;
    max-width: 700px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 12px;
    margin-top: -0.2rem;
    margin-bottom: 1rem;
}

.eq-global-inner p {
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--eq-stone);
    margin-top: 0.5rem;
}

/* ===== GROUP SECTION ===== */

.eq-group {
    padding: 5rem 2rem;
    background: var(--eq-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eq-group-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eq-blue);
    margin-bottom: 1rem;
}

.eq-group h2 {
    font-family: 'Crimson Pro', Georgia, serif !important;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: var(--eq-ink) !important;
}

.eq-group-inner p {
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--eq-stone);
    margin-top: 0.5rem;
}


/* ===== FINAL CTA SECTION ===== */

.eq-final-section {
    padding: 6rem 2rem;
    background: var(--eq-off-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.eq-final-section h2 {
    font-family: 'Crimson Pro', Georgia, serif !important;
    font-size: clamp(2.2rem, 6vw, 2.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em;
    margin: 3rem !important;
    max-width: 800px;
    text-align: center;
    color: var(--eq-ink) !important;
}

.eq-cta-outline {
    display: inline-flex;
    align-items: center;
    max-width: 580px;
    gap: 0.625rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3 !important;
    color: var(--eq-ink) !important;
    background: transparent;
    padding: 0.8rem 0.8rem;
    border-radius: 6px;
    border: 2px solid var(--eq-ink);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.eq-cta-outline:hover {
    background: var(--eq-ink);
    color: var(--eq-white) !important;
}

/* ===== FOOTER CENTERING ===== */

.site-footer {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 0.75rem !important;
}

footer,
footer * {
    text-align: center !important;
}

footer ul,
footer nav,
footer menu {
    justify-content: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

footer div {
    justify-content: center !important;
    align-items: center !important;
}

/* ===== SCROLL REVEAL ANIMATION ===== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLL HINT ===== */

.eq-scroll-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: opacity 0.4s ease;
    pointer-events: auto;
}

.eq-scroll-hint span {
    font-size: 0.6rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eq-stone);
}

.eq-scroll-hint-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: eq-float 1.8s ease-in-out infinite;
    /* remove the old border trick */
    border: none;
    transform: none;
}

.eq-scroll-hint-arrow::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--eq-stone);
    border-bottom: 2px solid var(--eq-stone);
    transform: rotate(45deg) translateY(-2px);
}

@keyframes eq-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .eq-preview,
    .eq-contrast,
    .eq-how,
    .eq-global,
    .eq-final-section {
        min-height: auto;
    }

		.eq-hero {
				min-height: 100svh;
				padding: calc(var(--eq-header-height) - 30px ) 1.5rem 3rem;
				justify-content: center;
		}

    .eq-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .eq-hero-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .eq-hero-screen {
        order: 2;
        margin: 0 auto;
    }

    .eq-hero-screen img {
        width: 240px;
    }

    .eq-cta-group {
        align-items: center;
    }

    .eq-contrast-grid {
        grid-template-columns: 1fr;
    }

    .eq-steps-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .eq-topic-grid {
        grid-template-columns: 1fr;
    }
}