@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --dark-bg: #111827;
    --dark-card: #1F2937;
    --primary-accent: #22d3ee;
    --primary-accent-dark: #0e7490;
    --light-text: #F9FAFB;
    --medium-text: #9CA3AF;
    --border-color: #374151;
    --glow-color: rgba(34, 211, 238, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--medium-text);
    background-color: var(--dark-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    transition: color 0.3s ease;
}
.logo-container:hover .logo-text {
    color: var(--primary-accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--medium-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a:hover {
    color: var(--light-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at top, var(--dark-card) 0%, var(--dark-bg) 70%);
    z-index: -1;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.logo-showcase {
    width: clamp(150px, 30vw, 220px);
    margin: 0 auto 2.5rem;
    animation: float 10s ease-in-out infinite;
}

.logo-showcase img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 40px var(--glow-color), 0 0 80px var(--dark-bg);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-0.3em) rotate3d(2, 90, 1, 15deg); }
    100% { transform: translateY(0px); }
}

.company-overtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--primary-accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.company-name {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--light-text);
    line-height: 1.1;
}

.company-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--medium-text);
    margin: 1rem auto 3rem;
    max-width: 600px;
}
.company-subtitle b {
    color: var(--primary-accent);
}

.seal-explanation {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 0 auto 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: left;
}

.seal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.seal-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.seal-points {
    list-style: none;
}

.seal-points li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.seal-points li::before {
    content: '✓';
    background-color: var(--primary-accent-dark);
    color: var(--primary-accent);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* General Section Styling */
.section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-accent);
    box-shadow: 0 0 30px var(--glow-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-accent);
    border: 1px solid var(--border-color);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Values Section */
.values-section {
    background-color: var(--dark-card);
    padding: 6rem 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.values-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
}

.values-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.values-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.funding-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.funding-display {
    background: linear-gradient(145deg, var(--dark-card), var(--dark-bg));
    padding: 3rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--border-color);
    width: 320px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.funding-display::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 180deg at 50% 50%, var(--primary-accent), var(--dark-bg), var(--primary-accent-dark), var(--dark-bg), var(--primary-accent));
    z-index: -1;
    animation: spin 4s linear infinite;
}

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

.funding-percentage {
    font-family: 'JetBrains Mono', monospace;
    font-size: 5rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1;
}

.funding-label {
    font-size: 1.25rem;
    color: var(--primary-accent);
    font-weight: 500;
    margin-top: 0.5rem;
}

.funding-sublabel {
    font-size: 1rem;
    color: var(--medium-text);
}

/* Footer */
footer {
    background: var(--dark-card);
    color: var(--medium-text);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.footer-section p {
    line-height: 1.7;
}

.footer-section a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-text);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Consider adding a hamburger menu for mobile */
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}