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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #059669;
}

.cta-button {
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.4);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(6, 78, 59, 0.92) 0%, rgba(5, 150, 105, 0.88) 50%, rgba(16, 185, 129, 0.85) 100%),
        url('https://images.unsplash.com/photo-1519904981063-b0cf448d479e?q=80&w=2000') center/cover;
    color: white;
    padding: 200px 20px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.hero .container {
    max-width: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.greenland-icon {
    width: 90px;
    height: 90px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
    opacity: 0.95;
}

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

.hero h1 {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    text-shadow: none;
    line-height: 1.1;
    text-align: center;
}

.hero h1 .subtitle-line {
    display: block;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-top: 0.75rem;
}

.hero h1,
.hero h1 .subtitle-line {
    background: linear-gradient(135deg, #ffffff 0%, #d1fae5 50%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.02em;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 0.01em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #064e3b;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.2);
}

/* Opportunity Section */
.opportunity {
    padding: 100px 20px;
    background: 
        linear-gradient(135deg, rgba(6, 78, 59, 0.03) 0%, rgba(16, 185, 129, 0.05) 100%),
        #f8fafc;
    position: relative;
    overflow: hidden;
}

.opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.3), transparent);
}

.opportunity::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.3), transparent);
}

.opportunity h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.04em;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.opportunity h2::before {
    content: '💎';
    position: absolute;
    left: -60px;
    font-size: 2.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.opportunity h2::after {
    content: '💎';
    position: absolute;
    right: -60px;
    font-size: 2.5rem;
    animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: scale(0.9) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(180deg); }
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(209, 250, 229, 0.2) 100%);
    border-radius: 16px;
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.4s ease;
    border: 2px solid rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.05), transparent);
    transition: left 0.6s ease;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(5, 150, 105, 0.15),
        inset 0 1px 0 rgba(255,255,255,1);
    border-color: rgba(5, 150, 105, 0.3);
}

.stat h3 {
    font-size: 3rem;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 600;
}

.resource-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    padding-top: 60px;
    border-top: 2px solid rgba(5, 150, 105, 0.2);
}

.resource-header h3 {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
}

.resource-header p {
    font-size: 1.1rem;
    color: #047857;
    font-weight: 500;
    margin: 0;
}

/* Resources Section - Now integrated into opportunity */
.resource-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.resource-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(6, 78, 59, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.resource-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 2rem;
    opacity: 0.15;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.resource-stat:hover .resource-icon {
    opacity: 0.3;
    transform: scale(1.1) rotate(5deg);
    filter: grayscale(0%);
}

.resource-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 0%, rgba(5, 150, 105, 0.08) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.resource-stat:hover::before {
    transform: translateX(100%);
}

.resource-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.15);
    border-color: rgba(5, 150, 105, 0.3);
}

.resource-stat h4 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.resource-stat p {
    font-size: 0.85rem;
    color: #047857;
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

.resource-stat {
    cursor: pointer;
}

.resource-stat:hover {
    cursor: pointer;
}

@media (max-width: 768px) {
    .resource-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .resource-stat {
        padding: 20px 16px;
    }
    
    .resource-stat h4 {
        font-size: 1.75rem;
    }
    
    .resource-stat p {
        font-size: 0.8rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 78, 59, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    padding: 48px 40px;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.3);
    border: 2px solid rgba(5, 150, 105, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 36px;
    font-weight: 300;
    color: #047857;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
}

.modal-close:hover {
    transform: rotate(90deg);
    background: rgba(5, 150, 105, 0.2);
    color: #064e3b;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    padding-right: 40px;
}

.modal-stat {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 24px 0 32px 0;
    letter-spacing: -0.03em;
}

.modal-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 32px;
}

.modal-highlights {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(6, 78, 59, 0.05) 100%);
    padding: 24px 28px;
    border-radius: 16px;
    border-left: 4px solid #059669;
}

.modal-highlights h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #064e3b;
    margin: 0 0 16px 0;
}

.modal-highlights ul {
    margin: 0;
    padding-left: 24px;
}

.modal-highlights li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 8px;
}

.modal-highlights li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 36px 28px;
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-stat {
        font-size: 3rem;
    }
    
    .modal-description {
        font-size: 0.95rem;
    }
    
    .modal-highlights {
        padding: 20px;
    }
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    padding: 1.2rem 0;
    overflow: hidden;
    border-top: 3px solid #10b981;
    border-bottom: 3px solid #10b981;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll-left 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-block;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 3rem;
    letter-spacing: -0.01em;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-content::after {
    content: attr(data-content);
}

/* Duplicate content for seamless loop */
.ticker-content {
    animation: scroll-left 90s linear infinite;
}

/* Market Section */
.market-section {
    padding: 100px 20px;
    background: white;
}

.market-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.market-embed {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.08);
    background: white;
}

.market-embed iframe {
    display: block;
    width: 100%;
    min-height: 600px;
}

.market-disclaimer {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

/* Team Section */
.team {
    padding: 80px 20px;
    background: 
        linear-gradient(135deg, rgba(6, 78, 59, 0.02) 0%, rgba(5, 150, 105, 0.04) 100%),
        linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.03) 50%, transparent 100%),
        #fafafa;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(5, 150, 105, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(6, 78, 59, 0.06) 0%, transparent 30%);
    animation: pulse 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-5%, -5%) scale(1.05); opacity: 1; }
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(6, 78, 59, 0.05) 0%, rgba(5, 150, 105, 0.08) 100%),
        radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 78, 59, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.team h2, .strategy h2, .investment-thesis h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.team-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.eagle-emblem {
    position: sticky;
    top: 120px;
    z-index: 2;
}

.eagle-emblem::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(6, 78, 59, 0.2));
    border-radius: 16px;
    opacity: 0;
    animation: glow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow {
    0%, 100% { opacity: 0; transform: scale(0.95); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.eagle-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.1),
        0 0 20px rgba(5, 150, 105, 0.1);
    border: 3px solid rgba(5, 150, 105, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.eagle-image:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(5, 150, 105, 0.2),
        0 0 40px rgba(5, 150, 105, 0.3);
    border-color: rgba(5, 150, 105, 0.5);
}

@media (max-width: 968px) {
    .team-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .eagle-emblem {
        max-width: 300px;
        margin: 0 auto 2rem;
        position: relative;
        top: 0;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(209, 250, 229, 0.3) 100%);
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-member:hover::after {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.15);
    border-color: rgba(5, 150, 105, 0.3);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.role {
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: #64748b;
    line-height: 1.8;
}

/* Strategy Section */
.strategy {
    padding: 80px 20px;
    background: 
        linear-gradient(135deg, rgba(6, 78, 59, 0.96) 0%, rgba(4, 120, 87, 0.94) 100%),
        url('https://images.unsplash.com/photo-1583422409516-2895a77efded?q=80&w=2000') center/cover;
    color: white;
}

.strategy h2 {
    color: white;
}

.strategy .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 1rem;
}

.strategy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.strategy-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Investment Thesis */
.investment-thesis {
    padding: 100px 20px;
    background: #fafafa;
}

.thesis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.thesis-item {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.thesis-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.thesis-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.thesis-item p {
    color: #64748b;
    line-height: 1.8;
}

/* Shop Section */
.shop-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ecfdf5 100%);
}

/* Featured Product - Hero Style */
.featured-product {
    max-width: 900px;
    margin: 3rem auto 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 24px;
    border: 2px solid rgba(5, 150, 105, 0.2);
    box-shadow: 0 8px 32px rgba(6, 78, 59, 0.12);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.featured-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(6, 78, 59, 0.18);
}

.featured-product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.featured-product-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.featured-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.05) 0%, rgba(5, 150, 105, 0.08) 100%);
    border-radius: 20px;
    padding: 3rem;
    min-height: 280px;
}

.featured-emoji {
    font-size: 8rem;
    filter: drop-shadow(0 8px 16px rgba(6, 78, 59, 0.2));
    animation: float-product 3s ease-in-out infinite;
}

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

.featured-product-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.featured-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
}

.featured-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.featured-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-badge-small {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.featured-buy-button {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
    letter-spacing: -0.01em;
}

.featured-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.trust-badge {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-top: 4rem;
}

.coming-soon-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.product-card.coming-soon {
    opacity: 0.7;
    position: relative;
}

.product-card.coming-soon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    pointer-events: none;
}

.product-status {
    color: #047857;
    font-weight: 600;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 12px;
}

.shop-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(5, 150, 105, 0.2);
}

.shop-footer .shop-disclaimer {
    color: #6b7280;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-emoji {
        font-size: 3.5rem;
    }
    
    .featured-product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .featured-emoji {
        font-size: 5rem;
    }
    
    .featured-product-details h3 {
        font-size: 1.5rem;
    }
    
    .featured-price {
        font-size: 2rem;
    }
    
    .featured-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .featured-buy-button {
        width: 100%;
        text-align: center;
    }
}

.shop-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-img-offset {
    object-position: center 10%;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-price-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin: 1rem 0;
}

.product-badge-small {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.product-buy-button {
    width: 100%;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.product-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-emoji {
    font-size: 4rem;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.buy-button {
    width: 100%;
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.shop-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
}

.shop-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.shop-link {
    display: inline-block;
    color: #059669;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.shop-link:hover {
    color: #064e3b;
    transform: translateX(5px);
}

.shop-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #059669 0%, #064e3b 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.invest-button {
    background: white;
    color: #064e3b;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.invest-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.disclaimer {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-title-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .greenland-icon {
        width: 65px;
        height: 65px;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .team h2, .strategy h2, .opportunity h2, .investment-thesis h2 {
        font-size: 2rem;
    }
}
