:root {
    --tally-blue: #0093FF;
    --tally-cyan: #00C9C2;
    --tally-cream: #FFFBE5;
    --tally-light-blue: #a2dbf4;
    --tally-light-cyan: #b4fcf8;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header Styles */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--tally-cream);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
        rgba(0, 147, 255, 0.2),
        rgba(0, 201, 194, 0.15),
        rgba(0, 147, 255, 0.2));
    animation: pulse 8s ease-in-out infinite;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    animation: fadeIn 1s ease-in;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
        rgba(0, 147, 255, 0.75),
        rgba(0, 201, 194, 0.65),
        rgba(162, 219, 244, 0.7));
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(40px);
    animation: bounce 3s ease-in-out infinite;
}

.hero-bubble-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
}

.hero-bubble-2 {
    bottom: 8rem;
    right: 5rem;
    width: 10rem;
    height: 10rem;
    animation-delay: 1s;
}

.hero-bubble-3 {
    top: 50%;
    left: 25%;
    width: 6rem;
    height: 6rem;
    animation-duration: 5s;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 25px 25px rgba(0, 0, 0, 0.15);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.evangelist-card {
    overflow: hidden;
}

@media (min-width: 280px) {
    .hero-badge {
        padding: 0rem 2rem;
        font-size: 0.7rem;
    }
}

@media (min-width: 375px) {
    .hero-badge {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 576px) {
    .hero-badge {
        padding: 0.75rem 2rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1200px) {
    .byTallyText {
        padding-right: 5rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 6rem;
    }

    .byTallyText {
        padding-right: 0rem;
    }

}

.hero-subtitle {
    font-size: 1.875rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 10px 8px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

@media (min-width: 992px) {
    .hero-subtitle {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: white;
    max-width: 56rem;
    line-height: 1.625;
    text-shadow: 0 10px 8px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .hero-description {
        font-size: 1.875rem;
    }
}

.hero-btn-primary {
    background: white;
    color: var(--tally-blue);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.97rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: none;
}

.hero-btn-primary:hover {
    background: var(--tally-cyan);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(0, 201, 194, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 3px solid white;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.75rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--tally-blue);
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    position: relative;
    background: white;
    overflow: hidden;
}

.stats-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    opacity: 0.3;
    pointer-events: none;
}

.stats-bg-1 {
    top: -5rem;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 147, 255, 0.1);
}

.stats-bg-2 {
    bottom: -5rem;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 201, 194, 0.1);
}

.stats-badge {
    padding: 0.75rem 2rem;
    background: linear-gradient(to right, rgba(0, 147, 255, 0.1), rgba(0, 201, 194, 0.1));
    color: var(--tally-blue);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(0, 147, 255, 0.3);
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Impact Cards */
.impact-card {
    background: linear-gradient(to bottom right, #ffffff, var(--tally-cream));
    border-radius: 1.5rem;
    border: 3px solid rgba(0, 147, 255, 0.2);
    transition: all 0.5s ease;
}

.impact-card:hover {
    border-color: var(--tally-blue);
    box-shadow: 0 20px 60px rgba(0, 147, 255, 0.3);
    transform: scale(1.05) translateY(-0.75rem);
}

.impact-card.card-2 {
    border-color: rgba(0, 201, 194, 0.2);
}

.impact-card.card-2:hover {
    border-color: var(--tally-cyan);
    box-shadow: 0 20px 60px rgba(0, 201, 194, 0.3);
}

.impact-card.card-3 {
    background: linear-gradient(to bottom right, #ffffff, var(--tally-light-cyan));
    border-color: rgba(0, 201, 194, 0.2);
}

.impact-card.card-3:hover {
    border-color: var(--tally-cyan);
    box-shadow: 0 20px 60px rgba(0, 201, 194, 0.3);
}

.bg-overlay-1 {
    background: linear-gradient(to bottom right, rgba(0, 147, 255, 0.05), transparent);
    border-radius: 1.5rem;
}

.bg-overlay-2,
.bg-overlay-3 {
    background: linear-gradient(to bottom right, rgba(0, 201, 194, 0.05), transparent);
    border-radius: 1.5rem;
}

.impact-card:hover .bg-overlay-1,
.impact-card:hover .bg-overlay-2,
.impact-card:hover .bg-overlay-3 {
    opacity: 1 !important;
}

.icon-box-1 {
    background: linear-gradient(to bottom right, var(--tally-blue), var(--tally-cyan));
    transition: transform 0.5s ease;
}

.icon-box-2,
.icon-box-3 {
    background: linear-gradient(to bottom right, var(--tally-cyan), var(--tally-blue));
    transition: transform 0.5s ease;
}

.impact-card:hover .icon-box-1,
.impact-card:hover .icon-box-2,
.impact-card:hover .icon-box-3 {
    transform: scale(1.1);
}

.gradient-text-1 {
    background: linear-gradient(to right, var(--tally-blue), var(--tally-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-2 {
    background: linear-gradient(to right, var(--tally-cyan), var(--tally-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Evangelists Section */
.evangelists-section {
    position: relative;
    background: linear-gradient(to bottom, var(--tally-cream), #fee7dc, var(--tally-cream));
    overflow: hidden;
}

.evangelists-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: linear-gradient(to right, var(--tally-blue), var(--tally-cyan), var(--tally-blue));
}

.evangelists-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    opacity: 0.4;
    pointer-events: none;
    animation: pulse 3s ease-in-out infinite;
}

.evangelists-bg-1 {
    top: 10rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 147, 255, 0.2);
}

.evangelists-bg-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 500px;
    height: 500px;
    background: rgba(0, 201, 194, 0.15);
    animation-delay: 1s;
}

.evangelists-bg-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(162, 219, 244, 0.1);
}

.evangelist-badge {
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, var(--tally-blue), var(--tally-cyan));
    color: white;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.evangelist-badge:hover {
    transform: scale(1.05);
}

.evangelist-card {
    transition: all 0.3s ease;
}

.evangelist-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.evangelist-icon-bg {
    background: linear-gradient(to bottom right, rgba(0, 147, 255, 0.1), rgba(36, 100, 58, 0.1));
}

.evangelist-icon-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(0, 147, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits Section */
.benefits-section {
    background: rgba(204, 80, 95, 0.3);
}

.benefit-card {
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(0, 147, 255, 0.5) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: rgba(0, 147, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(to bottom right, var(--tally-blue), rgba(0, 147, 255, 0.8));
    overflow: hidden;
}

.cta-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    pointer-events: none;
}

.cta-bg-1 {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(36, 100, 58, 0.2);
}

.cta-bg-2 {
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.transition-opacity {
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Colors */
.text-primary {
    color: var(--tally-blue) !important;
}

.bg-primary {
    background-color: var(--tally-blue) !important;
}

.btn-primary {
    background-color: var(--tally-blue);
    border-color: var(--tally-blue);
}

.btn-primary:hover {
    background-color: #007acc;
    border-color: #007acc;
}

.btn-secondary {
    background-color: var(--tally-cyan);
    border-color: var(--tally-cyan);
    color: white;
}

.btn-secondary:hover {
    background-color: #00b3a3;
    border-color: #00b3a3;
    color: white;
}

/* Responsive Display Classes */
@media (min-width: 768px) {
    .display-md-3 {
        font-size: calc(1.475rem + 2.7vw) !important;
    }

    .display-md-2 {
        font-size: calc(1.525rem + 2.5vw) !important;
    }

    .text-md-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
}

@media (min-width: 992px) {
    .display-lg-2 {
        font-size: calc(1.525rem + 2.5vw) !important;
    }

    .text-lg-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (min-width: 1280px) {
    .text-xl-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .text-xl-8xl {
        font-size: 6rem;
        line-height: 1;
    }
}

@media (min-width: 1440px) {
    .byTallyText {
        padding-right: 3rem;
    }
}