* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00AB4B;
    --primary-dark: #008539;
    --secondary: #FFCD03;
    --ink: #0A1F12;
    --paper: #FAF8F2;
    --paper-2: #F2EFE5;
    --muted: #6B7768;
}

html, body {
    height: 100%;
    font-family: 'Inter Tight', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

/* Grid background */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
    linear-gradient(rgba(10,31,18,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,18,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

/* Floating shapes */
.floating-shape {
    position: fixed;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    top: 8%;
    right: 6%;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    border-radius: 50%;
    animation: float-1 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 12%;
    left: 4%;
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 24px;
    transform: rotate(15deg);
    animation: float-2 7s ease-in-out infinite;
}

.shape-3 {
    top: 50%;
    left: 8%;
    width: 40px;
    height: 40px;
    background: var(--ink);
    border-radius: 50%;
    animation: float-3 6s ease-in-out infinite;
}

.shape-4 {
    bottom: 25%;
    right: 12%;
    width: 60px;
    height: 60px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    animation: float-1 9s ease-in-out infinite reverse;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -25px); }
}

/* Main container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 32px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo img {
    width: 180px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-dark);
    color: var(--paper);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Hero */
.hero {
    flex: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
}

.label-eyebrow {
    display: inline-block;
    background: var(--secondary);
    color: var(--ink);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 24px;
    transform: rotate(-2deg);
}

h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

h1 .italic {
    font-style: italic;
    color: var(--primary);
    position: relative;
}

h1 .italic::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--secondary);
    z-index: -1;
    opacity: 0.5;
}

.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 40px;
}

/* Progress section */
.progress-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.progress-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.progress-label {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.progress-percent {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--secondary);
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: var(--primary);
    border-radius: 100px;
    position: relative;
    animation: progress-glow 2s ease-in-out infinite;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255,205,3,0.6));
    border-radius: 100px;
}

@keyframes progress-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.progress-info {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.7;
}

/* Right side - visual */
.hero-visual {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
}

.gear {
    position: absolute;
    animation: rotate 20s linear infinite;
}

.gear-1 {
    top: 5%;
    left: 5%;
    width: 60%;
    color: var(--primary);
}

.gear-2 {
    bottom: 5%;
    right: 5%;
    width: 45%;
    color: var(--secondary);
    animation-duration: 15s;
    animation-direction: reverse;
}

.gear-3 {
    top: 35%;
    right: 15%;
    width: 30%;
    color: var(--ink);
    animation-duration: 10s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bottom info */
.bottom-section {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(10,31,18,0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.info-block h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.info-block p {
    font-size: 15px;
    line-height: 1.5;
}

.info-block a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 1px;
    transition: opacity 0.2s;
}

.info-block a:hover {
    opacity: 0.7;
}

/* Social row */
.socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 16px;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
    .container { 
        padding: 24px 20px 40px; 
    }

    header { 
        margin-bottom: 48px; 
    }

    .hero { 
        grid-template-columns: 1fr; 
        gap: 32px; 
    }

    .hero-visual { 
        max-width: 280px; 
        margin: 0 auto; 
    }

    .bottom-section { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    }

    footer { 
        flex-direction: column; 
        gap: 8px; 
        text-align: center; 
    }

    .shape-1 { 
        width: 80px; 
        height: 80px; 
    }

    .shape-2 { 
        width: 50px; 
        height: 50px; 
    }

    .logo img {
        width: 140px;
    }

    header .status-pill span {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.4px;
    }
}


#tagline {
  animation: fade-in 0.6s ease-out;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}