
/* full disclosure: I did use AI to help me with some new CSS properties, I learned a lot and am grateful for it. I ran out of Copilot credits midway through the project :( */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #059669 0%, #065f46 50%, #064e3b 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation Styles */   
.nav-zone {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
    padding: 20px 0;
    position: relative; /* Changed from sticky to relative */
    z-index: 100;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

.nav-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    background-color: transparent;
}

.earthy { 
    font-size: 32px;
    color: #34d399;
    background-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(52, 211, 153, 0.4));
}

.brandname {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.loc-tag {
    color: #047857;
    font-weight: 500;
    background-color: transparent;
}

.go-top {
    display: flex;
    gap: 15px;
    background-color: transparent;
}

.go-top, .go-top a {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.go-top.btn-chill, .go-top.btn-chill a {
    background: rgba(255, 255, 255, 0.9);
    color: #065f46;
    border: 2px solid rgba(52, 211, 153, 0.3);
}

.go-top.btn-chill:hover, .go-top.btn-chill a:hover {
    background: rgba(255, 255, 255, 1);
    color: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 211, 153, 0.25);
    border-color: rgba(52, 211, 153, 0.5);
}

.go-top.btn-loud, .go-top.btn-loud a {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.go-top.btn-loud:hover, .go-top.btn-loud a:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

/* Main title styles */
/* Global Carbon Counter Section */
.carbon-counter-section {
    max-width: 1200px;
    margin: 40px auto 60px auto;
    background: rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(25px);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.carbon-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(239, 68, 68, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.carbon-counter-header {
    background-color: transparent;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
}

.carbon-counter-title {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    background-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.carbon-counter-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    font-weight: 500;
    margin-bottom: 10px;
}

.counter-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.warning-icon {
    animation: flash 2s infinite;
    color: #059669;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.carbon-display {
    background-color: transparent;
    z-index: 2;
    position: relative;
    margin: 40px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
}

.counter-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
}

.counter-label {
    font-size: 14px;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    background-color: transparent;
}

.counter-value {
    font-size: 32px;
    font-weight: 900;
    color: #064e3b;
    margin-bottom: 10px;
    background-color: transparent;
    font-family: 'Courier New', monospace;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    line-height: 1.1;
    max-width: 100%;
}

.counter-unit {
    font-size: 16px;
    color: #065f46;
    font-weight: 600;
    background-color: transparent;
}

.counter-rate {
    font-size: 12px;
    color: #047857;
    font-style: italic;
    background-color: transparent;
    margin-top: 8px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.carbon-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.fact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.fact-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
}

.fact-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
    background-color: transparent;
}

.hero-title {
    font-size: 4.5em;
    font-weight: 900;
    text-align: center;
    color: white;
    margin: 60px 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.sub-hero {
    font-size: 5em;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #34d399, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 40px 0;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 8px 32px rgba(52, 211, 153, 0.3));
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.blurb {
    font-size: 1.4em;
    text-align: center;
    font-family: 'Inter', sans-serif;
    padding: 0 5%;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.task-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 50px 0 30px 0;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

/* Modern dashboard styles with glassmorphism */
.ping-box {
    max-width: 1000px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.header {
    text-align: center;
    margin-bottom: 50px;
    background-color: transparent;
}

.header h1 {
    font-size: 42px;
    color: white;
    margin: 0;
    background-color: transparent;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dot-live {
    color: #34d399;
    font-weight: bold;
    background-color: transparent;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.6));
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.when {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 10px;
    background-color: transparent;
    font-weight: 500;
}

.stat-lineup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    background-color: transparent;
}

.staty {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.staty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #34d399, #10b981, #059669);
}

.stat-pic {
    font-size: 28px;
    margin-bottom: 15px;
    background-color: transparent;
}

.label {
    color: #059669;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.num-big {
    font-size: 32px;
    font-weight: 900;
    color: #064e3b;
    margin-bottom: 8px;
    background-color: transparent;
}

.extra-info {
    color: #047857;
    font-size: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    font-weight: 500;
}

.tiny-facts {
    color: #065f46;
    font-size: 12px;
    font-style: italic;
    background-color: transparent;
}

.staty:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* yo adding trending section styles here */
/* Unique asymmetric trending section */
.vibes-area {
    max-width: 1200px;
    margin: 60px auto;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 0;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.vibes-area::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vibes-top {
    text-align: left;
    margin-bottom: 40px;
    background-color: transparent;
    padding: 50px 50px 0 50px;
}

.vibes-top h2 {
    font-size: 48px;
    color: white;
    margin: 0 0 15px 0;
    background-color: transparent;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.vibes-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    background-color: transparent;
    font-weight: 500;
}

/*This was mostly all copy paste so not too tough */
.trend-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    background-color: transparent;
    padding: 0 50px 50px 50px;
}

.one-trend {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transform: rotate(-1deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.one-trend:nth-child(even) {
    transform: rotate(1deg);
}

.one-trend:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mood-pic {
    font-size: 32px;
    margin-bottom: 15px;
    background-color: transparent;
}

.arrow-flow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    background-color: transparent;
    opacity: 0.7;
}

.mood-label {
    font-size: 15px;
    color: #065f46;
    margin-bottom: 12px;
    line-height: 1.5;
    background-color: transparent;
    font-weight: 500;
}

.mood-score {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    background-color: transparent;
}

.mood-score.glow-up {
    color: #059669;
}

.mood-score.flop {
    color: #10b981;
}

.progressy {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.load-bar {
    height: 100%;
    border-radius: 6px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.load-bar.glow-up {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.load-bar.flop {
    background: linear-gradient(90deg, #059669, #10b981);
}

.see-everything {
    text-align: center;
    background-color: transparent;
    padding: 30px;
}

.more-here {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    background-color: transparent;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.more-here:hover {
    background: white;
    color: #047857;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Hexagonal activities section */
.what-we-doin {
    max-width: 1200px;
    margin: 80px auto;
    background: transparent;
    padding: 60px 20px;
}

.doing-title {
    text-align: center;
    margin-bottom: 50px;
    background-color: transparent;
}

.doing-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    background-color: transparent;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
}

.task-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    background-color: transparent;
    max-width: 800px;
    margin: 0 auto;
}

.do-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px 25px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.do-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.do-card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.do-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.25);
}

.do-icon {
    margin-bottom: 15px;
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.activity-img {
    width: 50px;
    height: auto;
    background-color: transparent;
    border-radius: 8px;
    filter: brightness(0) invert(1);
}

.vibe-icon {
    font-size: 40px;
    background-color: transparent;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.task-meta {
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.what-it-is {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    background-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.how-long {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 12px 0;
    background-color: transparent;
}

.co2-score {
    font-size: 20px;
    font-weight: 900;
    color: #34d399;
    margin-bottom: 5px;
    background-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.activity-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    background-color: transparent;
}

/* Masonry-style solutions section */
.solutions-container {
    max-width: 1200px;
    margin: 80px auto;
    background: rgba(52, 211, 153, 0.15);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    position: relative;
}

.solutions-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed rgba(52, 211, 153, 0.4);
    border-radius: 30px;
    pointer-events: none;
}

.solutions-header {
    text-align: center;
    margin-bottom: 50px;
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.solutions-header h2 {
    font-size: 42px;
    color: white;
    margin: 0 0 15px 0;
    background-color: transparent;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.solutions-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    background-color: transparent;
    font-weight: 500;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.solution-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(52, 211, 153, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.15), transparent);
    transition: left 0.6s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.25);
    border-color: rgba(52, 211, 153, 0.7);
}

.solution-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(1deg);
}

.solution-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background-color: transparent;
    color: #059669;
    z-index: 2;
    position: relative;
}

.solution-info {
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.solution-title {
    font-size: 20px;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 15px 0;
    background-color: transparent;
}

.solution-desc {
    font-size: 15px;
    color: #047857;
    margin: 0 0 20px 0;
    line-height: 1.5;
    background-color: transparent;
}

.solution-impact {
    font-size: 24px;
    font-weight: 900;
    color: #059669;
    margin-bottom: 10px;
    background-color: transparent;
}

.solution-status {
    font-size: 12px;
    color: #065f46;
    font-style: italic;
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Diagonal comparison section */
.comparison-container {
    max-width: 1100px;
    margin: 80px auto;
    background: linear-gradient(45deg, #064e3b, #065f46, #059669);
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transform: skewY(-2deg);
}

.comparison-container > * {
    transform: skewY(2deg);
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
    background-color: transparent;
    padding: 50px 30px 0 30px;
}

.comparison-header h2 {
    font-size: 38px;
    color: white;
    margin: 0 0 15px 0;
    background-color: transparent;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.comparison-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    background-color: transparent;
    font-weight: 500;
}

.comparison-chart {
    background-color: transparent;
    margin-bottom: 30px;
    padding: 0 50px;
}

.country-bar {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.country-bar:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.country-flag {
    font-size: 28px;
    margin-right: 20px;
    background-color: transparent;
}

.country-info {
    min-width: 220px;
    background-color: transparent;
}

.country-name {
    font-weight: 700;
    color: white;
    background-color: transparent;
    font-size: 16px;
}

.country-emissions {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    margin-top: 4px;
}

.country-progress {
    flex: 1;
    margin-left: 25px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(90deg, #34d399, #10b981, #059669);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.comparison-note {
    text-align: center;
    background-color: transparent;
    padding: 30px;
}

.comparison-note p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    background-color: transparent;
    font-size: 16px;
}

/* Futuristic calculator section */
.calculator-container {
    max-width: 1000px;
    margin: 80px auto;
    background: rgba(52, 211, 153, 0.12);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 35px;
    border: 2px solid rgba(52, 211, 153, 0.4);
    position: relative;
    overflow: hidden;
}

.calculator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 211, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.calculator-header h2 {
    font-size: 38px;
    color: white;
    margin: 0 0 15px 0;
    background-color: transparent;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.calculator-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    background-color: transparent;
    font-weight: 500;
}

.calculator-form {
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.input-group {
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.input-label {
    display: block;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    background-color: transparent;
    font-size: 16px;
}

.input-slider {
    width: 100%;
    margin-bottom: 10px;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
}

.input-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399, #10b981);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.4);
}

.input-value {
    color: #10b981;
    font-weight: 700;
    background-color: transparent;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.calculator-result {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(52, 211, 153, 0.5);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.calculator-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(52, 211, 153, 0.15), transparent);
    animation: rotate 8s linear infinite;
}

.result-icon {
    font-size: 56px;
    margin-bottom: 20px;
    background-color: transparent;
    color: #10b981;
    z-index: 2;
    position: relative;
}

.result-text {
    font-size: 20px;
    color: #047857;
    margin-bottom: 15px;
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.result-value {
    font-size: 42px;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 15px;
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.result-equivalent {
    font-size: 15px;
    color: #065f46;
    font-style: italic;
    background-color: transparent;
    z-index: 2;
    position: relative;
}

/* Cosmic call to action section */
.cta-container {
    max-width: 1200px;
    margin: 100px auto 60px auto;
    background: radial-gradient(circle at center, #064e3b 0%, #065f46 50%, #059669 100%);
    padding: 80px 40px;
    border-radius: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(52, 211, 153, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(5, 150, 105, 0.15) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(1deg); }
    66% { transform: translate(-5px, 5px) rotate(-1deg); }
}

.cta-content {
    background-color: transparent;
    z-index: 2;
    position: relative;
}

.cta-container h2 {
    font-size: 48px;
    margin: 0 0 25px 0;
    background-color: transparent;
    font-weight: 900;
    background: linear-gradient(135deg, #34d399, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.9;
    background-color: transparent;
    font-weight: 400;
    line-height: 1.6;
}

.cta-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    background-color: transparent;
}

.tip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tip-icon {
    font-size: 32px;
    margin-bottom: 15px;
    background-color: transparent;
    color: #34d399;
}

.tip-text {
    font-size: 16px;
    background-color: transparent;
    text-align: center;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    background-color: transparent;
}

.cta-btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn.btn-loud {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.4);
}

.cta-btn.btn-loud:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.5);
}

.cta-btn.btn-chill {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cta-btn.btn-chill:hover {
    background: white;
    color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5em;
    }
    
    .sub-hero {
        font-size: 4em;
    }
    
    .blurb {
        padding: 0 8%;
        font-size: 1.3em;
    }
    
    .carbon-counter-title {
        font-size: 36px;
    }
    
    .header h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .carbon-counter-section {
        margin: 30px 20px 50px 20px;
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .carbon-counter-title {
        font-size: 32px;
    }
    
    .carbon-counter-subtitle {
        font-size: 16px;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .counter-item {
        padding: 25px 20px;
    }
    
    .counter-value {
        font-size: 24px;
        line-height: 1.2;
        word-break: break-all;
    }
    
    .carbon-facts {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .fact-item {
        padding: 15px;
    }
    
    .hero-title, .sub-hero {
        font-size: 2.5em;
        line-height: 1.1;
        margin: 30px 0 15px 0;
    }
    
    .blurb {
        padding: 0 5%;
        font-size: 1.1em;
        line-height: 1.5;
    }
    
    .ping-box {
        margin: 30px 20px;
        padding: 30px 20px;
    }
    
    .stat-lineup {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .header h1 {
        font-size: 32px;
    }
    
    .vibes-area {
        margin: 40px 20px;
        border-radius: 20px;
    }
    
    .vibes-top {
        padding: 30px 30px 0 30px;
    }
    
    .vibes-top h2 {
        font-size: 36px;
    }
    
    .trend-stack {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 30px 30px 30px;
    }
    
    .one-trend {
        transform: none !important;
        padding: 25px;
    }
    
    .one-trend:hover {
        transform: scale(1.02) !important;
    }
    
    .what-we-doin {
        margin: 60px 20px;
        padding: 40px 20px;
    }
    
    .task-grid {
        gap: 30px;
    }
    
    .do-card {
        width: 160px;
        height: 160px;
        padding: 30px 20px;
    }
    
    .solutions-container {
        margin: 60px 20px;
        padding: 40px 25px;
        border-radius: 25px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .solution-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .comparison-container {
        margin: 60px 20px;
        border-radius: 20px;
        transform: none;
    }
    
    .comparison-container > * {
        transform: none;
    }
    
    .comparison-header {
        padding: 40px 20px 0 20px;
    }
    
    .comparison-header h2 {
        font-size: 28px;
    }
    
    .comparison-chart {
        padding: 0 30px;
    }
    
    .country-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    
    .country-progress {
        width: 100%;
        margin-left: 0;
    }
    
    .calculator-container {
        margin: 60px 20px;
        padding: 40px 25px;
        border-radius: 25px;
    }
    
    .calculator-header h2 {
        font-size: 28px;
    }
    
    .input-group {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .calculator-result {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .result-value {
        font-size: 32px;
    }
    
    .cta-container {
        margin: 60px 20px 40px 20px;
        padding: 50px 25px;
        border-radius: 30px;
    }
    
    .cta-container h2 {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .cta-tips {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .tip-item {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        width: 250px;
        padding: 16px 35px;
    }
    
    .nav-box {
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .go-top {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .logo {
        font-size: 22px;
        flex-shrink: 0;
    }
    
    .earthy {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
        margin: 20px 0 10px 0;
    }
    
    .sub-hero {
        font-size: 2.2em;
        margin: 0 0 20px 0;
    }
    
    .blurb {
        font-size: 1em;
        padding: 0 5%;
        line-height: 1.4;
        margin-bottom: 40px;
    }
    
    .carbon-counter-title {
        font-size: 24px;
    }
    
    .header h1 {
        font-size: 24px;
    }
    
    .nav-box {
        flex-direction: column;
        padding: 0 10px;
        text-align: center;
    }
    
    .go-top {
        margin-top: 10px;
    }
    
    .counter-value {
        font-size: 20px;
        line-height: 1.2;
        word-break: break-all;
        letter-spacing: -0.01em;
    }
    
    .counter-item {
        padding: 20px 15px;
        min-height: 180px;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-value {
        font-size: 28px;
    }
}
